@font-face {
  font-family: SpaceGrotesk;
  src: url("/assets/space-grotesk-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: SpaceGrotesk;
  src: url("/assets/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: SpaceGrotesk;
  src: url("/assets/space-grotesk-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: SpaceGrotesk;
  src: url("/assets/space-grotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --black: #050505;
  --near: #0b0b0c;
  --white: #fff;
  --off: #f5f5f3;
  --soft: #e9e9e6;
  --line: #d3d3cf;
  --muted: #686864;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: SpaceGrotesk, "Segoe UI Variable", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.56;
}
.site-header {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 88px;
  padding: 0 clamp(22px, 4.5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
}
.brand img {
  display: block;
  border-radius: 50%;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header nav > a {
  text-decoration: none;
  font-size: 13px;
  color: #c8c8c5;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.button-compact {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}
.button-white {
  background: #fff;
  color: #050505;
}
.button-black {
  background: #050505;
  color: #fff;
}
.button-ghost {
  border-color: #4a4a49;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}
.hero-center {
  position: relative;
  z-index: 2;
  flex: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vh, 120px) 0 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid #3c3c3c;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}
.hero-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.hero-logo {
  margin: 36px 0 24px;
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(255, 255, 255, 0.08);
}
.hero h1 {
  margin: 0;
  font-size: 132px;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}
.hero-tagline {
  margin: 26px 0 18px;
  font-size: 30px;
  font-weight: 400;
  color: #d7d7d3;
}
.hero-description {
  max-width: 720px;
  margin: 0;
  color: #a9a9a4;
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.hero-assurance {
  margin: 20px 0 0;
  color: #74746f;
  font-size: 12px;
}
.signal-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 32px;
  padding: 18px 24px;
  border: 1px solid #292929;
  background: rgba(7, 7, 7, 0.86);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
}
.signal-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.signal-strip i {
  font-style: normal;
  color: #777;
  font-size: 10px;
}
.signal-strip span {
  font-size: 12px;
}
.signal-strip b {
  height: 1px;
  margin: 0 20px;
  background: #313131;
  position: relative;
}
.signal-strip b:after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8c8c88;
}
.section {
  padding: clamp(90px, 10vw, 154px) clamp(22px, 6vw, 96px);
}
.center-heading {
  max-width: 930px;
  margin: 0 auto 70px;
  text-align: center;
}
.center-heading.narrow {
  max-width: 1100px;
}
.kicker {
  margin: 0 0 26px;
  color: #6c6c68;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.center-heading h2,
.free-proof h2,
.closing h2 {
  margin: 0;
  font-size: 86px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}
.center-heading > p:last-child {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.model {
  background: #fff;
}
.equation {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.equation > div {
  padding: 40px 24px;
  text-align: center;
}
.equation > span {
  color: #a2a29e;
  font-size: 28px;
}
.equation small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}
.equation strong {
  font-size: 32px;
  font-weight: 500;
}
.model-note,
.financial-note {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
  color: #83837f;
  font-size: 11px;
  line-height: 1.6;
}
.contrast {
  background: var(--off);
}
.comparison {
  width: min(1160px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #cfcfcb;
}
.comparison > div {
  padding: clamp(34px, 5vw, 72px);
}
.comparison-new {
  background: #050505;
  color: #fff;
}
.comparison p {
  margin: 0 0 42px;
  color: #777772;
  font-size: 12px;
  text-transform: uppercase;
}
.comparison-new p {
  color: #8b8b87;
}
.comparison strong {
  display: block;
  max-width: 430px;
  font-size: 40px;
  line-height: 1.15;
}
.comparison ul {
  list-style: none;
  padding: 32px 0 0;
  margin: 32px 0 0;
  border-top: 1px solid #cfcfcb;
}
.comparison-new ul {
  border-color: #303030;
}
.comparison li {
  padding: 8px 0;
  color: #74746f;
}
.comparison-new li {
  color: #bdbdb8;
}
.comparison li:before {
  content: "—";
  margin-right: 12px;
}
.how {
  background: #fff;
}
.steps {
  max-width: 1160px;
  margin: auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span {
  color: #92928e;
  font-size: 12px;
}
.steps h3 {
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 600;
}
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.packages {
  background: var(--off);
}
.package-grid {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.package {
  padding: 32px;
  background: #fff;
  border: 1px solid #cececa;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.package-featured {
  background: #050505;
  color: #fff;
  border-color: #050505;
  transform: translateY(-14px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}
.package-top {
  display: flex;
  justify-content: space-between;
  color: #757570;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0;
}
.package-top p {
  margin: 0;
}
.package h3 {
  margin: 54px 0 0;
  font-size: 82px;
  font-weight: 500;
  line-height: 0.9;
}
.leads-label {
  margin: 12px 0 42px;
  color: #73736f;
}
.value-line {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #d5d5d1;
  color: #74746f;
  font-size: 12px;
}
.package-featured .value-line {
  border-color: #303030;
  color: #aaa;
}
.match {
  padding: 22px 0;
  border-top: 1px solid #d5d5d1;
  border-bottom: 1px solid #d5d5d1;
}
.package-featured .match {
  border-color: #303030;
}
.match small {
  display: block;
  color: #74746f;
  margin-bottom: 7px;
}
.package-featured .match small {
  color: #aaa;
}
.match strong {
  font-size: 32px;
  font-weight: 500;
}
.activation {
  margin: 24px 0;
  color: #777772;
  font-size: 13px;
}
.package-featured .activation {
  color: #b7b7b2;
}
.activation strong {
  color: inherit;
}
.package .button {
  width: 100%;
  margin-top: auto;
}
.free-proof {
  position: relative;
  background: #050505;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.free-proof:before,
.free-proof:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background: #1c1c1c;
}
.free-proof:before {
  left: 25%;
}
.free-proof:after {
  right: 25%;
}
.proof-orbit {
  position: relative;
  z-index: 2;
  width: 136px;
  height: 136px;
  margin: 0 auto 38px;
  border: 1px solid #4a4a48;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.proof-orbit:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #242424;
  border-radius: 50%;
}
.proof-orbit span {
  font-size: 62px;
  font-weight: 500;
}
.kicker.light {
  color: #8a8a86;
}
.free-proof > p:not(.kicker) {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 28px auto;
  color: #a8a8a3;
  font-size: 18px;
  line-height: 1.65;
}
.free-proof h2,
.free-proof .button,
.free-proof small {
  position: relative;
  z-index: 2;
}
.free-proof .button {
  margin-top: 12px;
}
.free-proof small {
  display: block;
  margin-top: 18px;
  color: #70706c;
}
.faq {
  background: #fff;
}
.faq-list {
  max-width: 920px;
  margin: auto;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
}
.faq summary:after {
  content: "+";
  font-size: 25px;
  font-weight: 400;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}
.closing {
  text-align: center;
  background: var(--off);
}
.closing > img {
  display: block;
  margin: 0 auto 26px;
  border-radius: 50%;
}
.dark-chip {
  border-color: #c7c7c3;
  margin-bottom: 36px;
}
.dark-chip span {
  background: #050505;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}
.closing h2 {
  font-size: 104px;
}
.closing > p {
  margin: 18px 0 32px;
  color: #696965;
  font-size: 23px;
}
footer {
  padding: 34px clamp(22px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.footer-brand {
  justify-self: start;
}
footer > p {
  text-align: center;
  color: #777772;
}
footer > div {
  justify-self: end;
  display: flex;
  gap: 24px;
}
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}
.modal.open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}
.modal-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(720px, 100%);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: clamp(34px, 6vw, 74px);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.24);
}
.close-button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid #cececa;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}
.form-logo {
  display: block;
  margin-bottom: 28px;
  border-radius: 50%;
}
.modal-panel h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
.form-intro {
  color: var(--muted);
  line-height: 1.6;
}
.plan-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 30px 0;
  padding: 0;
  border: 0;
}
.plan-picker legend {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 600;
}
.plan-picker input {
  position: absolute;
  opacity: 0;
}
.plan-picker span {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c9c5;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.plan-picker input:checked + span {
  background: #050505;
  border-color: #050505;
  color: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.form-grid small {
  font-weight: 400;
  color: var(--muted);
}
.form-grid .wide {
  grid-column: 1/-1;
}
.form-grid input {
  height: 54px;
  padding: 0 14px;
  border: 1px solid #bdbdb8;
  border-radius: 5px;
  background: #fff;
}
.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 24px 0;
  color: #5c5c58;
  font-size: 13px;
  line-height: 1.5;
}
.consent input {
  width: 20px;
  height: 20px;
  margin: 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.submit-button {
  width: 100%;
}
.submit-button[disabled] {
  opacity: 0.6;
  cursor: wait;
}
.form-error {
  min-height: 20px;
  color: #b52222;
  font-size: 13px;
}
.form-security {
  text-align: center;
  color: #787874;
  font-size: 11px;
}
.success-state {
  text-align: center;
  padding-top: 12vh;
}
.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  background: #050505;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
}
.success-state p {
  color: var(--muted);
  line-height: 1.6;
}
.success-state .button {
  margin-top: 20px;
  min-width: 170px;
}
.legal {
  max-width: 900px;
  margin: auto;
  padding: 80px 24px;
}
.legal-header {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.legal h1 {
  font-size: 54px;
  font-weight: 500;
}
.legal h2 {
  margin-top: 42px;
}
.legal p,
.legal li {
  color: #555550;
  line-height: 1.75;
}
@media (max-width: 920px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }
  .site-header nav > a {
    display: none;
  }
  .hero-center {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .center-heading h2,
  .free-proof h2,
  .closing h2 {
    font-size: 64px;
  }
  .signal-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .signal-strip b {
    display: none;
  }
  .equation {
    grid-template-columns: 1fr;
  }
  .equation > span {
    transform: rotate(90deg);
  }
  .comparison,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-featured {
    transform: none;
    order: -1;
  }
  .steps li {
    grid-template-columns: 70px 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-brand,
  footer > div {
    justify-self: center;
  }
  .plan-picker {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .site-header .brand span {
    font-size: 14px;
  }
  .button-compact {
    min-height: 40px;
    padding: 0 13px;
  }
  .hero-center {
    width: calc(100% - 32px);
    padding: 70px 0 44px;
  }
  .hero-chip {
    font-size: 10px;
  }
  .hero-logo {
    width: 70px;
    height: 70px;
    margin: 26px 0 22px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-tagline {
    font-size: 21px;
    margin: 20px 0 14px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-assurance {
    font-size: 11px;
  }
  .signal-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .section {
    padding: 76px 18px;
  }
  .center-heading {
    margin-bottom: 48px;
  }
  .center-heading h2,
  .free-proof h2,
  .closing h2 {
    font-size: 43px;
  }
  .center-heading > p:last-child,
  .free-proof > p:not(.kicker) {
    font-size: 16px;
  }
  .comparison > div {
    padding: 34px 24px;
  }
  .steps li {
    grid-template-columns: 48px 1fr;
  }
  .steps h3 {
    font-size: 20px;
  }
  .package {
    padding: 27px 22px;
  }
  .package h3 {
    margin-top: 40px;
  }
  .free-proof:before {
    left: 15%;
  }
  .free-proof:after {
    right: 15%;
  }
  .modal-panel {
    padding: 78px 20px 34px;
  }
  .close-button {
    position: fixed;
    z-index: 2;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .wide {
    grid-column: auto;
  }
  .plan-picker {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
