/* ======================================================================
   Penny — Colors & Type
   Warm, paper-textured, British, trust-forward.
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300..900;1,8..60,300..900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --penny-50:  #F7EDEC;
  --penny-100: #ECD3D1;
  --penny-200: #D8A6A3;
  --penny-300: #BD7975;
  --penny-400: #9C5450;
  --penny-500: #7A2E2E;
  --penny-600: #5F2326;
  --penny-700: #481B1F;
  --penny-800: #2F1316;
  --penny-900: #1A0B0D;

  --pink-50:  #FBF4EE;
  --pink-100: #F6E6DC;
  --pink-200: #F2DDD0;
  --pink-300: #E8C5B3;
  --pink-500: #C8A99E;
  --pink-700: #8F6F66;

  --paper-0:   #FAF4E4;
  --paper-50:  #F3ECD8;
  --paper-100: #ECE3CB;
  --paper-200: #DCD0B0;
  --paper-300: #BFAF89;

  --ink-900: #2A2826;
  --ink-700: #4A453E;
  --ink-500: #756E62;
  --ink-400: #968D7E;
  --ink-300: #B7AE9C;

  --sage-50:  #EEEFE9;
  --sage-100: #DEE0D5;
  --sage-300: #BBBDAC;
  --sage-500: #A8A99B;
  --sage-700: #7E7F73;

  --inkblue-500: #3F4D5E;
  --inkblue-700: #2A333F;

  --wa-green:    #25D366;
  --wa-green-dk: #128C7E;

  --bg-page:    var(--paper-0);
  --bg-surface: var(--paper-50);
  --fg-1:       var(--ink-900);
  --fg-2:       var(--ink-700);
  --fg-3:       var(--ink-500);

  --border-1: var(--paper-200);
  --border-2: var(--paper-300);

  --font-serif: 'Source Serif 4', 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --fs-display: 64px; --lh-display: 1.05; --tr-display: -0.022em;
  --fs-h1:      44px; --lh-h1:      1.10; --tr-h1:      -0.020em;
  --fs-h3:      22px; --lh-h3:      1.30; --tr-h3:      -0.010em;
  --fs-lead:    20px; --lh-lead:    1.50; --tr-lead:    -0.005em;
  --fs-body:    17px; --lh-body:    1.55;
  --fs-eyebrow: 12px; --lh-eyebrow: 1.20; --tr-eyebrow: 0.10em;

  --shadow-1: 0 1px 0 0 rgba(31,26,20,0.04), 0 1px 2px rgba(31,26,20,0.06);
  --shadow-3: 0 2px 0 0 rgba(31,26,20,0.04), 0 18px 38px -18px rgba(31,26,20,0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--penny-100); color: var(--ink-900); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Type classes ---------- */
.t-display {
  font-family: var(--font-serif); font-weight: 400;
  font-size: var(--fs-display); line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-variation-settings: 'opsz' 60;
}
.t-h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: var(--fs-h1); line-height: var(--lh-h1);
  letter-spacing: var(--tr-h1);
  font-variation-settings: 'opsz' 48;
}
.t-h3 {
  font-family: var(--font-sans); font-weight: 600;
  font-size: var(--fs-h3); line-height: var(--lh-h3);
  letter-spacing: var(--tr-h3);
}
.t-lead {
  font-family: var(--font-serif); font-weight: 400;
  font-size: var(--fs-lead); line-height: var(--lh-lead);
  letter-spacing: var(--tr-lead);
  color: var(--fg-2);
  font-variation-settings: 'opsz' 24;
}
.t-body { font-family: var(--font-sans); font-weight: 400; font-size: var(--fs-body); line-height: var(--lh-body); }
.t-eyebrow {
  font-family: var(--font-sans); font-weight: 600;
  font-size: var(--fs-eyebrow); line-height: var(--lh-eyebrow);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- Wordmark inline ---------- */
.wm {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  letter-spacing: 0.005em; color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 26px;
}
.wm-mark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink-200); color: var(--penny-700);
  border: 1px solid color-mix(in oklab, var(--penny-500) 35%, transparent);
  border-radius: 50%;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 0.78em; line-height: 1; padding-bottom: 0.05em;
  flex-shrink: 0; aspect-ratio: 1;
  width: 0.95em; height: 0.95em;
}
.wm-ny { line-height: 1; }
.wm-lg { font-size: 20px; }

/* ---------- CTA button (WhatsApp green) ---------- */
.cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #073320;
  border: 1px solid #128C7E; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: transform var(--dur-1) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              background var(--dur-2);
}
.cta:hover { background: #1FB658; box-shadow: 0 8px 22px -10px rgba(20,140,40,0.55); transform: translateY(-1px); }
.cta:active { transform: translateY(0); box-shadow: inset 0 1px 0 rgba(31,26,20,0.10); }
.cta-sm { font-size: 14px; padding: 9px 16px; }
.cta-md { font-size: 15px; padding: 11px 20px; }
.cta-lg { font-size: 17px; padding: 14px 26px; }
.cta-glyph { width: 18px; height: 18px; flex-shrink: 0; }
.cta-lg .cta-glyph { width: 22px; height: 22px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,248,0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.nav-brand { text-decoration: none; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--fg-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--ink-900); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero { padding: 72px 0 96px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/paper-texture.svg');
  background-size: 200px; opacity: 0.5; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
  position: relative;
}
.hero-eyebrow { color: var(--penny-700); }
.hero-h1 { margin: 18px 0 24px; color: var(--ink-900); font-variation-settings: 'opsz' 60; }
.hero-h1 em { font-style: italic; color: var(--penny-600); font-variation-settings: 'opsz' 60; }
.hero-lead { max-width: 520px; }
.hero-cta-row { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.hero-fineprint { font-size: 13px; color: var(--fg-3); }
.hero-trust {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px;
  padding: 9px 16px;
  background: var(--paper-50);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 13.5px; color: var(--fg-2);
  line-height: 1.2;
}
.hero-trust strong { color: var(--ink-900); font-weight: 600; }
.hero-trust-icon { width: 15px; height: 15px; color: var(--penny-600); flex-shrink: 0; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 64px; }
}

/* ---------- BRIEFING (as a WhatsApp chat) ---------- */
.briefing-wa {
  background: #ECE5DD;
  background-image:
    radial-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
  border-radius: 22px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
  transform: rotate(-0.4deg);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 440px; margin-left: auto;
}
.briefing-wa-header {
  background: #075E54; color: white;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.briefing-wa-avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--paper-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.briefing-wa-id { flex: 1; min-width: 0; }
.briefing-wa-name { font-family: var(--font-sans); font-weight: 600; font-size: 15px; line-height: 1.15; }
.briefing-wa-status { font-size: 11px; opacity: 0.85; margin-top: 1px; }
.briefing-wa-icons { display: flex; gap: 14px; opacity: 0.8; font-size: 14px; }

.briefing-wa-thread { padding: 12px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.briefing-wa-date {
  align-self: center;
  background: rgba(225,245,254,0.85);
  color: rgba(0,0,0,0.55);
  font-size: 10.5px;
  padding: 3px 10px; border-radius: 8px;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.briefing-wa-bubble {
  align-self: flex-start;
  background: #FFFFFF;
  border-top-left-radius: 0; border-radius: 8px;
  padding: 12px 14px 8px;
  max-width: 92%;
  font-family: var(--font-sans); font-size: 14px;
  color: rgba(0,0,0,0.86);
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  position: relative;
}
.briefing-wa-bubble::before {
  content: ""; position: absolute; left: -7px; top: 0;
  width: 0; height: 0;
  border-style: solid; border-width: 0 8px 8px 0;
  border-color: transparent #FFFFFF transparent transparent;
  filter: drop-shadow(-1px 1px 0.5px rgba(0,0,0,0.08));
}
.briefing-wa-greet {
  display: flex; gap: 10px; align-items: flex-start;
  padding-bottom: 10px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.briefing-wa-sun { font-size: 22px; line-height: 1.1; }
.briefing-wa-greet strong { font-weight: 600; color: rgba(0,0,0,0.92); font-size: 15px; }
.briefing-wa-meta { color: rgba(0,0,0,0.5); font-size: 12px; }

.briefing-wa-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.briefing-wa-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.briefing-wa-list .bi { font-size: 16px; line-height: 1.2; flex-shrink: 0; width: 20px; text-align: center; }
.briefing-wa-list small { color: rgba(0,0,0,0.52); font-size: 12px; display: block; margin-top: 1px; }

.briefing-wa-time {
  text-align: right; font-size: 10.5px;
  color: rgba(0,0,0,0.45);
  margin-top: 8px;
}
.briefing-wa-ticks { color: #34B7F1; margin-left: 2px; letter-spacing: -1px; }

/* ---------- HOW ---------- */
.how { padding: 96px 0; border-top: 1px solid var(--border-1); }
.how-eyebrow { color: var(--penny-700); }
.how-h2 { max-width: 720px; margin: 14px 0 56px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-step { padding-top: 24px; border-top: 1px solid var(--border-1); }
.how-num { font-family: var(--font-mono); font-size: 12px; color: var(--penny-500); letter-spacing: 0.1em; margin-bottom: 14px; }
.how-step h3 { margin-bottom: 10px; }
.how-step p { color: var(--fg-2); font-size: 16px; line-height: 1.55; }
@media (max-width: 800px) {
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
  .how { padding: 64px 0; }
}

/* ---------- MORNING ---------- */
.morning {
  padding: 96px 0;
  background: var(--paper-100);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.morning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.morning-copy h2 { margin: 14px 0 18px; max-width: 460px; }
.morning-copy p { color: var(--fg-2); font-size: 17px; line-height: 1.6; max-width: 480px; }
.morning-copy p + p { margin-top: 14px; }
.morning-phone { display: flex; justify-content: center; }
@media (max-width: 920px) {
  .morning-grid { grid-template-columns: 1fr; gap: 48px; }
  .morning { padding: 64px 0; }
}

/* ---------- PHONE FRAME ---------- */
.phone {
  width: 320px; height: 640px;
  background: #1F1A14; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-3); position: relative;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px; background: #000;
  border-radius: 999px; z-index: 2;
}
.phone-screen {
  background: #ECE5DD; border-radius: 32px; height: 100%;
  overflow: hidden; display: flex; flex-direction: column;
}

.wa { display: flex; flex-direction: column; height: 100%; }
.wa-header {
  background: #075E54; color: white;
  padding: 36px 12px 10px;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.wa-back { font-size: 24px; opacity: 0.9; }
.wa-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--paper-50);
  display: flex; align-items: center; justify-content: center;
}
.wa-name { font-weight: 600; font-size: 15px; line-height: 1.1; }
.wa-status { font-size: 11px; opacity: 0.85; }
.wa-thread {
  flex: 1; padding: 12px 10px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
  background-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.02) 100%);
}
.wa-date {
  align-self: center;
  background: rgba(225,245,254,0.8);
  color: rgba(0,0,0,0.6);
  font-size: 10px;
  padding: 3px 10px; border-radius: 8px;
  margin: 6px 0;
  text-transform: lowercase;
}
.wa-bubble {
  max-width: 78%; padding: 7px 9px 4px;
  border-radius: 8px; font-size: 13px; line-height: 1.4;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  position: relative;
}
.wa-bubble.them { background: white; align-self: flex-start; border-top-left-radius: 0; }
.wa-bubble.me   { background: #DCF8C6; align-self: flex-end;  border-top-right-radius: 0; }
.wa-mini { padding-top: 3px; font-size: 13px; }
.wa-time {
  font-size: 10px; color: rgba(0,0,0,0.45);
  float: right; margin-left: 8px; margin-top: 2px;
  font-family: var(--font-mono);
}

/* ---------- TODOS (shared with partner) ---------- */
.todos { padding: 96px 0; border-bottom: 1px solid var(--border-1); }
.todos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.todos-copy h2 { margin: 14px 0 18px; max-width: 460px; }
.todos-copy p { color: var(--fg-2); font-size: 17px; line-height: 1.6; max-width: 480px; }
.todos-copy p + p { margin-top: 14px; }

.todos-visual { display: flex; justify-content: center; }
.todos-card {
  width: 100%; max-width: 420px;
  background: var(--bg-page);
  border: 1px solid var(--border-1);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: var(--shadow-3);
  position: relative;
}
.todos-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border-1);
}
.todos-title {
  font-family: var(--font-serif); font-weight: 500; font-size: 22px;
  color: var(--ink-900); line-height: 1.1;
  font-variation-settings: 'opsz' 24;
}
.todos-sub {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.05em; color: var(--fg-3);
  margin-top: 4px;
}
.todos-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--paper-50);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 12px; color: var(--fg-2);
  white-space: nowrap;
}
.todos-avatars { display: inline-flex; flex-shrink: 0; }
.todos-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 11px; line-height: 1; color: white;
  border: 2px solid var(--bg-page);
  font-variation-settings: 'opsz' 24;
}
.todos-avatar-h { background: var(--penny-500); }
.todos-avatar-t { background: var(--inkblue-500); margin-left: -8px; }
.todos-link-text { font-weight: 500; }

.todos-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.todos-list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.4; }
.todos-text { flex: 1; min-width: 0; }
.todos-item { font-size: 15.5px; color: var(--ink-900); font-weight: 500; }
.todos-list li.done .todos-item {
  color: var(--fg-3);
  text-decoration: line-through;
  text-decoration-color: var(--ink-300);
  text-decoration-thickness: 1px;
  font-weight: 400;
}
.todos-list small {
  display: block;
  color: var(--fg-3); font-size: 12px; margin-top: 3px;
  font-family: var(--font-mono); letter-spacing: 0.01em;
}
.todos-check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1; font-weight: 700;
  margin-top: 1px;
  border: 1.5px solid var(--ink-300);
  background: transparent;
}
.todos-list li.done .todos-check {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green-dk);
}

.todos-who {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  font-family: var(--font-serif); font-style: italic;
  font-size: 9.5px; line-height: 1; font-weight: 500; color: white;
  margin-right: 6px; vertical-align: -3px;
  font-variation-settings: 'opsz' 24;
  text-transform: none;
}
.todos-who-t { background: var(--inkblue-500); }
.todos-who-h { background: var(--penny-500); }

.todos-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--border-1);
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--penny-700); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.todos-foot-sub { color: var(--fg-3); text-transform: none; letter-spacing: 0.02em; }

.todos-moment {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px dashed var(--border-2);
}
.todos-moment-h {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 30px; line-height: 1.2;
  color: var(--ink-900);
  text-align: center;
  margin: 0 0 12px; max-width: 640px;
  margin-left: auto; margin-right: auto;
  font-variation-settings: 'opsz' 32;
  letter-spacing: -0.01em;
}
.todos-moment-sub {
  text-align: center;
  color: var(--fg-2);
  font-size: 16px; line-height: 1.55;
  max-width: 540px; margin: 0 auto 48px;
}
.todos-moment-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
  justify-items: center;
}
.todos-moment-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
}
.todos-moment-label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: var(--paper-50);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  font-size: 13px; color: var(--fg-2);
}
.todos-moment-num {
  font-family: var(--font-mono); font-weight: 500;
  color: var(--penny-500); letter-spacing: 0.08em;
  font-size: 11px;
}
.todos-moment-arrow {
  font-family: var(--font-serif);
  font-size: 36px; line-height: 1;
  color: var(--penny-400);
  font-weight: 300;
}

.phone-sm { width: 280px; height: 540px; border-radius: 38px; padding: 10px; }
.phone-sm .phone-notch { width: 92px; height: 22px; top: 12px; }
.phone-sm .phone-screen { border-radius: 28px; }
.phone-sm .wa-header { padding: 30px 10px 8px; }
.phone-sm .wa-bubble { font-size: 12.5px; }
.phone-sm .wa-mini { font-size: 12.5px; }

@media (max-width: 920px) {
  .todos-grid { grid-template-columns: 1fr; gap: 48px; }
  .todos { padding: 64px 0; }
  .todos-card { max-width: 480px; margin: 0 auto; }
  .todos-moment { margin-top: 56px; padding-top: 40px; }
  .todos-moment-row { grid-template-columns: 1fr; gap: 24px; }
  .todos-moment-arrow { transform: rotate(90deg); font-size: 28px; }
}

/* ---------- PRIVACY ---------- */
.privacy { padding: 96px 0; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.privacy-h2 { margin: 14px 0 18px; }
.privacy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.privacy-list li {
  padding: 16px 18px;
  background: var(--paper-50);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  font-size: 15px; line-height: 1.5;
  color: var(--fg-2);
}
.privacy-list strong { color: var(--ink-900); display: block; font-weight: 600; margin-bottom: 2px; }
.privacy-list em { font-style: italic; color: var(--penny-700); }
@media (max-width: 920px) {
  .privacy-grid { grid-template-columns: 1fr; gap: 36px; }
  .privacy { padding: 64px 0; }
}

/* ---------- TRUST (compliance) ---------- */
.trust-wrap { margin-top: 72px; }
.trust-card {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: center;
  padding: 40px 44px;
  background: var(--paper-50);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
}
.trust-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/paper-texture.svg');
  background-size: 200px; opacity: 0.35; pointer-events: none;
}
.trust-copy { position: relative; }
.trust-eyebrow { color: var(--penny-700); margin-bottom: 14px; }
.trust-lead {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 22px; line-height: 1.45;
  color: var(--ink-900);
  margin: 0 0 18px; max-width: 540px;
  font-variation-settings: 'opsz' 24;
}
.trust-body {
  color: var(--fg-2); font-size: 15.5px; line-height: 1.6;
  margin: 0 0 16px; max-width: 540px;
}
.trust-body strong { color: var(--ink-900); font-weight: 600; white-space: nowrap; }
.trust-plain {
  font-size: 14.5px; color: var(--fg-3);
  margin: 0; max-width: 540px;
}
.trust-plain em {
  font-style: italic; color: var(--penny-700);
  font-family: var(--font-serif); font-weight: 500; font-size: 16px;
}
.trust-badges {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.trust-badges li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 22px;
  background: var(--bg-page);
  border: 1px solid var(--border-1);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
}
.trust-badge-mark {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; color: var(--ink-900);
  letter-spacing: 0.005em; line-height: 1.1;
  font-variation-settings: 'opsz' 24;
}
.trust-badge-sub {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--penny-700);
}
@media (max-width: 920px) {
  .trust-wrap { margin-top: 40px; }
  .trust-card { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .trust-badges { flex-direction: row; flex-wrap: wrap; }
  .trust-badges li { flex: 1 1 30%; min-width: 140px; }
}

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; border-top: 1px solid var(--border-1); }
.faq-h2 { margin: 14px 0 40px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border-1); }
.faq-item:last-child { border-bottom: 1px solid var(--border-1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--ink-900); text-align: left;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--penny-700); }
.faq-tog { font-family: var(--font-sans); font-size: 24px; color: var(--penny-500); margin-left: 16px; line-height: 1; }
.faq-item[open] .faq-tog::before { content: "−"; }
.faq-item:not([open]) .faq-tog::before { content: "+"; }
.faq-a {
  padding: 0 0 22px;
  color: var(--fg-2); font-size: 16px; line-height: 1.6;
  max-width: 720px;
  animation: faqin 320ms var(--ease-out);
}
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
@keyframes faqin { from { opacity: 0; transform: translateY(-4px); } }
@media (max-width: 800px) {
  .faq { padding: 64px 0; }
  .faq-q { font-size: 18px; }
}

/* ---------- FOOTER ---------- */
.foot {
  padding: 120px 0 64px;
  background: var(--paper-100);
  border-top: 1px solid var(--border-1);
  text-align: center;
  position: relative;
}
.foot::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/paper-texture.svg');
  background-size: 200px; opacity: 0.6; pointer-events: none;
}
.foot-inner { position: relative; }
.foot-eyebrow { color: var(--penny-700); }
.foot-h { margin: 14px 0 36px; font-variation-settings: 'opsz' 60; }
.foot-fine {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border-1);
  color: var(--fg-3); font-size: 13px;
}
@media (max-width: 720px) {
  .foot { padding: 72px 0 48px; }
  .foot-h { font-size: 40px; }
}
