:root {
  color-scheme: dark;
  font-family: "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: #0d0c0a;
  color: #f4efe4;
  --canvas: #0d0c0a;
  --canvas-soft: #13110e;
  --surface: rgb(37 33 27 / 78%);
  --surface-solid: #211e19;
  --surface-raised: #29251e;
  --paper: #f4efe4;
  --paper-muted: #c8c0b2;
  --ink-muted: #9f978a;
  --gold: #e8b949;
  --gold-bright: #f4c95f;
  --gold-soft: rgb(232 185 73 / 13%);
  --line: rgb(244 239 228 / 10%);
  --line-strong: rgb(232 185 73 / 28%);
  --danger: #ef8b84;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 74% -5%, rgb(232 185 73 / 9%), transparent 28rem),
    radial-gradient(circle at -10% 38%, rgb(134 105 54 / 8%), transparent 34rem),
    var(--canvas);
  color: var(--paper);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

strong {
  color: var(--paper);
  font-weight: 700;
}

.site-body {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.topbar {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mini-mark,
.mark {
  display: grid;
  place-items: center;
  background: #171614;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 2px #171614,
    inset 0 0 0 3px var(--gold),
    0 16px 60px rgb(232 185 73 / 14%);
}

.mini-mark {
  width: 35px;
  height: 35px;
  border-radius: 39% 61% 53% 47% / 46% 42% 58% 54%;
  font-size: 17px;
}

.topbar nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar nav a,
.site-footer a,
.invite-footer a {
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.topbar nav a:hover,
.topbar nav a[aria-current="page"],
.site-footer a:hover,
.invite-footer a:hover {
  color: var(--gold-bright);
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.page-hero {
  max-width: 780px;
  margin-bottom: 72px;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(43px, 7vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
  line-height: 1.3;
}

.lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.65;
}

.updated {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 650;
}

.contact-card,
.account-panel,
.plain-language-note {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(130deg, rgb(232 185 73 / 9%), transparent 48%),
    var(--surface);
  box-shadow: 0 24px 80px rgb(0 0 0 / 20%);
}

.contact-card {
  margin-bottom: 96px;
  padding: clamp(26px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  align-items: center;
  gap: 48px;
}

.contact-card p,
.account-panel p,
.plain-language-note p {
  color: var(--paper-muted);
  line-height: 1.65;
}

.contact-card h2 + p {
  margin: 16px 0 0;
}

.contact-action {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(0 0 0 / 18%);
}

.contact-action span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action a,
.legal-document a {
  color: var(--gold-bright);
  font-weight: 750;
}

.configuration-note {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgb(239 139 132 / 22%);
  border-radius: 14px;
  background: rgb(239 139 132 / 8%);
  color: #e4aaa4 !important;
  font-size: 14px;
}

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

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

.support-card {
  min-height: 272px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 44px rgb(0 0 0 / 14%);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surface-raised);
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font: 700 13px/1 ui-monospace, "SFMono-Regular", monospace;
}

.support-card p {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.65;
}

.account-panel {
  margin-top: 96px;
  padding: clamp(26px, 5vw, 48px);
}

.steps {
  margin: 32px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 132px;
  padding: 56px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(0 0 0 / 14%);
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.55;
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--gold-bright);
  font: 700 12px/1 ui-monospace, "SFMono-Regular", monospace;
}

.account-panel > p:last-child {
  max-width: 78ch;
  margin: 0;
}

.account-deletion-link {
  width: fit-content;
  margin-top: 26px;
  display: inline-flex;
  gap: 8px;
}

.deletion-shell {
  max-width: 960px;
}

.deletion-hero {
  margin-bottom: 48px;
}

.deletion-card,
.local-data-note {
  margin-bottom: 20px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 70px rgb(0 0 0 / 16%);
}

.primary-deletion-card {
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgb(232 185 73 / 10%), transparent 50%),
    var(--surface);
}

.deletion-card-heading {
  max-width: 700px;
}

.deletion-card-heading > p:last-child,
.local-data-note > p,
.retention-note p,
.deletion-detail-grid p {
  color: var(--paper-muted);
  line-height: 1.68;
}

.deletion-card-heading > p:last-child {
  margin: 16px 0 0;
}

.deletion-steps {
  margin: 32px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  counter-reset: deletion-steps;
}

.deletion-steps li {
  position: relative;
  min-height: 104px;
  padding: 24px 22px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(0 0 0 / 15%);
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.55;
  counter-increment: deletion-steps;
}

.deletion-steps li::before {
  content: counter(deletion-steps, decimal-leading-zero);
  position: absolute;
  top: 27px;
  left: 22px;
  color: var(--gold-bright);
  font: 700 12px/1 ui-monospace, "SFMono-Regular", monospace;
}

.deletion-button {
  width: fit-content;
}

.web-request-action {
  margin-top: 28px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgb(0 0 0 / 16%);
}

.web-request-action > span {
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deletion-card > .configuration-note {
  margin-top: 28px;
}

.deletion-details {
  padding: 76px 0 56px;
}

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

.deletion-detail-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.deletion-detail-grid .card-number {
  margin-bottom: 42px;
}

.deletion-detail-grid p {
  margin: 14px 0 0;
  font-size: 15px;
}

.local-data-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 48px;
  border-color: var(--line-strong);
  background:
    linear-gradient(130deg, rgb(232 185 73 / 8%), transparent 44%),
    var(--surface);
}

.local-data-note > p {
  margin: 0;
}

.retention-note {
  max-width: 760px;
  padding: 48px 0 16px;
}

.retention-note h2 {
  margin-bottom: 18px;
}

.retention-note p {
  margin: 0;
}

.retention-note a {
  color: var(--gold-bright);
  font-weight: 750;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: auto auto 0;
  padding: 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13px;
}

.legal-shell {
  max-width: 960px;
}

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

.plain-language-note {
  max-width: 760px;
  margin-bottom: 64px;
  padding: 28px 32px;
}

.plain-language-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plain-language-note p {
  margin: 0;
}

.legal-document {
  max-width: 760px;
}

.legal-document section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.legal-document section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 22px;
}

.legal-document p,
.legal-document li {
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 18px 0 24px;
  padding-left: 22px;
}

.legal-document li {
  padding-left: 8px;
  margin-bottom: 12px;
}

.legal-document li::marker {
  color: var(--gold);
}

.home-body {
  overflow-x: hidden;
}

.home-main {
  width: min(calc(100% - 40px), 840px);
  margin: auto;
  padding: 80px 0 112px;
  text-align: center;
}

.hero-mark {
  width: 104px;
  height: 104px;
  margin: 0 auto 36px;
  border-radius: 44% 56% 47% 53% / 52% 43% 57% 48%;
  font-size: 48px;
}

.home-main h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.home-lede {
  max-width: 500px;
  margin-inline: auto;
}

.home-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-solid);
  color: var(--paper);
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 200ms ease,
    filter 200ms ease,
    border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #19150c;
}

.button.primary:hover {
  filter: brightness(1.07);
}

.text-link {
  color: var(--paper-muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--gold-bright);
}

.compact-footer {
  margin-top: 0;
}

.invite-body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.invite-main {
  width: min(100%, 430px);
  text-align: center;
}

.invite-main .mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  border-radius: 45% 55% 47% 53% / 50% 44% 56% 50%;
  font-size: 34px;
}

.invite-main h1 {
  max-width: none;
  font-size: clamp(36px, 10vw, 48px);
  letter-spacing: -0.03em;
}

.invite-main .lede {
  max-width: 34ch;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.55;
}

.code-label {
  margin: 36px 0 8px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.code {
  margin: 0;
  color: #fff8e8;
  font: 750 27px/1.2 ui-monospace, "SFMono-Regular", monospace;
  letter-spacing: 0.15em;
}

.invite-main .actions {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.invite-main .button {
  width: 100%;
}

.privacy {
  max-width: 38ch;
  margin: 24px auto 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.5;
}

.invite-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--ink-muted);
}

[hidden] {
  display: none !important;
}

@media (max-width: 860px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .steps li {
    min-height: 0;
  }

  .deletion-detail-grid {
    grid-template-columns: 1fr;
  }

  .deletion-detail-grid article {
    min-height: 0;
  }

  .deletion-detail-grid .card-number {
    margin-bottom: 28px;
  }

  .local-data-note {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 580px) {
  .topbar {
    width: min(calc(100% - 32px), var(--max-width));
    min-height: 72px;
  }

  .topbar nav {
    gap: 16px;
  }

  .page-shell {
    width: min(calc(100% - 32px), var(--max-width));
    padding: 64px 0 80px;
  }

  .page-hero {
    margin-bottom: 52px;
  }

  .contact-card {
    margin-bottom: 72px;
    border-radius: 20px;
  }

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

  .support-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .account-panel {
    margin-top: 72px;
    border-radius: 20px;
  }

  .deletion-card,
  .local-data-note {
    border-radius: 20px;
  }

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

  .deletion-steps li {
    min-height: 0;
  }

  .deletion-button,
  .web-request-action .button {
    width: 100%;
  }

  .web-request-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .plain-language-note {
    padding: 24px;
    border-radius: 20px;
  }

  .legal-document section {
    padding: 38px 0;
  }

  .site-footer {
    width: min(calc(100% - 32px), var(--max-width));
    align-items: flex-start;
    flex-direction: column;
  }

  .home-main {
    width: min(calc(100% - 32px), 840px);
    padding: 64px 0 80px;
  }

  .home-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Landing page: an archival, tactile layer above the shared legal/invite system. */
.landing-body {
  background:
    radial-gradient(circle at 70% 8%, rgb(232 185 73 / 13%), transparent 28rem),
    radial-gradient(circle at 12% 50%, rgb(105 79 42 / 12%), transparent 32rem),
    var(--canvas);
}

.landing-topbar {
  width: min(calc(100% - 64px), 1240px);
  min-height: 92px;
  border-bottom-color: rgb(244 239 228 / 14%);
}

.landing-topbar nav { gap: 26px; }
.landing-topbar nav a { font-size: 13px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgb(232 185 73 / 32%);
  border-radius: 999px;
  background: rgb(232 185 73 / 9%);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.nav-cta:hover { background: rgb(232 185 73 / 17%); transform: translateY(-2px); }

.landing-hero {
  width: min(calc(100% - 64px), 1240px);
  min-height: 720px;
  margin: 0 auto;
  padding: 112px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 7vw, 120px);
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 9ch; font-size: clamp(55px, 7.2vw, 100px); line-height: 0.96; }
.hero-lede { max-width: 520px; margin: 28px 0 0; color: var(--paper-muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-actions .button { min-height: 52px; border-radius: 14px; }
.button.subtle { background: rgb(244 239 228 / 5%); border-color: rgb(244 239 228 / 17%); color: var(--paper-muted); }
.button.subtle:hover { background: rgb(244 239 228 / 10%); color: var(--paper); }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 26px 0 0; color: var(--ink-muted); font-size: 13px; font-weight: 700; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 5px rgb(232 185 73 / 10%); }

.hero-stage { position: relative; min-height: 570px; display: grid; place-items: center; isolation: isolate; }
.stage-glow { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgb(232 185 73 / 22%), rgb(232 185 73 / 3%) 45%, transparent 70%); transform: translate3d(0, var(--parallax-y, 0), 0); filter: blur(1px); }
.stage-orbit { position: absolute; border: 1px solid rgb(232 185 73 / 20%); border-radius: 50%; transform: translate3d(0, var(--parallax-y, 0), 0); }
.orbit-one { width: 520px; height: 520px; rotate: 19deg; }
.orbit-two { width: 410px; height: 590px; rotate: -31deg; border-color: rgb(244 239 228 / 13%); }
.memory-card { position: relative; z-index: 1; width: min(100%, 420px); padding: 13px; border: 1px solid rgb(244 239 228 / 24%); border-radius: 27px; background: linear-gradient(145deg, rgb(244 239 228 / 13%), rgb(244 239 228 / 3%)), #171512; box-shadow: 0 38px 100px rgb(0 0 0 / 40%), inset 0 0 0 1px rgb(0 0 0 / 22%); transform: translate3d(0, var(--parallax-y, 0), 0) rotate(4deg); }
.memory-card-top, .memory-card-bottom { display: flex; justify-content: space-between; align-items: center; padding: 8px 8px 12px; color: var(--ink-muted); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.memory-pill { color: var(--gold-bright); }
.memory-scene { position: relative; overflow: hidden; aspect-ratio: .88; border-radius: 19px; background: #373d4a; }
.scene-sky { position: absolute; inset: 0 0 37%; background: linear-gradient(155deg, #526478 0%, #8896a0 44%, #d2b984 100%); }
.scene-sun { position: absolute; width: 110px; height: 110px; top: 19%; right: 18%; border-radius: 50%; background: rgb(247 220 151 / 85%); filter: blur(2px); box-shadow: 0 0 70px rgb(247 220 151 / 40%); }
.scene-horizon { position: absolute; right: -10%; bottom: 31%; left: -10%; height: 25%; background: linear-gradient(180deg, #48574d, #1f2b27); clip-path: polygon(0 46%, 12% 29%, 22% 42%, 37% 5%, 51% 37%, 64% 18%, 82% 39%, 100% 10%, 100% 100%, 0 100%); }
.scene-table { position: absolute; right: -8%; bottom: -3%; left: -8%; height: 38%; background: linear-gradient(160deg, #a77b53, #4c3026 75%); transform: rotate(-4deg); }
.scene-caption { position: absolute; right: 18px; bottom: 19px; color: rgb(255 249 234 / 90%); font: 600 17px/1.2 Georgia, serif; letter-spacing: -.02em; }
.memory-lock { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgb(232 185 73 / 44%); border-radius: 50%; color: var(--gold-bright); font-size: 18px; }
.floating-seal { position: absolute; z-index: 2; right: 7%; bottom: 12%; display: grid; place-items: center; width: 98px; height: 98px; border: 1px solid rgb(232 185 73 / 45%); border-radius: 43% 57% 54% 46% / 53% 45% 55% 47%; background: #191713; color: var(--gold-bright); box-shadow: 0 20px 50px rgb(0 0 0 / 36%), inset 0 0 0 7px #191713, inset 0 0 0 9px var(--gold); font: 600 45px Georgia, serif; transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-12deg); }
.stage-caption { position: absolute; right: 0; bottom: -15px; width: 180px; margin: 0; color: var(--ink-muted); font: 15px/1.45 Georgia, serif; }

.signal-strip { width: min(calc(100% - 64px), 1240px); margin: 0 auto; padding: 18px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-strip > div { display: flex; align-items: center; gap: 16px; padding: 9px 22px; border-right: 1px solid var(--line); color: var(--paper-muted); font-size: 13px; font-weight: 750; }
.signal-strip > div:last-child { border-right: 0; }
.signal-number, .card-number { color: var(--gold-bright); font: 700 12px ui-monospace, monospace; letter-spacing: .08em; }

.story-section, .feature-section, .together-section, .final-cta { width: min(calc(100% - 64px), 1120px); margin: 0 auto; }
.story-section { padding: 150px 0 160px; }
.section-intro { max-width: 580px; }
.section-intro h2, .feature-copy h2, .together-copy h2, .final-cta h2 { font-size: clamp(36px, 5vw, 62px); line-height: 1; }
.section-intro > p:last-child, .feature-copy > p, .together-copy > p, .final-cta > p { max-width: 56ch; margin: 21px 0 0; color: var(--paper-muted); font-size: 17px; line-height: 1.65; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.story-card { min-height: 355px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(150deg, rgb(244 239 228 / 7%), transparent 48%), rgb(37 33 27 / 65%); transform: translate3d(0, var(--parallax-y, 0), 0); transition: border-color 220ms ease, background 220ms ease; }
.story-card:hover { border-color: var(--line-strong); background: linear-gradient(150deg, rgb(232 185 73 / 10%), transparent 48%), var(--surface-raised); }
.story-card-featured { border-color: var(--line-strong); background: linear-gradient(150deg, rgb(232 185 73 / 13%), transparent 52%), rgb(37 33 27 / 78%); }
.story-card h3 { margin-top: auto; font-family: Georgia, serif; font-size: 26px; font-weight: 600; }
.story-card p { margin: 12px 0 0; color: var(--paper-muted); font-size: 15px; line-height: 1.6; }
.story-link { margin-top: 22px; color: var(--gold-bright); font-size: 13px; font-weight: 800; }
.story-icon { width: 64px; height: 64px; margin: 42px 0 26px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 20px; background: rgb(232 185 73 / 8%); color: var(--gold-bright); }
.capture-icon span { width: 24px; height: 20px; border: 2px solid currentColor; border-radius: 6px; position: relative; }
.capture-icon span::after { content: ''; position: absolute; inset: 4px; border: 2px solid currentColor; border-radius: 50%; }
.seal-icon { font: 600 29px Georgia, serif; border-radius: 45% 55% 48% 52% / 54% 43% 57% 46%; }
.archive-icon span { width: 25px; height: 21px; border: 2px solid currentColor; border-top-width: 5px; border-radius: 3px; position: relative; }
.archive-icon span::after { content: ''; position: absolute; top: 4px; left: 5px; width: 11px; height: 2px; background: currentColor; box-shadow: 0 5px currentColor; }

.feature-section { padding: 110px 0 155px; display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr); align-items: center; gap: clamp(48px, 9vw, 130px); }
.feature-art { position: relative; min-height: 430px; transform: translate3d(0, var(--parallax-y, 0), 0); }
.paper-stack { position: absolute; top: 50%; left: 50%; width: 280px; height: 355px; border: 1px solid rgb(244 239 228 / 20%); border-radius: 23px 23px 27px 19px; transform-origin: center; }
.paper-back { background: #31281f; transform: translate(-43%, -48%) rotate(-13deg); }
.paper-mid { background: #6a5638; transform: translate(-54%, -48%) rotate(11deg); opacity: .72; }
.paper-front { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; background: linear-gradient(145deg, #f4e7cc, #ceb98f); color: #272017; transform: translate(-49%, -52%) rotate(-4deg); box-shadow: 16px 26px 55px rgb(0 0 0 / 34%); }
.paper-front::after { content: ''; position: absolute; right: 0; top: 0; border-style: solid; border-width: 0 0 52px 52px; border-color: transparent transparent #b39b70 transparent; opacity: .75; }
.paper-lock { color: #493822; font-size: 38px; line-height: 1; }
.paper-label { margin-top: 22px; font: 800 12px ui-monospace, monospace; letter-spacing: .14em; }
.paper-line { display: block; height: 1px; margin-top: 23px; background: rgb(39 32 23 / 25%); }
.line-a { width: 78%; margin-top: 50px; }.line-b { width: 92%; }.line-c { width: 60%; }
.feature-list { margin: 30px 0 28px; padding: 0; display: grid; gap: 16px; list-style: none; }
.feature-list li { display: flex; gap: 13px; color: var(--paper-muted); font-size: 15px; line-height: 1.55; }
.feature-list li > span:first-child { color: var(--gold-bright); }

.together-section { padding: 120px 0 160px; display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, .8fr); align-items: center; gap: clamp(46px, 10vw, 140px); }
.together-copy .button { margin-top: 30px; }
.conversation-card { position: relative; min-height: 420px; padding: 18px; border: 1px solid rgb(244 239 228 / 22%); border-radius: 28px; background: linear-gradient(155deg, rgb(244 239 228 / 10%), transparent 46%), #211d18; box-shadow: 0 30px 85px rgb(0 0 0 / 32%); transform: translate3d(0, var(--parallax-y, 0), 0) rotate(3deg); }
.conversation-top, .conversation-reply { display: flex; align-items: center; gap: 11px; }.conversation-top small, .conversation-reply small { display: block; margin-top: 3px; color: var(--ink-muted); font-size: 11px; }.conversation-menu { margin-left: auto; color: var(--ink-muted); letter-spacing: .18em; }.avatar, .reply-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-weight: 800; }.avatar-y { background: #d8c4a0; color: #30261a; }.reply-avatar { width: 30px; height: 30px; background: #5c665d; color: #ecf0e5; font-size: 12px; }
.conversation-photo { position: relative; overflow: hidden; height: 245px; margin: 16px 0; border-radius: 18px; background: linear-gradient(145deg, #6c7d77 0%, #b0b48d 40%, #d1a066 41%, #6a4630 100%); }.conversation-photo::before { content: ''; position: absolute; inset: 22% -10% 0; background: linear-gradient(110deg, #2b403d, #6e8363 44%, #ac7046 45%, #493227); transform: rotate(-8deg); }.conversation-photo::after { content: ''; position: absolute; top: 18%; right: 18%; width: 72px; height: 72px; border-radius: 50%; background: rgb(248 220 155 / 72%); filter: blur(2px); }.conversation-photo span { position: absolute; z-index: 1; right: 15px; bottom: 14px; color: #fff4db; font: 600 13px Georgia, serif; }.reply-heart { margin-left: auto; color: var(--gold-bright); font-size: 25px; }

.final-cta { padding: 90px 0 170px; text-align: center; }.final-seal { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 28px; border: 1px solid var(--gold); border-radius: 44% 56% 48% 52% / 54% 45% 55% 46%; background: #171512; color: var(--gold-bright); box-shadow: inset 0 0 0 6px #171512, inset 0 0 0 8px var(--gold); font: 600 35px Georgia, serif; transform: translate3d(0, var(--parallax-y, 0), 0); }.final-cta h2 { max-width: none; }.final-cta > p { margin-inline: auto; }.final-cta .hero-actions { justify-content: center; }
.landing-footer { width: min(calc(100% - 64px), 1240px); padding-top: 30px; }.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--paper); font-family: Georgia, serif; font-size: 18px; font-weight: 700; }.footer-brand .mini-mark { width: 28px; height: 28px; font-size: 13px; }.footer-brand small { margin-left: 6px; color: var(--ink-muted); font: 12px ui-sans-serif, system-ui, sans-serif; font-weight: 500; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .landing-topbar nav a:nth-child(-n+2) { display: none; }
  .landing-hero { grid-template-columns: 1fr; padding-top: 82px; }.hero-copy h1 { max-width: 11ch; }.hero-stage { min-height: 510px; }
  .feature-section, .together-section { grid-template-columns: 1fr; }.feature-art { order: 2; min-height: 400px; }.together-section { gap: 70px; }.conversation-card { width: min(100%, 460px); margin: 0 auto; }
}

@media (max-width: 580px) {
  .landing-topbar, .landing-hero, .signal-strip, .story-section, .feature-section, .together-section, .final-cta, .landing-footer { width: min(calc(100% - 32px), 1240px); }
  .landing-topbar { min-height: 74px; }.nav-cta { padding: 9px 11px; font-size: 12px; }.landing-hero { padding: 64px 0 75px; }.hero-copy h1 { font-size: clamp(49px, 15vw, 70px); }.hero-lede { font-size: 17px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button, .hero-actions .text-link { width: 100%; text-align: center; }.hero-stage { min-height: 420px; }.memory-card { width: min(100%, 340px); }.orbit-one { width: 370px; height: 370px; }.orbit-two { width: 300px; height: 440px; }.floating-seal { right: 3%; bottom: 9%; width: 76px; height: 76px; font-size: 34px; }.stage-caption { right: 5px; bottom: -13px; font-size: 13px; }.signal-strip { grid-template-columns: 1fr; padding: 8px 0; }.signal-strip > div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }.signal-strip > div:last-child { border-bottom: 0; }.story-section { padding: 100px 0; }.story-grid { grid-template-columns: 1fr; margin-top: 36px; }.story-card { min-height: 290px; }.story-icon { margin-top: 32px; }.feature-section { padding: 40px 0 100px; }.paper-stack { width: 230px; height: 300px; }.feature-art { min-height: 350px; }.together-section { padding: 85px 0 110px; }.conversation-card { min-height: 360px; padding: 14px; }.conversation-photo { height: 205px; }.final-cta { padding-bottom: 110px; }.landing-footer { gap: 22px; }.footer-brand { flex-wrap: wrap; }.footer-brand small { width: 100%; margin-left: 38px; margin-top: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .memory-card, .floating-seal, .stage-glow, .stage-orbit, .story-card, .feature-art, .conversation-card, .final-seal { transform: none; }
}
