:root {
  /* Base palette */
  --bg-deep:     #0A0820;
  --bg:          #0D0B26;
  --bg-raised:   #16133A;
  --bg-card:     rgba(36, 30, 88, 0.42);
  --bg-card-strong: rgba(45, 38, 110, 0.55);

  --fg:          #F8F5F0;
  --fg-soft:     #E5E0D5;
  --fg-muted:    #A29ECB;
  --fg-dim:      #6E6A98;

  --indigo:      #5B4FD9;
  --indigo-glow: #7B6DFF;
  --indigo-deep: #3A2EB3;

  --orange:      #FF7A3D;
  --orange-glow: #FF9056;
  --orange-deep: #E8521A;

  --red:         #FF4D4D;
  --mint:        #6FE5B3;
  --mint-soft:   #9DEBC9;

  --hairline:    rgba(248, 245, 240, 0.10);
  --hairline-strong: rgba(248, 245, 240, 0.22);

  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg:     rgba(255, 255, 255, 0.03);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --page-max:    1320px;
  --page-pad-x:  56px;
  --gutter:      32px;

  --ease-soft:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
::selection { background: var(--orange); color: var(--bg-deep); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

/* aurora blobs */
.aurora {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(91,79,217,0.45), transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 90%, rgba(232,82,26,0.32), transparent 60%),
    radial-gradient(ellipse 40% 35% at 75% 25%, rgba(123,109,255,0.30), transparent 60%),
    radial-gradient(ellipse 35% 30% at 20% 80%, rgba(111,229,179,0.10), transparent 60%);
}
@keyframes float-a { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, 60px) scale(1.1); } }
@keyframes float-b { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, -80px) scale(0.95); } }
@keyframes float-c { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-100px, 50px) scale(1.05); } }
@keyframes float-d { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, -40px) scale(1.15); } }


/* top ticker */
.ticker {
  position: fixed; top: 0; left: 0; right: 0;
  height: 28px; z-index: 60;
  background: rgba(10, 8, 32, 0.92);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickslide 60s linear infinite;
  padding-left: 100%;
}
.ticker-track span { padding: 0 32px; }
.ticker-track .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  margin: 0 4px 2px;
  box-shadow: 0 0 12px var(--orange);
  vertical-align: middle;
}
.ticker-track em { font-style: normal; color: var(--fg); }
.ticker-track strong { color: var(--mint); font-weight: 500; }
@keyframes tickslide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; padding-left: 0; } }

/* nav */
.nav {
  position: fixed; top: 28px; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px var(--page-pad-x);
  background: linear-gradient(180deg, rgba(13,11,38,0.7), rgba(13,11,38,0.4));
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.nav.scrolled {
  background: rgba(13, 11, 38, 0.88);
  border-bottom-color: var(--hairline);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  white-space: nowrap;
}
.wordmark .owl-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.82em;
  height: 0.82em;
  margin: 0 -0.02em;
  flex-shrink: 0;
}
.wordmark .owl-o svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: filter 320ms var(--ease-out);
}
.wordmark:hover .owl-o svg {
  filter: drop-shadow(0 0 14px rgba(255, 122, 61, 0.55));
}

/* owl wake animation */
.owl-ear, .owl-eye, .owl-pupil, .owl-glint, .owl-beak {
  transform-box: fill-box;
  transform-origin: center;
}
.owl-ear {
  transform-origin: 50% 100%;
  transform: scaleY(0);
  animation: owl-ear-up 340ms cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
.owl-ear-l { animation-delay: 320ms; }
.owl-ear-r { animation-delay: 400ms; }
.owl-eye, .owl-pupil, .owl-glint {
  transform: scaleY(0.05);
  animation: owl-blink 320ms cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
.owl-eye-l   { animation-delay: 520ms; }
.owl-eye-r   { animation-delay: 600ms; }
.owl-pupil-l { animation-delay: 640ms; }
.owl-pupil-r { animation-delay: 720ms; }
.owl-glint:nth-of-type(7) { animation-delay: 760ms; }
.owl-glint:nth-of-type(8) { animation-delay: 840ms; }
.owl-beak {
  opacity: 0;
  animation: owl-beak 240ms ease-out 800ms forwards;
}
@keyframes owl-ear-up {
  0%   { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
@keyframes owl-blink {
  0%   { transform: scaleY(0.05); }
  70%  { transform: scaleY(1.12); }
  100% { transform: scaleY(1); }
}
@keyframes owl-beak {
  0%   { opacity: 0; transform: translateY(-1.5px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .owl-ear, .owl-eye, .owl-pupil, .owl-glint { transform: none; animation: none; }
  .owl-beak { opacity: 1; transform: none; animation: none; }
}
.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex; gap: 2px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 5px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}
.nav-links a {
  display: block;
  padding: 7px 14px;
  border-radius: 999px;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out);
  letter-spacing: -0.005em;
}
.nav-links a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links a.active {
  color: var(--fg);
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.18), rgba(91, 79, 217, 0.18));
  box-shadow: 0 0 0 1px rgba(255, 122, 61, 0.25);
}

.nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex; align-items: center; gap: 18px;
}
.nav-lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-lang a {
  padding: 5px 8px;
  border-radius: 999px;
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.nav-lang a:hover { color: var(--fg); }
.nav-lang a.active {
  color: var(--orange);
  background: rgba(255, 122, 61, 0.12);
}
.nav-lang .dot { color: var(--fg-dim); opacity: 0.5; }
@media (max-width: 540px) {
  .nav-status { display: none; }
  .nav-lang { font-size: 10px; }
  .nav-lang a { padding: 4px 6px; }
}
.nav-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-status .pulse {
  width: 6px; height: 6px;
  background: var(--mint); border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
.nav-cta {
  font-size: 13px; font-weight: 500;
  color: var(--fg);
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px var(--orange);
  transition: transform 180ms var(--ease-out), box-shadow 180ms;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--orange);
}
.nav-cta-ghost {
  font-size: 13px; font-weight: 500;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  transition: background 200ms var(--ease-out), border-color 200ms, transform 180ms var(--ease-out);
}
.nav-cta-ghost svg {
  width: 14px; height: 14px;
  color: var(--mint);
}
.nav-cta-ghost:hover {
  background: rgba(111, 229, 179, 0.10);
  border-color: rgba(111, 229, 179, 0.30);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .nav-cta-ghost { padding: 9px 12px; }
  .nav-cta-ghost .label { display: none; }
}

@media (max-width: 980px) {
  .nav-links, .nav-status { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-right { grid-column: 2; }
}

/* section shared bits */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
  position: relative; z-index: 2;
}
.chapter { padding: 140px 0; position: relative; z-index: 2; }
.chapter-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.chapter-tag::before {
  content: ''; width: 24px; height: 1px;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}
.chapter-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--fg);
}
.chapter-h .it { font-weight: 400; font-style: italic; opacity: 0.92; }
.chapter-h .grad {
  background: linear-gradient(120deg, var(--orange) 0%, var(--red) 50%, var(--orange-glow) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}
.chapter-sub {
  margin-top: 26px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.seen { opacity: 1; transform: none; }

/* Stagger children of grids */
.services-grid > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.services-grid > .reveal:nth-child(2) { --reveal-delay: 80ms; }
.services-grid > .reveal:nth-child(3) { --reveal-delay: 160ms; }
.services-grid > .reveal:nth-child(4) { --reveal-delay: 240ms; }
.services-grid > .reveal:nth-child(5) { --reveal-delay: 320ms; }
.services-grid > .reveal:nth-child(6) { --reveal-delay: 400ms; }

.ai-grid > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.ai-grid > .reveal:nth-child(2) { --reveal-delay: 70ms; }
.ai-grid > .reveal:nth-child(3) { --reveal-delay: 140ms; }
.ai-grid > .reveal:nth-child(4) { --reveal-delay: 210ms; }
.ai-grid > .reveal:nth-child(5) { --reveal-delay: 280ms; }
.ai-grid > .reveal:nth-child(6) { --reveal-delay: 350ms; }

.cases-grid > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.cases-grid > .reveal:nth-child(2) { --reveal-delay: 80ms; }
.cases-grid > .reveal:nth-child(3) { --reveal-delay: 160ms; }
.cases-grid > .reveal:nth-child(4) { --reveal-delay: 240ms; }
.cases-grid > .reveal:nth-child(5) { --reveal-delay: 320ms; }
.cases-grid > .reveal:nth-child(6) { --reveal-delay: 400ms; }

.process-grid > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.process-grid > .reveal:nth-child(2) { --reveal-delay: 70ms; }
.process-grid > .reveal:nth-child(3) { --reveal-delay: 140ms; }
.process-grid > .reveal:nth-child(4) { --reveal-delay: 210ms; }
.process-grid > .reveal:nth-child(5) { --reveal-delay: 280ms; }

.pricing-grid > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.pricing-grid > .reveal:nth-child(2) { --reveal-delay: 90ms; }
.pricing-grid > .reveal:nth-child(3) { --reveal-delay: 180ms; }
.pricing-grid > .reveal:nth-child(4) { --reveal-delay: 270ms; }

.faq-list > .reveal:nth-child(n+1) { --reveal-delay: calc(60ms * var(--i, 0)); }

/* scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--orange), var(--red), var(--orange-glow));
  z-index: 70;
  box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(255,122,61,0.3);
  transition: width 80ms linear;
}

/* cursor-tracked card glow */
.glow-card {
  position: relative;
}
.glow-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 122, 61, 0.16),
    transparent 50%
  );
}
.glow-card:hover::after { opacity: 1; }

/* magnet transition */
.magnet { will-change: transform; transition: transform 240ms var(--ease-out); }

/* stat counter */
[data-count] .v { font-variant-numeric: tabular-nums; }

/* hero */
.hero {
  min-height: 100vh; min-height: 100dvh;
  padding: 200px 0 100px;
  position: relative; z-index: 2;
  display: flex; align-items: center;
}
.hero-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
  width: 100%;
  position: relative;
}
.hero-meta-top {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-badges {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badges .pulse {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-badges em { color: var(--mint); font-style: normal; font-weight: 500; }
.hero-clock {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--fg);
  max-width: 1180px;
}
.hero-h1 .it { font-weight: 400; font-style: italic; opacity: 0.9; }
.hero-h1 .grad {
  background: linear-gradient(120deg, var(--orange) 0%, var(--red) 45%, var(--orange-glow) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 0 40px rgba(255,122,61,0.28));
}
.hero-sub {
  margin-top: 44px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.hero-sub strong { color: var(--fg); font-weight: 500; }

.hero-actions {
  margin-top: 56px;
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 15px; font-weight: 500;
  border-radius: 999px;
  transition: transform 180ms var(--ease-out), box-shadow 200ms, background 200ms;
  cursor: pointer; border: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--bg-deep);
  box-shadow: 0 12px 32px -8px var(--orange), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px var(--orange);
}
.btn-primary .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-spring);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: var(--glass-bg);
  color: var(--fg);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.hero-strip {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-strip .stat .v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-strip .stat .v .accent { color: var(--orange); }
.hero-strip .stat .v .mint   { color: var(--mint); }
.hero-strip .stat .k {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}

@media (max-width: 768px) {
  :root { --page-pad-x: 24px; }
  .hero { padding: 160px 0 80px; }
  .hero-h1 { font-size: clamp(40px, 13vw, 64px); }
  .hero-sub { font-size: 17px; margin-top: 28px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
  .hero-strip .stat .v { font-size: 32px; }
  .chapter { padding: 100px 0; }
}

/* what-i-ship marquee */
.marquee {
  position: relative; z-index: 2;
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13,11,38,0.4), rgba(13,11,38,0.2));
}
.marquee-track {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: var(--fg-dim);
}
.marquee-track span .accent { color: var(--orange); }
.marquee-track span .mint { color: var(--mint); }
.marquee-track .star {
  display: inline-block;
  color: var(--orange);
  font-size: 0.7em;
  vertical-align: middle;
  animation: spin 14s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* manifesto */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.manifesto-grid .left .chapter-h { font-size: clamp(40px, 5vw, 72px); }
.manifesto-grid .right p {
  font-size: 19px; line-height: 1.6;
  color: var(--fg-soft); margin-bottom: 22px;
}
.manifesto-grid .right p:first-child::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 76px;
  line-height: 0.85;
  float: left;
  margin: 8px 14px 0 0;
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255,122,61,0.4);
}
.pullquote {
  position: relative;
  margin: 40px 0 28px;
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(91,79,217,0.10), rgba(255,122,61,0.06));
  border: 1px solid var(--glass-border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.pullquote::before {
  content: '“';
  position: absolute; top: -10px; left: 18px;
  font-family: var(--font-display);
  font-size: 76px; line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 24px rgba(255,122,61,0.5);
}
.sig {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--orange);
  margin-top: 8px;
}
.sig::after {
  content: ''; width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
@media (max-width: 880px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* services grid */
.services-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: transform 280ms var(--ease-out), border-color 240ms, background 240ms;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(255,122,61,0.4) 60%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0; transition: opacity 280ms;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-strong);
}
.service-card:hover::before { opacity: 1; }
.service-card .top {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 28px;
}
.service-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 54px;
  line-height: 1; color: var(--orange);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(255,122,61,0.3);
}
.service-card .price-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  background: rgba(111,229,179,0.10);
  border: 1px solid rgba(111,229,179,0.25);
  color: var(--mint);
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 14px;
}
.service-card h3 em { color: var(--orange); font-style: italic; }
.service-card p {
  font-size: 16px; line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.service-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.service-card ul li {
  font-size: 14px; line-height: 1.5;
  color: var(--fg-soft);
  display: grid; grid-template-columns: 22px 1fr; align-items: start;
}
.service-card ul li::before {
  content: '→';
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 13px;
}
.service-card .foot {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.service-card .foot strong { color: var(--orange); font-weight: 500; }
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 28px 22px 24px; }
  .service-card .num { font-size: 40px; }
}

/* ai capabilities */
.ai-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.ai-head .chapter-h { font-size: clamp(36px, 4.4vw, 60px); }
.ai-head .right { font-size: 17px; color: var(--fg-muted); line-height: 1.6; }
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ai-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: background 240ms, border-color 240ms, transform 280ms var(--ease-out);
}
.ai-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.ai-card .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(91,79,217,0.25), rgba(255,122,61,0.15));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
}
.ai-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ai-card p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.55; }
@media (max-width: 980px) {
  .ai-head { grid-template-columns: 1fr; gap: 22px; }
  .ai-grid { grid-template-columns: 1fr; }
}

/* telex chat window */
.telex-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.telex-side .chapter-h { font-size: clamp(32px, 3.6vw, 52px); }
.telex-side p {
  margin-top: 22px; font-size: 17px;
  color: var(--fg-muted); line-height: 1.6;
  max-width: 420px;
}
.telex-side .stamp {
  margin-top: 32px; padding: 16px 20px;
  border-left: 2px solid var(--orange);
  background: rgba(255,122,61,0.05);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.telex-side .stamp strong { color: var(--orange); font-weight: 500; }

.telex-window {
  position: relative;
  background: linear-gradient(180deg, rgba(10,8,32,0.9), rgba(22,19,58,0.7));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px 24px 18px;
  min-height: 480px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6),
              inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.telex-window::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 60%;
  background: radial-gradient(circle at 50% 0%, rgba(255,122,61,0.18) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}
.telex-titlebar {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.telex-titlebar .dots { display: inline-flex; gap: 6px; }
.telex-titlebar .dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.telex-titlebar .dots span:nth-child(1) { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.telex-titlebar .dots span:nth-child(2) { background: rgba(248,245,240,0.3); }
.telex-titlebar .dots span:nth-child(3) { background: rgba(248,245,240,0.3); }
.telex-titlebar .status {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mint);
}
.telex-titlebar .status::before {
  content: ''; width: 5px; height: 5px;
  background: var(--mint); border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}
.telex-transcript {
  position: relative; z-index: 2;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13.5px; line-height: 1.65;
  color: var(--fg-soft);
  margin-bottom: 18px;
}
.telex-transcript .line { margin-bottom: 14px; }
.telex-transcript .user { color: var(--fg); }
.telex-transcript .user::before { content: '› '; color: var(--mint); }
.telex-transcript .bot {
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  position: relative;
}
.telex-transcript .bot::before {
  content: '✦ '; color: var(--orange); margin-left: -16px; margin-right: 2px;
}
.telex-caret {
  display: inline-block;
  width: 9px; height: 16px;
  background: var(--orange);
  vertical-align: -3px;
  box-shadow: 0 0 8px var(--orange);
  animation: blink 540ms steps(2, start) infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.telex-foot {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.telex-foot .p { color: var(--orange); font-size: 14px; }
.telex-foot-text { line-height: 1.4; }

@media (max-width: 980px) {
  .telex-section { grid-template-columns: 1fr; gap: 32px; }
}

/* case studies */
.cases-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.case-card {
  position: relative;
  padding: 36px 32px 30px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: transform 320ms var(--ease-out), border-color 320ms;
}
.case-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,61,0.20) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 320ms;
  opacity: 0.5;
}
.case-card:hover { transform: translateY(-4px); border-color: rgba(255,122,61,0.3); }
.case-card:hover::before { opacity: 1; }
.case-meta {
  position: relative; z-index: 2;
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.case-meta .code {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,122,61,0.12);
  color: var(--orange);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.case-card h3 {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.case-card h3 em { color: var(--orange); font-style: italic; }
.case-card .summary {
  position: relative; z-index: 2;
  font-size: 15.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.metric-box {
  position: relative; z-index: 2;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91,79,217,0.16), rgba(255,122,61,0.10));
  border: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}
.metric-box .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  white-space: nowrap;
}
.metric-box .v .accent {
  color: var(--orange);
  text-shadow:
    0 0 18px rgba(255, 122, 61, 0.55),
    0 0 36px rgba(255, 122, 61, 0.25);
}
.metric-box .l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
  min-width: 0;
  hyphens: auto;
}
.case-highlights {
  position: relative; z-index: 2;
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.case-highlights li {
  font-size: 14px; line-height: 1.5;
  color: var(--fg-soft);
  display: grid; grid-template-columns: 20px 1fr;
}
.case-highlights li::before { content: '→'; color: var(--mint); font-family: var(--font-mono); }
.stack-row {
  position: relative; z-index: 2;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 6px;
}
.stack-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 28px 24px 24px; }
  .metric-box .v { font-size: 40px; }
}

/* process */
.process-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 280ms var(--ease-out), background 280ms;
}
.process-step:hover { background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.process-step .n {
  font-family: var(--font-display); font-style: italic;
  font-size: 38px; line-height: 1; color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(255,122,61,0.3);
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 10px;
}
.process-step .dur {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.55;
}
@media (max-width: 1080px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .process-grid { grid-template-columns: 1fr; } }

/* pricing */
.pricing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: transform 280ms var(--ease-out), border-color 280ms;
  display: flex; flex-direction: column;
}
.tier:hover { transform: translateY(-4px); }
.tier.featured {
  background: linear-gradient(155deg, rgba(91,79,217,0.18), rgba(255,122,61,0.10));
  border-color: var(--orange);
  box-shadow: 0 24px 56px -20px rgba(255,122,61,0.4),
              0 0 0 1px var(--orange) inset;
  transform: translateY(-6px);
}
.tier.featured:hover { transform: translateY(-10px); }
.tier-label {
  position: absolute; top: -10px; right: 22px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--bg-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tier h4 {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 6px;
}
.tier .tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 22px;
}
.tier .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--orange);
  text-shadow:
    0 0 16px rgba(255, 122, 61, 0.5),
    0 0 32px rgba(255, 122, 61, 0.2);
}
.tier .dur {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tier ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  flex: 1; margin-bottom: 24px;
}
.tier ul li {
  display: grid; grid-template-columns: 18px 1fr;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.tier ul li::before {
  content: '✦'; color: var(--orange); font-size: 10px; line-height: 1.7;
}
.tier .btn-tier {
  padding: 13px 22px;
  font-size: 13px; font-weight: 500;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--fg);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms;
  display: block;
}
.tier .btn-tier:hover { background: rgba(255,255,255,0.10); }
.tier.featured .btn-tier {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 10px 28px -10px var(--orange);
}
.pricing-note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-align: center;
}
.pricing-note strong { color: var(--mint); font-weight: 500; }
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pricing-grid { grid-template-columns: 1fr; } }

/* founder */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(91,79,217,0.5),
    0 0 0 1px var(--glass-border);
}
.founder-portrait svg { display: block; width: 100%; height: 100%; }
.founder-portrait .caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.founder-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-top: 8px;
  margin-bottom: 36px;
}
.founder-h .grad {
  color: var(--orange);
  text-shadow: 0 0 24px rgba(255, 122, 61, 0.45);
}
.founder-h .it {
  font-weight: 400;
  font-style: italic;
  color: var(--fg-soft);
  opacity: 0.85;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.fstat {
  padding: 22px 20px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: background 240ms, border-color 240ms, transform 280ms var(--ease-out);
}
.fstat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 122, 61, 0.3);
  transform: translateY(-3px);
}
.fstat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 122, 61, 0.45);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.fstat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .founder-stats { grid-template-columns: 1fr; gap: 10px; }
  .fstat { padding: 18px 18px; }
  .fstat .v { font-size: 40px; }
}

.founder-text p.bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 540px;
}
.founder-text p.bio strong { color: var(--fg); font-weight: 600; }
@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* faq */
.faq-list {
  margin-top: 48px;
  max-width: 880px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--bg-card);
  overflow: hidden;
  transition: background 260ms, border-color 260ms, transform 260ms var(--ease-out);
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.faq-item[open] {
  background: linear-gradient(155deg, rgba(91,79,217,0.16), rgba(255,122,61,0.06));
  border-color: rgba(255, 122, 61, 0.35);
}
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.01em;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .marker {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 20px;
  transition: transform 280ms var(--ease-spring), background 220ms, border-color 220ms, box-shadow 220ms;
}
.faq-item:hover .marker {
  background: rgba(255, 122, 61, 0.10);
  border-color: rgba(255, 122, 61, 0.30);
}
.faq-item[open] .marker {
  transform: rotate(45deg);
  background: rgba(255, 122, 61, 0.20);
  border-color: var(--orange);
  box-shadow: 0 0 18px rgba(255, 122, 61, 0.35);
}
.faq-item .answer {
  padding: 0 28px 26px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 760px;
}

/* final cta */
.final-cta-card {
  position: relative;
  padding: 80px 64px 72px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(91,79,217,0.20), rgba(255,122,61,0.08));
  border: 1px solid rgba(255,122,61,0.25);
  overflow: hidden;
  text-align: center;
}
.final-cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(255,122,61,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(91,79,217,0.30) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-card > * { position: relative; z-index: 2; }
.final-cta-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 88;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.final-cta-card h2 .it { font-weight: 400; font-style: italic; opacity: 0.92; }
.final-cta-card h2 .grad {
  background: linear-gradient(120deg, var(--orange), var(--red));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}
.final-cta-card p {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.final-cta-card .row {
  margin-top: 48px;
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.final-cta-card .note {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.final-cta-card .note .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--mint); border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  margin-right: 6px; vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .final-cta-card { padding: 56px 28px 48px; border-radius: 24px; }
}

/* footer */
.footer {
  margin-top: 100px;
  padding: 80px 0 36px;
  position: relative; z-index: 2;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer .wordmark-l {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
  white-space: nowrap;
}
.footer .wordmark-l .owl-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.84em;
  height: 0.84em;
  margin: 0 -0.02em;
  flex-shrink: 0;
}
.footer .wordmark-l .owl-o svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.footer .tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col span.row-line {
  display: block;
  font-size: 14px;
  color: var(--fg-soft);
  padding: 5px 0;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--orange); }
.footer-col .pulse {
  width: 6px; height: 6px;
  background: var(--mint); border-radius: 50%;
  display: inline-block;
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 8px var(--mint);
}
.colophon {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.colophon em { color: var(--orange); font-style: normal; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
