:root {
  color-scheme: light;
  --navy: #0e2a47;
  --navy-soft: #17395c;
  --coral: #f2644a;
  --coral-dark: #d94f37;
  --ivory: #fff8f1;
  --sand: #f3e6d8;
  --mist: #eaf0f3;
  --panel: #ffffff;
  --ink: #1d2733;
  --muted: #66717f;
  --line: #d9d0c7;
  --line-strong: #c7bbb0;
  --success: #0d6b55;
  --warn: #81520d;
  --shadow: 0 22px 70px rgba(14, 42, 71, 0.12);
}

* { box-sizing: border-box; }

img { max-width: 100%; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 6%, rgba(242, 100, 74, 0.12), transparent 30%),
    linear-gradient(180deg, var(--ivory), #ffffff 58%, #f8fbfb);
}

[hidden] { display: none !important; }

a { color: var(--navy); }

h1,
h2,
h3,
p,
li,
summary,
strong,
span { overflow-wrap: anywhere; }

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.couples-page {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 22px 42px;
}

.site-nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 10px 0 22px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  min-width: 0;
}

.nav-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.nav-links a,
.footer-links a,
.inline-link {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--coral);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.section {
  max-width: 100%;
  overflow: visible;
  margin-top: 26px;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid rgba(14, 42, 71, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(14, 42, 71, 0.04);
}

.couples-page,
.site-nav,
.section,
.hero,
.hero-copy,
.guide-card,
.feature-card,
.preview-card,
.card,
.visual-split,
.brand-visual,
.process-visual,
.proof-strip,
.topic-cloud,
.steps article {
  min-width: 0;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(42px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 230, 216, 0.42)),
    var(--panel);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #45515f;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.button-link,
button {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-link.primary,
button {
  color: #fff;
  background: var(--navy);
}

.button-link.primary:hover,
button:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.button-link.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
}

.button-link.secondary:hover,
.actions button:hover,
.code-actions button:hover {
  color: var(--coral-dark);
  border-color: var(--coral);
  background: #fff;
}

button:disabled {
  opacity: 0.64;
  cursor: wait;
}

.trust-line,
.small-note,
.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 42, 71, 0.12);
  border-radius: 18px;
  background: rgba(14, 42, 71, 0.12);
  box-shadow: 0 12px 34px rgba(14, 42, 71, 0.06);
}

.proof-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
}

.guide-card,
.feature-card,
.preview-card,
.card,
.flow-diagram div,
.steps article,
.privacy-points article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(14, 42, 71, 0.06);
}

.hero-guide {
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.hero-mark-shell {
  display: flex;
  justify-content: center;
  margin: -2px 0 18px;
}

.hero-mark-shell img {
  width: min(68%, 230px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.hero-guide h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.preview-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.preview-list div {
  border-left: 3px solid var(--coral);
  padding: 8px 0 8px 14px;
}

.preview-list strong,
.preview-list span {
  display: block;
}

.preview-list strong {
  color: var(--navy);
  font-size: 1rem;
}

.preview-list span,
.card-footer {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.card-footer {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.brand-visual,
.process-visual {
  margin: 0;
  border: 1px solid rgba(14, 42, 71, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 241, 0.68)),
    var(--ivory);
  box-shadow: 0 16px 44px rgba(14, 42, 71, 0.08);
  overflow: hidden;
}

.brand-visual img,
.process-visual img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.communication-visual {
  padding: clamp(18px, 3vw, 32px);
}

.serious-split {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.36fr);
}

.compact-narrative {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.couple-heart-visual {
  max-width: 330px;
  justify-self: center;
  padding: clamp(16px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 241, 0.86)),
    var(--ivory);
}

.couple-heart-visual img {
  opacity: 0.96;
}

.method-visual {
  max-width: 360px;
  margin: -6px auto 30px;
  padding: clamp(18px, 3vw, 30px);
}

.process-visual {
  margin: -4px 0 28px;
  padding: clamp(16px, 3vw, 24px);
}

.sand-section {
  background: var(--sand);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 760px;
  font-size: 1.08rem;
}

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

.narrative p {
  margin: 0;
  border-top: 2px solid rgba(14, 42, 71, 0.18);
  padding-top: 18px;
  color: var(--ink);
  font-size: 1.04rem;
}

.split-section,
.pricing-section,
.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.split-section p,
.pricing-copy p,
.privacy-section p {
  max-width: 660px;
}

.flow-diagram {
  display: grid;
  gap: 12px;
}

.flow-diagram div {
  padding: 18px;
}

.flow-diagram span,
.steps span,
.preview-card span,
.facts span,
.dashboard-grid span,
.pair-slot span,
.code-label {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flow-diagram strong,
.flow-diagram small {
  display: block;
}

.flow-diagram strong {
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.22rem;
}

.flow-diagram small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.flow-diagram .together {
  border-color: rgba(242, 100, 74, 0.42);
  background: #fff5ef;
}

.feature-grid,
.guide-preview-grid,
.fit-grid,
.steps,
.privacy-points,
.code-grid,
.buyer-pass-grid,
.dashboard-grid,
.pair-slots {
  display: grid;
  gap: 16px;
}

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

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

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

.feature-card,
.preview-card,
.steps article,
.privacy-points article {
  padding: 22px;
}

.feature-card p,
.preview-card p,
.steps p,
.privacy-points p,
.faq-list p {
  margin-bottom: 0;
}

.guide-preview-section {
  background:
    linear-gradient(180deg, rgba(234, 240, 243, 0.6), rgba(255, 255, 255, 0.92)),
    var(--mist);
}

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

.preview-card h3 {
  margin-top: 10px;
  font-size: 1.22rem;
}

.fit-section {
  background: #fff;
}

.method-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.92), rgba(234, 240, 243, 0.6)),
    var(--panel);
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
}

.topic-cloud span {
  border: 1px solid rgba(14, 42, 71, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.fit-grid div {
  border-top: 2px solid var(--line);
  padding-top: 18px;
}

ul {
  padding-left: 1.2rem;
}

.fit-grid li,
.included-list li {
  margin-bottom: 8px;
}

.safety-note {
  max-width: 850px;
  margin: 22px 0 0;
  border-left: 3px solid var(--coral);
  padding-left: 16px;
}

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

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--navy);
}

.privacy-section {
  color: #fff;
  background: var(--navy);
}

.privacy-section h2,
.privacy-section h3,
.privacy-section p,
.privacy-section .eyebrow {
  color: #fff;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-points {
  grid-template-columns: 1fr;
}

.privacy-points article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-section {
  align-items: start;
  background:
    linear-gradient(135deg, #fff, rgba(255, 248, 241, 0.84)),
    var(--panel);
}

.pilot-note {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
}

.card {
  padding: 24px;
}

.purchase-card {
  margin-top: 0;
}

.price-block {
  margin-bottom: 18px;
}

.price-block span {
  display: block;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
}

.price-block small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.included-list {
  margin: 0 0 20px;
}

.form-card label,
.support-form label {
  display: block;
  margin: 14px 0 8px;
  color: var(--navy);
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--warn);
  font-weight: 750;
}

.app-flow {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 8px;
}

body.couples-workspace .couples-page {
  max-width: 980px;
}

body.couples-workspace .nav-links,
body.couples-workspace .nav-cta,
body.couples-workspace .couples-page > .section:not(.app-flow),
body.couples-workspace .proof-strip,
body.couples-workspace .final-cta,
body.couples-workspace .site-footer,
body.couples-workspace .support-details,
body.couples-workspace .legal-details {
  display: none;
}

body.couples-workspace .site-nav {
  grid-template-columns: auto;
}

body.couples-workspace .app-flow {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px) 0;
}

body[data-couples-view="claim"] .app-flow {
  display: none;
}

body.couples-workspace .claim-card {
  margin-top: 18px;
}

.app-flow .card + .card,
.app-flow form + .card,
.app-flow section + form {
  margin-top: 18px;
}

.claim-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
}

.buyer-login-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.buyer-login-card h2 {
  margin-bottom: 8px;
}

.buyer-login-form + .buyer-login-form {
  margin-top: 12px;
}

.checkline {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.checkline input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.code-grid,
.buyer-pass-grid,
.pair-slots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buyer-pass-grid {
  grid-template-columns: 1fr;
}

.access-pair-card {
  min-width: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(14, 42, 71, 0.12);
}

.access-pair-card + .access-pair-card {
  margin-top: 14px;
}

.previous-purchases-toggle {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid rgba(14, 42, 71, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}

.previous-purchases-toggle + .access-pair-card {
  margin-top: 14px;
}

.access-pair-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.access-pair-head h3 {
  margin-bottom: 0;
}

.access-pair-meta {
  flex: 0 0 auto;
  max-width: 46%;
  text-align: right;
}

.access-pair-meta span,
.access-pair-meta small {
  display: block;
}

.access-pair-meta span {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 850;
}

.access-pair-meta small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

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

.code-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at left center, transparent 0 13px, #fff 14px),
    radial-gradient(circle at right center, transparent 0 13px, #fff 14px),
    linear-gradient(135deg, #fffefa 0%, #fff 46%, #f7ebe2 100%);
  box-shadow: 0 18px 42px rgba(14, 42, 71, 0.08);
  padding: 20px;
  overflow: hidden;
}

.code-card::before {
  content: "";
  position: absolute;
  inset: 0 72px 0 auto;
  width: 1px;
  border-left: 1px dashed rgba(14, 42, 71, 0.24);
  pointer-events: none;
}

.code-label {
  margin: 0 0 10px;
}

.code-help {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.pass-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 10px;
  border: 1px solid rgba(13, 107, 85, 0.2);
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--success);
  background: #eef8f4;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.buyer-pass.is-claimed .code-help {
  color: var(--ink);
}

.pass-card-head,
.code-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.pass-card-head {
  margin-bottom: 10px;
}

.pass-card-head .code-label,
.pass-card-head .pass-status {
  margin-bottom: 0;
}

.code-row {
  align-items: stretch;
}

.code-box {
  display: block;
  flex: 1 1 auto;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf8;
  padding: 13px 14px;
  color: var(--navy);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: clamp(1.05rem, 2.7vw, 1.5rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.text-button,
.reveal-code {
  min-height: 54px;
  white-space: nowrap;
  color: var(--navy);
  background: #fff;
}

.code-actions,
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.code-actions .button-link {
  flex: 1 0 100%;
}

.code-actions button,
.actions button {
  color: var(--navy);
  background: transparent;
}

.ticket-actions .primary-action {
  color: #fff;
  background: var(--navy);
}

.send-pass-form,
.qr-panel {
  margin: 12px 0 14px;
  border: 1px solid rgba(14, 42, 71, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.send-pass-form label {
  margin-top: 0;
}

.qr-panel {
  text-align: center;
}

.qr-target {
  display: inline-flex;
  width: min(100%, 220px);
  max-width: 220px;
  padding: 10px;
  border: 1px solid rgba(14, 42, 71, 0.14);
  border-radius: 14px;
  background: #fffefa;
}

.qr-target svg {
  width: 100%;
  height: auto;
  display: block;
}

.qr-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.button-link.is-disabled {
  opacity: 0.68;
}

.dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  gap: 1px;
  background: var(--line);
  margin-top: 18px;
}

.dashboard-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: #fff;
}

.dashboard-grid strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.dashboard-next {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pair-board {
  margin-top: 18px;
}

.pair-board h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pair-slot {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.pair-slot.is-active {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(242, 100, 74, 0.12);
}

.pair-slot.is-complete {
  background: #effaf4;
}

.pair-slot span,
.pair-slot small,
.muted-line {
  color: var(--muted);
}

.pair-slot strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.pair-slot small {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
}

.pair-slot em {
  flex: 0 0 auto;
  max-width: 46%;
  border: 1px solid rgba(13, 107, 85, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--success);
  background: #eef8f4;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}

.verify-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.faq-section {
  background: #fff;
}

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

.faq-list details {
  padding: 0;
  box-shadow: none;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 20px;
  color: var(--navy);
  font-weight: 850;
}

.faq-list p {
  padding: 0 20px 18px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(242, 100, 74, 0.14), rgba(255, 248, 241, 0.95)),
    var(--sand);
}

.final-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 38px 0 18px;
}

.site-footer p {
  max-width: 720px;
  font-size: 0.9rem;
}

.footer-logo {
  display: block;
  width: min(100%, 310px);
  height: auto;
  margin-bottom: 14px;
  mix-blend-mode: multiply;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-details,
.support-details {
  max-width: 960px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.legal-details summary,
.support-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-details p,
.support-details p {
  margin: 8px 0 0;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: 22px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .visual-split,
  .split-section,
  .pricing-section,
  .privacy-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid.four,
  .guide-preview-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .narrative {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .couples-page {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 12px 12px 32px;
  }

  .site-nav,
  .section,
  .proof-strip,
  .legal-details,
  .support-details {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-copy,
  .hero-guide,
  .guide-card,
  .feature-card,
  .preview-card,
  .card {
    width: 100%;
    max-width: 100%;
  }

  .site-nav {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
    padding-bottom: 12px;
  }

  .nav-brand {
    width: min(78vw, 220px);
  }

  .nav-links {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 16px;
    overflow-x: visible;
    font-size: 0.9rem;
  }

  .nav-cta {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .section {
    margin-top: 14px;
    border-radius: 16px;
    padding: 28px 18px;
  }

  .proof-strip span {
    min-height: 58px;
  }

  .hero-mark-shell img {
    width: min(58%, 190px);
  }

  .communication-visual,
  .couple-heart-visual,
  .method-visual,
  .process-visual {
    padding: 14px;
  }

  .couple-heart-visual {
    max-width: 250px;
    margin: 0 auto;
  }

  .method-visual {
    max-width: 280px;
    margin-bottom: 22px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.35rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .lead,
  .section-heading p {
    font-size: 1rem;
    line-height: 1.56;
  }

  .button-link,
  button {
    width: calc(100% - 2px);
  }

  .proof-strip,
  .hero-actions,
  .form-row,
  .feature-grid,
  .feature-grid.three,
  .feature-grid.four,
  .guide-preview-grid,
  .fit-grid,
  .steps,
  .privacy-points,
  .buyer-login-card,
  .code-grid,
  .buyer-pass-grid,
  .buyer-pass-pair-grid,
  .dashboard-grid,
  .pair-slots,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button-link,
  button {
    width: 100%;
  }

  .code-card {
    padding: 18px;
  }

  .access-pair-card {
    padding-top: 14px;
  }

  .access-pair-head {
    flex-direction: column;
    gap: 6px;
  }

  .access-pair-meta {
    max-width: 100%;
    text-align: left;
  }

  .code-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .reveal-code {
    width: auto;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .qr-target {
    max-width: 180px;
  }

  .dashboard-grid div {
    min-height: 76px;
  }

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

  .pair-slot em {
    max-width: 100%;
  }

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

@media (max-width: 420px) {
  .section,
  .card {
    padding: 22px 16px;
  }

  .nav-brand {
    width: 138px;
  }

  .hero-guide {
    padding: 18px;
  }
}
