/* ============================================================
   Awesome Factory — Cosmic Blueprint
   Deep navy · gold orbital linework · sacred geometry
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --void:       #100e24;
  --void-2:     #161334;
  --ink:        #0a0918;
  --panel:      #1b1740;
  --panel-2:    #221d4e;
  --line:       rgba(233, 162, 61, 0.16);
  --line-soft:  rgba(241, 237, 226, 0.08);

  --cream:      #f2eee3;
  --muted:      #b7b1cf;
  --dim:        #8b85a8;

  --orange:     #e2763c;
  --orange-2:   #f3924f;
  --gold:       #e9a23d;
  --purple:     #6357d6;
  --purple-2:   #897cf0;
  --crimson:    #d53e5c;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --maxw: 1200px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ---- Cosmic backdrop ---- */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(99, 87, 214, 0.22), transparent 60%),
    radial-gradient(900px 700px at 5% 15%, rgba(226, 118, 60, 0.10), transparent 55%),
    radial-gradient(1000px 900px at 50% 110%, rgba(137, 124, 240, 0.12), transparent 60%),
    var(--void);
}
.starfield::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(242,238,227,0.9), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(242,238,227,0.7), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(233,162,61,0.8), transparent),
    radial-gradient(1px 1px at 85% 65%, rgba(242,238,227,0.6), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(137,124,240,0.8), transparent),
    radial-gradient(1.5px 1.5px at 60% 50%, rgba(242,238,227,0.5), transparent),
    radial-gradient(1px 1px at 92% 35%, rgba(242,238,227,0.7), transparent),
    radial-gradient(1px 1px at 33% 12%, rgba(233,162,61,0.6), transparent);
  background-repeat: repeat;
  background-size: 700px 700px;
  opacity: 0.55;
  animation: drift 120s linear infinite;
}
@keyframes drift { to { background-position: 700px 700px; } }

/* grain */
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: '✦'; color: var(--orange); font-size: 0.8em; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 18px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.accent { color: var(--orange); }
.accent-p { color: var(--purple-2); }

/* ============================================================
   Header / Nav
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(16, 14, 36, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo img { height: 46px; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  position: relative; transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--orange); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center;
  gap: 10px; transition: transform .2s ease, box-shadow .3s ease, background .25s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #1a0f06; box-shadow: 0 10px 30px -8px rgba(226, 118, 60, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(226, 118, 60, 0.75); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(233, 162, 61, 0.06); }
.btn-block { width: 100%; justify-content: center; padding: 17px; font-size: 1.02rem; }
.btn svg { width: 17px; height: 17px; }

.menu-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 190px 0 120px; position: relative; }
.orbit {
  position: absolute; border: 1px solid var(--line); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.orbit.o1 { width: 540px; height: 540px; animation: spin 60s linear infinite; }
.orbit.o2 { width: 820px; height: 820px; border-color: var(--line-soft); animation: spin 90s linear infinite reverse; }
.orbit.o3 { width: 1100px; height: 1100px; border-color: var(--line-soft); }
.orbit.o1::after {
  content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold);
}
.orbit.o2::after {
  content: ''; position: absolute; bottom: 12%; right: 8%; width: 7px; height: 7px;
  border-radius: 50%; background: var(--purple-2); box-shadow: 0 0 12px var(--purple-2);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid var(--line); border-radius: 100px; font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 30px;
  background: rgba(27, 23, 64, 0.5); backdrop-filter: blur(8px);
}
.hero .tag b { color: var(--gold); font-weight: 500; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #5fd38a; box-shadow: 0 0 0 0 rgba(95,211,138,.6); animation: pulse 2.5s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(95,211,138,0); } 100% { box-shadow: 0 0 0 0 rgba(95,211,138,0); } }

.hero h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 600; letter-spacing: -0.02em; }
.hero h1 .ital { font-style: italic; font-weight: 400; color: var(--orange); }
.hero h1 .grad {
  background: linear-gradient(115deg, var(--purple-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: clamp(1.08rem, 2vw, 1.32rem); color: var(--muted); max-width: 600px; margin: 30px 0 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-actions .price-hint { font-family: var(--font-mono); font-size: 0.85rem; color: var(--dim); }
.hero-actions .price-hint b { color: var(--cream); font-weight: 500; }

/* stat strip */
.stats { display: flex; gap: 48px; margin-top: 72px; flex-wrap: wrap; }
.stat { position: relative; }
.stat .n { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--cream); }
.stat .n span { color: var(--orange); }
.stat .l { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; overflow: hidden; background: rgba(10, 9, 24, 0.4); }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marq 38s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--dim); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: '✦'; color: var(--orange); font-style: normal; font-size: 0.7em; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   Services
   ============================================================ */
.services { padding: 120px 0; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 32px 28px;
  background: linear-gradient(180deg, rgba(27, 23, 64, 0.5), rgba(16, 14, 36, 0.3));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative; overflow: hidden;
}
.svc::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(233,162,61,0.18), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.svc:hover { transform: translateY(-6px); border-color: var(--line); background: linear-gradient(180deg, rgba(34, 29, 78, 0.6), rgba(16, 14, 36, 0.4)); }
.svc:hover::before { opacity: 1; }
.svc-ico {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 22px; background: rgba(99, 87, 214, 0.14); border: 1px solid rgba(137, 124, 240, 0.25);
}
.svc-ico svg { width: 24px; height: 24px; stroke: var(--purple-2); }
.svc:nth-child(2n) .svc-ico { background: rgba(226, 118, 60, 0.12); border-color: rgba(243, 146, 79, 0.28); }
.svc:nth-child(2n) .svc-ico svg { stroke: var(--orange-2); }
.svc h3 { font-size: 1.34rem; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 0.96rem; }
.svc .num { position: absolute; top: 24px; right: 26px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--dim); }

/* ============================================================
   Process
   ============================================================ */
.process { padding: 100px 0; }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; }
.proc-step { padding: 0 26px; position: relative; }
.proc-step:not(:last-child)::after { content: ''; position: absolute; top: 18px; right: 0; width: 1px; height: 70%; background: var(--line-soft); }
.proc-step .dot {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--gold); margin-bottom: 22px; background: rgba(233, 162, 61, 0.06);
}
.proc-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   Products / Lab
   ============================================================ */
.lab { padding: 120px 0; }
.lab-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 29, 78, 0.7), rgba(16, 14, 36, 0.5));
}
.lab-body { padding: 52px 48px; }
.lab-body .brandline { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.lab-body .brandline .badge {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-2); border: 1px solid rgba(137, 124, 240, 0.3); padding: 5px 11px; border-radius: 100px;
}
.lab-body h3 { font-size: 2.3rem; margin-bottom: 8px; }
.lab-body .sub { font-family: var(--font-mono); font-size: 0.82rem; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 20px; }
.lab-body p { color: var(--muted); margin-bottom: 26px; font-size: 1.02rem; }
.lab-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.lab-tags span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--dim); border: 1px solid var(--line-soft); padding: 5px 12px; border-radius: 100px; }
.lab-visual {
  position: relative; min-height: 380px; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(99, 87, 214, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(226, 118, 60, 0.18), transparent 55%);
  overflow: hidden;
}
.lab-visual .ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.lab-visual .ring.r1 { width: 220px; height: 220px; animation: spin 40s linear infinite; }
.lab-visual .ring.r2 { width: 340px; height: 340px; border-color: var(--line-soft); animation: spin 70s linear infinite reverse; }
.lab-visual img { width: 150px; position: relative; z-index: 2; filter: drop-shadow(0 0 30px rgba(99,87,214,0.5)); }
.lab-visual .sd-logo { width: 78%; max-width: 360px; filter: drop-shadow(0 0 36px rgba(137,124,240,0.55)); }

.lab-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.lab-card {
  border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 28px 26px;
  background: rgba(27, 23, 64, 0.4); transition: transform .3s, border-color .3s;
}
.lab-card:hover { transform: translateY(-5px); border-color: var(--line); }
.lab-card .status { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.lab-card .status.soon { color: var(--dim); }
.lab-card .status .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.lab-card h4 { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; margin-bottom: 8px; }
.lab-card p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   Pricing / Buy hours
   ============================================================ */
.pricing { padding: 120px 0; }
.buy {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start;
}
.buy-intro h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px 0; }
.buy-intro p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.buy-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.buy-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--cream); font-size: 0.98rem; }
.buy-list li svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.buy-list li span { color: var(--muted); }

/* widget */
.buy-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px;
  background: linear-gradient(165deg, rgba(34, 29, 78, 0.85), rgba(13, 12, 31, 0.92));
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.buy-card::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(233,162,61,0.22), transparent 65%); pointer-events: none;
}
.buy-card .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.buy-card .rate { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 28px; }
.buy-card .rate .amt { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; }
.buy-card .rate .per { font-family: var(--font-mono); color: var(--dim); font-size: 0.95rem; }
.buy-card-note { color: var(--muted); font-size: 0.96rem; margin: 0 0 26px; }
.rate-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.rate-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.rate-row:last-child { border-bottom: none; }
.rate-row span { color: var(--muted); font-size: 0.96rem; }
.rate-row b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--cream); }
.rate-row:last-child b { font-family: var(--font-mono); font-size: 0.82rem; color: var(--gold); font-weight: 500; }

.field-label { font-size: 0.84rem; color: var(--muted); margin-bottom: 10px; display: block; font-weight: 500; }
.chips { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  font-family: var(--font-mono); font-size: 0.85rem; padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line-soft); background: transparent; color: var(--muted); cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--gold); color: var(--cream); }
.chip.active { background: rgba(233, 162, 61, 0.14); border-color: var(--gold); color: var(--gold); }

.stepper { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 24px; }
.stepper button {
  width: 56px; background: rgba(99, 87, 214, 0.1); border: none; color: var(--cream);
  font-size: 1.5rem; cursor: pointer; transition: background .2s; font-family: var(--font-body);
}
.stepper button:hover { background: rgba(99, 87, 214, 0.25); }
.stepper input {
  flex: 1; text-align: center; background: transparent; border: none; color: var(--cream);
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; min-width: 0;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.stepper input:focus { outline: none; }

.opt-field { margin-bottom: 18px; }
.opt-field input, .opt-field textarea {
  width: 100%; background: rgba(10, 9, 24, 0.6); border: 1px solid var(--line-soft);
  border-radius: var(--r-sm); padding: 13px 15px; color: var(--cream); font-family: var(--font-body);
  font-size: 0.94rem; transition: border-color .2s;
}
.opt-field input:focus, .opt-field textarea:focus { outline: none; border-color: var(--gold); }
.opt-field textarea { resize: vertical; min-height: 72px; }

.total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; margin: 6px 0 22px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.total-row .tl { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.total-row .tv { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--cream); }
.total-row .tv span { color: var(--orange); }

.secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 0.8rem; color: var(--dim); font-family: var(--font-mono); }
.secure-note svg { width: 14px; height: 14px; stroke: var(--dim); }
.buy-error { color: var(--crimson); font-size: 0.86rem; margin-top: 14px; text-align: center; min-height: 1.2em; }

/* ============================================================
   About
   ============================================================ */
.about { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.about-visual .glow {
  position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,87,214,0.4), rgba(226,118,60,0.12) 60%, transparent 72%);
  filter: blur(20px);
}
.about-visual img { width: 76%; position: relative; z-index: 2; }
.about-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 20px; }
.about-body p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; }
.about-body p strong { color: var(--cream); font-weight: 600; }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--orange); margin-top: 26px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  color: var(--cream); font-family: var(--font-display); font-size: 1.24rem; font-weight: 500;
}
.faq-q .ico { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq-q .ico::before, .faq-q .ico::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .ico::before { width: 14px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 14px; transition: opacity .3s; }
.faq-item.open .faq-q .ico::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--muted); }
.faq-item.open .faq-a { padding-bottom: 26px; }
.faq-a p { font-size: 0.98rem; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta { padding: 60px 0 130px; }
.cta-inner {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 72px 56px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 29, 78, 0.8), rgba(16, 14, 36, 0.6));
}
.cta-inner .orbit-bg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; position: relative; }
.cta-inner h2 .ital { font-style: italic; color: var(--orange); }
.cta-inner p { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin: 0 auto 34px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
footer { border-top: 1px solid var(--line-soft); padding: 64px 0 40px; background: rgba(10, 9, 24, 0.5); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-brand img { height: 30px; margin-bottom: 18px; }
.foot-brand p { color: var(--dim); font-size: 0.92rem; max-width: 280px; }
.foot-col h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.92rem; margin-bottom: 12px; transition: color .2s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line-soft); font-size: 0.84rem; color: var(--dim); flex-wrap: wrap; gap: 14px; }
.foot-bottom .made { font-family: var(--font-mono); }
.foot-bottom .made b { color: var(--orange); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .proc-step:nth-child(2)::after { display: none; }
  .lab-feature { grid-template-columns: 1fr; }
  .lab-visual { min-height: 280px; order: -1; }
  .lab-more { grid-template-columns: 1fr; }
  .buy { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .nav-logo img { height: 36px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    background: var(--void-2); padding: 24px; gap: 18px; border-bottom: 1px solid var(--line);
  }
  .hero { padding: 150px 0 90px; }
  .stats { gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step::after { display: none !important; }
  .lab-body, .buy-card { padding: 32px 26px; }
  .cta-inner { padding: 48px 26px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, .orbit, .starfield::before, .marquee-track { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
