@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/site/fonts/newsreader-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/site/fonts/newsreader-latin-500-italic.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f2efe8;
  --paper-warm: #e9e4d9;
  --paper-deep: #ddd3c3;
  --paper-soft: #fbf7ef;
  --card: #fffdf8;
  --ink: #181715;
  --ink-soft: #4d4840;
  --muted: #746b5f;
  --faint: #958b7d;
  --line: rgba(24, 23, 21, 0.12);
  --line-strong: rgba(24, 23, 21, 0.2);
  --accent: #a14a1c;
  --accent-dark: #7d3510;
  --accent-soft: #f3e4d8;
  --sage: #5c6b5c;
  --sage-soft: #e8ede3;
  --rose: #a6424b;
  --rose-soft: #f2dde2;
  --amber: #7a5512;
  --amber-soft: #f4ecda;
  --shadow-soft: 0 22px 70px rgba(65, 48, 30, 0.12), 0 7px 24px rgba(65, 48, 30, 0.08);
  --shadow-card: 0 14px 36px rgba(65, 48, 30, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", Palatino, Georgia, serif;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -5%, rgba(161, 74, 28, 0.16), transparent 32vw),
    radial-gradient(circle at 88% 12%, rgba(92, 107, 92, 0.18), transparent 32vw),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 52%, #f9f3ea 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 23, 21, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 23, 21, 0.024) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.13;
  background-image: radial-gradient(rgba(24, 23, 21, 0.35) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

::selection { background: var(--accent-soft); color: var(--accent-dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid rgba(161, 74, 28, 0.45); outline-offset: 4px; border-radius: 14px; }

.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
  text-wrap: balance;
}
.italic { font-style: italic; color: var(--accent); }
.hero-line { display: inline; }
.muted { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 50; padding: 18px 0 0; }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(24, 23, 21, 0.08);
  border-radius: 24px;
  background: rgba(251, 247, 239, 0.68);
  box-shadow: 0 12px 42px rgba(65, 48, 30, 0.07);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff8ee;
  background: linear-gradient(180deg, #b85a2c, #7d3510);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), 0 8px 18px rgba(125,53,16,0.2);
}
.brand-mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  padding: 9px 11px;
  border-radius: 13px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: rgba(24,23,21,0.06); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn-primary {
  color: #fffaf2;
  background: linear-gradient(180deg, #b75a2b, var(--accent));
  box-shadow: 0 15px 34px rgba(161, 74, 28, 0.24), inset 0 1px 0 rgba(255,255,255,0.26);
}
.btn-primary:hover { background: linear-gradient(180deg, #a14a1c, var(--accent-dark)); }
.btn-secondary { background: rgba(255, 253, 248, 0.72); border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { background: var(--card); border-color: var(--line-strong); }
.btn-small { min-height: 40px; padding: 0 13px; border-radius: 13px; font-size: 14px; }
.btn svg { width: 17px; height: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-dark);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(161, 74, 28, 0.18);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.02em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 5px rgba(161,74,28,0.1); }

.hero { padding: 74px 0 86px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 480px); align-items: center; gap: 56px; }
.hero h1 { margin: 20px 0 22px; font-size: clamp(52px, 7.5vw, 92px); max-width: 860px; }
.hero-copy { max-width: 650px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.5; letter-spacing: -0.018em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.trust-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; background: rgba(255,253,248,0.66); border: 1px solid rgba(24,23,21,0.08); color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.trust-pill::before { content: "✓"; display: grid; place-items: center; width: 17px; height: 17px; border-radius: 999px; background: var(--sage-soft); color: var(--sage); font-size: 12px; font-weight: 900; }
.boundary { margin-top: 18px; max-width: 620px; color: var(--muted); font-size: 14px; }

.hero-visual { position: relative; min-height: 710px; }
.tray-field {
  position: absolute;
  inset: 70px -20px 28px 38px;
  border-radius: 46px;
  background: linear-gradient(140deg, rgba(255,253,248,0.58), rgba(221,211,195,0.52));
  border: 1px solid rgba(24,23,21,0.07);
  transform: rotate(-4deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.phone-frame {
  position: relative;
  z-index: 2;
  width: min(380px, 82vw);
  margin: 0 auto;
  padding: 10px;
  border-radius: 46px;
  background: #161411;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.2deg);
}
.phone-frame img { border-radius: 37px; width: 100%; height: auto; object-fit: contain; background: var(--paper); }
.context-slip {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 72px;
  width: 270px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(161,74,28,0.16);
  background: rgba(255,253,248,0.94);
  box-shadow: var(--shadow-card);
  transform: rotate(-5deg);
}
.context-slip small { display: block; color: var(--accent-dark); font-size: 11px; font-weight: 820; letter-spacing: 0.12em; text-transform: uppercase; }
.context-slip strong { display: block; margin-top: 7px; color: var(--ink); font-size: 18px; line-height: 1.12; letter-spacing: -0.03em; }
.context-slip span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.section { padding: 88px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section h2 { margin: 14px 0 12px; font-size: clamp(38px, 5.2vw, 64px); }
.section-sub { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.55; max-width: 690px; }

.hero-grid > *, .insight-grid > *, .artifact > *, .privacy-grid > *, .legal-grid > *, .workflow-grid > *, .cta-shell > * { min-width: 0; }
.insight-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 22px; align-items: stretch; }
.panel {
  border: 1px solid rgba(24,23,21,0.09);
  border-radius: var(--radius-xl);
  background: rgba(255,253,248,0.72);
  box-shadow: var(--shadow-card);
}
.problem-panel { padding: 30px; background: linear-gradient(180deg, rgba(255,253,248,0.82), rgba(243,228,216,0.48)); }
.problem-panel h3 { margin: 0 0 14px; font-size: 30px; letter-spacing: -0.045em; line-height: 1.05; }
.problem-panel p { color: var(--ink-soft); margin: 0; }
.context-cards {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,253,248,0.78), rgba(249,243,234,0.58)),
    radial-gradient(circle at 85% 8%, rgba(161,74,28,0.12), transparent 28%);
}
.context-cards::before,
.context-cards::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 28px;
  right: 28px;
  height: 56px;
  border: 1px solid rgba(24,23,21,0.07);
  border-radius: 24px;
  background: rgba(255,253,248,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.context-cards::before { top: 76px; transform: rotate(-1.4deg); }
.context-cards::after { bottom: 34px; transform: rotate(1.2deg); }
.shelf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shelf-header em { font-style: normal; color: var(--accent-dark); letter-spacing: 0; text-transform: none; }
.context-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 15px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,253,248,0.92), rgba(255,253,248,0.76));
  border: 1px solid rgba(24,23,21,0.09);
  box-shadow: 0 12px 28px rgba(65,48,30,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
}
.context-card::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--accent);
  opacity: 0.72;
}
.context-card.is-later::before { background: var(--sage); opacity: 0.55; }
.card-topline, .capsule-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.domain-chip, .state-pill, .capsule-meta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.domain-chip {
  padding: 6px 8px;
  color: var(--ink-soft);
  background: rgba(24,23,21,0.06);
  border: 1px solid rgba(24,23,21,0.06);
  font-weight: 720;
}
.state-pill {
  padding: 6px 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(161,74,28,0.12);
  font-weight: 780;
}
.context-card.is-later .state-pill { color: var(--sage); background: var(--sage-soft); border-color: rgba(92,107,92,0.14); }
.context-card strong { display: block; font-size: 17px; letter-spacing: -0.03em; line-height: 1.14; }
.context-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.35; }
.capsule-meta { margin-top: 2px; }
.capsule-meta span { padding: 5px 0; color: var(--muted); font-size: 12px; font-weight: 650; }
.capsule-meta span + span::before { content: "·"; margin-right: 7px; color: var(--faint); }

.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,253,248,0.76);
  border: 1px solid rgba(24,23,21,0.09);
  box-shadow: var(--shadow-card);
}
.step-number { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; color: #fffaf2; background: var(--accent); font-weight: 850; }
.step-card h3 { margin: 18px 0 8px; font-size: 25px; line-height: 1.02; letter-spacing: -0.04em; }
.step-card p { margin: 0; color: var(--ink-soft); }
.step-shot {
  position: static;
  align-self: center;
  display: flex;
  justify-content: center;
  margin: 26px auto 0;
}
.step-phone { width: min(252px, 100%); padding: 7px; border-radius: 34px; background: #171512; box-shadow: 0 18px 48px rgba(65,48,30,0.18); }
.step-phone img { border-radius: 28px; width: 100%; height: auto; object-fit: contain; }

.artifact { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.artifact-copy { padding: 8px 0; }
.artifact-copy h2 { margin-top: 12px; }
.example-list { display: grid; gap: 10px; margin-top: 22px; }
.example-list span { display: block; padding: 14px 16px; border-radius: 18px; background: rgba(255,253,248,0.7); border: 1px solid rgba(24,23,21,0.08); color: var(--ink-soft); }
.artifact-visual { position: relative; min-height: 620px; }
.artifact-visual .phone-frame { width: min(360px, 82vw); transform: rotate(-1.5deg); }
.artifact-visual .context-slip { left: 0; right: auto; bottom: 88px; transform: rotate(4deg); }

.privacy-grid { display: grid; grid-template-columns: 0.96fr 1.04fr; gap: 26px; align-items: stretch; }
.privacy-copy { padding: 30px; }
.privacy-copy h2 { margin: 12px 0; }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; color: var(--ink-soft); }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; color: var(--sage); background: var(--sage-soft); font-weight: 900; }
.privacy-visual { padding: 26px; display: grid; place-items: center; background: rgba(255,253,248,0.5); }
.privacy-visual .phone-frame { width: min(330px, 78vw); transform: none; }

.cta-band { padding: 0 0 96px; }
.cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 38px;
  padding: 36px;
  color: #fffaf2;
  background:
    radial-gradient(circle at 90% 16%, rgba(255,255,255,0.12), transparent 24vw),
    linear-gradient(135deg, #201c17, #17130f 62%, #301b12);
  box-shadow: var(--shadow-soft);
}
.cta-shell h2 { margin: 0; font-size: clamp(36px, 4.8vw, 58px); }
.cta-shell p { max-width: 650px; margin: 12px 0 0; color: rgba(255,250,242,0.72); }
.cta-shell .btn-secondary { background: rgba(255,250,242,0.08); color: #fffaf2; border-color: rgba(255,250,242,0.18); }
.cta-shell .btn-secondary:hover { background: rgba(255,250,242,0.14); }

.site-footer { padding: 34px 0 44px; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(24,23,21,0.1); padding-top: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--ink-soft); font-weight: 700; }

.legal-main { padding: 68px 0 92px; }
.legal-grid { display: grid; grid-template-columns: minmax(0, 740px) 280px; gap: 46px; align-items: start; }
.legal-card { padding: 34px; border-radius: var(--radius-xl); background: rgba(255,253,248,0.76); border: 1px solid rgba(24,23,21,0.09); box-shadow: var(--shadow-card); }
.legal-card h1 { margin: 14px 0 16px; font-size: clamp(44px, 6vw, 72px); }
.legal-card h2 { margin: 34px 0 10px; font-size: 24px; letter-spacing: -0.035em; }
.legal-card p, .legal-card li { color: var(--ink-soft); }
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--accent-dark); font-weight: 700; }
.legal-note { padding: 16px; border-radius: 18px; background: var(--accent-soft); color: var(--accent-dark); font-size: 14px; }
.legal-side { position: sticky; top: 98px; display: grid; gap: 10px; }
.legal-side a, .legal-side span { display: block; padding: 13px 14px; border-radius: 15px; background: rgba(255,253,248,0.58); border: 1px solid rgba(24,23,21,0.08); color: var(--ink-soft); font-weight: 650; }
.legal-side span { color: var(--muted); font-weight: 500; }

@media (max-width: 980px) {
  .hero { padding-top: 52px; }
  .hero-grid, .insight-grid, .artifact, .privacy-grid, .legal-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding: 18px 0 72px; }
  .tray-field { inset: 64px 5% 54px 5%; }
  .workflow-grid { grid-template-columns: 1fr; }
  .step-card { align-items: stretch; }
  .step-shot { width: 100%; }
  .step-phone { width: min(230px, 78vw); }
  .artifact-visual { min-height: 620px; }
  .cta-shell { grid-template-columns: 1fr; }
  .legal-side { position: static; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header { position: relative; padding-top: 12px; }
  .nav-shell { gap: 10px; padding: 8px; border-radius: 20px; }
  .nav-links { display: flex; margin-left: auto; }
  .nav-links a:not(.btn-small) { display: none; }
  .nav-links .btn-small { min-height: 36px; padding: 0 11px; border-radius: 12px; font-size: 13px; }
  .hero { padding: 46px 0 58px; }
  .hero h1 { font-size: clamp(40px, 11vw, 46px); letter-spacing: -0.035em; max-width: 100%; }
  .hero h1 .hero-line { display: block; }
  .hero-copy { font-size: 17px; line-height: 1.5; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { gap: 7px; }
  .trust-pill { width: 100%; }
  .tray-field { inset: 70px 8% 58px 8%; transform: rotate(-2deg); }
  .phone-frame { width: min(276px, 72vw); border-radius: 36px; transform: rotate(0.4deg); }
  .phone-frame img { border-radius: 28px; }
  .context-slip { left: 50%; right: auto; bottom: 34px; width: min(224px, 66vw); transform: translateX(-50%) rotate(-2deg); }
  .section { padding: 66px 0; }
  .context-cards { padding: 15px; }
  .shelf-header { align-items: flex-start; flex-direction: column; gap: 2px; }
  .step-card, .problem-panel, .privacy-copy, .legal-card, .cta-shell { border-radius: 26px; padding: 22px; }
  .artifact-visual { min-height: 560px; }
  .artifact-visual .phone-frame { width: min(274px, 72vw); transform: rotate(-0.6deg); }
  .artifact-visual .context-slip { left: 50%; bottom: 54px; transform: translateX(-50%) rotate(2deg); }
  .privacy-visual { padding: 16px; }
  .cta-band { padding-bottom: 68px; }
  .footer-inner { flex-direction: column; }
  .legal-main { padding-top: 46px; }
  .legal-side { grid-template-columns: 1fr; }
}

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