:root {
  --ink: #f6f3e8;
  --muted: rgba(246, 243, 232, 0.68);
  --quiet: rgba(246, 243, 232, 0.48);
  --night: #080a09;
  --night-soft: #101512;
  --field: #171d19;
  --line: rgba(246, 243, 232, 0.16);
  --line-strong: rgba(246, 243, 232, 0.32);
  --acid: #dfff4f;
  --aqua: #69d2c5;
  --rust: #d6794d;
  --paper: #f0eadc;
  --paper-ink: #121612;
  --header-height: 74px;
  font-family:
    "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--night);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 54px);
  color: var(--ink);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 6px;
}

.brand-mark::after {
  inset: 11px;
  border-color: var(--acid);
  border-right-color: transparent;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--quiet);
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a,
.nav-cta {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-cta:hover {
  color: var(--night);
  background: var(--acid);
  border-color: var(--acid);
}

.hero {
  position: relative;
  min-height: min(780px, 88svh);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(52vw, 820px);
  opacity: 0.82;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.12) brightness(0.64);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #080a09 0%, rgba(8, 10, 9, 0.98) 43%, rgba(8, 10, 9, 0.56) 74%, rgba(8, 10, 9, 0.2) 100%),
    linear-gradient(0deg, #080a09 0%, rgba(8, 10, 9, 0) 36%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 42px) clamp(20px, 5vw, 72px) clamp(42px, 8vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(4.1rem, 9.8vw, 10.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(246, 243, 232, 0.84);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--acid);
  border: 1px solid var(--acid);
}

.button-primary:hover {
  background: #f0ff9d;
  border-color: #f0ff9d;
}

.button-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(246, 243, 232, 0.04);
}

.button-ghost:hover {
  background: rgba(246, 243, 232, 0.1);
  border-color: rgba(246, 243, 232, 0.58);
}

.statement-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--night);
}

.statement-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 8vw, 100px);
  padding: clamp(34px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.statement-label {
  margin-bottom: 0;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.statement-grid p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.2vw, 3.7rem);
  font-weight: 750;
  line-height: 1.04;
}

.section,
.cta-inner,
.site-footer {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.section {
  padding: clamp(70px, 11vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(32px, 6vw, 72px);
}

.section-heading h2,
.cta-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 6vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.method-section {
  background:
    linear-gradient(180deg, var(--night) 0%, #0f1412 100%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-card {
  min-height: 340px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
}

.method-card + .method-card {
  border-left: 1px solid var(--line);
}

.card-index {
  display: block;
  margin-bottom: auto;
  color: var(--acid);
  font-size: 0.86rem;
  font-weight: 900;
}

.method-card h3,
.offer-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.method-card p,
.offer-card p,
.cta-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.offer-section {
  width: 100%;
  max-width: none;
  background: var(--paper);
  color: var(--paper-ink);
}

.offer-section .section-heading,
.offer-section .offer-list {
  width: min(100%, 1240px);
  margin-left: auto;
  margin-right: auto;
}

.offer-section .section-kicker {
  color: #53726d;
}

.offer-list {
  display: grid;
  border-top: 1px solid rgba(18, 22, 18, 0.2);
}

.offer-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 6vw, 82px);
  padding: clamp(28px, 5vw, 48px) 0;
  border-bottom: 1px solid rgba(18, 22, 18, 0.2);
}

.offer-card span {
  align-self: start;
  color: #53726d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.35rem);
  text-transform: uppercase;
}

.offer-card p {
  max-width: 780px;
  color: rgba(18, 22, 18, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.outcome-section {
  background: #0f1412;
}

.outcome-carousel {
  display: grid;
  gap: 18px;
}

.outcome-viewport {
  overflow: hidden;
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #080a09;
}

.outcome-track {
  display: block;
}

.outcome-slide {
  display: none;
  min-width: 0;
}

.outcome-slide.is-active {
  display: block;
}

.outcome-media {
  min-width: 0;
  padding: clamp(8px, 1.2vw, 14px);
  background: #080a09;
}

.outcome-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #080a09;
  filter: saturate(0.85) contrast(1.06);
}

.outcome-caption {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(18px, 5vw, 60px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.outcome-caption span {
  display: block;
  margin-bottom: 0;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-caption strong {
  display: block;
  max-width: 780px;
  font-size: clamp(1.38rem, 3vw, 3.3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.outcome-controls {
  display: grid;
  grid-template-columns: 46px minmax(0, auto) 46px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.outcome-arrow,
.outcome-dot {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(246, 243, 232, 0.04);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.outcome-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
}

.outcome-arrow span {
  width: 11px;
  height: 11px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.outcome-arrow[data-outcome-prev] span {
  transform: rotate(-135deg);
}

.outcome-arrow[data-outcome-next] span {
  transform: rotate(45deg);
}

.outcome-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.outcome-dot {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.outcome-arrow:hover,
.outcome-dot:hover,
.outcome-dot.is-active {
  border-color: var(--acid);
  color: var(--night);
  background: var(--acid);
}

.cta-section {
  padding: clamp(66px, 10vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--night);
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 8vw, 92px);
  align-items: start;
}

.cta-copy p {
  max-width: 650px;
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 12px 0 14px;
  color: var(--ink);
  background: transparent;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--acid);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(20px, 5vw, 72px) 34px;
  color: var(--quiet);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.site-footer span:last-child {
  justify-self: end;
}

.site-footer a:hover {
  color: var(--acid);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-media {
    width: 76vw;
    opacity: 0.54;
  }

  .hero::before {
    background:
      linear-gradient(90deg, #080a09 0%, rgba(8, 10, 9, 0.9) 60%, rgba(8, 10, 9, 0.44) 100%),
      linear-gradient(0deg, #080a09 0%, rgba(8, 10, 9, 0) 44%);
  }

  .hero-panel {
    display: none;
  }

  .statement-grid,
  .method-grid,
  .offer-card,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .method-card + .method-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .method-card {
    min-height: 260px;
  }

  .outcome-caption {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer span:last-child {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    gap: 12px;
    padding: 0 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-inner {
    padding: calc(var(--header-height) + 30px) 18px 40px;
  }

  h1 {
    font-size: clamp(3.65rem, 19vw, 6.7rem);
  }

  h1 span {
    -webkit-text-stroke-width: 1px;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .statement-grid,
  .section,
  .cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .statement-grid p:last-child {
    font-size: clamp(1.45rem, 9vw, 2.35rem);
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: clamp(2.2rem, 12vw, 4.2rem);
  }

  .method-card {
    min-height: 230px;
    padding: 22px 0;
  }

  .outcome-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .outcome-dots {
    flex-wrap: nowrap;
  }

  .outcome-dot {
    flex: 0 0 auto;
    width: 11px;
    min-height: 11px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .outcome-dot.is-active {
    width: 28px;
    border-radius: 999px;
  }

  .outcome-arrow {
    width: 44px;
    height: 44px;
  }
}
