:root {
  color-scheme: light;
  --bg: #0f1412;
  --card: #fff9f0;
  --ink: #15110d;
  --ink-soft: #2a211a;
  --muted: #786d61;
  --cream: #f6efe3;
  --line: #e8d8c0;
  --gold: #d1a85a;
  --gold-soft: #efe0be;
  --bottle: #12382f;
  --emerald: #0d2a24;
  --bottle-soft: #dde8df;
  --terracotta: #c46345;
  --sea: #1d6072;
  --wine: #7a2638;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 19, 15, 0.18);
  --shadow-soft: 0 14px 38px rgba(23, 19, 15, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  align-items: center;
  background: rgba(15, 20, 18, 0.78);
  border-bottom: 1px solid rgba(246, 239, 227, 0.12);
  display: flex;
  gap: 22px;
  height: 74px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
  z-index: 10;
}

.site-header.is-scrolled {
  background: rgba(15, 20, 18, 0.94);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
}

.brand-link img {
  height: auto;
  width: 168px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  white-space: nowrap;
}

.nav-links a {
  color: #d8cbb9;
}

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

.nav-cta,
.primary-button {
  background: var(--terracotta);
  color: var(--white);
}

.secondary-button {
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 248, 236, 0.2);
  color: var(--cream);
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(15, 20, 18, 0.92) 0%, rgba(13, 42, 36, 0.78) 46%, rgba(15, 20, 18, 0.16) 100%),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  min-height: calc(100svh - 142px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 74px);
  position: relative;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 680px;
  min-height: calc(100svh - 250px);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0;
}

.hero-copy {
  color: #eadfcc;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.42;
  margin: 22px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  max-width: 620px;
  width: 100%;
}

.hero-metrics div {
  border: 1px solid rgba(247, 241, 232, 0.23);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.08);
  padding: 14px;
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 27px;
  font-weight: 900;
  line-height: 32px;
}

.hero-metrics dd {
  color: #e6d7c2;
  font-size: 12px;
  font-weight: 800;
  margin: 3px 0 0;
  text-transform: uppercase;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 34px);
  width: 100%;
}

.intro-band,
.feature-band,
.app-band,
.journey-band,
.plans-band,
.waitlist-band {
  padding: clamp(56px, 7vw, 92px) 0;
}

.intro-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.feature-band {
  background: var(--bg);
  color: var(--cream);
}

.feature-band h2 {
  color: var(--cream);
}

.feature-band .feature-card {
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.14);
}

.feature-band .feature-card h3 {
  color: var(--cream);
}

.feature-band .feature-card p {
  color: #d8cbb9;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

h2 {
  color: var(--ink);
  font-size: clamp(31px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.intro-grid p:last-child,
.app-copy p,
.waitlist-layout p,
.availability-layout p,
.pricing-reference {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.58;
  margin: 0;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 720px;
}

.feature-grid,
.plan-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 228px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-card span,
.plan-card span {
  color: var(--sea);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.feature-card h3,
.plan-card h3 {
  font-size: 24px;
  line-height: 1.08;
  margin: 0 0 12px;
}

.feature-card p,
.plan-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.52;
  margin: 0;
}

.app-band {
  background: var(--emerald);
  color: var(--cream);
}

.app-layout,
.journey-layout,
.waitlist-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.phone-stage {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.phone {
  background: var(--bg);
  border: 10px solid #100d0b;
  border-radius: 42px;
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 366px;
  min-height: 610px;
  overflow: hidden;
  padding: 20px 16px 18px;
  width: 100%;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 4px 0 16px;
}

.phone-top img {
  width: 164px;
}

.app-hero {
  background:
    linear-gradient(rgba(23, 19, 15, 0.44), rgba(23, 19, 15, 0.72)),
    url("../img/geodrink-hero.png");
  background-position: 56% 52%;
  background-size: 520px;
  border-radius: 24px;
  color: var(--cream);
  min-height: 184px;
  padding: 22px;
}

.app-hero span {
  background: rgba(247, 241, 232, 0.92);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 34px;
  padding: 7px 9px;
  text-transform: uppercase;
}

.app-hero strong {
  display: block;
  font-size: 40px;
  line-height: 42px;
}

.app-hero small {
  color: #eadfcc;
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-top: 5px;
}

.scope-switch {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr 1fr;
  margin: 14px 0;
  padding: 6px;
}

.scope-switch span,
.scope-switch strong {
  align-items: center;
  border-radius: 6px;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
}

.scope-switch span {
  color: var(--muted);
}

.scope-switch strong {
  background: var(--ink);
  color: var(--white);
}

.drink-list {
  display: grid;
  gap: 10px;
}

.drink-row {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 11px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 90px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(23, 19, 15, 0.06);
}

.drink-mark {
  align-items: center;
  background: var(--bottle-soft);
  border-radius: 7px;
  color: var(--bottle);
  display: flex;
  font-size: 27px;
  font-weight: 800;
  height: 58px;
  justify-content: center;
}

.drink-row span,
.drink-row small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.drink-row strong {
  display: block;
  font-size: 18px;
  line-height: 23px;
  margin: 3px 0;
}

.app-copy h2,
.journey-band h2 {
  color: var(--cream);
}

.app-copy p {
  color: #d7c9b9;
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  background: rgba(247, 241, 232, 0.08);
  border: 1px solid rgba(247, 241, 232, 0.15);
  border-radius: 8px;
  color: #efe4d3;
  font-weight: 700;
  padding: 14px 16px;
}

.journey-band {
  background: #07100d;
  color: var(--cream);
}

.journey-steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-steps li {
  align-items: center;
  background: rgba(247, 241, 232, 0.1);
  border: 1px solid rgba(247, 241, 232, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 78px;
  padding: 14px;
}

.journey-steps span {
  align-items: center;
  background: var(--gold);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
}

.journey-steps strong {
  font-size: 20px;
  line-height: 25px;
}

.plans-band {
  background: var(--bg);
}

.pricing-reference-layout {
  max-width: 920px;
}

.pricing-reference {
  color: #d8cbb9;
  max-width: 820px;
}

.plan-card.highlighted {
  background: var(--emerald);
  border-color: var(--gold);
  color: var(--cream);
}

.plan-card.highlighted h3 {
  color: var(--cream);
}

.plan-card.highlighted p {
  color: #d7c9b9;
}

.waitlist-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.waitlist-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.waitlist-layout p,
.availability-layout p {
  margin-top: 16px;
}

.availability-layout {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
}

.availability-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  padding: clamp(22px, 4vw, 32px);
}

.availability-panel span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.availability-panel strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.08;
}

.site-footer {
  align-items: center;
  background: #070b09;
  color: #d7c9b9;
  display: flex;
  gap: 12px;
  justify-content: center;
  min-height: 86px;
  padding: 22px;
}

.site-footer img {
  height: 38px;
  width: 38px;
}

.site-footer p {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

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

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9), rgba(24, 60, 51, 0.78)),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  padding: clamp(62px, 8vw, 112px) 0;
}

.privacy-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.privacy-hero h1 {
  color: var(--cream);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.privacy-hero p {
  color: #eadfcc;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0 0;
  max-width: 760px;
}

.privacy-summary {
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 8px;
  padding: 20px;
}

.privacy-summary span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-summary strong {
  color: var(--cream);
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-top: 8px;
}

.privacy-summary p {
  color: #dfd2bf;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
}

.privacy-content-band {
  padding: clamp(44px, 6vw, 84px) 0;
}

.privacy-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 240px minmax(0, 1fr);
}

.privacy-index {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
  position: sticky;
  top: 94px;
}

.privacy-index a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 11px;
}

.privacy-index a:hover {
  background: var(--bottle-soft);
  color: var(--bottle);
}

.privacy-document {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 44px);
}

.privacy-document section + section {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 28px;
}

.privacy-document h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.privacy-document p,
.privacy-document li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.privacy-document p {
  margin: 0;
}

.privacy-document ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.privacy-document a {
  color: var(--sea);
  font-weight: 900;
}

.plans-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9), rgba(30, 90, 109, 0.72)),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  padding: clamp(58px, 8vw, 108px) 0;
}

.password-reset-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9), rgba(24, 60, 51, 0.76)),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  min-height: calc(100svh - 160px);
  padding: clamp(58px, 8vw, 108px) 0;
}

.login-page-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9), rgba(30, 90, 109, 0.72)),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  min-height: calc(100svh - 160px);
  padding: clamp(58px, 8vw, 108px) 0;
}

.unsubscribe-hero {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.92), rgba(123, 36, 53, 0.7)),
    url("../img/geodrink-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  min-height: calc(100svh - 160px);
  padding: clamp(58px, 8vw, 108px) 0;
}

.plans-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
}

.password-reset-layout,
.login-page-layout {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  min-height: calc(100svh - 320px);
}

.unsubscribe-layout {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  min-height: calc(100svh - 320px);
}

.plans-hero h1 {
  color: var(--cream);
  font-size: clamp(43px, 6.6vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 920px;
}

.password-reset-hero h1,
.login-page-hero h1,
.unsubscribe-hero h1 {
  color: var(--cream);
  font-size: clamp(43px, 6.6vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.plans-hero p,
.login-layout p,
.password-reset-hero p,
.login-page-hero p,
.unsubscribe-hero > .section-shell > div > p {
  color: #eadfcc;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.55;
  margin: 20px 0 0;
}

.unsubscribe-panel {
  background: var(--card);
  border: 1px solid rgba(247, 241, 232, 0.24);
  border-radius: 8px;
  color: var(--ink);
  padding: clamp(20px, 4vw, 30px);
}

.unsubscribe-panel h2 {
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.05;
  margin-top: 8px;
}

.unsubscribe-panel p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.unsubscribe-label {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.unsubscribe-state {
  margin: 0;
}

.danger-button {
  align-items: center;
  background: var(--wine);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 10px;
  min-height: 48px;
  padding: 0 16px;
  width: 100%;
}

.danger-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.checkout-status {
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(247, 241, 232, 0.22);
  border-radius: 8px;
  padding: 20px;
}

.checkout-status span,
.pricing-card-top > span,
.checkout-login-form span,
.login-user-pill span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-status strong {
  color: var(--cream);
  display: block;
  font-size: 23px;
  line-height: 29px;
  margin-top: 8px;
}

.checkout-status p {
  color: #dfd2bf;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.plans-page-band,
.login-band {
  padding: clamp(50px, 7vw, 88px) 0;
}

.plans-page-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-progress {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--cream);
  margin-bottom: 20px;
  padding: clamp(18px, 3vw, 26px);
}

.promo-progress-copy {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.promo-progress-copy span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-progress-copy strong {
  color: var(--cream);
  display: block;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1;
  margin-top: 7px;
}

.promo-progress-copy b {
  font-weight: 900;
}

.promo-progress-copy p {
  color: #d7c9b9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  max-width: 460px;
  text-align: right;
}

.promo-progress-track {
  background: rgba(247, 241, 232, 0.14);
  border-radius: 6px;
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
}

.promo-progress-track span {
  background: var(--gold);
  display: block;
  height: 100%;
  transition: width 500ms ease;
}

.billing-period {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto 22px;
  max-width: 390px;
  padding: 6px;
}

.billing-period button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  min-height: 48px;
  padding: 7px 12px;
}

.billing-period button.is-active {
  background: var(--ink);
  color: var(--white);
}

.billing-period small {
  color: var(--gold);
  display: block;
  font-size: 10px;
  margin-top: 2px;
  text-transform: uppercase;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 24px;
}

.pricing-card.highlighted {
  background: var(--bottle);
  border-color: var(--gold);
  color: var(--cream);
}

.pricing-card-top {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.pricing-price {
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.pricing-price small {
  background: var(--gold-soft);
  border-radius: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 7px;
  text-transform: uppercase;
}

.pricing-card.highlighted .pricing-price small {
  background: var(--gold);
}

.pricing-price del {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.pricing-card.highlighted .pricing-price del {
  color: #bfae9b;
}

.pricing-price strong {
  color: var(--sea);
  font-size: 22px;
  line-height: 28px;
}

.pricing-price [data-plan-period] {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card.highlighted .pricing-price [data-plan-period] {
  color: #d7c9b9;
}

.pricing-card.highlighted .pricing-price strong,
.pricing-card.highlighted h2 {
  color: var(--cream);
}

.pricing-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.03;
}

.pricing-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  margin: 16px 0 0;
}

.pricing-card.highlighted p {
  color: #d7c9b9;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 24px;
  padding: 0;
}

.pricing-card li {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  padding-top: 10px;
}

.pricing-card.highlighted li {
  border-color: rgba(247, 241, 232, 0.18);
  color: #efe4d3;
}

.plan-action {
  border: 0;
  cursor: pointer;
  margin-top: auto;
  width: 100%;
}

.plan-action:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.login-band {
  background: var(--bottle);
  color: var(--cream);
}

.login-layout {
  align-items: start;
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
}

.login-layout h2 {
  color: var(--cream);
}

.checkout-login-form {
  background: var(--card);
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 13px;
  padding: 18px;
}

.password-reset-form {
  background: var(--card);
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 13px;
  padding: 18px;
}

.checkout-login-form label {
  display: grid;
  gap: 7px;
}

.password-reset-form label {
  display: grid;
  gap: 7px;
}

.password-reset-form span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-login-form input,
.password-reset-form input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 13px;
  width: 100%;
}

.password-reset-form .form-checkbox {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.password-reset-form .form-checkbox input {
  min-height: 18px;
  width: 18px;
}

.password-reset-form .form-checkbox span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
}

.checkout-login-form .primary-button,
.password-reset-form .primary-button {
  border: 0;
  cursor: pointer;
}

.password-reset-form .danger-button {
  background: #8f2e28;
}

.form-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  min-height: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.password-reset-step {
  display: grid;
  gap: 13px;
}

.form-link-button {
  background: transparent;
  border: 0;
  color: var(--sea);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  padding: 0;
}

.form-link {
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
}

.login-user-pill {
  background: var(--bottle-soft);
  border: 1px solid #c8d9ce;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 13px;
}

.login-user-pill strong {
  color: var(--bottle);
  font-size: 17px;
}

.login-user-pill button {
  background: transparent;
  border: 0;
  color: var(--sea);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  padding: 0;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 128px);
  }

  .hero-content {
    min-height: calc(100svh - 230px);
  }

  .intro-grid,
  .app-layout,
  .journey-layout,
  .waitlist-layout,
  .availability-layout,
  .privacy-hero-grid,
  .privacy-layout,
  .plans-hero-grid,
  .login-layout,
  .password-reset-layout,
  .login-page-layout,
  .unsubscribe-layout {
    grid-template-columns: 1fr;
  }

  .privacy-index {
    position: static;
  }

  .feature-grid,
  .plan-grid,
  .plans-page-grid {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
  }

  .app-copy {
    order: -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-link img {
    width: 136px;
  }

  .nav-cta {
    font-size: 12px;
    min-height: 40px;
    padding: 0 10px;
  }

  .hero {
    background-position: 62% center;
    min-height: calc(100svh - 116px);
    padding: 38px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(46px, 18vw, 72px);
    line-height: 0.95;
  }

  .hero-content {
    min-height: calc(100svh - 205px);
  }

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

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

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

  .promo-progress-copy {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .promo-progress-copy p {
    text-align: left;
  }

  .hero-metrics div {
    padding: 11px 12px;
  }

  .hero-metrics dt {
    font-size: 23px;
    line-height: 27px;
  }

  .phone {
    border-width: 8px;
    border-radius: 30px;
    min-height: 570px;
  }

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

/* Partners */
.partner-teaser-band {
  background: #15352e;
  color: var(--cream);
  padding: clamp(56px, 7vw, 92px) 0;
}

.partner-teaser-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.partner-teaser-image {
  background-image: url("../img/partners-hero.png");
  background-position: 72% center;
  background-size: cover;
  border-radius: 8px;
  min-height: 440px;
}

.partner-teaser-copy {
  align-self: center;
  max-width: 620px;
}

.partner-teaser-copy h2 {
  color: var(--cream);
}

.partner-teaser-copy > p:not(.eyebrow) {
  color: #d8cbb9;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.58;
  margin: 20px 0 26px;
}

.partners-page {
  background: var(--cream);
}

.partners-hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(10, 15, 13, 0.96) 0%, rgba(13, 29, 25, 0.86) 38%, rgba(13, 29, 25, 0.18) 72%),
    url("../img/partners-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  display: flex;
  min-height: calc(100svh - 74px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 74px);
}

.partners-hero-content {
  max-width: 720px;
}

.partners-hero h1 {
  color: var(--cream);
  font-size: clamp(50px, 7.5vw, 104px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.partners-hero-content > p:not(.eyebrow) {
  color: #eadfcc;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 680px;
}

.partner-proof {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.partner-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 22px;
  padding-top: 22px;
}

.partner-proof-grid div {
  border-left: 1px solid var(--line);
  min-height: 80px;
  padding: 8px 22px;
}

.partner-proof-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.partner-proof-grid strong,
.partner-proof-grid span {
  display: block;
}

.partner-proof-grid strong {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.partner-proof-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.partner-intro {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(68px, 9vw, 124px) 0;
}

.partner-intro-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.partner-intro-copy {
  display: grid;
  gap: 20px;
}

.partner-intro-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
}

.partner-audiences {
  background: #0d1916;
  color: var(--cream);
  padding: clamp(62px, 8vw, 108px) 0;
}

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

.audience-panel {
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: clamp(24px, 4vw, 44px);
}

.audience-panel-local {
  background: #173b32;
}

.audience-panel-supply {
  background: #4d2730;
}

.audience-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-panel h2 {
  color: var(--cream);
  font-size: clamp(31px, 4vw, 50px);
  margin-top: 28px;
}

.audience-panel > p {
  color: #e3d6c4;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  margin: 20px 0 0;
}

.audience-panel ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
}

.audience-panel li {
  border-top: 1px solid rgba(246, 239, 227, 0.16);
  color: #f0e6d8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  padding: 13px 0 13px 26px;
  position: relative;
}

.audience-panel li::before {
  color: var(--gold);
  content: "+";
  font-size: 18px;
  font-weight: 900;
  left: 2px;
  position: absolute;
  top: 10px;
}

.audience-panel > a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.network-story {
  background: var(--card);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  min-height: 720px;
}

.network-story-image {
  background-image: url("../img/partners-network.png");
  background-position: center;
  background-size: cover;
  min-height: 600px;
}

.network-story-copy {
  align-self: center;
  max-width: 660px;
  padding: clamp(44px, 7vw, 92px);
}

.network-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
  margin: 22px 0 0;
}

.network-principles {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.network-principles div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 15px 0;
}

.network-principles dt {
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.network-principles dd {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.partner-steps {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(68px, 9vw, 120px) 0;
}

.partner-steps-heading {
  max-width: 800px;
}

.partner-steps ol {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.partner-steps li {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 8px 30px;
}

.partner-steps li:first-child {
  border-left: 0;
  padding-left: 0;
}

.partner-steps li > span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
}

.partner-steps strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.partner-steps li p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 9px 0 0;
}

.partner-contact {
  background: #12382f;
  color: var(--cream);
  padding: clamp(62px, 8vw, 108px) 0;
}

.partner-contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 7vw, 86px);
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
}

.partner-contact-copy {
  position: sticky;
  top: 110px;
}

.partner-contact-copy h2 {
  color: var(--cream);
}

.partner-contact-copy > p:not(.eyebrow) {
  color: #d7c9b9;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
  margin: 22px 0 0;
}

.partner-fit {
  border-top: 1px solid rgba(246, 239, 227, 0.2);
  margin-top: 34px;
  padding-top: 24px;
}

.partner-fit span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-fit p {
  color: #eadfcc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  margin: 9px 0 0;
}

.partner-form-panel {
  background: var(--card);
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: 8px;
  color: var(--ink);
  padding: clamp(22px, 4vw, 38px);
}

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

.form-heading,
.form-field-wide,
.partner-form-error {
  grid-column: 1 / -1;
}

.form-heading span,
.partner-form-success > span {
  color: var(--wine);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading strong {
  display: block;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.15;
  margin-top: 8px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid #d8c9b4;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  min-height: 50px;
  outline: none;
  padding: 12px 13px;
  width: 100%;
}

.form-field textarea {
  line-height: 1.5;
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(29, 96, 114, 0.14);
}

.form-consent {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
}

.form-consent input {
  accent-color: var(--terracotta);
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.form-consent span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.form-consent a {
  color: var(--sea);
  font-weight: 900;
  text-decoration: underline;
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 2px;
  width: 100%;
}

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

.partner-form-error {
  background: #f7e6e2;
  border: 1px solid #e6b9ae;
  border-radius: 6px;
  color: #8f2e28;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  padding: 12px;
}

.partner-form-success {
  padding: clamp(18px, 4vw, 34px) 4px;
}

.partner-form-success h3 {
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.05;
  margin: 12px 0 0;
}

.partner-form-success p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 18px 0 26px;
}

.partner-form-success .secondary-button {
  background: var(--ink);
  color: var(--cream);
}

@media (max-width: 920px) {
  .partner-teaser-layout,
  .partner-intro-layout,
  .audience-grid,
  .network-story,
  .partner-contact-layout {
    grid-template-columns: 1fr;
  }

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

  .partner-proof-grid div:nth-child(3) {
    border-left: 0;
  }

  .partner-contact-copy {
    position: static;
  }

  .partner-steps ol {
    grid-template-columns: 1fr;
  }

  .partner-steps li,
  .partner-steps li:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0;
  }

  .partner-steps li:first-child {
    border-top: 0;
  }

  .network-story-image {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .partners-hero {
    background-image:
      linear-gradient(180deg, rgba(10, 15, 13, 0.48) 0%, rgba(10, 15, 13, 0.92) 58%, rgba(10, 15, 13, 0.98) 100%),
      url("../img/partners-hero.png");
    background-position: 68% center;
    min-height: calc(100svh - 72px);
    padding: 52px 18px 38px;
  }

  .partners-hero {
    align-items: flex-end;
  }

  .partners-hero h1 {
    font-size: clamp(45px, 15vw, 66px);
  }

  .partner-proof-grid {
    grid-template-columns: 1fr;
  }

  .partner-proof-grid div,
  .partner-proof-grid div:first-child,
  .partner-proof-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .partner-proof-grid div:first-child {
    border-top: 0;
  }

  .partner-teaser-image,
  .network-story-image {
    min-height: 360px;
  }

  .audience-panel {
    min-height: 0;
  }

  .network-story-copy {
    padding: 48px 18px;
  }

  .network-principles div {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .partner-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-heading,
  .form-field-wide,
  .partner-form-error {
    grid-column: 1;
  }
}
