/* ================================================================
   BeeBotix — style.css  CLEAN v2
   Content visible by default. Animations are enhancement only.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;900&family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,700;1,400&family=Press+Start+2P&display=swap');

/* ---- TOKENS ---- */
:root {
  --black: #080808;
  --white: #f4f4ef;
  --g900:  #111;
  --g800:  #1c1c1c;
  --g700:  #2e2e2e;
  --g600:  #444;
  --g500:  #666;
  --g400:  #888;
  --g200:  #ccc;

  --glass:     rgba(244,244,239,0.05);
  --glass-hov: rgba(244,244,239,0.09);
  --glass-bd:  rgba(244,244,239,0.10);

  --fd: 'Barlow Condensed', sans-serif;
  --fm: 'IBM Plex Mono', monospace;
  --fp: 'Press Start 2P', monospace;

  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --eout:  cubic-bezier(0.16, 1, 0.3, 1);
  --t:     0.38s var(--ease);
  --tf:    0.16s ease;

  --mw:  1280px;
  --gap: clamp(20px, 5vw, 64px);
  --sec: clamp(80px, 10vw, 140px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fm);
  font-size: 14px;
  line-height: 1.75;
  overflow-x: hidden;
}
::selection { background: var(--white); color: var(--black); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--g900); }
::-webkit-scrollbar-thumb { background: var(--g600); }

/* ---- NOISE OVERLAY ---- */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.45;
}

/* ---- GRID LINES ---- */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(244,244,239,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,244,239,.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ---- SCROLL PROGRESS BAR (left edge) ---- */
.scroll-bar {
  position: fixed;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  z-index: 9000;
  background: var(--g800);
}
.scroll-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%;
  height: var(--p, 0%);
  background: var(--white);
  transition: height 0.1s linear;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--gap);
  padding-left: max(var(--gap), 16px);
}

/* ---- SHARED TYPE ---- */
.section-label {
  font-family: var(--fp);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 2;
}
.section-label::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 1px;
  background: var(--g700);
}
.section-headline {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.97;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.tag {
  display: inline-block;
  font-family: var(--fp);
  font-size: 6px;
  letter-spacing: 0.08em;
  border: 1px solid var(--g700);
  padding: 4px 8px;
  color: var(--g500);
  line-height: 1.8;
}

/* ---- SCROLL-REVEAL ---- */
/* r-item is invisible only after JS marks body.r (progressive enhancement) */
body.r .r-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--eout), transform 0.65s var(--eout);
}
body.r .r-item.r-visible { opacity: 1; transform: none; }

/* ---- CURSOR ---- */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--white); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}
.cursor.big  { width: 14px; height: 14px; }
.cursor-ring {
  position: fixed; width: 30px; height: 30px;
  border: 1px solid rgba(244,244,239,.3);
  border-radius: 50%; pointer-events: none;
  z-index: 99998; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease;
}
.cursor-ring.big { width: 50px; height: 50px; }

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t), height var(--t);
}
#navbar.scrolled {
  background: rgba(8,8,8,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-bd);
  height: 56px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  z-index: 10; position: relative;
}
.nav-logo-img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-fb { display: none; align-items: center; gap: 8px; }
.nav-wordmark {
  font-family: var(--fd); font-weight: 900;
  font-size: 24px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--white); line-height: 1;
}
.nav-ver {
  font-family: var(--fp); font-size: 6px;
  color: var(--g500); align-self: flex-end;
  padding-bottom: 2px; line-height: 2;
}
.nav-links {
  display: flex; gap: 26px; align-items: center;
}
.nav-links a {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g400);
  transition: color var(--tf);
  position: relative; line-height: 2;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-ext {
  font-family: var(--fp); font-size: 5px;
  color: var(--g700); border: 1px solid var(--g800);
  padding: 1px 4px; line-height: 1.6;
}
.nav-cta {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--white); color: var(--black);
  padding: 8px 16px; border: 2px solid var(--white);
  transition: background var(--tf), color var(--tf); line-height: 1.8;
}
.nav-cta:hover { background: transparent; color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; outline: none;
  padding: 10px; z-index: 10; cursor: pointer;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.nav-overlay.open { display: flex; }
.nav-overlay-close {
  position: absolute; top: 16px; right: var(--gap);
  background: none; border: none; color: var(--g500);
  transition: color var(--tf); cursor: pointer;
  padding: 12px; line-height: 0;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.nav-overlay-close:hover { color: var(--white); }
#nav-overlay-list {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.nav-overlay a {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(32px, 7vw, 56px);
  color: var(--g500); letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--tf);
}
.nav-overlay a:hover { color: var(--white); }

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;            /* exact navbar height */
  padding-right: var(--gap);
  padding-bottom: 80px;
  padding-left: var(--gap);
  overflow: hidden;
  z-index: 1;
}
#hero-canvas {
  position: absolute;
  top: 0;
  right: 0;          /* anchored to right edge */
  width: 60%;        /* right 60% of hero — globe lives here */
  height: 100vh;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  display: block;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-top: clamp(40px, 6vh, 80px);
}
.hero-badge {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--white); color: var(--black);
  display: inline-block;
  padding: 6px 12px; margin-bottom: 26px; line-height: 1.8;
}
.hero-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(56px, 10vw, 138px);
  line-height: 0.91; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 2px var(--g700);
}
.hero-sub {
  font-family: var(--fm);
  font-size: clamp(12px, 1.3vw, 15px);
  color: var(--g400); max-width: 460px;
  line-height: 1.9; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--white); color: var(--black);
  padding: 12px 24px; border: 2px solid var(--white);
  display: inline-block; line-height: 1.8;
  transition: background var(--tf), color var(--tf), transform var(--tf), box-shadow var(--tf);
}
.btn-primary:hover {
  background: transparent; color: var(--white);
  transform: translate(-3px,-3px); box-shadow: 3px 3px 0 var(--g600);
}
.btn-ghost {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent; color: var(--g400);
  padding: 12px 24px; border: 2px solid var(--g700);
  display: inline-block; line-height: 1.8;
  transition: color var(--tf), border-color var(--tf), transform var(--tf), box-shadow var(--tf);
}
.btn-ghost:hover {
  color: var(--white); border-color: var(--white);
  transform: translate(-3px,-3px); box-shadow: 3px 3px 0 var(--g700);
}

/* ASCII art - hero right side */
.ascii-hero { display: none; }  /* removed — red bee gone */

/* ascii-pre: used for chip + contextual arts — white, subtle */
.ascii-pre {
  font-family: var(--fm);
  font-size: clamp(6px, 0.72vw, 9px);
  line-height: 1.25; letter-spacing: 0.02em;
  color: rgba(244,244,239,0.20);
  white-space: pre;
  user-select: none;
}

.hero-hint {
  position: absolute; bottom: 34px; left: var(--gap);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); line-height: 2;
}
.hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g600);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.3;transform:scale(1);}50%{opacity:1;transform:scale(1.5);} }
.hero-year {
  position: absolute; bottom: 34px; right: var(--gap);
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; color: var(--g700);
  writing-mode: vertical-rl; line-height: 2;
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-wrap {
  border-top: 1px solid var(--g800);
  border-bottom: 1px solid var(--g800);
  overflow: hidden; padding: 13px 0;
  background: var(--g900); position: relative; z-index: 1;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-row {
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); flex-shrink: 0; line-height: 2;
}
.marquee-row b { color: var(--g700); font-weight: 400; }
@keyframes marquee { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* ================================================================
   ABOUT
   ================================================================ */
#about {
  padding: var(--sec) 0;
  position: relative; z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.95; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 18px;
}
.about-body {
  font-family: var(--fm); font-size: 13px;
  color: var(--g400); line-height: 1.95; margin-bottom: 32px;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-bd);
  padding: 20px 14px; transition: background var(--t);
}
.stat-card:hover { background: var(--glass-hov); }
.stat-value {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.stat-label {
  font-family: var(--fp); font-size: 6px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); line-height: 2;
}

/* Edge AI block */
.edge-block {
  background: var(--glass); border: 1px solid var(--glass-bd);
  padding: 34px 28px; position: relative; overflow: hidden;
}
.edge-block::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom,transparent,rgba(244,244,239,.22),transparent);
}
.edge-label {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); margin-bottom: 14px; line-height: 2;
}
.edge-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 14px;
}
.edge-body {
  font-family: var(--fm); font-size: 13px;
  color: var(--g400); line-height: 1.9; margin-bottom: 18px;
}
.ascii-chip .ascii-pre {
  font-size: clamp(5px, 0.58vw, 7px);
  color: rgba(244,244,239,.18); text-shadow: none;
}

/* ================================================================
   PLATFORM
   ================================================================ */
#platform {
  padding: var(--sec) 0;
  border-top: 1px solid var(--g800);
  position: relative; z-index: 1;
}
.platform-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.platform-sub {
  font-family: var(--fm); font-size: 14px;
  color: var(--g500); line-height: 1.85; max-width: 400px;
}
.offerings-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.offering-card {
  background: var(--glass); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background var(--t), transform var(--t);
}
.offering-card:hover { background: var(--glass-hov); transform: translateY(-4px); }
.offering-bar {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--white);
  transition: width 0.5s ease;
}
.offering-card:hover .offering-bar { width: 100%; }
.offering-num {
  font-family: var(--fd); font-weight: 900;
  font-size: 76px; line-height: 1;
  color: rgba(244,244,239,.04);
  margin-bottom: -12px; user-select: none;
}
.offering-title {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px; line-height: 1;
}
.offering-tag-line {
  font-family: var(--fp); font-size: 7px;
  color: var(--g600); letter-spacing: 0.1em;
  margin-bottom: 16px; line-height: 2;
}
.offering-desc {
  font-family: var(--fm); font-size: 13px;
  color: var(--g400); line-height: 1.9;
  margin-bottom: 18px; flex: 1;
}
.offering-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.offering-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g400); border: 1px solid var(--g700);
  padding: 8px 12px; line-height: 1.8;
  transition: color var(--tf), border-color var(--tf), background var(--tf);
  align-self: flex-start; margin-top: auto;
}
.offering-link svg { flex-shrink: 0; transition: transform var(--tf); }
.offering-link:hover { color: var(--white); border-color: var(--white); background: rgba(244,244,239,.04); }
.offering-link:hover svg { transform: translate(2px,-2px); }

/* ================================================================
   BRANDS
   ================================================================ */
#brands {
  padding: var(--sec) 0;
  border-top: 1px solid var(--g800);
  position: relative; overflow: hidden; z-index: 1;
  min-height: 400px;
}
#brands-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.13;
}
.brands-z { position: relative; z-index: 1; }
.brands-top { margin-bottom: clamp(32px, 4vw, 56px); }
.brands-list { display: flex; flex-direction: column; gap: 2px; }
.brand-card {
  background: var(--glass); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 44px 48px;
  display: grid; grid-template-columns: 220px 1fr 170px;
  gap: 44px; align-items: center;
  position: relative; overflow: hidden;
  transition: background var(--t);
}
.brand-card:hover { background: var(--glass-hov); }
.brand-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 3px; height: 0;
  background: var(--white); transition: height 0.5s ease;
}
.brand-card:hover::before { height: 100%; }
.brand-name {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px; line-height: 1;
}
.brand-tag-line { font-family: var(--fm); font-size: 12px; color: var(--g500); margin-bottom: 10px; }
.brand-sector {
  display: inline-block; font-family: var(--fp); font-size: 6px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--g700); padding: 4px 8px;
  color: var(--g600); line-height: 1.8;
}
.brand-desc { font-family: var(--fm); font-size: 13px; color: var(--g400); line-height: 1.95; }
.brand-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.brand-keywords { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }
.brand-kw {
  font-family: var(--fm); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--g700); text-align: right;
  transition: color var(--tf);
}
.brand-card:hover .brand-kw { color: var(--g500); }
.brand-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.07em;
  color: var(--g600); border: 1px solid var(--g700);
  padding: 7px 11px; line-height: 1.8; white-space: nowrap;
  transition: color var(--tf), border-color var(--tf), background var(--tf);
}
.brand-link svg { flex-shrink: 0; transition: transform var(--tf); }
.brand-link:hover { color: var(--white); border-color: var(--g400); background: rgba(244,244,239,.04); }
.brand-link:hover svg { transform: translate(2px,-2px); }

/* ================================================================
   FAQ
   ================================================================ */
#faq {
  padding: var(--sec) 0;
  border-top: 1px solid var(--g800);
  position: relative; z-index: 1;
}
.faq-top { margin-bottom: clamp(32px, 4vw, 52px); }
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid var(--g800); }
.faq-item:last-child { border-bottom: 1px solid var(--g800); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  color: var(--white); transition: color var(--tf);
}
.faq-q:hover { color: var(--g200); }
.faq-q-text {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0.02em; line-height: 1.2;
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--g700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 900; font-size: 17px;
  color: var(--g500); user-select: none; line-height: 1;
  transition: transform var(--t), border-color var(--tf), color var(--tf);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--white); color: var(--white); }
.faq-ans { overflow: hidden; max-height: 0; transition: max-height 0.42s var(--eout); }
.faq-item.open .faq-ans { max-height: 300px; }
.faq-ans-text { font-family: var(--fm); font-size: 13px; color: var(--g400); line-height: 1.9; padding-bottom: 22px; }

/* ================================================================
   CONTACT
   ================================================================ */
#contact {
  padding: var(--sec) 0;
  border-top: 1px solid var(--g800);
  position: relative; z-index: 1;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-headline {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 0.97; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.contact-body { font-family: var(--fm); font-size: 13px; color: var(--g400); line-height: 1.95; margin-bottom: 28px; }
.contact-meta { display: flex; flex-direction: column; gap: 12px; }
.meta-row {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--fm); font-size: 13px; color: var(--g500);
  transition: color var(--tf);
}
a.meta-row:hover { color: var(--white); }
.meta-row svg { color: var(--g700); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); line-height: 2;
}
.form-input, .form-select, .form-textarea {
  background: var(--glass); border: 1px solid var(--glass-bd);
  color: var(--white); font-family: var(--fm); font-size: 13px;
  padding: 11px 14px; outline: none;
  transition: border-color var(--tf), background var(--tf);
  width: 100%; appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--g400); background: var(--glass-hov);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--g700); }
.form-select option { background: var(--g900); color: var(--white); }
/* Custom select arrow + proper box */
.form-select {
  padding-right: 32px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  cursor: pointer;
}
.form-select:focus { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4f4ef' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-btn { align-self: flex-start; margin-top: 4px; }
.form-note { font-family: var(--fm); font-size: 11px; color: var(--g700); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  border-top: 1px solid var(--g800);
  background: var(--g900);
  position: relative; z-index: 1;
}
.footer-main { padding: clamp(48px, 7vw, 80px) 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; align-items: start;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo-img {
  height: 40px; width: auto;
  filter: brightness(0) invert(.42); display: block;
  transition: filter var(--tf);
}
.footer-logo-img:hover { filter: brightness(0) invert(.65); }
.footer-fb { display: none; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-wordmark-sm {
  font-family: var(--fd); font-weight: 900;
  font-size: 18px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--g500);
}
.footer-slogan {
  font-family: var(--fd); font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--g600);
  margin-bottom: 7px; line-height: 1.3;
}
.footer-msme {
  font-family: var(--fp); font-size: 6px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--g700); line-height: 2; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 9px; flex-wrap: wrap; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--g700);
  display: flex; align-items: center; justify-content: center;
  color: var(--g600);
  transition: color var(--tf), border-color var(--tf), background var(--tf);
}
.social-btn:hover { color: var(--white); border-color: var(--g400); background: rgba(244,244,239,.04); }
.footer-col-title {
  font-family: var(--fp); font-size: 7px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g500); margin-bottom: 16px; line-height: 2;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-family: var(--fm); font-size: 13px; color: var(--g600); transition: color var(--tf); line-height: 1.5; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--g800); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: var(--fm); font-size: 12px; color: var(--g700); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-family: var(--fm); font-size: 12px; color: var(--g600); transition: color var(--tf); }
.footer-legal a:hover { color: var(--white); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .about-grid           { grid-template-columns: 1fr; gap: 36px; }
  .platform-top         { grid-template-columns: 1fr; gap: 14px; }
  .offerings-grid       { grid-template-columns: 1fr; }
  .brand-card           { grid-template-columns: 1fr; gap: 18px; padding: 32px 28px; }
  .brand-right          { align-items: flex-start; }
  .brand-keywords       { align-items: flex-start; }
  .brand-kw             { text-align: left; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row            { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .nav-toggle           { display: flex; }
  #hero-canvas          { width: 100%; height: 100vh; opacity: 0.12; }
  .ascii-hero           { display: none; }
  .hero-hint, .hero-year{ display: none; }
  .cursor, .cursor-ring { display: none; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom-inner  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .brand-card { padding: 22px 16px; }
  .hero-headline { font-size: clamp(44px, 13vw, 72px); }
}

/* ================================================================
   GALLERY  — CSS subgrid, scroll-reveal, hover lift
   ================================================================ */
/* ================================================================
   GALLERY — 3D HELIX SCROLL
   driver height set by JS = 100vh + N*SPREAD_Y
   sticky stays locked the entire time, then exits naturally
   ================================================================ */
#gallery {
  padding-top: var(--sec);
  border-top: 1px solid var(--g800);
  position: relative;
  z-index: 1;
}
.gallery-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.gallery-top-right { display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.gallery-sub { font-family:var(--fm); font-size:13px; color:var(--g500); line-height:1.85; }

/* ---- Scroll driver: height set by JS ---- */
.gallery-scroll-driver {
  position: relative;
  /* height set dynamically by JS: calc(100vh + N*SPREAD_Y) */
}

/* ---- Sticky viewport — stays pinned while driver scrolls ---- */
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  /* NO overflow:hidden — clips 3D cards and position:fixed label */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- 3D stage inside sticky ---- */
.gallery-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  /* NO overflow:hidden — it kills preserve-3d and clips position:fixed children */
}

/* ---- Ring: zero-size origin, JS drives translateY + rotateY ---- */
.gallery-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-style: preserve-3d;
}

/* ---- Individual card: 3D helix position ---- */
.gallery-card {
  position: absolute;
  width: clamp(160px, 17vw, 210px);
  aspect-ratio: 3/4;
  /* Centre card at ring origin */
  top: calc(clamp(160px, 17vw, 210px) * -4/6);
  left: calc(clamp(160px, 17vw, 210px) * -0.5);
  border: 1px solid var(--glass-bd);
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Y offset in 3D space (card's slot on the helix) */
  transform:
    translateY(var(--card-y, 0px))
    rotateY(var(--card-ry, 0deg))
    translateZ(var(--card-tz, 0px));
  transform-style: preserve-3d;
  scale: var(--active-scale, 1);
  opacity: var(--active-opacity, 0.35);
  transition: box-shadow 0.3s ease, opacity 0.15s ease;
}
.gallery-card:hover {
  box-shadow: 0 0 0 1px rgba(244,244,239,.3);
  opacity: 1 !important;
}
.gallery-card-img {
  width:100%; height:100%; object-fit:cover; display:block;
  filter: grayscale(50%) brightness(0.6);
  transition: filter 0.4s ease;
}
.gallery-card:hover .gallery-card-img { filter: grayscale(0%) brightness(0.85); }
.gallery-card-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(8,8,8,.95) 0%, rgba(8,8,8,.15) 60%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:14px;
}
.gallery-card-cat { font-family:var(--fp); font-size:6px; letter-spacing:.1em; text-transform:uppercase; color:var(--g500); line-height:2; margin-bottom:4px; }
.gallery-card-title { font-family:var(--fd); font-weight:900; font-size:clamp(13px,1.5vw,16px); letter-spacing:.02em; text-transform:uppercase; color:var(--white); line-height:1.1; margin-bottom:3px; }
.gallery-card-caption { font-family:var(--fm); font-size:10px; color:var(--g400); line-height:1.6; opacity:0; transform:translateY(4px); transition:opacity .3s ease,transform .3s ease; }
.gallery-card:hover .gallery-card-caption { opacity:1; transform:none; }
.gallery-card-ext { position:absolute; top:10px; right:10px; width:22px; height:22px; background:rgba(8,8,8,.7); border:1px solid rgba(244,244,239,.15); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s ease; }
.gallery-card:hover .gallery-card-ext { opacity:1; }
.gallery-card-ascii { position:absolute; top:8px; left:8px; font-family:var(--fm); font-size:7px; line-height:1.3; color:rgba(244,244,239,.22); white-space:pre; pointer-events:none; opacity:0; transition:opacity .4s ease; }
.gallery-card:hover .gallery-card-ascii { opacity:1; }

/* ---- Center label: FIXED position so it truly stays centred ---- */
.gallery-center-label {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.35s ease;
  white-space: nowrap;
}
.gallery-center-label.visible { opacity: 1; }
.gallery-center-text {
  font-family: var(--fd); font-weight: 900;
  font-size: clamp(20px, 3vw, 40px);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); line-height: 1;
  text-shadow: 0 0 48px rgba(8,8,8,1), 0 0 24px rgba(8,8,8,.9);
}
.gallery-center-sub {
  font-family: var(--fp); font-size: 6px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--g500); margin-top: 10px; line-height: 2;
  text-shadow: 0 0 12px rgba(8,8,8,.9);
}

/* Responsive */
@media (max-width:900px){
  .gallery-top { grid-template-columns:1fr; gap:18px; }
  .gallery-card { width: clamp(130px,22vw,165px); }
}

/* ================================================================
   FORM — improved spacing and visual hierarchy
   ================================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  padding: 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,244,239,.06);
}
.form-group:first-child { padding-top: 0; }
.form-group:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-label {
  font-family: var(--fp); font-size: 6px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g600); line-height: 2;
}
.form-input, .form-select, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--g700);
  color: var(--white); font-family: var(--fm); font-size: 14px;
  padding: 10px 0; outline: none;
  transition: border-color var(--tf);
  width: 100%; appearance: none; -webkit-appearance: none;
  line-height: 1.5;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--g700); }
.form-select option { background: var(--g900); color: var(--white); }
/* Custom select arrow + proper box */
.form-select {
  padding-right: 32px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  cursor: pointer;
}
.form-select:focus { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4f4ef' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important; }
.form-textarea {
  resize: none;
  min-height: 90px;
  overflow-y: auto;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.form-btn { flex-shrink: 0; }
.form-note { font-family: var(--fm); font-size: 11px; color: var(--g600); }

/* ================================================================
   OFFERING CARD ASCII — contextual art per platform card
   ================================================================ */
.offering-ascii {
  font-family: var(--fm);
  font-size: 7px; line-height: 1.35;
  color: rgba(244,244,239,.12);
  white-space: pre;
  user-select: none;
  margin-top: auto;
  padding-top: 16px;
  transition: color 0.4s ease;
}
.offering-card:hover .offering-ascii { color: rgba(244,244,239,.22); }

/* ================================================================
   ASCII ART CONTAINERS — for offering cards + future sections
   ================================================================ */
.offering-ascii-wrap {
  margin-top: auto;
  padding-top: 20px;
  pointer-events: none;
}
.offering-ascii-wrap .ascii-pre {
  font-size: clamp(6px, 0.65vw, 8px);
  color: rgba(244,244,239,.14);
  line-height: 1.3;
  transition: color 0.4s ease;
}
.offering-card:hover .offering-ascii-wrap .ascii-pre {
  color: rgba(244,244,239,.30);
}

/* ROV container — in about section future use */
#ascii-rov-about .ascii-pre,
#ascii-ugv-about .ascii-pre {
  font-size: 7px;
  color: rgba(244,244,239,.18);
}

/* ================================================================
   NOTIFICATION BAR — infinite marquee above navbar
   ================================================================ */
.notif-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;            /* above navbar (z-index:1000) */
  height: 36px;
  background: rgba(244,244,239,0.96);
  color: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(8,8,8,0.12);
}
.notif-bar.notif-warning {
  background: rgba(244,244,239,0.97);
}
.notif-marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.notif-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: notif-scroll 28s linear infinite;
  will-change: transform;
}
.notif-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes notif-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.notif-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  color: #080808;
  line-height: 1;
  flex-shrink: 0;
}
.notif-item a {
  color: #080808;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.notif-item a:hover { opacity: 0.7; }
.notif-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #080808;
  opacity: 0.4;
  flex-shrink: 0;
}
.notif-close {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: none; border: none;
  color: #080808; opacity: 0.5;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.16s ease;
  padding: 0;
}
.notif-close:hover { opacity: 1; }

/* Push everything down when notif bar is visible */
body.has-notif #navbar   { top: 36px; }
body.has-notif #hero     { padding-top: calc(64px + 36px); }
body.has-notif .scroll-bar { top: 36px; }
