/* =========================================================
   CAELTHIC GROWTH STUDIO — Orbital Growth Command Center
   Premium dark Web3 / SaaS landing styles
   ========================================================= */

:root {
  --bg:        #060605;
  --bg-2:      #0a0907;
  --bg-3:      #100d09;
  --panel:     rgba(20, 16, 10, 0.66);
  --panel-2:   rgba(12, 10, 7, 0.82);

  --gold:        #d8a94e;
  --gold-light:  #ffe4a0;
  --gold-bright: #fff3c8;
  --gold-deep:   #7e5417;
  --gold-rim:    #b98a35;

  --ink:    #f4efe3;
  --muted:  #a59c8b;
  --muted-2:#7d756a;

  --line:   rgba(216, 169, 78, 0.16);
  --line-2: rgba(255, 255, 255, 0.06);
  --glow:   rgba(216, 169, 78, 0.30);
  --tech:   oklch(0.80 0.08 208);   /* soft cyan tech glow, used sparingly */

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(216,169,78,0.32); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.02;
}

p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Atmosphere: fixed background layers ---------- */
.atmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmos::before {
  /* deep vignette + warm core glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 78% -5%, rgba(216,169,78,0.13), transparent 48%),
    radial-gradient(90% 70% at 10% 110%, rgba(120,80,28,0.10), transparent 55%),
    radial-gradient(140% 120% at 50% 50%, transparent 55%, rgba(0,0,0,0.6));
}
.atmos .beam {
  position: absolute;
  top: -30%;
  width: 46vw;
  height: 160%;
  filter: blur(70px);
  opacity: 0.5;
  transform: rotate(14deg);
}
.atmos .beam.b1 { left: 50%; background: radial-gradient(closest-side, rgba(216,169,78,0.14), transparent); }
.atmos .beam.b2 { left: 8%; background: radial-gradient(closest-side, rgba(91,196,214,0.06), transparent); transform: rotate(-18deg); }

/* film grain */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 7s steps(6) infinite;
  mix-blend-mode: overlay;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 100% { transform: translate(-8%, 6%); }
}

.app { position: relative; z-index: 2; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 56px 0; position: relative; }
.section-sm { padding: 26px 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  max-width: 760px;
  text-wrap: balance;
}
.sec-head .sub {
  color: var(--muted);
  max-width: 380px;
  font-size: 16px;
  line-height: 1.7;
}

/* gold gradient text */
.gold-text {
  background: linear-gradient(120deg, var(--gold-bright) 0%, var(--gold) 42%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Glass panel & cards ---------- */
.panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 42%),
    var(--panel);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.panel.hov { transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.panel.hov::after {
  /* light sweep + micro grid on hover */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255,228,160,0.07) 50%, transparent 60%),
    linear-gradient(rgba(216,169,78,0.05) 1px, transparent 1px) 0 0 / 100% 26px,
    linear-gradient(90deg, rgba(216,169,78,0.05) 1px, transparent 1px) 0 0 / 26px 100%;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.panel.hov:hover {
  transform: translateY(-8px);
  border-color: rgba(216,169,78,0.5);
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.95), 0 0 60px -20px var(--glow), inset 0 1px 0 rgba(255,255,255,0.06);
}
.panel.hov:hover::after { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  padding: 17px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 52%, var(--gold-deep));
  box-shadow: 0 14px 36px -14px rgba(216,169,78,0.7), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -16px rgba(216,169,78,0.85), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { color: var(--gold-light); border-color: rgba(216,169,78,0.45); transform: translateY(-3px); }

/* chips */
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.05em;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  color: #d6ccb9;
  padding: 7px 12px;
  border-radius: 999px;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid var(--line-2);
  background: rgba(6,6,5,0.66);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}
.header.scrolled { background: rgba(6,6,5,0.9); border-color: var(--line); }
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; background: none; border: none; padding: 0; cursor: pointer; }
.brand-coin {
  position: relative; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 38% 30%, #2c2010, #0a0806 70%);
  border: 1px solid rgba(216,169,78,0.3);
  box-shadow: inset 0 1px 4px rgba(255,228,160,0.18), 0 6px 16px -8px rgba(0,0,0,0.8);
  transition: box-shadow 0.35s;
}
.brand:hover .brand-coin { box-shadow: inset 0 1px 4px rgba(255,228,160,0.25), 0 0 22px -4px var(--glow); }
.brand-coin-rim { position: absolute; inset: 3px; border-radius: 50%; background: conic-gradient(from 200deg, #6e4a16, #ffe9af 14%, #8a5d1d 34%, #ffe9af 64%, #6e4a16); -webkit-mask: radial-gradient(circle, transparent 0 84%, #000 85%); mask: radial-gradient(circle, transparent 0 84%, #000 85%); opacity: 0.9; }
.brand-coin span { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.04em;
  background: linear-gradient(150deg, #fff6d8, #d8a94e 60%, #7e5417); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand-txt .name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: 0.34em; transition: color 0.3s;
  color: #f6efe1;
}
.brand:hover .name { color: var(--gold-light); }
.brand-txt .tag { font-size: 11px; color: var(--muted-2); letter-spacing: 0.18em; font-family: var(--font-mono); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav button {
  background: none; border: none; color: var(--muted);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.25s; position: relative; padding: 4px 0;
}
.nav button::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav button:hover { color: var(--gold-light); }
.nav button:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 14px; }
.lang {
  display: flex; padding: 4px; gap: 2px;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,0.03);
}
.lang button {
  background: none; border: none; color: var(--muted);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; transition: all 0.25s;
}
.lang button.on { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1206; }

.header-cta {
  border: 1px solid rgba(216,169,78,0.4); background: rgba(216,169,78,0.08);
  color: var(--gold-light); border-radius: 999px;
  padding: 11px 22px; font-size: 13px; font-weight: 600; transition: all 0.3s;
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: rgba(216,169,78,0.18); box-shadow: 0 0 30px -10px var(--glow); }

.menu-btn { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: 56px; padding-bottom: 60px; }
.hero-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 40px; align-items: center;
  min-height: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  border: 1px solid rgba(216,169,78,0.28); background: rgba(216,169,78,0.07);
  color: var(--gold-light); border-radius: 999px; padding: 9px 16px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-wordmark { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-wordmark .wm-coin {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: radial-gradient(circle at 38% 30%, #2c2010, #0a0806 70%);
  border: 1px solid rgba(216,169,78,0.35);
  box-shadow: inset 0 1px 4px rgba(255,228,160,0.2), 0 0 18px -6px var(--glow);
}
.hero-wordmark .wm-coin span { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: -0.04em;
  background: linear-gradient(150deg, #fff6d8, #d8a94e 60%, #7e5417); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-wordmark .wm-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.34em; color: #f6efe1; }
.hero-wordmark .wm-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); padding-left: 12px; border-left: 1px solid var(--line); }

.hero h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.96; letter-spacing: -0.05em;
  margin: 26px 0 0; max-width: 12ch;
}
.hero .intro { margin-top: 26px; max-width: 560px; font-size: 19px; line-height: 1.6; color: #c2b9a8; }
.hero .painbox {
  margin-top: 26px; max-width: 560px;
  border: 1px solid rgba(216,169,78,0.22); background: rgba(216,169,78,0.06);
  border-radius: var(--r-md); padding: 18px 20px; color: #ecd9ad; line-height: 1.6;
  position: relative;
}
.hero .painbox::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px;
  background: linear-gradient(var(--gold-light), var(--gold-deep)); border-radius: 3px;
}
.hero .painbox p { padding-left: 14px; font-size: 15.5px; }

.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; max-width: 600px; }
.metric {
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.025);
  border-radius: var(--r-md); padding: 16px 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.metric:hover { border-color: rgba(216,169,78,0.4); transform: translateY(-4px); }
.metric .num { font-family: var(--font-display); font-weight: 700; font-size: 30px; }
.metric .lbl { font-size: 12px; color: var(--muted-2); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------- Orbital stage ---------- */
.orbit-wrap { display: grid; place-items: center; min-height: 600px; }
.stage {
  position: relative; width: 600px; height: 600px;
  max-width: 100%;
}
.stage svg.web { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(216,169,78,0.14); }
.ring.r1 { inset: 32%; }
.ring.r2 { inset: 22%; border-color: rgba(255,228,160,0.10); }
.ring.r3 { inset: 11%; }
.ring.spin1 { animation: spin 30s linear infinite; }
.ring.spin2 { animation: spin 44s linear infinite reverse; border-style: dashed; border-color: rgba(216,169,78,0.10); }
.ring.spin3 { animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* The CS coin */
.coin {
  position: absolute; left: 50%; top: 50%;
  width: 320px; height: 320px; transform: translate(-50%,-50%);
  z-index: 6;
  animation: float 7s ease-in-out infinite;
  display: grid; place-items: center;
}
@keyframes float { 0%,100%{ transform: translate(-50%,-50%) translateY(0); } 50%{ transform: translate(-50%,-50%) translateY(-14px); } }
.coin-glow {
  position: absolute; inset: 4%; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(216,169,78,0.4), rgba(216,169,78,0.12) 45%, transparent 66%);
  filter: blur(26px);
  animation: coinGlow 5s ease-in-out infinite;
}
@keyframes coinGlow { 0%,100%{ opacity: 0.75; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.06); } }
.coin-img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.7)) drop-shadow(0 0 26px rgba(216,169,78,0.28));
}

/* nodes */
.node {
  position: absolute; transform: translate(-50%,-50%); z-index: 8;
  text-align: center;
  animation: nodePulse 3.4s ease-in-out infinite;
}
@keyframes nodePulse { 0%,100%{ transform: translate(-50%,-50%) scale(1);} 50%{ transform: translate(-50%,-50%) scale(1.06);} }
.node-core {
  width: 50px; height: 50px; border-radius: 16px; margin: 0 auto;
  display: grid; place-items: center;
  border: 1px solid rgba(216,169,78,0.4);
  background: linear-gradient(150deg, rgba(46,33,14,0.95), rgba(8,7,5,0.95));
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,228,160,0.12);
  transition: box-shadow 0.4s, border-color 0.4s;
}
.node.flash .node-core { box-shadow: 0 0 30px 2px var(--glow), inset 0 1px 0 rgba(255,228,160,0.3); border-color: var(--gold-light); }
.node-core span { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.node-label {
  margin-top: 9px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #c8bba2;
  border: 1px solid var(--line-2); background: rgba(0,0,0,0.5);
  border-radius: 999px; padding: 4px 9px; white-space: nowrap; display: inline-block;
}

/* ---------- header socials + pulsing CTA ---------- */
.socials { display: flex; gap: 6px; }
.soc { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); transition: border-color .25s, background .25s, transform .25s; }
.soc:hover { border-color: rgba(216,169,78,.5); background: rgba(216,169,78,.12); transform: translateY(-2px); }
.brand-coin-img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(216,169,78,.35)); transition: filter .3s, transform .3s; }
.brand:hover .brand-coin-img { filter: drop-shadow(0 0 18px rgba(216,169,78,.65)); transform: scale(1.05); }
.wm-coin-img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(216,169,78,.4)); }
@keyframes ctaPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(216,169,78,0); } 50% { box-shadow: 0 0 24px -2px rgba(216,169,78,.6); } }
.header-cta.pulse { animation: ctaPulse 2.6s ease-in-out infinite; }

/* ---------- process bulbs ---------- */
.pipeline-line .pfill { position:absolute; top:-1px; left:0; height:3px; border-radius:3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); box-shadow: 0 0 14px var(--glow); transition: width .8s var(--ease); }
.bulb { position: relative; width: 30px; height: 40px; margin: 0 auto 26px; }
.bulb-glass { position:absolute; top:0; left:3px; width:24px; height:24px; border-radius:50%; border:1px solid rgba(216,169,78,.32); background: radial-gradient(circle at 38% 32%, rgba(60,45,20,.55), rgba(8,7,5,.92)); transition: border-color .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease); }
.bulb-base { position:absolute; top:23px; left:10px; width:10px; height:10px; border-radius:0 0 3px 3px; background: linear-gradient(#5f4a1d, #241b0d); border:1px solid rgba(216,169,78,.3); border-top:none; }
.bulb.on .bulb-glass { border-color: var(--gold-light); background: radial-gradient(circle at 40% 34%, #fff3c8, #ffd982 45%, #b07d22 86%); box-shadow: 0 0 22px 4px rgba(255,217,138,.7), 0 0 46px 9px rgba(216,169,78,.4); }
.bulb.on { animation: bulbPop .5s var(--ease); }
@keyframes bulbPop { 0%{ transform: scale(.82);} 60%{ transform: scale(1.14);} 100%{ transform: scale(1);} }

/* ---------- contact motivation + submit states ---------- */
.contact-points { list-style:none; margin: 26px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; }
.contact-points li { display:flex; align-items:center; gap:11px; font-size:15px; color:#d2c8b6; }
.contact-points .cp-i { width:20px; height:20px; border-radius:6px; flex-shrink:0; display:grid; place-items:center; color: var(--gold-light); background: rgba(216,169,78,.12); border:1px solid rgba(216,169,78,.4); }
.spinner { width:15px; height:15px; border-radius:50%; border:2px solid rgba(26,18,6,.35); border-top-color:#1a1206; animation: spin .7s linear infinite; display:inline-block; }
form.is-sending { pointer-events:none; }
.form-success { text-align:center; padding: 18px 6px; animation: detailIn .4s var(--ease); }
.form-success .ck { position: relative; width: 72px; height:72px; border-radius:50%; margin:0 auto 22px; display:grid; place-items:center; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 0 44px var(--glow); animation: ckPop .55s var(--ease); }
@keyframes ckPop { 0%{ transform: scale(0); } 55%{ transform: scale(1.15);} 100%{ transform: scale(1);} }
.form-success .spark { position:absolute; top:50%; left:50%; width:7px; height:7px; margin:-3.5px; border-radius:50%; background: var(--gold-light); box-shadow: 0 0 9px var(--gold-light); opacity:0; animation: sparkPop 1s ease-out .25s forwards; }
.form-success .spark.s1{ --tx:-48px; --ty:-30px; }
.form-success .spark.s2{ --tx:0px;   --ty:-54px; }
.form-success .spark.s3{ --tx:48px;  --ty:-30px; }
.form-success .spark.s4{ --tx:-44px; --ty:30px; }
.form-success .spark.s5{ --tx:0px;   --ty:54px; }
.form-success .spark.s6{ --tx:44px;  --ty:30px; }
@keyframes sparkPop { 0%{ opacity:0; transform: translate(0,0) scale(.2);} 25%{opacity:1;} 100%{ opacity:0; transform: translate(var(--tx),var(--ty)) scale(1);} }
.form-success h3 { font-size: 24px; }
.form-success p { margin-top: 14px; color: var(--muted); line-height: 1.65; }
.btn:disabled { opacity:.8; cursor: default; }

/* ---------- magnetic buttons ---------- */
.magnetic { transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease); will-change: transform; }

/* ---------- 3D background objects (parallax on scroll) ---------- */
.scene3d { position: fixed; inset:0; z-index:-1; pointer-events:none; overflow:hidden; perspective: 1000px; }
.obj { position:absolute; will-change: transform; }
.obj.ring3d { border-radius:50%; border:1.5px solid rgba(216,169,78,.16); box-shadow: inset 0 0 60px rgba(216,169,78,.05); }
.obj.ring3d::after { content:""; position:absolute; inset:14%; border-radius:50%; border:1px solid rgba(216,169,78,.1); }
.obj.orb { border-radius:50%; background: radial-gradient(circle at 34% 30%, rgba(70,53,24,.5), rgba(8,7,5,.18) 68%, transparent); border:1px solid rgba(216,169,78,.12); filter: blur(.3px); }
.obj.poly { border:1.5px solid rgba(216,169,78,.14); border-radius:18px; background: linear-gradient(150deg, rgba(46,33,14,.18), transparent); }
.obj.glowdot { border-radius:50%; background: radial-gradient(circle, rgba(255,228,160,.5), transparent 70%); filter: blur(2px); }

/* =========================================================
   PAIN CARDS
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card { padding: 30px; }
.pain-card .sym {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px;
  border: 1px solid rgba(216,169,78,0.35);
  background: linear-gradient(150deg, rgba(46,33,14,0.9), rgba(8,7,5,0.9));
  display: grid; place-items: center;
}
.pain-card h3 { font-size: 21px; }
.pain-card p { margin-top: 12px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.pain-card .idx { font-family: var(--font-mono); font-size: 12px; color: var(--gold); }

/* =========================================================
   SERVICES
   ========================================================= */
.grid-svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  padding: 28px; min-height: 300px; cursor: pointer; position: relative;
}
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  border: 1px solid rgba(216,169,78,0.4);
  background: linear-gradient(150deg, #241a0c, #060503);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.svc-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--muted-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 11px; text-transform: lowercase; }
.svc h3 { font-size: 23px; }
.svc .short { margin-top: 14px; color: var(--muted); line-height: 1.62; font-size: 15.5px; }
.svc .more { margin-top: 20px; font-family: var(--font-mono); font-size: 12.5px; color: var(--gold-light); letter-spacing: 0.08em; }

.svc-detail {
  position: absolute; inset: 12px; z-index: 20;
  border-radius: 20px; border: 1px solid rgba(216,169,78,0.4);
  background: rgba(6,6,5,0.97); backdrop-filter: blur(10px);
  padding: 22px; overflow: auto;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.95);
  animation: detailIn 0.32s var(--ease);
}
@keyframes detailIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.svc-detail .dh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.svc-detail .dh .dt { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.svc-detail .dh .dn { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }
.infobox { border-radius: 14px; padding: 13px 15px; margin-bottom: 11px; }
.infobox .il { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px; }
.infobox p { font-size: 13.5px; line-height: 1.55; color: #e3d8c2; }
.infobox.b1 { border: 1px solid rgba(216,169,78,0.25); background: rgba(216,169,78,0.08); }
.infobox.b2 { border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); }
.svc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 12px; }
.svc-chips .chip { font-size: 10.5px; padding: 5px 10px; }
.proofbox { border-radius: 14px; padding: 13px 15px; border: 1px solid rgba(216,169,78,0.25); background: rgba(216,169,78,0.09); font-size: 13px; line-height: 1.5; color: #f0dcae; }
.proofbox b { color: var(--gold-light); }

/* service custom symbols (CSS-drawn) */
.sym-mark { position: relative; width: 26px; height: 26px; }

/* =========================================================
   PROCESS PIPELINE
   ========================================================= */
.pipeline { position: relative; }
.pipeline-line { position: absolute; top: 11px; height: 2px; border-radius: 2px; background: rgba(216,169,78,0.18); overflow: visible; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.step { position: relative; text-align: center; }
.step .pnum { font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.step h3 { font-size: 22px; margin-top: 8px; }
.step p { margin-top: 12px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   CASES
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case { padding: 0; overflow: hidden; }
.case-body { padding: 28px 28px 28px; }
.case-body .ck { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.case-body .ckl { display: flex; align-items: center; gap: 12px; }
.case-ico {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  border: 1px solid rgba(216,169,78,0.4);
  background: linear-gradient(150deg, #241a0c, #060503);
  display: grid; place-items: center;
}
.case-kind { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.case-badge { font-family: var(--font-mono); font-size: 11px; color: #1a1206; background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-radius: 999px; padding: 6px 13px; font-weight: 700; white-space: nowrap; }
.case-body h3 { font-size: 23px; }
.case-body p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.62; }

.case-scope { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.case-scope .cs-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.case-scope ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.case-scope li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #d6ccb9; }
.case-scope li svg { flex-shrink: 0; }
.case-stats { margin-top: 22px; display: flex; gap: 14px; }
.cstat { flex: 1; border: 1px solid var(--line-2); background: rgba(255,255,255,0.025); border-radius: 14px; padding: 14px 16px; }
.cstat .cv { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; }
.cstat .cl { margin-top: 6px; font-size: 12px; color: var(--muted-2); font-family: var(--font-mono); letter-spacing: 0.02em; }

/* =========================================================
   REVIEWS MARQUEE
   ========================================================= */
.marquee { position: relative; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 56s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review {
  width: 340px; flex-shrink: 0; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 50%), var(--panel);
  transition: border-color 0.3s, transform 0.3s;
}
.review:hover { border-color: rgba(216,169,78,0.5); transform: translateY(-5px); }
.review .stars { color: var(--gold-light); letter-spacing: 2px; font-size: 13px; }
.review p { margin-top: 14px; font-size: 14.5px; line-height: 1.6; color: #d6ccb9; min-height: 92px; }
.review .who { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.review .av { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(150deg, #2a1f0e, #080705); border: 1px solid rgba(216,169,78,0.3); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--gold-light); }
.review .who .nm { font-weight: 700; font-size: 14.5px; }
.review .who .pr { font-size: 11.5px; color: var(--muted-2); font-family: var(--font-mono); }

/* =========================================================
   TEAM
   ========================================================= */
.grid-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role { padding: 28px; }
.role-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.role-ico {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(150deg, #2c2010, #060503);
  border: 1px solid rgba(216,169,78,0.4);
  box-shadow: inset 0 1px 0 rgba(255,228,160,0.12), 0 14px 30px -16px rgba(0,0,0,0.9);
  display: grid; place-items: center;
}
.role-dots { display: flex; gap: 5px; }
.role-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(216,169,78,0.45); }
.role-dots i:first-child { background: var(--gold-light); box-shadow: 0 0 8px var(--glow); }
.role h3 { font-size: 19px; }
.role p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.58; }
.role-skills { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.role-skills .skill {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.02em;
  border: 1px solid var(--line); background: rgba(216,169,78,0.07); color: var(--gold-light);
  padding: 6px 11px; border-radius: 999px;
}

/* =========================================================
   STACK CLOUD
   ========================================================= */
.stack-cloud { display: flex; flex-wrap: wrap; gap: 12px; max-width: 920px; }
.stack-tag {
  font-family: var(--font-mono); font-size: 13.5px; letter-spacing: 0.02em;
  border: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0)), var(--panel);
  color: #d8cdb8; padding: 12px 18px; border-radius: 14px;
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s, box-shadow 0.3s;
  animation: drift 6s ease-in-out infinite;
}
.stack-tag:hover { transform: translateY(-6px) scale(1.04); border-color: rgba(216,169,78,0.55); color: var(--gold-light); box-shadow: 0 0 30px -8px var(--glow); }
@keyframes drift { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-5px);} }

/* =========================================================
   TRUST
   ========================================================= */
.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
.stat-tile { padding: 26px 24px; position: relative; }
.stat-tile .st-ico { position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 1px solid rgba(216,169,78,0.4); background: linear-gradient(150deg, #241a0c, #070503); }
.stat-tile .sv { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; }
.stat-tile .sl { margin-top: 10px; color: var(--muted); font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.02em; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust { padding: 30px; }
.trust .ti { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.trust .ti .ico { width: 46px; height: 46px; border-radius: 13px; border: 1px solid rgba(216,169,78,0.4); background: linear-gradient(150deg, #241a0c, #070503); display: grid; place-items: center; }
.trust .ti-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.trust h3 { font-size: 21px; }
.trust p { margin-top: 12px; color: var(--muted); line-height: 1.62; font-size: 15px; }
.trust .checks { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 11px; }
.trust .checks li { list-style: none; display: flex; align-items: center; gap: 11px; font-size: 14px; color: #d2c8b6; }
.trust .checks .ck-i { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; display: grid; place-items: center; background: rgba(216,169,78,0.12); border: 1px solid rgba(216,169,78,0.4); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-left h2 { font-size: clamp(34px, 4.2vw, 56px); max-width: 14ch; }
.contact-left p { margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 440px; }
.opt-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.opt {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.02em;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); color: #cfc5b2;
  padding: 11px 18px; border-radius: 999px; transition: all 0.25s;
}
.opt:hover { border-color: rgba(216,169,78,0.4); color: var(--gold-light); }
.opt.on { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a1206; border-color: transparent; font-weight: 700; }

.form-panel { padding: 34px; position: relative; }
.form-panel::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); padding: 1px; background: linear-gradient(160deg, rgba(216,169,78,0.5), transparent 40%, transparent 70%, rgba(216,169,78,0.3)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 14px 16px; color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(216,169,78,0.6); box-shadow: 0 0 0 3px rgba(216,169,78,0.12); background: rgba(255,255,255,0.05); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 13px; color: var(--muted-2); margin-top: 4px; line-height: 1.5; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ck { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: grid; place-items: center; box-shadow: 0 0 40px var(--glow); }
.form-success h3 { font-size: 24px; }
.form-success p { margin-top: 14px; color: var(--muted); line-height: 1.65; }

/* =========================================================
   QUIZ POPUP
   ========================================================= */
.quiz {
  position: fixed; bottom: 22px; right: 22px; z-index: 80; width: 350px; max-width: calc(100vw - 32px);
  max-height: calc(100vh - 44px); overflow-y: auto;
  border: 1px solid rgba(216,169,78,0.32); border-radius: 22px;
  background: rgba(8,8,6,0.96); backdrop-filter: blur(16px);
  padding: 22px; box-shadow: 0 30px 70px -24px rgba(0,0,0,0.9), 0 0 50px -20px var(--glow);
  animation: quizIn 0.5s var(--ease);
}
@keyframes quizIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }
.quiz .qh { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.quiz .qbadge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 7px; }
.quiz .qbadge .ai { width: 22px; height: 22px; border-radius: 7px; border: 1px solid rgba(216,169,78,0.4); background: linear-gradient(150deg, #241a0c, #070503); display: grid; place-items: center; }
.quiz h4 { font-size: 18px; margin-top: 12px; }
.quiz p { margin-top: 10px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.quiz .qclose { background: none; border: none; color: var(--muted-2); font-size: 12px; font-family: var(--font-mono); transition: color 0.25s; }
.quiz .qclose:hover { color: var(--gold-light); }
.quiz .btn { width: 100%; margin-top: 18px; padding: 14px; }
.quiz .qh { margin-bottom: 4px; }
.qbody { animation: detailIn 0.3s var(--ease); }
.qprog { margin-top: 6px; margin-bottom: 14px; }
.qprog-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.qprog-bar { margin-top: 8px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.06); overflow: hidden; }
.qprog-bar > div { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); box-shadow: 0 0 10px var(--glow); transition: width 0.4s var(--ease); }
.qq { font-size: 17px; margin-top: 4px; }
.qopts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.qopt { display: flex; align-items: center; gap: 10px; text-align: left; width: 100%;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); color: #d6ccb9;
  padding: 11px 13px; border-radius: 12px; font-size: 13.5px; transition: all 0.2s var(--ease); }
.qopt:hover { border-color: rgba(216,169,78,0.45); color: var(--gold-light); transform: translateX(3px); }
.qopt .qtick { width: 16px; height: 16px; border-radius: 5px; flex-shrink: 0; border: 1px solid rgba(216,169,78,0.4); background: rgba(216,169,78,0.08); transition: all 0.2s; }
.qopt.on { border-color: var(--gold); background: rgba(216,169,78,0.12); color: var(--gold-light); }
.qopt.on .qtick { background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 0 10px var(--glow); }
.qback { margin-top: 12px; background: none; border: none; color: var(--muted-2); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; transition: color 0.2s; }
.qback:hover { color: var(--gold-light); }
.qdone { text-align: center; }
.qdone .qcheck { width: 54px; height: 54px; border-radius: 50%; margin: 4px auto 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 0 34px var(--glow); animation: ckPop 0.5s var(--ease); }
.qpick { margin-top: 12px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line-2); padding: 40px 0; margin-top: 40px; }
.footer-in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.footer-link { color: var(--gold-light); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; transition: color 0.25s; }
.footer-link:hover { color: var(--gold-bright); }

/* =========================================================
   SECURE DEAL
   ========================================================= */
.deal-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deal-step { padding: 28px; position: relative; }
.deal-step .ds-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.deal-step .ds-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.deal-step .ds-arrow { font-size: 22px; color: var(--gold); opacity: 0.6; }
.deal-step h3 { font-size: 21px; }
.deal-step p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.deal-step .ds-pay { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.deal-step .ds-bar { flex: 1; height: 7px; border-radius: 5px; background: rgba(255,255,255,0.06); overflow: hidden; }
.deal-step .ds-bar span { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); box-shadow: 0 0 12px var(--glow); }
.deal-step .ds-pay-lbl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--gold-light); white-space: nowrap; }

.deal-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.deal-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.02em; color: #e7ddc9;
  border: 1px solid rgba(216,169,78,0.3); background: rgba(216,169,78,0.07); border-radius: 999px; padding: 10px 16px; }

.deal-pay { margin-top: 20px; }
.deal-pay .dp-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 12px; }
.deal-pay .dp-row { display: flex; flex-wrap: wrap; gap: 9px; }
.deal-pay .dp-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: #d8cdb8;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); border-radius: 11px; padding: 9px 14px; transition: border-color 0.25s, color 0.25s; }
.deal-pay .dp-chip:hover { border-color: rgba(216,169,78,0.5); color: var(--gold-light); }

.deal-foot { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 26px;
  border-top: 1px solid var(--line-2); padding-top: 26px; }
.deal-stack .dst-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 12px; }
.deal-stack .dst-row { display: flex; flex-wrap: wrap; gap: 9px; }
.deal-stack .dst-chip { font-family: var(--font-mono); font-size: 13px; color: #d8cdb8; border: 1px solid var(--line); background: rgba(255,255,255,0.03); border-radius: 11px; padding: 9px 14px; transition: border-color 0.25s, color 0.25s; }
.deal-stack .dst-chip:hover { border-color: rgba(216,169,78,0.5); color: var(--gold-light); }

.deal-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.deal-stat { text-align: center; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 50%), var(--panel); }
.deal-stat .dsv { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; }
.deal-stat .dsl { margin-top: 9px; color: var(--muted); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.02em; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* reduce motion */
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after { animation: none !important; }
.reduce-motion .reveal { opacity: 1 !important; transform: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .orbit-wrap { order: -1; min-height: 470px; }
  .stage { transform: scale(0.74); }
  .nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-svc, .grid-team, .trust-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pipeline-line { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .nav, .lang { display: none; }
  .header-cta { padding: 9px 16px; font-size: 12px; white-space: normal; line-height: 1.1; text-align: center; }
  .grid-svc, .grid-team, .trust-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(38px, 11vw, 58px); }
  .orbit-wrap { min-height: 330px; }
  .stage { transform: scale(0.52); }
  .field-row { grid-template-columns: 1fr; }
  .sec-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .quiz { left: 16px; right: 16px; width: auto; }
}
