:root {
  --ink: #0d1110;
  --paper: #f6f2e8;
  --paper-deep: #e9dfcf;
  --night: #060807;
  --night-soft: #111715;
  --night-panel: #151c19;
  --line: rgba(13, 17, 16, 0.14);
  --line-dark: rgba(246, 242, 232, 0.16);
  --muted: #657069;
  --muted-light: #b7c1ba;
  --green: #66e39f;
  --green-dark: #1f7f4d;
  --amber: #e8bf68;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.24);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.92), rgba(6, 8, 7, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 45px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(102, 227, 159, 0.16));
}

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(246, 242, 232, 0.72);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 86px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.98) 0%, rgba(6, 8, 7, 0.86) 56%, rgba(6, 8, 7, 0.7) 100%),
    radial-gradient(circle at 76% 26%, rgba(102, 227, 159, 0.2), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(232, 191, 104, 0.12), transparent 30%),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 8, 7, 0), var(--night));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(700px, 100%);
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(246, 242, 232, 0.8);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #062013;
}

.button-secondary {
  border-color: var(--line-dark);
  background: rgba(246, 242, 232, 0.07);
  color: var(--paper);
}

.full-width {
  width: 100%;
}

.fine-print,
.legal-note {
  color: rgba(246, 242, 232, 0.6);
  font-size: 14px;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(102, 227, 159, 0.12), rgba(232, 191, 104, 0.07)),
    rgba(246, 242, 232, 0.055);
  box-shadow: var(--shadow);
}

.hero-phone-stage {
  padding: clamp(20px, 3vw, 30px);
}

.hero-phone-stage::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 18%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(102, 227, 159, 0.16);
  filter: blur(48px);
  pointer-events: none;
}

.phone-cluster {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  margin: 0;
  padding: 0;
}

.phone-mockup::after {
  content: none;
}

.phone-screen-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
}

.phone-screen-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.42));
}

.phone-mockup figcaption {
  position: absolute;
  left: 50%;
  bottom: -36px;
  z-index: 4;
  min-width: max-content;
  border: 1px solid rgba(102, 227, 159, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(6, 8, 7, 0.78);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-phone-stage .phone-mockup figcaption {
  display: none;
}

.phone-mockup-primary {
  width: min(100%, 318px);
  transform: translateX(-56px) rotate(-2deg);
}

.phone-mockup-secondary {
  position: absolute;
  top: 96px;
  right: 10px;
  width: 226px;
  opacity: 0.96;
  transform: rotate(2deg);
}

.mockup-note {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin: 8px auto 0;
  color: rgba(246, 242, 232, 0.68);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.panel-label {
  margin-bottom: 16px;
  color: rgba(246, 242, 232, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-board {
  display: grid;
  gap: 12px;
}

.signal-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-width: 0;
  gap: 8px 12px;
  padding: 16px;
  border: 1px solid rgba(246, 242, 232, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.signal-row span {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(102, 227, 159, 0.14);
  color: var(--green);
  font-weight: 900;
}

.signal-row strong {
  color: var(--white);
  overflow-wrap: anywhere;
}

.signal-row small {
  color: rgba(246, 242, 232, 0.58);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ticker-strip {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 18px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line-dark);
  color: rgba(246, 242, 232, 0.62);
  font-size: 14px;
  white-space: nowrap;
}

.ticker-strip span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 18px;
  border-radius: 999px;
  background: var(--amber);
  vertical-align: middle;
}

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

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.section-heading p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.48;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 760px);
  margin-bottom: 34px;
}

.proof-grid,
.pricing-grid,
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item,
.price-card,
.lab-card {
  min-height: 280px;
  padding: 30px;
  background: var(--paper);
}

.proof-number {
  display: block;
  margin-bottom: 74px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.proof-item p,
.price-card li,
.lab-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--night);
}

.screen-grid {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.screen-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1fr);
  min-width: 0;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: clamp(20px, 3.2vw, 34px);
  background: rgba(246, 242, 232, 0.055);
  box-shadow: var(--shadow-soft);
}

.screen-card-featured {
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 0.9fr);
  background:
    linear-gradient(135deg, rgba(102, 227, 159, 0.1), rgba(232, 191, 104, 0.06)),
    rgba(246, 242, 232, 0.07);
}

.screen-copy {
  min-width: 0;
}

.screen-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screen-card p {
  max-width: 620px;
  color: rgba(246, 242, 232, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.screen-points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(246, 242, 232, 0.74);
  font-size: 15px;
  line-height: 1.45;
  list-style: none;
}

.screen-points li {
  position: relative;
  padding-left: 18px;
}

.screen-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.mockup-pair {
  display: flex;
  min-width: 0;
  min-height: 570px;
  align-items: center;
  justify-content: center;
  padding: 10px 0 44px;
}

.mockup-pair .phone-mockup-card {
  flex: 0 0 auto;
  width: min(54%, 292px);
  margin: 0;
}

.mockup-pair .phone-mockup-card:first-child {
  transform: rotate(-1.5deg);
}

.mockup-pair .phone-mockup-card + .phone-mockup-card {
  z-index: 3;
  margin-left: -46px;
  transform: translateY(24px) rotate(2.5deg);
}

.screen-card-featured .mockup-pair .phone-mockup-card {
  width: min(55%, 308px);
}

.phone-mockup-card {
  width: min(100%, 300px);
  margin: 0 0 42px;
  justify-self: center;
}

.shot-placeholder {
  display: grid;
  min-height: 300px;
  align-content: center;
  gap: 10px;
  border: 1px dashed rgba(102, 227, 159, 0.42);
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(102, 227, 159, 0.1), rgba(232, 191, 104, 0.07)),
    rgba(0, 0, 0, 0.2);
}

.shot-placeholder span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-placeholder strong {
  color: var(--white);
  font-size: 24px;
}

.shot-placeholder small {
  color: rgba(246, 242, 232, 0.54);
  line-height: 1.45;
}

.lab-section {
  border-top: 1px solid rgba(13, 17, 16, 0.08);
}

.lab-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lab-card {
  min-height: 220px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  min-height: auto;
}

.price-card-featured {
  background:
    linear-gradient(135deg, rgba(102, 227, 159, 0.13), rgba(232, 191, 104, 0.12)),
    var(--paper);
}

.plan-name {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
}

.price-row strong {
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}

.old-price {
  color: #8b7660;
  text-decoration: line-through;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 520px);
  gap: clamp(32px, 8vw, 104px);
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.form-copy h2 {
  max-width: 650px;
}

.form-copy p {
  max-width: 580px;
  color: rgba(246, 242, 232, 0.72);
  font-size: 19px;
  line-height: 1.52;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.value-list span {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(246, 242, 232, 0.78);
  font-size: 14px;
}

.waitlist-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 24px;
  background: rgba(246, 242, 232, 0.06);
  box-shadow: var(--shadow);
}

.waitlist-form label,
.waitlist-form legend {
  color: rgba(246, 242, 232, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 1px solid rgba(246, 242, 232, 0.16);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--paper);
  font: inherit;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(102, 227, 159, 0.72);
  outline: 3px solid rgba(102, 227, 159, 0.14);
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.choice,
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(246, 242, 232, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
}

.choice input,
.consent input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.muted {
  color: rgba(246, 242, 232, 0.48);
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #ffb4a8;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line-dark);
  color: rgba(246, 242, 232, 0.56);
  font-size: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer a {
  color: rgba(246, 242, 232, 0.64);
  text-decoration: none;
}

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

.legal-page {
  margin: 0 auto;
  max-width: 940px;
  padding: 150px clamp(20px, 5vw, 48px) 72px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(44px, 9vw, 78px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 8px 0 18px;
}

.legal-hero p {
  color: rgba(246, 242, 232, 0.72);
  font-size: 19px;
  line-height: 1.55;
  max-width: 760px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin-top: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.legal-card h2 {
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0;
  margin: 0 0 12px;
}

.legal-card p,
.legal-card li {
  color: rgba(246, 242, 232, 0.72);
  line-height: 1.7;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .proof-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-inner,
  .section-heading,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
  }

  .proof-grid,
  .pricing-grid,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    grid-template-columns: 1fr;
  }

  .screen-card-featured {
    grid-template-columns: 1fr;
  }

  .screen-copy {
    order: -1;
  }

  .mockup-pair {
    min-height: 550px;
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
  }

  h1 {
    max-width: min(342px, 100%);
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-copy,
  .fine-print,
  .hero-actions {
    width: 100%;
    max-width: min(340px, calc(100vw - 48px));
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .phone-cluster {
    min-height: 510px;
  }

  .phone-mockup-primary {
    width: 262px;
    transform: translateX(-26px) rotate(-1.5deg);
  }

  .phone-mockup-secondary {
    top: 92px;
    right: 2px;
    width: 188px;
    transform: rotate(2.5deg);
  }

  .phone-mockup-card {
    width: min(100%, 258px);
  }

  .screen-card {
    gap: 18px;
    border-radius: 22px;
    padding: 18px;
  }

  .screen-card p {
    font-size: 16px;
  }

  .screen-points {
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
  }

  .mockup-pair {
    min-height: 418px;
    padding: 0 0 24px;
  }

  .mockup-pair .phone-mockup-card,
  .screen-card-featured .mockup-pair .phone-mockup-card {
    width: min(61%, 204px);
  }

  .mockup-pair .phone-mockup-card:first-child {
    transform: translateX(4px) rotate(-1deg);
  }

  .mockup-pair .phone-mockup-card + .phone-mockup-card {
    margin-left: -50px;
    transform: translateY(20px) rotate(2deg);
  }

  .signal-row {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 14px;
  }

  .signal-row span {
    width: 30px;
    height: 30px;
  }

  h2 {
    font-size: 34px;
  }

  .section-heading,
  .section-heading h2,
  .section-heading p {
    max-width: min(340px, calc(100vw - 48px));
  }

  .proof-item,
  .price-card,
  .waitlist-form,
  .lab-card {
    padding: 20px;
  }

  .proof-number {
    margin-bottom: 42px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }
}
