/* ============================================================
   JACKRABBIT EXPORTS — FUTURE TECH (LIGHT EDITION)
   Aesthetic: Solar Futurism · Neural Trade Network
   Palette: Pure White · Electric Indigo · Coral · Teal
   ============================================================ */

:root {
  --bg:         #FFFFFF;
  --bg-2:       #F4F6FF;
  --bg-3:       #EEF1FF;
  --bg-4:       #F9FAFB;
  --surface:    rgba(255,255,255,0.85);
  --surface-2:  rgba(79,70,229,0.04);

  --indigo:       #4F46E5;
  --indigo-dark:  #3730A3;
  --indigo-light: #818CF8;
  --indigo-dim:   rgba(79,70,229,0.10);
  --indigo-glow:  rgba(79,70,229,0.25);

  --teal:         #0EA5E9;
  --teal-dim:     rgba(14,165,233,0.10);
  --teal-glow:    rgba(14,165,233,0.25);

  --coral:        #F43F5E;
  --coral-dim:    rgba(244,63,94,0.10);
  --coral-glow:   rgba(244,63,94,0.25);

  --amber:        #F59E0B;
  --green:        #10B981;

  --text:         #0F172A;
  --text-2:       #1E293B;
  --text-dim:     #475569;
  --text-mute:    #94A3B8;
  --text-light:   #CBD5E1;

  --border:       rgba(15,23,42,0.08);
  --border-md:    rgba(15,23,42,0.14);
  --border-indigo:rgba(79,70,229,0.25);

  --shadow-sm:  0 1px 3px rgba(15,23,42,0.07);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg:  0 16px 48px rgba(15,23,42,0.12);
  --shadow-xl:  0 32px 80px rgba(15,23,42,0.15);
  --shadow-indigo: 0 8px 32px rgba(79,70,229,0.25);
  --shadow-teal:   0 8px 32px rgba(14,165,233,0.25);
  --shadow-coral:  0 8px 32px rgba(244,63,94,0.25);

  --font-display: 'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:  72px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: none; }
::selection { background: var(--indigo); color: #fff; }

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.25;
}

/* ── CURSOR ── */
.cur { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
.cur-dot { width: 8px; height: 8px; background: var(--indigo); border-radius: 50%; position: absolute; transform: translate(-50%, -50%); box-shadow: 0 0 10px var(--indigo-glow); transition: width .15s, height .15s, background .2s; }
.cur-ring { width: 34px; height: 34px; border: 1.5px solid rgba(79,70,229,0.35); border-radius: 50%; position: absolute; transform: translate(-50%, -50%); transition: width .3s var(--ease), height .3s var(--ease), border-color .3s; }
body.hov .cur-dot { width: 14px; height: 14px; background: var(--coral); box-shadow: 0 0 14px var(--coral-glow); }
body.hov .cur-ring { width: 50px; height: 50px; border-color: rgba(244,63,94,0.4); }

#bgCanvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); position: relative; z-index: 2; }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 500; transition: background .4s, box-shadow .4s, transform .4s; }
#nav.solid { background: rgba(255,255,255,0.93); backdrop-filter: blur(24px); box-shadow: 0 1px 0 var(--border), var(--shadow-sm); }
#nav.hidden { transform: translateY(-100%); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-dim); position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--indigo); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--indigo); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 9px 22px; background: var(--indigo); color: #fff; border-radius: 8px; font-weight: 600; font-size: 0.84rem; transition: all .3s; box-shadow: var(--shadow-indigo); }
.nav-cta:hover { background: var(--indigo-dark); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: none; }
.hamburger span { height: 1.5px; background: var(--text); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 0; top: var(--nav-h); background: rgba(255,255,255,0.97); backdrop-filter: blur(30px); z-index: 499; display: flex; flex-direction: column; padding: 36px clamp(20px, 4vw, 64px); gap: 0; transform: translateX(100%); transition: transform .5s var(--ease); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text); padding: 18px 0; border-bottom: 1px solid var(--border); transition: color .2s, padding-left .2s; }
.mobile-nav a:hover { color: var(--indigo); padding-left: 8px; }

/* ── TAGS ── */
.tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--indigo); font-weight: 500; margin-bottom: 14px; }
.tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--indigo); border-radius: 2px; }
.tag.teal { color: var(--teal); } .tag.teal::before { background: var(--teal); }
.tag.coral { color: var(--coral); } .tag.coral::before { background: var(--coral); }
.tag.amber { color: var(--amber); } .tag.amber::before { background: var(--amber); }

/* ── GLASS CARDS ── */
.gcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .4s, transform .4s; position: relative; overflow: hidden; }
.gcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--indigo), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.gcard:hover { border-color: var(--border-indigo); box-shadow: var(--shadow-lg), 0 0 0 1px var(--indigo-dim); transform: translateY(-5px); }
.gcard:hover::before { transform: scaleX(1); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: var(--nav-h); position: relative; overflow: hidden; background: linear-gradient(160deg, #FFFFFF 0%, #F0F2FF 55%, #F5F0FF 100%); }
.hero-grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(var(--indigo-dim) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse at 65% 35%, black 0%, transparent 72%); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 { width: 520px; height: 520px; background: rgba(79,70,229,0.14); top: -80px; right: -60px; animation: blobF 12s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: rgba(14,165,233,0.11); bottom: 40px; left: -60px; animation: blobF 16s ease-in-out infinite reverse; }
.blob-3 { width: 280px; height: 280px; background: rgba(244,63,94,0.09); top: 35%; right: 18%; animation: blobF 10s ease-in-out infinite 3s; }
@keyframes blobF { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(20px,-25px) scale(1.04);} 66%{transform:translate(-12px,18px) scale(0.97);} }
#hero::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(79,70,229,0.3), rgba(14,165,233,0.3), transparent); animation: heroScan 9s linear infinite; pointer-events: none; z-index: 2; }
@keyframes heroScan { 0%{top:0;opacity:0;} 5%{opacity:1;} 90%{opacity:.4;} 100%{top:100%;opacity:0;} }

.hero-content { position: relative; z-index: 3; padding: 80px clamp(20px, 4vw, 64px); max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.1em; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 10px var(--indigo-glow); flex-shrink: 0; animation: dotBlink 2s ease-in-out infinite; }
@keyframes dotBlink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

.hero-h1 { font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 8rem); font-weight: 800; line-height: 0.93; letter-spacing: -0.04em; color: var(--text); }
.hero-h1 .line { overflow: hidden; display: block; }
.hero-h1 .scramble { display: inline-block; }
.hero-h1 em { font-style: normal; background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-h1 .outline { color: transparent; -webkit-text-stroke: 2px rgba(79,70,229,0.2); }

.hero-sub { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: var(--text-dim); line-height: 1.75; max-width: 540px; margin-top: 24px; margin-bottom: 44px; padding-left: 18px; border-left: 2px solid var(--indigo); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hstat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--indigo); line-height: 1; }
.hstat-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; padding: 13px 28px; border-radius: 10px; transition: all .3s var(--ease); cursor: none; }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); }
.btn-indigo:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79,70,229,0.4); }
.btn-outline { background: transparent; color: var(--indigo); border: 1.5px solid var(--border-indigo); }
.btn-outline:hover { background: var(--indigo-dim); transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(244,63,94,0.4); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--indigo); overflow: hidden; padding: 13px 0; position: relative; z-index: 2; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--indigo), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--indigo), transparent); }
.marquee-track { display: flex; white-space: nowrap; animation: mScroll 30s linear infinite; }
.marquee-item { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 24px; flex-shrink: 0; display: flex; align-items: center; gap: 20px; }
.msep { color: rgba(255,255,255,0.3); }
@keyframes mScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── SECTIONS ── */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section.alt { background: var(--bg-2); }
.section.alt2 { background: var(--bg-3); }
.sec-head { margin-bottom: 52px; }
h2.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 0.95; letter-spacing: -0.035em; color: var(--text); }
h2.display em { font-style: normal; background: linear-gradient(135deg, var(--indigo), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.body-lg { font-size: clamp(0.9rem, 1.4vw, 1.02rem); color: var(--text-dim); line-height: 1.85; max-width: 520px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 1; max-width: 500px; }
.about-orb { width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(79,70,229,0.16) 0%, rgba(14,165,233,0.07) 55%, transparent 75%); position: relative; animation: orbFloat 8s ease-in-out infinite; border: 1px solid rgba(79,70,229,0.10); box-shadow: 0 0 80px rgba(79,70,229,0.07); }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-16px) scale(1.03);} }
.about-orb-ring { position: absolute; inset: -6%; border: 1px dashed rgba(79,70,229,0.15); border-radius: 50%; animation: spin 22s linear infinite; }
.about-orb-ring-2 { position: absolute; inset: -18%; border: 1px dashed rgba(14,165,233,0.10); border-radius: 50%; animation: spin 38s linear infinite reverse; }
@keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.about-orb-node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 12px var(--indigo-glow); }
.about-data { position: absolute; bottom: -24px; left: 0; right: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.adata { padding: 16px 12px; text-align: center; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md); }
.adata-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--indigo); line-height: 1; }
.adata-label { font-family: var(--font-mono); font-size: 0.58rem; color: var(--text-mute); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pill { padding: 6px 14px; border: 1px solid var(--border-md); border-radius: 100px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-dim); background: var(--bg-2); transition: all .2s; cursor: default; }
.pill:hover { border-color: var(--border-indigo); color: var(--indigo); background: var(--indigo-dim); }

/* ── STATS BAND ── */
.stats-band { background: linear-gradient(135deg, var(--indigo) 0%, #6D28D9 50%, var(--teal) 100%); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 16px 28px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,3.6rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--font-mono); font-size: 0.68rem; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── INDUSTRIES ── */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ind-card { padding: 32px 28px; cursor: default; }
.ind-card-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-light); letter-spacing: 0.18em; }
.ind-icon-wrap { width: 52px; height: 52px; background: var(--indigo-dim); border: 1px solid var(--border-indigo); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; transition: all .3s; }
.ind-card:hover .ind-icon-wrap { background: var(--indigo); box-shadow: var(--shadow-indigo); }
.ind-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 10px; }
.ind-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ind-tag { font-family: var(--font-mono); font-size: 0.62rem; padding: 4px 10px; border: 1px solid var(--border); border-radius: 4px; color: var(--text-mute); transition: all .2s; }
.ind-card:hover .ind-tag { border-color: var(--border-indigo); color: var(--indigo); }

/* ── PHARMA ── */
.pharma-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ptab { font-family: var(--font-mono); font-size: 0.7rem; padding: 8px 16px; border: 1px solid var(--border-md); border-radius: 6px; color: var(--text-dim); background: var(--bg-4); cursor: none; transition: all .2s; letter-spacing: .06em; text-transform: uppercase; }
.ptab:hover, .ptab.on { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: var(--shadow-indigo); }
.product-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 6px; }
.pitem { font-family: var(--font-mono); font-size: 0.72rem; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; color: var(--text-dim); background: var(--bg-4); cursor: default; transition: all .2s; }
.pitem:hover { background: var(--indigo-dim); border-color: var(--border-indigo); color: var(--indigo); }
.pitem.hide { display: none; }
.pharma-notice { margin-top: 28px; padding: 22px 28px; background: linear-gradient(135deg, var(--indigo-dim), var(--teal-dim)); border: 1px solid var(--border-indigo); border-left: 3px solid var(--indigo); border-radius: 0 12px 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }
.pharma-notice strong { color: var(--text); }

/* ── TERMINAL / WHY ── */
.terminal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.terminal-box { background: #0D1117; border: 1px solid #30363D; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-xl); }
.terminal-bar { background: #161B22; border-bottom: 1px solid #30363D; padding: 10px 16px; display: flex; gap: 6px; align-items: center; }
.tbar-dot { width: 10px; height: 10px; border-radius: 50%; }
.tbar-dot.r{background:#FF5F57;} .tbar-dot.y{background:#FFBD2E;} .tbar-dot.g{background:#28C840;}
.tbar-title { font-family: var(--font-mono); font-size: 0.68rem; color: #6E7681; letter-spacing: .1em; margin-left: 8px; }
.terminal-body { padding: 24px; }
.tline { font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.9; }
.tline .prompt { color: #3FB950; }
.tline .cmd { color: #58A6FF; }
.tline .out { color: #8B949E; padding-left: 16px; }
.tline .hl { color: #3FB950; }
.tcursor { display: inline-block; width: 8px; height: 14px; background: #3FB950; animation: tcurBlink .9s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes tcurBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.why-reasons { display: flex; flex-direction: column; }
.wreason { padding: 24px 0; border-bottom: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start; transition: padding-left .3s var(--ease), background .2s; border-radius: 8px; }
.wreason:hover { padding-left: 12px; background: var(--indigo-dim); }
.wreason:last-child { border-bottom: none; }
.widx { font-family: var(--font-mono); font-size: 0.68rem; color: var(--indigo); letter-spacing: .12em; min-width: 36px; margin-top: 3px; font-weight: 600; }
.wreason h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.wreason p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.75; }

/* ── PROCESS ── */
.process-list { display: flex; flex-direction: column; position: relative; }
.process-list::before { content: ''; position: absolute; left: 31px; top: 32px; bottom: 32px; width: 1.5px; background: linear-gradient(to bottom, var(--indigo), var(--teal), transparent); opacity: .3; }
.pstep { display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.pstep:last-child { border-bottom: none; }
.pstep-num { width: 64px; height: 64px; background: var(--bg); border: 1.5px solid var(--border-indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 1rem; font-weight: 600; color: var(--indigo); flex-shrink: 0; z-index: 1; transition: all .3s; }
.pstep:hover .pstep-num { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); border-color: var(--indigo); }
.pstep-body { padding-top: 16px; }
.pstep-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.pstep-body p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.8; }

/* ── BRANDS ── */
.brands-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.brand-card { padding: 32px 24px; text-align: center; text-decoration: none; color: var(--text); position: relative; overflow: hidden; transition: all .4s var(--ease); }
.brand-arrow { position: absolute; top: 16px; right: 18px; font-size: 0.9rem; color: var(--indigo); opacity: 0; transition: all .3s; }
.brand-card:hover .brand-arrow { opacity: 1; transform: translate(2px,-2px); }
.brand-emoji { font-size: 2rem; margin-bottom: 14px; }
.brand-n { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.brand-d { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-mute); letter-spacing: .06em; }
.brand-s { font-size: 0.74rem; color: var(--indigo); margin-top: 8px; font-weight: 500; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.fgroup { margin-bottom: 18px; }
.flabel { display: block; font-family: var(--font-mono); font-size: 0.66rem; color: var(--text-mute); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 7px; }
.fcontrol { width: 100%; padding: 13px 16px; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); font-size: 0.9rem; transition: border-color .2s, box-shadow .2s, background .2s; }
.fcontrol:focus { border-color: var(--indigo); background: var(--bg); box-shadow: 0 0 0 3px var(--indigo-dim); }
.fcontrol::placeholder { color: var(--text-light); }
textarea.fcontrol { min-height: 110px; resize: vertical; }
select.fcontrol option { background: var(--bg); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsubmit { width: 100%; margin-top: 8px; padding: 14px; background: var(--indigo); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; border-radius: 10px; cursor: none; transition: all .3s; box-shadow: var(--shadow-indigo); display: flex; align-items: center; justify-content: center; gap: 10px; }
.fsubmit:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79,70,229,0.4); }

.contact-info-block h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,3vw,2.8rem); color: var(--text); line-height: 1.15; margin: 12px 0 16px; }
.contact-info-block p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 28px; }
.crows { display: flex; flex-direction: column; gap: 12px; }
.crow { display: flex; align-items: center; gap: 14px; font-size: 0.86rem; color: var(--text-dim); }
.crow a { color: var(--text); transition: color .2s; }
.crow a:hover { color: var(--indigo); }
.crow-icon { width: 38px; height: 38px; min-width: 38px; background: var(--indigo-dim); border: 1px solid var(--border-indigo); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all .2s; }
.crow:hover .crow-icon { background: var(--indigo); }
.contact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.cchip { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 8px; font-size: 0.84rem; font-weight: 500; text-decoration: none; transition: all .25s; }
.cchip:hover { transform: translateX(4px); }
.chip-wa { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #16A34A; }
.chip-tg { background: rgba(0,136,204,.1); border: 1px solid rgba(0,136,204,.3); color: #0369A1; }
.chip-em { background: var(--bg-2); border: 1px solid var(--border-md); color: var(--text-dim); }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 36px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 14px; }
.footer-about { font-size: .82rem; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.fsoc { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: .85rem; }
.fsoc:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-mono); font-weight: 600; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--indigo-light); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: .68rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── FLOAT DOCK ── */
.float-dock { position: fixed; bottom: 28px; right: 28px; z-index: 800; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fbtn { display: flex; align-items: center; gap: 8px; padding: 11px 16px 11px 12px; border-radius: 100px; font-family: var(--font-body); font-weight: 600; font-size: .84rem; text-decoration: none; max-width: 50px; overflow: hidden; white-space: nowrap; transition: max-width .4s var(--ease), transform .2s, box-shadow .2s; }
.fbtn:hover { max-width: 200px; transform: translateX(-4px); }
.fbtn-wa { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.fbtn-tg { background: #0088cc; color: #fff; box-shadow: 0 4px 16px rgba(0,136,204,.4); }
.fbtn svg { flex-shrink: 0; }
.fbtn-text { opacity: 0; transition: opacity .15s .1s; white-space: nowrap; }
.fbtn:hover .fbtn-text { opacity: 1; }

/* ── REVEAL ── */
[data-r] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-r].on { opacity: 1; transform: translateY(0); }
[data-r-d="1"]{transition-delay:.1s;} [data-r-d="2"]{transition-delay:.2s;}
[data-r-d="3"]{transition-delay:.3s;} [data-r-d="4"]{transition-delay:.4s;}

/* ── BACK TO TOP ── */
.btt { position: fixed; bottom: 28px; left: 28px; width: 42px; height: 42px; background: var(--bg); border: 1.5px solid var(--border-md); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--text-dim); cursor: none; z-index: 800; opacity: 0; pointer-events: none; transition: all .3s; box-shadow: var(--shadow-md); }
.btt.on { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .about-grid, .terminal-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width:768px) {
  body { cursor: auto; }
  .cur, .cur-dot, .cur-ring { display: none; }
  button, a { cursor: pointer; }
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }
  .ind-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .process-list::before { display: none; }
  .pstep { grid-template-columns: 48px 1fr; gap: 18px; }
  .pstep-num { width: 48px; height: 48px; }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 4.5rem); }
  .float-dock { bottom: 14px; right: 14px; }
  .btt { bottom: 14px; left: 14px; }
  .about-data { position: static; margin-top: 20px; }
}
@media (max-width:480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .product-list { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
