:root {
  color-scheme: light;
  --ink: #233a4d;
  --ink-strong: #152836;
  --paper: #f8f7f2;
  --paper-deep: #efeee8;
  --line: #dce7ef;
  --sage: #dfe9e1;
  --sage-ink: #365543;
  --apricot: #f4d7ca;
  --blue: #dceaf4;
  --muted: #5f696c;
  --white: #fffefa;
  --shadow: 0 24px 70px rgba(35, 58, 77, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-strong);
  background:
    linear-gradient(90deg, transparent 0 54px, rgba(217, 159, 151, .25) 54px 56px, transparent 56px),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(35, 58, 77, .055) 47px 49px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 58, 77, .09);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; font-size: .94rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

.hero { padding: 84px 0 62px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 14px; color: var(--sage-ink); font-weight: 850; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-size: clamp(3.25rem, 7vw, 6.4rem); max-width: 760px; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.8rem); }
h3 { margin-bottom: 10px; font-size: 1.34rem; }
.display-accent { color: #bf593d; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 600; }
.lede { max-width: 660px; margin: 0 0 30px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.32rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 12px 30px rgba(35, 58, 77, .22); }
.button-secondary { background: rgba(255, 254, 250, .62); }

.hero-art { position: relative; }
.feature-card { overflow: hidden; border: 1px solid rgba(35, 58, 77, .11); border-radius: 36px; background: var(--white); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.feature-card img { width: 100%; aspect-ratio: 2.048 / 1; object-fit: cover; }
.paper-note { position: absolute; right: -12px; bottom: -45px; width: min(300px, 78%); padding: 22px 24px; border-radius: 20px 8px 22px 10px; background: #fff2c9; box-shadow: 0 16px 34px rgba(35,58,77,.15); transform: rotate(-3.5deg); font-weight: 800; }
.paper-note span { display: block; color: var(--muted); font-size: .85rem; font-weight: 650; }

.trust-strip { padding: 22px 0 76px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item { padding: 24px; border: 1px solid rgba(35,58,77,.1); border-radius: 22px; background: rgba(255,254,250,.72); }
.trust-item strong { display: block; margin-bottom: 2px; font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }

.section { padding: 82px 0; }
.section-tint { background: rgba(220, 234, 244, .42); border-block: 1px solid rgba(35,58,77,.08); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px; border: 1px solid rgba(35,58,77,.1); border-radius: 24px; background: rgba(255,254,250,.8); }
.feature-mark { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 20px; border-radius: 15px; color: var(--ink); background: var(--blue); font-size: 1.3rem; font-weight: 900; }
.feature:nth-child(2) .feature-mark { background: var(--sage); }
.feature:nth-child(3) .feature-mark { background: var(--apricot); }
.feature p { margin: 0; color: var(--muted); }

.showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(244, 215, 202, .62), transparent 23rem),
    radial-gradient(circle at 96% 84%, rgba(220, 234, 244, .72), transparent 28rem),
    rgba(255, 254, 250, .62);
  border-block: 1px solid rgba(35,58,77,.08);
}
.showcase-intro { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.showcase-intro .section-head { margin-bottom: 42px; }
.swipe-hint { display: none; margin-bottom: 46px; color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .04em; }
.swipe-hint span { display: inline-block; margin-left: 6px; color: var(--ink); font-size: 1rem; }
.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.screen {
  min-width: 0;
  margin: 0;
  padding: 10px 10px 22px;
  overflow: hidden;
  border: 1px solid rgba(35,58,77,.1);
  border-radius: 30px;
  background: rgba(255,254,250,.9);
  box-shadow: 0 18px 48px rgba(35,58,77,.1);
}
.screen:nth-child(2), .screen:nth-child(5) { margin-top: 40px; }
.screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 22px;
  background: var(--paper-deep);
}
.screen figcaption { display: grid; gap: 3px; padding: 16px 12px 0; }
.screen figcaption strong { color: var(--ink); font-size: 1.04rem; letter-spacing: -.015em; }
.screen figcaption span { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.screen-cream img { background: #f2ede4; }
.screen-blue img { background: #dceaf4; }
.screen-sage img { background: #dfe9e1; }
.screen-peach img { background: #f4d7ca; }
.screen-night img { background: #233a4d; }
.screen-lilac img { background: #e9e4ed; }

.privacy-callout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; padding: 42px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.privacy-callout p { margin: 0; color: #d7e1e7; }
.privacy-list { display: grid; gap: 12px; }
.privacy-list div { padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.06); font-weight: 750; }

.policy-hero { padding: 76px 0 42px; }
.policy-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.policy-meta { color: var(--muted); font-weight: 650; }
.summary-card { margin: 24px 0 38px; padding: 28px; border: 1px solid rgba(35,58,77,.11); border-radius: 24px; background: var(--sage); }
.summary-card strong { color: var(--sage-ink); }
.policy { padding-bottom: 90px; }
.policy section { padding: 28px 0; border-top: 1px solid rgba(35,58,77,.12); }
.policy h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); letter-spacing: -.025em; }
.policy h3 { margin-top: 28px; letter-spacing: -.02em; }
.policy p, .policy li { color: #465155; }
.policy a { color: var(--ink); font-weight: 750; }
.policy table { width: 100%; border-collapse: collapse; background: rgba(255,254,250,.72); }
.policy th, .policy td { padding: 15px; border: 1px solid rgba(35,58,77,.12); text-align: left; vertical-align: top; }
.policy th { color: var(--ink); background: var(--blue); }

.support-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-card { position: sticky; top: 100px; padding: 30px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.contact-card p { color: #d7e1e7; }
.contact-card .button { width: 100%; color: var(--ink); background: var(--white); border-color: var(--white); }
.faq { padding: 26px 0; border-top: 1px solid rgba(35,58,77,.12); }
.faq p { margin-bottom: 0; color: var(--muted); }

.site-footer { padding: 34px 0; border-top: 1px solid rgba(35,58,77,.11); background: rgba(255,254,250,.65); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { font-weight: 750; text-decoration: none; }

@media (max-width: 820px) {
  .hero { padding-top: 56px; }
  .hero-grid, .privacy-callout, .support-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen:nth-child(2), .screen:nth-child(5) { margin-top: 0; }
  .contact-card { position: static; }
}

@media (max-width: 620px) {
  body { background-position-x: -26px; }
  .wrap, .narrow { width: min(100% - 28px, 1120px); }
  .nav-links a:first-child { display: none; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  .paper-note { right: 8px; bottom: -62px; }
  .trust-strip { padding-top: 56px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px; }
  .showcase { padding-inline: 0; }
  .showcase-intro { display: block; }
  .showcase-intro .section-head { margin-bottom: 16px; }
  .swipe-hint { display: block; margin: 0 0 22px; text-align: right; white-space: nowrap; }
  .screens {
    width: calc(100% + 28px);
    margin-right: -14px;
    padding: 4px 14px 24px 0;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 340px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .screens::-webkit-scrollbar { display: none; }
  .screen { scroll-snap-align: start; border-radius: 26px; }
  .screen img { border-radius: 19px; }
  .privacy-callout { padding: 28px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .policy table, .policy thead, .policy tbody, .policy tr, .policy th, .policy td { display: block; }
  .policy th { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
