:root {
  --ink: #11141a;
  --ink-soft: #4f5561;
  --paper: #f4f1e9;
  --paper-deep: #e9e3d7;
  --night: #080a0e;
  --night-2: #0d1016;
  --night-3: #141821;
  --white: #fffdf8;
  --gold: #e6bd4d;
  --gold-light: #f8dd87;
  --gold-deep: #a97917;
  --line: rgba(18, 21, 27, 0.13);
  --line-light: rgba(255, 255, 255, 0.13);
  --success: #c7e6a8;
  --shadow: 0 28px 80px rgba(14, 17, 23, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
  --trust-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
summary,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6vw, 5.65rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
  font-weight: 650;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border-radius: 9px;
  background: var(--white);
  color: var(--night);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  box-shadow: 0 0 16px rgba(230, 189, 77, 0.65);
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.7), transparent);
  color: var(--white);
  transition:
    height 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 72px;
  border-color: var(--line-light);
  background: rgba(8, 10, 14, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition:
    width 300ms ease,
    height 300ms ease;
}

.site-header.is-scrolled .brand img {
  width: 43px;
  height: 43px;
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.89rem;
  font-weight: 620;
}

.main-navigation > a:not(.button) {
  position: relative;
  color: rgba(255, 253, 248, 0.76);
  transition: color 200ms ease;
}

.main-navigation > a:not(.button)::after {
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition:
    right 220ms ease,
    left 220ms ease;
}

.main-navigation > a:hover,
.main-navigation > a.is-active {
  color: var(--white);
}

.main-navigation > a:hover::after,
.main-navigation > a.is-active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Shared controls */
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.button::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -50%;
  width: 35%;
  content: "";
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.28);
  filter: blur(5px);
  transition: left 600ms ease;
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(110deg, #f6d878, #dfb43c 68%, #c99124);
  box-shadow: 0 12px 32px rgba(184, 132, 26, 0.25);
  color: #17130a;
}

.button-primary:hover {
  box-shadow: 0 17px 38px rgba(184, 132, 26, 0.36);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(17, 20, 26, 0.35);
  background: rgba(255, 255, 255, 0.35);
}

.button-small {
  min-height: 42px;
  padding: 11px 19px;
  border-color: rgba(230, 189, 77, 0.6);
  background: rgba(230, 189, 77, 0.08);
  box-shadow: inset 0 0 0 1px rgba(230, 189, 77, 0.08);
  color: var(--gold-light);
}

.button-full {
  width: 100%;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 760;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  background: var(--gold);
  transition: transform 240ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-light {
  color: var(--white);
}

.eyebrow,
.mini-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-deep);
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.mini-label {
  margin-bottom: 10px;
  color: var(--gold-deep);
}

/* Hero */
.hero {
  --hero-y: 0px;
  --hero-copy-y: 0px;
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--trust-height));
  overflow: hidden;
  isolation: isolate;
  background: #0a0d13;
  color: var(--white);
}

.hero-video {
  position: absolute;
  z-index: -4;
  top: -5%;
  left: 0;
  width: 100%;
  height: 112%;
  transform: translate3d(0, var(--hero-y), 0) scale(1.025);
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(0.82) contrast(1.06);
  pointer-events: none;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 6, 9, 0.94) 0%,
      rgba(5, 7, 11, 0.72) 43%,
      rgba(5, 7, 11, 0.18) 77%
    ),
    linear-gradient(
      180deg,
      rgba(3, 5, 8, 0.3) 0%,
      transparent 45%,
      rgba(3, 5, 8, 0.72) 100%
    ),
    radial-gradient(
      circle at 72% 44%,
      transparent 0%,
      rgba(7, 9, 13, 0.12) 40%,
      rgba(7, 9, 13, 0.45) 100%
    );
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  right: -18vw;
  bottom: -38vw;
  width: 76vw;
  height: 76vw;
  border: 1px solid rgba(230, 189, 77, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 10vw rgba(230, 189, 77, 0.035),
    0 0 0 20vw rgba(230, 189, 77, 0.018);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 44px;
}

.hero-copy {
  width: 100%;
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.35rem, 5vw, 5.1rem);
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 3px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  color: var(--white);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.hero-facts span {
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.74rem;
}

.hero-pipeline-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  overflow: hidden;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(230, 189, 77, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(22, 27, 37, 0.92), rgba(10, 13, 19, 0.86)),
    rgba(10, 13, 19, 0.9);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-pipeline-card::before {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(230, 189, 77, 0.08);
  content: "";
  filter: blur(10px);
  pointer-events: none;
}

.pipeline-card-head,
.pipeline-card-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pipeline-card-head {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pipeline-card-head p,
.pipeline-card-head span {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pipeline-card-head p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 248, 0.72);
}

.pipeline-card-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73daa7;
  box-shadow: 0 0 16px rgba(115, 218, 167, 0.65);
}

.pipeline-card-head span {
  color: #73daa7;
}

.pipeline-card-intro {
  display: grid;
  gap: 7px;
  margin: 22px 0 18px;
}

.pipeline-card-intro h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.7rem, 2.25vw, 2.2rem);
  line-height: 1.08;
}

.pipeline-card-intro > p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: left;
}

.pipeline-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.pipeline-step:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 189, 77, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.pipeline-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(230, 189, 77, 0.34);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 850;
}

.pipeline-step div,
.pipeline-step strong,
.pipeline-step small {
  min-width: 0;
}

.pipeline-step strong,
.pipeline-step small {
  display: block;
}

.pipeline-step strong {
  overflow: hidden;
  color: var(--white);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline-step small {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pipeline-step b {
  color: #73daa7;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pipeline-card-note {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.46);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-scroll {
  position: absolute;
  right: 35px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--gold-light);
  animation: scroll-line 2.1s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(200%);
  }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  min-height: var(--trust-height);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: #0b0e13;
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  display: flex;
  min-height: var(--trust-height);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border-left: 1px solid var(--line-light);
  font-size: 0.8rem;
  font-weight: 680;
  text-align: center;
}

.trust-grid p:last-child {
  border-right: 1px solid var(--line-light);
}

.trust-grid span {
  color: var(--gold-light);
  font-weight: 900;
}

/* Result */
.result-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(230, 189, 77, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 2% 76%,
      rgba(62, 91, 80, 0.16),
      transparent 31%
    ),
    linear-gradient(180deg, #0a0d12 0%, #0d1118 56%, #090c11 100%);
  color: var(--white);
}

.result-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.45;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.result-section > .container {
  position: relative;
  z-index: 1;
}

.result-section .eyebrow,
.result-section .mini-label {
  color: var(--gold-light);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 1.05rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.result-card::before {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(230, 189, 77, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(230, 189, 77, 0.028);
  transition: transform 450ms ease;
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 189, 77, 0.38);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(230, 189, 77, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.result-card:hover::before {
  transform: scale(1.15);
}

.result-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 56px;
  border: 1px solid rgba(230, 189, 77, 0.32);
  border-radius: 50%;
  background: rgba(230, 189, 77, 0.06);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.result-card h3 {
  max-width: 290px;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.result-card > p:not(.mini-label) {
  color: rgba(255, 253, 248, 0.6);
}

.result-state {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9edebd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  margin-top: 18px;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 58px);
  border: 1px solid rgba(230, 189, 77, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(230, 189, 77, 0.12),
      transparent 30%
    ),
    var(--night-2);
  box-shadow: 0 24px 68px rgba(18, 20, 27, 0.14);
  color: var(--white);
}

.result-summary::after {
  position: absolute;
  right: -145px;
  bottom: -175px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(230, 189, 77, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 52px rgba(230, 189, 77, 0.025);
  pointer-events: none;
}

.result-summary-copy,
.result-benefits {
  position: relative;
  z-index: 1;
}

.result-summary .eyebrow {
  margin-bottom: 18px;
  color: var(--gold-light);
}

.result-summary h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
}

.result-summary-lead {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.94rem;
  line-height: 1.62;
}

.result-summary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.result-summary-metrics span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(230, 189, 77, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.61rem;
  line-height: 1.35;
  text-align: center;
}

.result-summary-metrics strong {
  color: var(--gold-light);
  font-size: 0.96rem;
}

.result-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-benefits li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-benefits li:nth-child(-n + 2) {
  border-top: 0;
}

.result-benefits li > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(115, 218, 167, 0.12);
  color: #73daa7;
  font-size: 0.64rem;
  font-weight: 900;
}

.result-benefits strong,
.result-benefits small {
  display: block;
}

.result-benefits strong {
  margin-bottom: 4px;
  font-size: 0.83rem;
}

.result-benefits small {
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Offer */
.offer-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 4% 6%,
      rgba(230, 189, 77, 0.1),
      transparent 29%
    ),
    radial-gradient(
      circle at 96% 94%,
      rgba(59, 91, 80, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #090c11, #0c1016 52%, #080b0f);
}

.offer-section::before {
  position: absolute;
  top: -30vw;
  left: -20vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(230, 189, 77, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.offer-shell {
  --glow-x: 82%;
  --glow-y: 18%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 77, 0.5);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 91% 5%,
      rgba(230, 189, 77, 0.13),
      transparent 26%
    ),
    linear-gradient(145deg, #111722, #0a0e14 68%, #0b0f15);
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.42),
    0 0 65px rgba(230, 189, 77, 0.045),
    0 0 0 1px rgba(230, 189, 77, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offer-shell::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    circle 360px at var(--glow-x) var(--glow-y),
    rgba(248, 221, 135, 0.13),
    transparent 68%
  );
  content: "";
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.offer-shell.is-glowing::before {
  opacity: 1;
}

.offer-shell > * {
  position: relative;
  z-index: 1;
}

.offer-ribbon {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(34px, 5vw, 64px);
  border-bottom: 1px solid rgba(230, 189, 77, 0.2);
  background: linear-gradient(
    90deg,
    rgba(230, 189, 77, 0.17),
    rgba(230, 189, 77, 0.035) 62%,
    transparent
  );
}

.offer-ribbon span,
.offer-ribbon p {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-ribbon span {
  color: var(--gold-light);
}

.offer-ribbon p {
  color: rgba(255, 253, 248, 0.46);
}

.offer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(34px, 5vw, 64px);
  border-bottom: 1px solid var(--line-light);
}

.offer-head .eyebrow {
  color: var(--gold-light);
}

.offer-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.offer-head > div:first-child > p:last-child {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
}

.price-box {
  display: grid;
  min-width: 205px;
  justify-items: end;
  padding: 20px 22px;
  border: 1px solid rgba(230, 189, 77, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-box span,
.price-box small {
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-box strong {
  margin: 5px 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.offer-body {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(34px, 5vw, 64px);
}

.included h3 {
  margin-bottom: 28px;
  font-size: 1.2rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
}

.check-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(230, 189, 77, 0.3);
  border-radius: 50%;
  background: rgba(230, 189, 77, 0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.check-list small {
  color: rgba(255, 253, 248, 0.52);
  font-size: 0.76rem;
  line-height: 1.5;
}

.payment-card {
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(230, 189, 77, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.payment-card .mini-label {
  color: var(--gold-light);
}

.payment-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-step > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.65rem;
  font-weight: 800;
}

.payment-step strong,
.payment-step small {
  display: block;
}

.payment-step strong {
  font-size: 1.25rem;
}

.payment-step small {
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.74rem;
}

.payment-line {
  width: 1px;
  height: 32px;
  margin: 3px 0 3px 17px;
  background: linear-gradient(var(--gold-deep), rgba(255, 255, 255, 0.1));
}

.payment-note {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.78rem;
}

.button-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.43);
  font-size: 0.68rem;
  text-align: center;
}

.scope-rail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
}

.scope-rail strong {
  color: var(--gold-light);
  font-size: 0.78rem;
}

.scope-rail p,
.scope-rail a {
  margin: 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.75rem;
}

.scope-rail a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(230, 189, 77, 0.45);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

/* Process */
.process-section {
  overflow: clip;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(230, 189, 77, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #080b0f 0%, #0d1118 48%, #090c12 100%);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  top: 8%;
  right: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(230, 189, 77, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(230, 189, 77, 0.018),
    0 0 0 140px rgba(230, 189, 77, 0.009);
  pointer-events: none;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-section .eyebrow,
.process-section .mini-label {
  color: var(--gold-light);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.process-intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.45rem);
}

.process-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 253, 248, 0.62);
}

.fit-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 35px;
  padding: 18px;
  border: 1px solid rgba(230, 189, 77, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(230, 189, 77, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fit-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(230, 189, 77, 0.12);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 900;
}

.fit-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.78rem;
}

.process-steps {
  position: relative;
}

.process-steps::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 28px;
  width: 1px;
  content: "";
  background: linear-gradient(
    var(--gold-deep),
    rgba(255, 255, 255, 0.12),
    rgba(230, 189, 77, 0.08)
  );
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  min-height: 215px;
  padding-bottom: 35px;
}

.process-step:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.process-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: #0d1118;
  box-shadow: 0 0 0 8px #0d1118;
  color: rgba(255, 253, 248, 0.72);
  transition:
    background 350ms ease,
    border-color 350ms ease,
    color 350ms ease,
    transform 350ms ease;
}

.process-marker span {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-step.is-active .process-marker {
  transform: scale(1.06);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow:
    0 0 0 8px #0d1118,
    0 0 34px rgba(230, 189, 77, 0.22);
  color: var(--night);
}

.process-step > div:last-child {
  padding: 10px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:last-child > div:last-child {
  border-bottom: 0;
}

.process-step h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.process-step > div:last-child > p:last-child {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.6);
}

.requirement-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 80px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.82rem;
}

.requirement-note strong {
  color: var(--gold-light);
}

.requirement-note p {
  margin: 0;
}

/* Founder */
.founder-section {
  overflow: hidden;
  padding-top: 0;
  background:
    radial-gradient(
      circle at 12% 90%,
      rgba(230, 189, 77, 0.075),
      transparent 26%
    ),
    #090c12;
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
  overflow: hidden;
  min-height: 500px;
  padding: 0 clamp(40px, 7vw, 90px) 0 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(230, 189, 77, 0.12),
      transparent 29%
    ),
    var(--night-2);
  box-shadow: var(--shadow);
  color: var(--white);
}

.founder-card::after {
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(230, 189, 77, 0.16);
  border-radius: 50%;
  content: "";
}

.founder-image-wrap {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.founder-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, var(--night-2) 100%);
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.78) contrast(1.04);
}

.founder-card > div:last-child {
  position: relative;
  z-index: 2;
  padding: 65px 0;
}

.founder-card .eyebrow {
  color: var(--gold-light);
}

.founder-card h2 {
  max-width: 650px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.founder-card > div:last-child > p:not(.eyebrow):not(.founder-proof) {
  max-width: 630px;
  color: rgba(255, 253, 248, 0.65);
}

.founder-proof {
  margin: 24px 0 22px;
  padding-left: 17px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.82rem;
  font-weight: 650;
}

/* FAQ */
.faq-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(230, 189, 77, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 96% 88%,
      rgba(59, 91, 80, 0.11),
      transparent 30%
    ),
    linear-gradient(180deg, #0a0d12, #0d1118 60%, #090c11);
  color: var(--white);
}

.faq-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0.6px,
    transparent 0.8px
  );
  background-size: 24px 24px;
  content: "";
  opacity: 0.17;
  pointer-events: none;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

.faq-section .eyebrow {
  color: var(--gold-light);
}

.faq-section .button-secondary {
  border-color: rgba(230, 189, 77, 0.42);
  background: rgba(230, 189, 77, 0.065);
  color: var(--white);
}

.faq-section .button-secondary:hover {
  border-color: rgba(230, 189, 77, 0.7);
  background: rgba(230, 189, 77, 0.12);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(50px, 9vw, 115px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.faq-heading h2 {
  font-size: clamp(2.45rem, 4.4vw, 4.3rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.6);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 5px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: currentColor;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(180deg);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 670px;
  margin: -5px 55px 30px 5px;
  color: rgba(255, 253, 248, 0.6);
  animation: faq-in 260ms ease both;
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Contact */
.contact-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(230, 189, 77, 0.13),
      transparent 27%
    ),
    var(--night);
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  top: -300px;
  right: -280px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(230, 189, 77, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px rgba(230, 189, 77, 0.025),
    0 0 0 180px rgba(230, 189, 77, 0.012);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.contact-copy {
  padding-top: 34px;
}

.contact-copy .eyebrow {
  color: var(--gold-light);
}

.contact-copy h2 {
  max-width: 570px;
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 253, 248, 0.62);
}

.contact-points {
  display: grid;
  gap: 0;
  margin: 38px 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.contact-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-points span {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.direct-contact {
  display: grid;
  gap: 4px;
}

.direct-contact a {
  width: fit-content;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.direct-contact a:hover {
  color: var(--gold-light);
}

.form-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading span {
  font-size: 1.08rem;
  font-weight: 720;
}

.form-heading strong {
  max-width: 210px;
  color: rgba(255, 253, 248, 0.46);
  font-size: 0.63rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin: 0 0 6px 2px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.69rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  outline: none;
  background: rgba(4, 6, 9, 0.4);
  color: var(--white);
  font-size: 0.86rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field select {
  padding-right: 30px;
  appearance: none;
  color-scheme: light;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size:
    5px 5px,
    5px 5px;
}

.field select option {
  background-color: #ffffff !important;
  color: #050608 !important;
}

.field select option:disabled {
  color: #050608 !important;
}

.field select option:checked,
.field select option:hover,
.field select optgroup {
  background-color: #ffffff !important;
  color: #050608 !important;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(230, 189, 77, 0.68);
  background-color: rgba(4, 6, 9, 0.65);
  box-shadow: 0 0 0 3px rgba(230, 189, 77, 0.1);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 21px;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.65rem;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(230, 189, 77, 0.5);
  text-underline-offset: 2px;
}

.form-disclaimer {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.38);
  font-size: 0.64rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 70px 0 25px;
  border-top: 1px solid var(--line-light);
  background: #07090c;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.65fr);
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 310px;
  color: rgba(255, 253, 248, 0.42);
  font-size: 0.78rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: rgba(255, 253, 248, 0.44);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 248, 0.34);
  font-size: 0.67rem;
}

.mobile-cta {
  display: none;
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .hero-copy.reveal {
  transform: translate3d(-18px, calc(24px + var(--hero-copy-y)), 0);
}

.js .hero-copy.reveal.is-visible {
  transform: translate3d(0, var(--hero-copy-y), 0);
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-arrive 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-video {
    animation: hero-film-arrive 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-orbit {
    animation: orbit-drift 12s ease-in-out 1.4s infinite alternate;
  }

  .js .hero-copy.reveal.is-visible > .eyebrow,
  .js .hero-copy.reveal.is-visible > h1,
  .js .hero-copy.reveal.is-visible > .hero-lead,
  .js .hero-copy.reveal.is-visible > .hero-actions,
  .js .hero-copy.reveal.is-visible > .hero-facts {
    animation: hero-item-arrive 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .js .hero-copy.reveal.is-visible > h1 {
    animation-delay: 80ms;
  }

  .js .hero-copy.reveal.is-visible > .hero-lead {
    animation-delay: 150ms;
  }

  .js .hero-copy.reveal.is-visible > .hero-actions {
    animation-delay: 220ms;
  }

  .js .hero-copy.reveal.is-visible > .hero-facts {
    animation-delay: 290ms;
  }

  .hero-pipeline-card {
    --delay: 340ms;
  }
}

@keyframes header-arrive {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-film-arrive {
  from {
    opacity: 0.45;
    transform: translate3d(0, var(--hero-y), 0) scale(1.085);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--hero-y), 0) scale(1.025);
  }
}

@keyframes hero-item-arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes orbit-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, -12px, 0) scale(1.025);
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .hero-inner {
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 4.5vw, 4.2rem);
    line-height: 1.03;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .hero-pipeline-card {
    padding: 18px;
  }

  .pipeline-card-intro {
    margin: 16px 0 13px;
  }

  .pipeline-card-intro h2 {
    font-size: 1.7rem;
  }

  .pipeline-step {
    padding: 9px 11px;
  }

  .pipeline-card-note {
    margin-top: 12px;
    font-size: 0.67rem;
  }
}

/* Responsive */
@media (max-width: 1020px) {
  .main-navigation {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.35rem);
  }

  .hero-pipeline-card {
    max-width: 370px;
  }

  .result-card {
    min-height: 410px;
    padding: 26px;
  }

  .result-state {
    right: 26px;
    left: 26px;
  }

  .offer-body {
    grid-template-columns: 1fr;
  }

  .payment-card {
    display: grid;
    grid-template-columns: 1fr auto 1px auto 1fr;
    align-items: center;
    gap: 18px;
  }

  .payment-card .mini-label {
    grid-column: 1 / -1;
  }

  .payment-line {
    width: 1px;
    height: 45px;
    margin: 0;
  }

  .payment-note {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .payment-card .button,
  .payment-card .button-note {
    grid-column: 1 / -1;
  }

  .process-layout,
  .faq-grid {
    gap: 65px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --trust-height: 120px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 71px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    border-bottom: 1px solid transparent;
    background: rgba(8, 10, 14, 0.97);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 350ms ease,
      opacity 220ms ease,
      visibility 220ms ease,
      padding 350ms ease,
      border-color 220ms ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .main-navigation.is-open {
    max-height: calc(100svh - 71px);
    padding-top: 12px;
    padding-bottom: 22px;
    overflow-y: auto;
    border-color: var(--line-light);
    opacity: 1;
    visibility: visible;
  }

  .main-navigation > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    font-size: 1rem;
  }

  .main-navigation > a:not(.button)::after {
    display: none;
  }

  .main-navigation .button {
    margin-top: 18px;
  }

  .hero-video {
    object-position: 57% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 6, 9, 0.9) 0%,
        rgba(5, 7, 11, 0.62) 65%,
        rgba(5, 7, 11, 0.3) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 5, 8, 0.32),
        transparent 36%,
        rgba(3, 5, 8, 0.78)
      );
  }

  .hero-copy {
    width: min(720px, 94%);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 72px;
  }

  .hero-pipeline-card {
    width: min(100%, 720px);
    max-width: none;
    justify-self: start;
  }

  .hero-scroll {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid p:nth-child(2) {
    border-right: 1px solid var(--line-light);
  }

  .trust-grid p:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    min-height: 310px;
  }

  .result-icon {
    margin-bottom: 30px;
  }

  .result-summary {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .result-summary h2 {
    max-width: 640px;
  }

  .process-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .process-intro,
  .faq-heading {
    position: static;
  }

  .founder-card {
    grid-template-columns: 0.8fr 1fr;
    gap: 40px;
    padding-right: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.2rem, 10.2vw, 2.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9.3vw, 2.65rem);
  }

  h3 {
    letter-spacing: -0.025em;
  }

  .eyebrow,
  .mini-label {
    font-size: 0.65rem;
    letter-spacing: 0.135em;
    line-height: 1.45;
  }

  .eyebrow {
    gap: 10px;
    margin-bottom: 17px;
  }

  .eyebrow > span {
    width: 25px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 68px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 43px;
    height: 43px;
  }

  .brand strong {
    font-size: 0.71rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .main-navigation {
    top: 67px;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .hero {
    min-height: 0;
  }

  .hero-video {
    top: -2%;
    height: 106%;
    object-position: 53% 50%;
    filter: saturate(0.78) contrast(1.08) brightness(0.78);
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 6, 9, 0.42) 0%,
        rgba(4, 6, 9, 0.35) 21%,
        rgba(4, 6, 9, 0.75) 54%,
        rgba(4, 6, 9, 0.96) 100%
      ),
      linear-gradient(90deg, rgba(4, 6, 9, 0.7), rgba(4, 6, 9, 0.22));
  }

  .hero::after {
    opacity: 0.1;
    mask-image: linear-gradient(black, transparent);
  }

  .hero-orbit {
    right: -65vw;
    bottom: -28vw;
    width: 135vw;
    height: 135vw;
  }

  .hero-inner {
    align-items: start;
    gap: 40px;
    padding-top: 105px;
    padding-bottom: 46px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .eyebrow {
    max-width: 330px;
    margin-bottom: 16px;
  }

  .hero h1 {
    max-width: 540px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 10.2vw, 2.65rem);
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: pretty;
  }

  .hero h1 em {
    margin-top: 5px;
  }

  .hero-lead {
    max-width: 520px;
    margin-bottom: 21px;
    color: rgba(255, 253, 248, 0.8);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-self: center;
    min-height: 42px;
    align-items: center;
    padding: 8px 0 5px;
    font-size: 0.81rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts li,
  .hero-facts li:first-child {
    padding: 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts li:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-facts li:last-child {
    padding-right: 0;
  }

  .hero-facts strong {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .hero-facts span {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .hero-pipeline-card {
    margin-top: 3px;
    padding: 18px;
    border-radius: 19px;
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .pipeline-card-intro {
    display: grid;
    gap: 7px;
    margin: 16px 0 14px;
  }

  .pipeline-card-intro h2 {
    font-size: 1.48rem;
  }

  .pipeline-card-intro > p {
    max-width: none;
    text-align: left;
  }

  .pipeline-flow {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .pipeline-step {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 58px;
    padding: 10px;
  }

  .pipeline-step > span {
    width: 32px;
    height: 32px;
  }

  .pipeline-step strong {
    font-size: 0.8rem;
  }

  .pipeline-step small {
    font-size: 0.65rem;
  }

  .pipeline-card-note {
    margin-top: 13px;
  }

  .trust-grid p {
    min-height: 60px;
    gap: 7px;
    padding: 8px 6px;
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .split-heading {
    margin-bottom: 40px;
  }

  .result-card {
    min-height: 0;
    padding: 23px;
  }

  .result-card::before {
    right: -92px;
    bottom: -118px;
  }

  .result-state {
    position: static;
    display: block;
    margin-top: 23px;
    padding-top: 13px;
  }

  .result-summary {
    gap: 22px;
    padding: 30px 24px;
  }

  .result-summary h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .result-summary-lead {
    margin-top: 16px;
    font-size: 0.87rem;
  }

  .result-summary-metrics {
    margin-top: 22px;
  }

  .result-summary-metrics span {
    padding: 10px 6px;
    font-size: 0.56rem;
  }

  .result-benefits {
    grid-template-columns: 1fr;
  }

  .result-benefits li:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .result-benefits li {
    padding: 15px 0;
  }

  .offer-section {
    padding-right: 0;
    padding-left: 0;
  }

  .offer-section .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .offer-shell {
    border-radius: 25px;
  }

  .offer-ribbon {
    display: grid;
    gap: 3px;
    padding: 12px 23px;
  }

  .offer-ribbon p {
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .offer-head {
    display: grid;
    gap: 25px;
    padding: 30px 23px;
  }

  .offer-head h2 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
  }

  .price-box {
    width: 100%;
    min-width: 0;
    justify-items: start;
    padding: 18px;
  }

  .offer-body {
    gap: 35px;
    padding: 30px 23px;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .payment-card {
    display: block;
    padding: 23px;
  }

  .payment-step {
    margin-top: 16px;
  }

  .payment-line {
    width: 1px;
    height: 25px;
    margin: 2px 0 2px 17px;
  }

  .payment-note {
    margin: 20px 0;
    padding-top: 17px;
    border-top: 1px solid var(--line-light);
  }

  .scope-rail {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 22px 23px;
  }

  .scope-rail a {
    width: fit-content;
    margin-top: 5px;
  }

  .process-step {
    grid-template-columns: 47px 1fr;
    gap: 17px;
    min-height: 0;
    padding-bottom: 28px;
  }

  .process-steps::before {
    left: 23px;
  }

  .process-marker {
    width: 47px;
    height: 47px;
    box-shadow: 0 0 0 6px #0d1118;
  }

  .process-step > div:last-child {
    padding: 4px 0 26px;
  }

  .requirement-note {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 60px;
  }

  .founder-section {
    padding-top: 0;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border-radius: 25px;
  }

  .founder-image-wrap {
    height: 300px;
  }

  .founder-image-wrap::after {
    background: linear-gradient(180deg, transparent 55%, var(--night-2) 100%);
  }

  .founder-card > div:last-child {
    padding: 8px 25px 38px;
  }

  .faq-list summary {
    min-height: 76px;
    padding: 18px 0;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .faq-list details > p {
    margin-right: 0;
    margin-left: 0;
    font-size: 0.88rem;
  }

  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .form-card {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .form-heading {
    display: grid;
    gap: 6px;
  }

  .form-heading strong {
    max-width: none;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field {
    margin-bottom: 14px;
  }

  .field label {
    margin-bottom: 7px;
    font-size: 0.73rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 120px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: linear-gradient(110deg, #f6d878, #dfb43c 68%, #c99124);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
    color: #17130a;
    font-size: 0.84rem;
    font-weight: 820;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  body.menu-open .mobile-cta {
    transform: translateY(90px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-cta.is-hidden {
    transform: translateY(90px);
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 94px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 10.4vw, 2.3rem);
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-facts strong {
    font-size: 0.74rem;
  }

  .hero-facts span {
    font-size: 0.54rem;
  }

  .pipeline-card-head p,
  .pipeline-card-head span {
    font-size: 0.56rem;
  }

  .pipeline-card-note {
    font-size: 0.66rem;
  }

  .result-card {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video,
  .hero-copy {
    transform: none !important;
  }

  .js .reveal,
  .js .hero-copy.reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final night-mode guard: every section after the opening viewport stays dark. */
main > .section {
  background-color: #080a0e !important;
  color: var(--white);
  color-scheme: dark;
}

main > .result-section {
  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(230, 189, 77, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 2% 76%,
      rgba(62, 91, 80, 0.16),
      transparent 31%
    ),
    linear-gradient(180deg, #0a0d12 0%, #0d1118 56%, #090c11 100%) !important;
}

main > .offer-section {
  background:
    radial-gradient(
      circle at 4% 6%,
      rgba(230, 189, 77, 0.1),
      transparent 29%
    ),
    radial-gradient(
      circle at 96% 94%,
      rgba(59, 91, 80, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #090c11, #0c1016 52%, #080b0f) !important;
}

main > .process-section {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(230, 189, 77, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #080b0f 0%, #0d1118 48%, #090c12 100%) !important;
}

main > .founder-section {
  background:
    radial-gradient(
      circle at 12% 90%,
      rgba(230, 189, 77, 0.075),
      transparent 26%
    ),
    #090c12 !important;
}

main > .faq-section {
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(230, 189, 77, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 96% 88%,
      rgba(59, 91, 80, 0.11),
      transparent 30%
    ),
    linear-gradient(180deg, #0a0d12, #0d1118 60%, #090c11) !important;
}

main > .contact-section {
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(230, 189, 77, 0.13),
      transparent 27%
    ),
    #080a0e !important;
}