@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Doto";
  src: url("/fonts/doto.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("/fonts/cormorant-garamond-semibold.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050402;
  --ink: #f0ead6;
  --muted: #938873;
  --dim: #5f594d;
  --gold: #c79f4a;
  --gold-soft: rgba(199, 159, 74, 0.18);
  --line: rgba(199, 159, 74, 0.16);
  --glass: rgba(14, 16, 18, 0.54);
  --cyan: #a6d6e5;
  --blue: #0b4265;
  --nav: rgba(7, 8, 8, 0.66);
  --radius: 1rem;
  --fintheon-accent: var(--gold);
  --fintheon-primary: var(--gold);
  font-family: "Poppins", "Space Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#difference,
#method,
#waitlist,
#questions {
  scroll-margin-top: 76px;
}

#method {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

@layer components {
  .liquid-glass,
  .liquid-glass-strong {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    border: none;
  }

  .liquid-glass {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  }

  .liquid-glass-strong {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow:
      4px 4px 4px rgba(0, 0, 0, 0.05),
      inset 0 1px 1px rgba(255, 255, 255, 0.15);
  }

  .liquid-glass::before,
  .liquid-glass-strong::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.15) 20%,
      transparent 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.15) 80%,
      rgba(255, 255, 255, 0.45) 100%
    );
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .liquid-glass-strong::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.2) 20%,
      transparent 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(255, 255, 255, 0.5) 100%
    );
  }
}

@property --f5-x1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 12%;
}

@property --f5-y1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 14%;
}

@property --f5-x2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 88%;
}

@property --f5-y2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 18%;
}

@property --f5-x3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 18%;
}

@property --f5-y3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 86%;
}

@property --f5-x4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 84%;
}

@property --f5-y4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 82%;
}

@property --f5-x5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --f5-y5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --f5-s1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 48%;
}

@property --f5-s2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 52%;
}

@property --f5-s3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 46%;
}

@property --f5-s4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --f5-s5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 58%;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--nav);
  border-bottom: 1px solid rgba(199, 159, 74, 0.08);
  backdrop-filter: blur(22px);
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(7, 7, 6, 0.88);
  border-color: rgba(199, 159, 74, 0.18);
}

.brand,
.nav-links,
.hero-actions,
.surface-list,
.hero-signal-strip {
  display: flex;
  align-items: center;
}

.brand {
  --brand-title-size: clamp(1.05rem, 1.06vw, 1.24rem);

  min-width: 176px;
  gap: 10px;
  color: var(--ink);
  font-size: var(--brand-title-size);
  font-weight: 600;
  line-height: 1;
}

.brand-insignia {
  display: block;
  width: 1.5em;
  height: 1.5em;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-word,
.brand-title,
.overline,
.card-label,
.nav-links a,
.nav-cta {
  font-family: "Doto", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-word {
  color: var(--ink);
  font-size: clamp(1rem, 1vw, 1.18rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-title {
  color: var(--ink);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand:hover .brand-word,
.brand:hover .brand-title {
  color: var(--ink);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(199, 159, 74, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(240, 234, 214, 0.035), transparent 56%),
    rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 1px 12px rgba(0, 0, 0, 0.62),
    inset 0 -1px 0 rgba(240, 234, 214, 0.05);
  color: var(--muted);
  font-size: 0.68rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(240, 234, 214, 0.055);
  box-shadow: inset 0 0 0 1px rgba(240, 234, 214, 0.06);
}

.nav-cta,
.primary-button,
.ghost-button,
.beta-gate button {
  border: 1px solid rgba(199, 159, 74, 0.3);
  border-radius: 10px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 0.66rem;
  background:
    linear-gradient(180deg, rgba(240, 234, 214, 0.08), transparent 56%),
    rgba(9, 10, 10, 0.42);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(240, 234, 214, 0.24),
    transparent 44%
  );
  pointer-events: none;
}

.nav-cta:hover,
.primary-button:hover,
.ghost-button:hover,
.beta-gate button:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 159, 74, 0.62);
}

.nav-cta.is-disabled {
  cursor: default;
  opacity: 0.74;
}

.nav-cta.is-disabled:hover {
  transform: none;
  border-color: rgba(199, 159, 74, 0.3);
}

.section {
  position: relative;
  min-height: 100dvh;
  padding: 110px clamp(20px, 6vw, 84px);
}

.hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  isolation: isolate;
  overflow: hidden;
  padding-top: 118px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: clamp(170px, 24vh, 280px);
  background:
    radial-gradient(rgba(199, 159, 74, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 2, 0.82) 58%, #050402);
  background-size:
    7px 7px,
    auto;
  pointer-events: none;
}

.hero-sky,
.hero-sky::before,
.hero-sky::after,
.hero-rain {
  position: absolute;
  inset: 0;
}

.hero-sky {
  z-index: 0;
  overflow: hidden;
  background: #050607 url("/marketing/fintheon-hero-ascii-poster.jpg") center /
    cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
}

.hero-sky::before {
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(2, 3, 4, 0.88) 0%,
      rgba(2, 3, 4, 0.68) 34%,
      rgba(2, 3, 4, 0.2) 68%,
      rgba(2, 3, 4, 0.34) 100%
    ),
    radial-gradient(
      circle at 72% 24%,
      rgba(166, 214, 229, 0.2),
      transparent 36%
    );
}

.hero-sky::after {
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(5, 6, 7, 0.16),
      transparent 48%,
      var(--bg) 98%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 4px
    );
}

.hero-rain {
  background-image:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(240, 234, 214, 0.16) 50%,
      transparent 100%
    ),
    radial-gradient(rgba(199, 159, 74, 0.2) 1px, transparent 1px);
  background-size:
    240px 100%,
    14px 14px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 80%);
  animation: ascii-shimmer 5.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ascii-shimmer {
  0% {
    background-position:
      -260px 0,
      0 0;
  }
  100% {
    background-position:
      110vw 0,
      0 0;
  }
}

@media (max-width: 1180px) {
  .hero-signal-strip {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 1023px) {
  .hero-shell {
    display: block;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    display: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-bottom: 0;
}

.overline,
.card-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-family: "Poppins", "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(3.35rem, 7.2vw, 7.1rem);
  font-weight: 500;
}

h2 {
  max-width: 940px;
  margin-bottom: 22px;
  font-family: "Poppins", "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.lede,
.section-heading p,
.waitlist-copy p,
.surface-copy p,
.agent-reveal-copy p,
.agent-steps p,
.faq p,
.beta-gate > p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 690px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-button,
.ghost-button {
  position: relative;
  overflow: hidden;
  padding: 14px 20px;
  font-size: 0.82rem;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.primary-button::before,
.ghost-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(240, 234, 214, 0.24),
    transparent 44%
  );
  pointer-events: none;
}

.primary-button,
.beta-gate button {
  background: color-mix(in srgb, var(--gold) 86%, rgba(240, 234, 214, 0.34));
  color: #070706;
}

.ghost-button {
  background:
    linear-gradient(180deg, rgba(240, 234, 214, 0.08), transparent 56%),
    rgba(9, 10, 10, 0.42);
  color: var(--ink);
}

.hero-signal-strip {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 84px);
  bottom: 40px;
  gap: clamp(16px, 3vw, 34px);
  width: min(62vw, 880px);
}

.hero-signal-strip p {
  position: relative;
  flex: 1;
  margin: 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-signal-strip p:nth-child(2) {
  text-align: center;
}

.hero-metric-print {
  text-align: right;
}

.hero-signal-strip p::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 159, 74, 0.52),
    transparent
  );
}

.hero-signal-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Doto", monospace;
  font-size: clamp(0.92rem, 1.3vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signal-strip [data-catalyst-count],
.hero-signal-strip [data-risk-signal-count] {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.hero {
  display: block;
  min-height: 100svh;
  padding: 0;
  isolation: isolate;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(22px, 3vw, 52px);
  align-items: center;
  min-height: 100svh;
  width: 100%;
  padding: 28px clamp(36px, 4.6vw, 64px) 54px;
}

.hero-left,
.hero-right {
  position: relative;
  height: clamp(600px, calc(100svh - 72px), 780px);
  min-height: 0;
}

.hero-left {
  width: min(43%, 700px);
  padding: 0;
}

.hero-right {
  display: flex;
  width: min(43%, 720px);
  flex-direction: column;
  justify-content: flex-start;
  margin-left: auto;
  padding: 0;
}

.hero-left-glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 1.5rem;
}

.hero-left-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  padding: clamp(18px, 2vw, 28px);
}

.hero-nav,
.hero-brand,
.hero-track,
.hero-pills,
.hero-card-icon,
.hero-icon-circle {
  display: flex;
  align-items: center;
}

.hero-nav {
  justify-content: space-between;
  gap: 20px;
}

.hero-brand {
  gap: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.hero-brand-icon,
.hero-orb-logo {
  display: block;
  border-radius: 999px;
}

.hero-brand-icon {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 22%;
  background: rgba(14, 16, 18, 0.84);
  object-fit: cover;
  -webkit-clip-path: inset(0 round 22%);
  clip-path: inset(0 round 22%);
  transform: translateZ(0);
}

.hero-brand span {
  font-family: "Doto", monospace;
  font-size: clamp(1.1rem, 1.22vw, 1.38rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-track,
.hero-pills p {
  border-radius: 999px;
}

.hero-center {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: clamp(34px, 6vh, 60px) 0 26px;
  text-align: center;
}

.hero-orb-logo {
  width: 72px;
  height: 72px;
  box-shadow: 0 0 42px rgba(199, 159, 74, 0.22);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 4.05rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 em,
.hero h2 em,
.hero h3 em {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-track {
  gap: 14px;
  min-height: 48px;
  margin-top: 2px;
  padding: 13px 16px 13px 26px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-icon-circle,
.hero-card-icon {
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-icon-circle {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.15);
}

.hero-pills {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.hero-pills p {
  margin: 0;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 1.2;
}

.hero-pills span {
  margin-right: 6px;
  color: #fff;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.hero-quote {
  margin: 0;
  text-align: center;
}

.hero-quote figcaption {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-quote blockquote {
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-quote em {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-quote p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-quote p span {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34));
}

.hero-quote p span:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent);
}

.hero-feature-grid h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.hero-feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.58;
}

.hero-feature-grid ul {
  margin: 0;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.46;
}

.hero-feature-grid li + li {
  margin-top: 0.38rem;
}

.hero-feature-grid li::marker {
  color: var(--gold);
}

.hero-feature-panel {
  width: min(100%, 760px);
  margin-top: clamp(88px, 13vh, 132px);
  margin-left: auto;
  padding: 0;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature-grid article {
  min-height: 228px;
  padding: 18px;
  border-radius: 1.65rem;
}

.hero-breakdown {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 1.75rem;
  background: rgba(0, 0, 0, 0.28);
}

.hero-breakdown::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 2, 0.92));
  pointer-events: none;
}

.hero-breakdown img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.6;
  object-fit: cover;
  object-position: top center;
  opacity: 0.9;
}

.hero-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero a,
.hero button {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.hero a:hover,
.hero button:hover {
  transform: scale(1.05);
}

.hero a:active,
.hero button:active {
  transform: scale(0.95);
}

@media (max-width: 1023px) {
  .hero-shell {
    display: block;
    padding: 0;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    display: none;
  }
}

.mockup-shell {
  position: relative;
  width: min(100%, 1760px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(199, 159, 74, 0.22);
  border-radius: 6px 6px 0 0;
  background: #060604;
}

.mockup-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, #050402 82%);
  pointer-events: none;
}

.mockup-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.silence-section {
  position: relative;
  min-height: 150dvh;
  background: #050402;
}

.data-wall {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: clamp(360px, 48dvh, 560px);
  opacity: 0.92;
  background: #050402;
}

.silence-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(34px, 7vw, 110px);
  min-height: 72dvh;
  margin-top: -18dvh;
  padding: clamp(64px, 7vw, 112px) clamp(20px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 4, 2, 0.88), rgba(5, 4, 2, 0.18)),
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 2, 0.82) 88%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.silence-copy {
  max-width: 910px;
}

.silence-copy h2 {
  max-width: 920px;
}

.silence-copy p:not(.overline) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
}

.story-beats {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

.story-beats p {
  position: relative;
  margin: 0;
  padding-top: 22px;
  color: rgba(240, 234, 214, 0.74);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.72;
}

.story-beats p::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(199, 159, 74, 0.62),
    rgba(166, 214, 229, 0.12),
    transparent
  );
}

.agent-reveal-section {
  position: relative;
  min-height: 680dvh;
  background: #050402;
}

.agent-reveal-stage {
  --agent-stage-left: clamp(68px, 8vw, 118px);
  --agent-stage-right: clamp(20px, 6vw, 84px);
  --agent-fuse-top: clamp(112px, 12vh, 154px);
  --agent-fuse-bottom: clamp(72px, 8vh, 116px);
  --agent-copy-left: clamp(210px, calc(30vw - var(--agent-stage-left)), 500px);
  --agent-copy-right: clamp(24px, 6vw, 84px);
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(110px, 10vw, 168px) var(--agent-stage-right)
    clamp(110px, 10vw, 168px) var(--agent-stage-left);
  align-items: center;
}

.agent-context,
.agent-context::before,
.agent-context::after,
.agent-context-image {
  position: absolute;
  inset: 0;
}

.agent-context {
  z-index: -1;
  overflow: hidden;
  background: #050402;
}

.agent-context::before {
  content: "";
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 3, 3, 0.94),
      rgba(3, 3, 3, 0.48) 48%,
      rgba(3, 3, 3, 0.88)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 5px
    );
}

.agent-context::after {
  content: "";
  z-index: 3;
  background:
    radial-gradient(
      circle at var(--agent-light-x, 58%) var(--agent-light-y, 48%),
      rgba(166, 214, 229, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, transparent 0%, #050402 96%);
}

.agent-context-image {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.52);
  transform: scale(1.08);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.agent-context-image.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.agent-context-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-context-video[hidden] {
  display: none;
}

.agent-reveal-copy {
  grid-column: 1;
  position: relative;
  left: calc((var(--agent-stage-right) - var(--agent-stage-left)) / 2);
  width: min(1180px, 100%);
  max-width: none;
  margin-inline: auto;
  text-align: center;
  will-change: opacity, transform;
}

.agent-reveal-copy h2 {
  margin-inline: auto;
}

.agent-reveal-copy p:not(.overline) {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.38vw, 1.2rem);
  line-height: 1.78;
}

.copy-mobile {
  display: none;
}

.agent-circuit {
  position: absolute;
  left: clamp(18px, 3vw, 46px);
  top: var(--agent-fuse-top);
  bottom: var(--agent-fuse-bottom);
  z-index: 4;
  width: clamp(42px, 5vw, 74px);
  align-self: stretch;
  --circuit-progress: 0;
  --circuit-length: 860;
  --spark-x: 26%;
  --spark-y: 4%;
  opacity: 0;
  will-change: opacity, transform;
}

.circuit-board {
  width: 100%;
  height: 100%;
}

.circuit-board,
.circuit-labels {
  position: absolute;
  inset: 0;
}

.circuit-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circuit-path-base {
  stroke: rgba(199, 159, 74, 0.16);
  stroke-width: 1.6;
}

.circuit-path-active {
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-dasharray: var(--circuit-length);
  stroke-dashoffset: calc(
    var(--circuit-length) * (1 - var(--circuit-progress))
  );
  filter: drop-shadow(0 0 8px rgba(199, 159, 74, 0.64))
    drop-shadow(0 0 16px rgba(166, 214, 229, 0.3));
}

.circuit-spark {
  position: absolute;
  left: var(--spark-x);
  top: var(--spark-y);
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow:
    0 0 0 4px rgba(199, 159, 74, 0.18),
    0 0 18px rgba(199, 159, 74, 0.92),
    0 0 34px rgba(166, 214, 229, 0.42);
  transform: translate(-50%, -50%);
}

.circuit-spark::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(240, 234, 214, 0.32),
    transparent 66%
  );
  animation: circuit-pulse 1.2s ease-in-out infinite;
}

@keyframes circuit-pulse {
  50% {
    opacity: 0.42;
    transform: scale(1.28);
  }
}

.circuit-labels {
  margin: 0;
  padding: 0;
  list-style: none;
}

.circuit-labels li {
  position: absolute;
  top: var(--node-y);
  left: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 234, 214, 0.36);
  font-family: "Doto", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition:
    color 240ms ease,
    opacity 240ms ease;
  white-space: nowrap;
}

.circuit-labels li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(199, 159, 74, 0.44);
  border-radius: 999px;
  background: #050402;
}

.circuit-labels li.is-complete,
.circuit-labels li.is-active {
  color: rgba(240, 234, 214, 0.78);
}

.circuit-labels li.is-active::before {
  background: var(--gold);
  box-shadow:
    0 0 12px rgba(199, 159, 74, 0.82),
    0 0 28px rgba(166, 214, 229, 0.22);
}

.agent-steps {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: min(76vw, 900px);
  max-width: calc(100vw - var(--agent-stage-left) - var(--agent-stage-right));
  min-height: min(62dvh, 620px);
  transform: translate(-50%, -42%);
  pointer-events: none;
}

.agent-steps article {
  position: absolute;
  inset: 0;
  width: 100%;
  padding-top: 24px;
  color: var(--ink);
  transform-origin: center center;
  will-change: transform, opacity;
  filter: blur(var(--ghost-blur, 0));
}

.agent-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 159, 74, 0.72),
    rgba(166, 214, 229, 0.2),
    transparent
  );
  transform-origin: left;
  transform: scaleX(var(--line-scale, 0.18));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.agent-steps article.is-active::before {
  --line-scale: 1;
}

.step-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Doto", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agent-steps h3 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5.4vw, 5.6rem);
  opacity: var(--copy-opacity, 1);
}

.agent-steps p:not(.step-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.75;
  opacity: var(--body-opacity, 1);
}

.feature-checklist {
  width: min(100%, 620px);
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
  opacity: var(--body-opacity, 1);
}

.feature-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: clamp(0.9rem, 1.06vw, 1rem);
  line-height: 1.52;
}

.feature-checklist li + li {
  margin-top: 10px;
}

.feature-checklist li::before {
  content: "\2713";
  flex: 0 0 auto;
  margin-top: 0.02em;
  color: var(--cyan);
  font-weight: 700;
}

@media (min-width: 821px) {
  .agent-steps article:not(.is-active) {
    pointer-events: none !important;
  }
}

.agent-progress {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 38px;
  display: flex;
  gap: 10px;
  color: rgba(199, 159, 74, 0.74);
  font-family: "Doto", monospace;
  letter-spacing: 0.12em;
}

.agent-progress span:first-child {
  color: var(--ink);
}

.waitlist {
  display: grid;
  min-height: 112dvh;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #050402;
}

.waitlist::before,
.waitlist::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.waitlist::after {
  inset: auto 0 0;
}

.waitlist-globe,
.waitlist-globe canvas,
.webgl-fallback {
  position: absolute;
}

.waitlist-globe {
  top: 50%;
  left: 50%;
  z-index: 0;
  width: clamp(820px, 108vw, 1380px);
  height: clamp(760px, 96vw, 1180px);
  overflow: hidden;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.08);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.waitlist-globe.uses-loading-globe > .loading-globe {
  opacity: 1;
  filter: saturate(1.08) contrast(1.08);
}

.waitlist-globe.uses-loading-globe .loading-globe__fallback {
  opacity: 0.78 !important;
}

.waitlist-globe canvas {
  inset: 0;
  width: 100%;
  height: 100%;
}

.waitlist-globe.uses-loading-globe > div {
  opacity: 1;
}

.webgl-fallback {
  inset: 0;
  display: none;
}

.waitlist-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
}

.waitlist-copy p:not(.overline) {
  max-width: 650px;
  margin-inline: auto;
}

.beta-gate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  width: min(100%, 680px);
  margin: clamp(22px, 4vw, 38px) auto 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(199, 159, 74, 0.22);
  text-align: left;
}

.beta-gate .card-label,
.beta-gate h3,
.beta-gate > p,
.waitlist-status {
  grid-column: 1 / -1;
}

.beta-gate h3 {
  margin-bottom: 4px;
}

.beta-gate label,
.beta-gate label span {
  display: block;
}

.beta-gate label span {
  margin: 0 0 8px;
  color: var(--dim);
  font-size: 0.78rem;
}

.beta-gate input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(199, 159, 74, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(5, 4, 2, 0.58);
  color: var(--ink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.beta-gate button {
  height: 48px;
  min-width: 180px;
  cursor: pointer;
}

.beta-gate button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.waitlist-status {
  margin: 2px 0 0;
  color: var(--dim);
  font-size: 0.78rem;
  line-height: 1.55;
}

.waitlist-login-link {
  grid-column: 1 / -1;
  justify-self: center;
  color: rgba(240, 234, 214, 0.72);
  font-size: 0.78rem;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(199, 159, 74, 0.34);
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.waitlist-login-link:hover {
  color: var(--ink);
  text-decoration-color: rgba(199, 159, 74, 0.78);
}

.waitlist-status.is-success {
  color: var(--gold);
}

.waitlist-status.is-error {
  color: rgba(240, 234, 214, 0.82);
}

.surface {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  min-height: 115dvh;
  align-content: center;
  background: #050402;
}

.surface-mockup {
  width: min(100%, 1680px);
  margin-top: -4vh;
}

.surface-copy {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.surface-copy h2,
.surface-copy p {
  margin-inline: auto;
}

.surface-list {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.surface-list span {
  border: 1px solid rgba(199, 159, 74, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(199, 159, 74, 0.06);
  font-size: 0.82rem;
}

.conversion-section {
  min-height: auto;
  background:
    linear-gradient(
      180deg,
      #050402 0%,
      rgba(199, 159, 74, 0.06) 58%,
      #050402 100%
    ),
    var(--bg);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.9fr);
  gap: 30px;
  align-items: stretch;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.fintheon-gradient-cta {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 38px;
  border-radius: 24px;
  text-align: center;
  background-color: #050402;
  background-image:
    linear-gradient(180deg, rgba(5, 4, 2, 0.3), rgba(5, 4, 2, 0.78)),
    radial-gradient(
      circle at var(--f5-x1) var(--f5-y1),
      rgba(240, 234, 214, 0.16) 0,
      transparent var(--f5-s1)
    ),
    radial-gradient(
      circle at var(--f5-x2) var(--f5-y2),
      rgba(199, 159, 74, 0.42) 0,
      transparent var(--f5-s2)
    ),
    radial-gradient(
      circle at var(--f5-x3) var(--f5-y3),
      rgba(166, 214, 229, 0.2) 0,
      transparent var(--f5-s3)
    ),
    radial-gradient(
      circle at var(--f5-x4) var(--f5-y4),
      rgba(11, 66, 101, 0.5) 0,
      transparent var(--f5-s4)
    ),
    radial-gradient(
      circle at var(--f5-x5) var(--f5-y5),
      rgba(105, 64, 28, 0.36) 0,
      transparent var(--f5-s5)
    );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation:
    f5-blob1 7s ease-in-out infinite,
    f5-blob2 8s ease-in-out infinite,
    f5-blob3 7.5s ease-in-out infinite,
    f5-blob4 8.5s ease-in-out infinite,
    f5-blob5 6.5s ease-in-out infinite,
    f5-size1 5.5s ease-in-out infinite,
    f5-size2 6.2s ease-in-out infinite,
    f5-size3 5.8s ease-in-out infinite,
    f5-size4 6.6s ease-in-out infinite,
    f5-size5 5s ease-in-out infinite;
}

.fintheon-gradient-cta .overline {
  margin-bottom: 16px;
}

.fintheon-gradient-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.fintheon-gradient-cta h2 em {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-weight: 500;
}

.fintheon-gradient-cta p:not(.overline) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.7;
}

.beta-card-quote {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.beta-card-quote figcaption {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.beta-card-quote blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.beta-card-quote em {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-weight: 500;
}

.beta-card-quote p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.beta-card-quote p span {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28));
}

.beta-card-quote p span:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent);
}

.conversion-button {
  margin-top: 30px;
  border-radius: 999px;
  padding: 14px 30px;
  color: #080705;
  background: rgba(240, 234, 214, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.conversion-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.conversion-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.conversion-button.is-disabled:hover {
  transform: none;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.faq-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.faq-panel .section-heading {
  margin: 0 0 26px;
  text-align: left;
}

.faq-panel .section-heading h2 {
  font-size: 3rem;
}

.faq-list {
  --faq-answer-bottom-padding: 56px;
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

details {
  border: 1px solid rgba(166, 214, 229, 0.12);
  border-radius: 18px;
  background: rgba(240, 234, 214, 0.018);
  overflow: hidden;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

details[open],
details.is-open,
details.is-opening {
  border-color: rgba(199, 159, 74, 0.22);
  background: rgba(240, 234, 214, 0.035);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 0.9rem;
}

details p {
  max-height: 0;
  margin: 0;
  padding: 0 24px;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    max-height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: max-height, opacity, transform;
}

details.is-open p,
details.is-opening p {
  max-height: var(--faq-body-height, 240px);
  padding-bottom: var(--faq-answer-bottom-padding);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-list details:first-child.is-open p,
.faq-list details:first-child.is-opening p {
  padding-bottom: var(--faq-answer-bottom-padding);
}

details.is-closing p {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
}

@keyframes f5-blob1 {
  0%,
  100% {
    --f5-x1: 5%;
    --f5-y1: 8%;
  }
  50% {
    --f5-x1: 42%;
    --f5-y1: 20%;
  }
}

@keyframes f5-blob2 {
  0%,
  100% {
    --f5-x2: 95%;
    --f5-y2: 10%;
  }
  50% {
    --f5-x2: 66%;
    --f5-y2: 38%;
  }
}

@keyframes f5-blob3 {
  0%,
  100% {
    --f5-x3: 12%;
    --f5-y3: 92%;
  }
  50% {
    --f5-x3: 46%;
    --f5-y3: 68%;
  }
}

@keyframes f5-blob4 {
  0%,
  100% {
    --f5-x4: 92%;
    --f5-y4: 92%;
  }
  50% {
    --f5-x4: 78%;
    --f5-y4: 54%;
  }
}

@keyframes f5-blob5 {
  0%,
  100% {
    --f5-x5: 50%;
    --f5-y5: 50%;
  }
  50% {
    --f5-x5: 34%;
    --f5-y5: 62%;
  }
}

@keyframes f5-size1 {
  0%,
  100% {
    --f5-s1: 42%;
  }
  50% {
    --f5-s1: 66%;
  }
}

@keyframes f5-size2 {
  0%,
  100% {
    --f5-s2: 44%;
  }
  50% {
    --f5-s2: 70%;
  }
}

@keyframes f5-size3 {
  0%,
  100% {
    --f5-s3: 40%;
  }
  50% {
    --f5-s3: 62%;
  }
}

@keyframes f5-size4 {
  0%,
  100% {
    --f5-s4: 44%;
  }
  50% {
    --f5-s4: 68%;
  }
}

@keyframes f5-size5 {
  0%,
  100% {
    --f5-s5: 48%;
  }
  50% {
    --f5-s5: 72%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fintheon-gradient-cta {
    animation: none;
  }
}

.footer {
  padding: 74px clamp(20px, 6vw, 84px) 28px;
  border-top: 1px solid rgba(166, 214, 229, 0.12);
  color: var(--muted);
  background: #050402;
}

.footer-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand a {
  color: var(--ink);
  font-family: "Doto", monospace;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-newsletter p {
  max-width: 250px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer nav a {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.footer-newsletter div {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(240, 234, 214, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(240, 234, 214, 0.035);
  color: var(--ink);
  font-size: 0.88rem;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-newsletter button {
  border: 0;
  border-radius: 10px;
  padding: 12px 22px;
  color: #080705;
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease;
}

.footer-newsletter button:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(166, 214, 229, 0.12);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-powered-link {
  color: rgba(240, 234, 214, 0.94);
  text-decoration: underline;
  text-decoration-color: rgba(199, 159, 74, 0.58);
  text-underline-offset: 0.22em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer a:hover,
.legal-content a:hover {
  color: var(--ink);
}

.footer-powered-link:hover {
  text-decoration-color: var(--ink);
}

.legal-page {
  background: #050402;
}

.legal-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 148px clamp(20px, 5vw, 44px) 88px;
}

.legal-hero {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(199, 159, 74, 0.16);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-family: "Cormorant", serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.94;
  font-weight: 600;
}

.legal-hero p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 32px;
  padding-top: 44px;
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(166, 214, 229, 0.1);
}

.legal-content h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Doto", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-content p {
  grid-column: 2;
  margin: 0;
  color: rgba(240, 234, 214, 0.82);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: var(--gold);
}

@media (max-width: 820px) {
  .site-nav {
    height: 64px;
    gap: 12px;
    padding-inline: 18px;
  }

  .brand {
    --brand-title-size: 0.9rem;
    min-width: 0;
    gap: 9px;
  }

  .brand-insignia {
    width: 1.5em;
    height: 1.5em;
  }

  .brand-word,
  .brand-title {
    font-size: 1em;
    letter-spacing: 0.14em;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    flex-shrink: 0;
    padding: 9px 11px;
    font-size: 0.58rem;
  }

  .section,
  .silence-stage {
    padding-inline: 18px;
  }

  .hero {
    min-height: 100dvh;
    height: 100dvh;
    padding: 0;
  }

  .hero-left {
    min-height: 100dvh;
    padding: 8px;
  }

  .hero-left-glass {
    inset: 8px;
    border-radius: 1.2rem;
  }

  .hero-left-content {
    height: calc(100dvh - 16px);
    min-height: 0;
    padding: 12px;
  }

  .hero-brand {
    gap: 9px;
    font-size: 1.08rem;
  }

  .hero-brand-icon {
    width: 28px;
    height: 28px;
  }

  .hero-center {
    flex: 0 0 auto;
    gap: 0;
    margin-top: 52px;
    padding: 10px 0 8px;
  }

  .hero-orb-logo {
    width: 48px;
    height: 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.4rem;
    line-height: 1;
  }

  .hero-track {
    gap: 10px;
    margin-top: clamp(24px, 4.6vh, 42px);
    padding: 9px 10px 9px 16px;
    font-size: 0.82rem;
  }

  .hero-icon-circle {
    width: 1.45rem;
    height: 1.45rem;
  }

  .hero-pills {
    gap: 6px;
    margin-top: clamp(18px, 3.8vh, 34px);
  }

  .hero-pills p {
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .hero-quote blockquote {
    font-size: 0.95rem;
  }

  .hero-quote {
    margin-top: auto;
  }

  .hero-quote figcaption {
    margin-bottom: 5px;
    font-size: 0.55rem;
  }

  .hero-quote p {
    margin-top: 7px;
    font-size: 0.66rem;
  }

  .hero-quote p span {
    width: 30px;
  }

  .hero-signal-strip {
    grid-template-columns: 1fr;
  }

  .hero-signal-strip {
    display: flex;
    margin-top: 28px;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .mockup-shell {
    width: min(188vw, 980px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .silence-section {
    min-height: auto;
  }

  .data-wall {
    position: absolute;
    height: clamp(320px, 48dvh, 460px);
  }

  .silence-stage {
    position: relative;
    display: block;
    min-height: auto;
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 84px;
  }

  .story-beats {
    margin-top: 54px;
  }

  .story-beats p {
    font-size: 1.05rem;
  }

  .agent-reveal-section {
    min-height: 560dvh;
  }

  .agent-reveal-stage {
    --agent-stage-left: 24px;
    --agent-stage-right: 24px;
    --agent-fuse-top: clamp(112px, 22dvh, 180px);
    --agent-fuse-bottom: auto;
    --agent-copy-left: 0px;
    --agent-copy-right: 0px;
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 100dvh;
    overflow: hidden;
    padding: clamp(92px, 16dvh, 132px) 24px clamp(96px, 16dvh, 132px);
    align-items: center;
  }

  .agent-context::before {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.52)),
      repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.035) 0 1px,
        transparent 1px 5px
      );
  }

  .agent-reveal-copy {
    grid-column: 1;
    grid-row: 1;
    left: 0;
    width: auto;
    max-width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  .agent-reveal-copy h2,
  .agent-reveal-copy p:not(.overline) {
    margin-inline: 0;
    text-align: left;
  }

  .agent-reveal-copy p:not(.overline) {
    max-width: 34rem;
  }

  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .agent-circuit {
    display: none;
  }

  .agent-steps {
    position: absolute;
    top: 50%;
    right: 24px;
    bottom: auto;
    left: 24px;
    z-index: 5;
    display: block;
    width: auto;
    max-width: none;
    min-height: min(58dvh, 500px);
    transform: translateY(-42%);
    pointer-events: none;
  }

  .agent-steps article {
    inset: 0 0 auto;
    padding-top: 18px;
    transform-origin: left center;
    filter: none !important;
  }

  .agent-steps article:not(.is-active) {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .agent-steps h3 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 3.45rem);
    line-height: 1;
  }

  .agent-steps p:not(.step-label) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.56;
  }

  .feature-checklist {
    width: min(100%, 34rem);
    margin: 18px auto 0;
  }

  .feature-checklist li {
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .feature-checklist li + li {
    margin-top: 8px;
  }

  .step-label {
    margin-bottom: 14px;
  }

  .agent-progress {
    right: 24px;
    bottom: 28px;
    z-index: 6;
    font-size: 0.72rem;
  }

  .waitlist {
    min-height: 108dvh;
    padding-top: 76px;
  }

  .beta-gate {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .beta-gate button {
    width: 100%;
  }

  .surface {
    display: block;
    min-height: auto;
    padding-top: 70px;
    padding-inline: 0;
    overflow: hidden;
  }

  .surface-mockup {
    justify-self: start;
    width: min(260vw, 1120px);
    margin: 0 0 0 18px;
    transform: none !important;
  }

  .surface-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
    text-align: left;
  }

  .surface-copy h2,
  .surface-copy p {
    max-width: 100%;
    margin-inline: 0;
  }

  .surface-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.02;
  }

  .surface-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .surface-list {
    justify-content: flex-start;
    align-items: stretch;
  }

  .surface-list span {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .conversion-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    width: 100%;
  }

  .fintheon-gradient-cta {
    min-height: 390px;
    padding: 42px 24px;
  }

  .fintheon-gradient-cta h2,
  .faq-panel .section-heading h2 {
    font-size: 2.45rem;
    line-height: 1.06;
  }

  .faq-panel .section-heading {
    text-align: left;
  }

  .footer {
    padding: 58px 18px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-newsletter div {
    flex-direction: column;
  }

  .footer-newsletter button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-shell {
    padding: 116px 18px 70px;
  }

  .legal-content section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-content p {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
