@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,400..700;1,6..72,400..700&display=swap");

:root {
  --ink: #151511;
  --ink-soft: #55544d;
  --ink-muted: #8b887f;
  --paper: #faf7ef;
  --paper-warm: #f0eadf;
  --cream: #fffdf7;
  --surface: rgba(255, 253, 247, 0.78);
  --surface-solid: #fffdf7;
  --surface-muted: #ebe7dd;
  --olive: #2f402f;
  --olive-soft: #e4e9df;
  --olive-ink: #21301f;
  --sand: #bfa98d;
  --line: rgba(21, 21, 17, 0.1);
  --line-strong: rgba(21, 21, 17, 0.2);
  --success: #eaf3e8;
  --success-ink: #2d5b38;
  --warning: #fff2d4;
  --warning-ink: #845315;
  --shadow-soft: 0 26px 80px rgba(43, 38, 29, 0.1);
  --shadow-card: 0 16px 44px rgba(43, 38, 29, 0.08);
  --shadow-deep: 0 42px 120px rgba(22, 23, 18, 0.22);
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "Geist", "Aptos", "Trebuchet MS", sans-serif;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(191, 169, 141, 0.24), transparent 28rem),
    radial-gradient(circle at 68% 8%, rgba(47, 64, 47, 0.1), transparent 32rem),
    radial-gradient(circle at 98% 42%, rgba(191, 169, 141, 0.16), transparent 31rem),
    linear-gradient(180deg, #fffdf7 0%, #fbf8f0 44%, #f0eadf 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 38%, rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 0 100%, rgba(47, 64, 47, 0.13), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(21, 21, 17, 0.022) 0 1px, transparent 1px 84px);
  opacity: 0.72;
  content: "";
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(21, 21, 18, 0.09);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(22px) saturate(130%);
  animation: navDrop 700ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand.wordmark-only span,
.brand > span:not(.brand-mark):not(.brand-copy) {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--cream);
  background: linear-gradient(145deg, #2b3328, #141811);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.04;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small,
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 8px 2px;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 220ms ease, transform 220ms ease;
  content: "";
}

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

.nav a:hover::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.2, 0.82, 0.2, 1), box-shadow 240ms ease, background 240ms ease, border-color 240ms ease, filter 240ms ease;
}

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

.button.primary,
.button.header-cta {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(145deg, #40553d, #1f2e1e);
  box-shadow: 0 18px 42px rgba(36, 49, 32, 0.26);
}

.button.primary:hover,
.button.header-cta:hover {
  filter: saturate(112%);
  box-shadow: 0 24px 54px rgba(36, 49, 32, 0.32);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-card);
}

.button.ghost {
  border-color: rgba(21, 21, 18, 0.12);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.48);
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.77fr) minmax(520px, 1.23fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 126px) clamp(20px, 5vw, 86px) clamp(54px, 7vw, 96px);
}

.hero-approved {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
}

.hero-approved::before,
.hero-approved::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-approved::before {
  top: 8%;
  right: 28%;
  z-index: 0;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(235, 226, 211, 0.3) 44%, transparent 70%);
  filter: blur(10px);
  animation: ambientPulse 8s ease-in-out infinite;
}

.hero-approved::after {
  right: 0;
  bottom: -6rem;
  left: 0;
  z-index: 1;
  height: 18rem;
  background: linear-gradient(180deg, transparent, rgba(250, 247, 239, 0.88) 72%, var(--paper));
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.hero-copy > * {
  animation: editorialRise 900ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.hero-copy .proof-pill { animation-delay: 80ms; }
.hero-copy h1 { animation-delay: 180ms; }
.hero-copy .hero-statement { animation-delay: 280ms; }
.hero-copy .lede { animation-delay: 380ms; }
.hero-copy .actions { animation-delay: 480ms; }
.hero-copy .trust-row { animation-delay: 560ms; }

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 36px;
  margin: 0 0 26px;
  padding: 8px 16px;
  border: 1px solid rgba(52, 67, 50, 0.12);
  border-radius: 999px;
  color: var(--olive-ink);
  background: rgba(228, 233, 223, 0.8);
  box-shadow: 0 14px 34px rgba(43, 38, 29, 0.06), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(5.15rem, 7.25vw, 9.05rem);
  line-height: 0.82;
  text-shadow: 0 18px 42px rgba(43, 38, 29, 0.08);
}

.hero-statement {
  position: relative;
  width: fit-content;
  margin: 30px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.1vw, 4.65rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-statement em {
  display: block;
  font-style: italic;
}

.hero-statement::after {
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 68%;
  height: 1px;
  background: var(--sand);
  transform: rotate(-2deg);
  content: "";
}

.lede {
  max-width: 510px;
  margin: 42px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.78;
}

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

.hero-copy .button.primary {
  min-width: 228px;
  min-height: 58px;
  border-radius: 8px;
  font-size: 1.03rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: currentColor;
}

.line-icon.lock {
  width: 14px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.line-icon.lock::before {
  position: absolute;
  top: -8px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.line-icon.shield,
.card-icon.shield {
  border: 1.7px solid currentColor;
  border-radius: 10px 10px 12px 12px;
  clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.line-icon.check {
  border: 1.6px solid currentColor;
  border-radius: 999px;
}

.line-icon.check::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 4px;
  border-bottom: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  transform: rotate(-45deg);
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: min(650px, 62vw);
  perspective: 1300px;
}

.float-card {
  position: absolute;
  z-index: 8;
  width: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.74);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 28px 76px rgba(43, 38, 29, 0.13), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(22px) saturate(125%);
  transform: rotate(-3deg);
  animation: cardSettle 900ms cubic-bezier(0.2, 0.82, 0.2, 1) both, float 6.4s ease-in-out 900ms infinite;
}

.float-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.95rem;
}

.float-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.card-private {
  top: 4%;
  left: -8%;
}

.card-instant {
  bottom: 12%;
  left: -7%;
  transform: rotate(-2deg);
  animation-delay: 1.2s;
}

.card-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--olive);
}

.card-icon.bolt::before {
  width: 16px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(52% 0, 16% 52%, 45% 52%, 30% 100%, 84% 40%, 55% 40%);
  content: "";
}

.laptop-wrap {
  position: absolute;
  z-index: 2;
  top: -44px;
  right: clamp(-160px, calc(50vw - 940px), -86px);
  bottom: auto;
  width: min(930px, 68vw);
  min-width: 800px;
  margin: 0;
  filter: drop-shadow(0 34px 74px rgba(26, 27, 22, 0.2));
  animation: sceneSettle 1180ms cubic-bezier(0.2, 0.82, 0.2, 1) 160ms both;
}

.hero-scene::before,
.hero-scene::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-scene::before {
  inset: 8% 2% 4% 7%;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 45%, rgba(255, 253, 247, 0.76), rgba(191, 169, 141, 0.13) 45%, transparent 68%);
  filter: blur(22px);
  animation: ambientPulse 7.5s ease-in-out infinite;
}

.hero-scene::after {
  top: 11%;
  left: 8%;
  z-index: 2;
  width: 42%;
  height: 72%;
  border-radius: 40px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.16), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.24;
  transform: skewX(-9deg);
  animation: glossDrift 6.8s ease-in-out 1.2s infinite;
}

.hero-scene-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: contrast(1.035) saturate(1.04);
  transform-origin: 52% 62%;
  animation: sceneBreath 9s ease-in-out 1.25s infinite;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 86px) 28px;
}

.signal-strip span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: clamp(48px, 7vw, 98px) clamp(20px, 5vw, 86px);
}

.page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.5fr);
  min-height: auto;
  padding-bottom: 28px;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--olive-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
  content: "";
}

h2 {
  font-size: clamp(2.55rem, 5vw, 5.7rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
}

.section-kicker h2 {
  max-width: 960px;
}

.story-card,
.card,
.price-card,
.policy-card,
.feature-card,
.trust-card,
.side-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.story-card {
  padding: clamp(22px, 4vw, 34px);
}

.story-card p,
.card p,
.policy-card p,
.policy-card li,
.price-card li,
.feature-card p,
.trust-card p,
.side-card p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.story-card p:first-child {
  margin-top: 0;
}

.story-card p:last-child,
.card p:last-child,
.policy-card p:last-child {
  margin-bottom: 0;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin-bottom: 30px;
}

.section-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

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

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

.card,
.policy-card,
.feature-card,
.trust-card,
.side-card {
  padding: 24px;
}

.feature-card {
  display: grid;
  min-height: 295px;
  align-content: space-between;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover,
.trust-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.feature-card.muted,
.feature-card.accent {
  background:
    radial-gradient(circle at 90% 0%, rgba(52, 67, 50, 0.1), transparent 10rem),
    rgba(255, 253, 248, 0.84);
}

.feature-card.dark {
  color: var(--cream);
  background: linear-gradient(145deg, #2d352a, #141811);
}

.feature-card.dark h3,
.feature-card.dark .feature-number {
  color: var(--cream);
}

.feature-card.dark p {
  color: rgba(255, 253, 248, 0.74);
}

.feature-number {
  color: var(--olive-ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.buyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 16px;
}

.buyer-panel {
  min-height: 390px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius-xl);
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 253, 248, 0.12), transparent 13rem),
    linear-gradient(145deg, #2d352a, #141811);
  box-shadow: var(--shadow-deep);
}

.buyer-panel h2 {
  color: var(--cream);
}

.buyer-panel .eyebrow {
  color: rgba(255, 253, 248, 0.76);
}

.buyer-panel p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.72;
}

.launch-list {
  display: grid;
  gap: 12px;
}

.launch-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow-card);
}

.launch-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.launch-list span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.access-section {
  padding-top: 32px;
}

.access-card,
.notice-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.access-card::after,
.notice-card::after {
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(21, 21, 18, 0.07);
  border-radius: 999px;
  content: "";
}

.access-card p:not(.eyebrow),
.notice-card p {
  max-width: 740px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.access-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 226px;
}

.trust-card a,
.card a {
  color: var(--olive-ink);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
}

.price-card.highlight {
  border-color: rgba(52, 67, 50, 0.24);
  background:
    radial-gradient(circle at 80% 0%, rgba(52, 67, 50, 0.1), transparent 12rem),
    rgba(255, 253, 248, 0.9);
  transform: translateY(-8px);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
}

.price strong {
  font-size: 4rem;
  font-weight: 700;
}

.price span {
  color: var(--ink-soft);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.feature-list,
.policy-list {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.policy-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before,
.policy-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--olive);
  content: "";
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 86px);
}

.side-card .number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 13px;
  color: var(--cream);
  background: var(--olive);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 24px rgba(21, 21, 18, 0.045);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 86px) clamp(54px, 8vw, 96px);
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-card);
}

.toc a {
  color: var(--ink-soft);
  font-weight: 900;
  text-decoration: none;
}

.toc a:hover {
  color: var(--ink);
}

.policy-content {
  display: grid;
  gap: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.5);
}

.site-footer p {
  max-width: 560px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.footer-links a {
  font-weight: 900;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  animation: rise 760ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 160ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorialRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes cardSettle {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(-18px, 20px, 0) rotate(-5deg) scale(0.94);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
}

@keyframes sceneSettle {
  from {
    opacity: 0;
    filter: blur(18px) drop-shadow(0 20px 45px rgba(26, 27, 22, 0.08));
    transform: translate3d(34px, 26px, 0) rotateX(2deg) rotateY(-5deg) scale(0.965);
  }
  to {
    opacity: 1;
    filter: blur(0) drop-shadow(0 34px 74px rgba(26, 27, 22, 0.2));
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
  }
}

@keyframes sceneBreath {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.006);
  }
}

@keyframes glossDrift {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-12%) skewX(-9deg);
  }
  50% {
    opacity: 0.72;
    transform: translateX(8%) skewX(-9deg);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    justify-content: start;
  }

  .header-cta {
    justify-self: start;
  }

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

  .hero-approved {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .laptop-wrap {
    top: 36px;
    right: -90px;
    width: min(900px, 96vw);
    min-width: 0;
  }

  .card-private {
    left: 2%;
  }

  .card-instant {
    left: 5%;
  }

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

@media (max-width: 940px) {
  .site-header,
  .nav,
  .site-footer {
    align-items: flex-start;
  }

  .site-header {
    min-height: auto;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .hero,
  .page-hero,
  .split-section,
  .buyer-section,
  .access-card,
  .notice-card,
  .page-layout,
  .grid,
  .trust-grid,
  .two-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .float-card {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin: 0 10px 12px 0;
    transform: none;
    animation: none;
  }

  .laptop-wrap {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .price-card.highlight {
    transform: none;
  }

  .toc {
    position: static;
  }
}

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

  .brand.wordmark-only span,
  .brand > span:not(.brand-mark):not(.brand-copy) {
    font-size: 2rem;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav a,
  .nav .pill-link,
  .header-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero,
  .page-hero,
  .section {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(4.2rem, 17.5vw, 5.35rem);
  }

  .hero-statement {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11vw, 3.65rem);
  }

  .hero-copy .button.primary,
  .actions .button,
  .access-actions,
  .access-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }

  .float-card {
    width: calc(50% - 8px);
    min-width: 145px;
    padding: 16px;
  }

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

  .story-card,
  .card,
  .policy-card,
  .feature-card,
  .trust-card,
  .side-card,
  .price-card {
    border-radius: 18px;
  }

  .site-footer {
    padding-bottom: 46px;
  }
}
