/* ============================================================
   Duckling — happyduckling.app
   Static site, no build step. Fraunces display + system UI text.
   ============================================================ */

:root {
  --cream: #fdf8ee;
  --cream-deep: #f6eedb;
  --white: #fffdf8;
  --ink: #2e2b25;
  --ink-soft: #625c51;
  --yellow: #f6c445;
  --yellow-deep: #e8a93c;
  --yellow-soft: #fbe6ae;
  --text-accent: #7a5b13;
  --pond: #3e8e8c;
  --pond-deep: #2c6b6a;
  --pond-ink: #1f4d4c;
  --pond-soft: #ddefee;
  --night: #241f1c;
  --night-card: #322a25;
  --night-amber: #f0a35e;
  --radius-lg: 18px;
  --radius-md: 13px;
  --radius-sm: 9px;
  --shadow-soft: 0 4px 14px rgba(85, 66, 24, 0.07);
  --header-h: 84px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--pond-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible { outline: 3px solid #111; outline-offset: 3px; border-radius: 4px; }
.site-footer :focus-visible, .night-section :focus-visible, .cta-band :focus-visible { outline-color: #fff; }

[id] { scroll-margin-top: var(--header-h); }

@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;
  }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */

h1, h2, h3, .logo, .footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 4.9vw, 56px); line-height: 1.06; margin-bottom: 20px; }
h2 { font-size: clamp(27px, 3.4vw, 38px); line-height: 1.12; margin-bottom: 12px; }
h1 .hl { color: var(--pond-deep); font-style: italic; }

.lede, .sub { color: var(--ink-soft); }
.lede { font-size: 19.5px; margin-bottom: 26px; max-width: 32em; }
.sub { font-size: 18px; max-width: 44em; margin-bottom: 32px; }
.center { text-align: center; }
.center .sub, .sub.center { margin-left: auto; margin-right: auto; }

/* ---------- icons ---------- */

.icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pond-soft); color: var(--pond-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.icon svg { width: 22px; height: 22px; }
.icon.icon-warm { background: var(--yellow-soft); color: var(--text-accent); }
.night-section .icon { background: #453728; color: var(--night-amber); }

svg.glyph {
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 238, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(85, 66, 24, 0.08);
}

.nav { display: flex; align-items: center; gap: 24px; padding-block: 14px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 24px; color: var(--ink); font-weight: 700;
}
.logo:hover { text-decoration: none; }
.logo svg { width: 36px; height: 36px; }

.nav-links { display: flex; gap: 4px; margin-left: auto; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink-soft); font-weight: 600; font-size: 15.5px;
  padding: 10px 14px; border-radius: 999px;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-deep); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--pond-deep); background: var(--pond-soft); }

.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary {
  list-style: none; cursor: pointer;
  font-weight: 700; font-size: 15px; color: var(--ink);
  padding: 10px 16px; border: 1.5px solid rgba(85,66,24,0.22);
  border-radius: 999px; min-height: 44px; display: flex; align-items: center;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu[open] summary { background: var(--cream-deep); }
.mobile-menu ul {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid rgba(85,66,24,0.14);
  border-radius: var(--radius-md); box-shadow: 0 12px 32px rgba(85,66,24,0.14);
  list-style: none; min-width: 190px; padding: 8px; z-index: 60;
}
.mobile-menu ul a { display: block; padding: 12px 14px; border-radius: var(--radius-sm); color: var(--ink); font-weight: 600; }
.mobile-menu ul a:hover { background: var(--cream-deep); text-decoration: none; }
.mobile-menu ul a[aria-current="page"] { color: var(--pond-deep); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  font-weight: 700; font-size: 15.5px;
  padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  transition: transform 0.12s ease, background 0.12s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; background: #000; color: var(--cream); }
.btn.btn-sun { background: var(--yellow); border-color: rgba(85,66,24,0.2); color: var(--ink); }
.btn.btn-sun:hover { background: var(--yellow-deep); color: var(--ink); }
.btn.btn-quiet { background: transparent; color: var(--ink); border-color: rgba(85,66,24,0.3); }
.btn.btn-quiet:hover { background: var(--cream-deep); color: var(--ink); }
.btn.btn-big { padding: 15px 28px; font-size: 17px; }

.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; vertical-align: 4px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  background: var(--cream-deep); color: var(--ink-soft);
  border: 1px solid rgba(85,66,24,0.2);
  font-family: var(--font);
}

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(52% 44% at 84% 12%, rgba(246,196,69,0.16) 0%, transparent 70%),
    radial-gradient(44% 40% at 8% 86%, rgba(62,142,140,0.12) 0%, transparent 70%),
    var(--cream);
}

.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--yellow-deep); border-radius: 2px; }

.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-caption { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

.trust-row {
  display: flex; gap: 8px 24px; flex-wrap: wrap;
  font-weight: 600; color: var(--ink-soft); font-size: 14px;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(85,66,24,0.12);
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 15px; height: 15px; color: var(--pond-deep); flex: none; }

.wave { display: block; width: 100%; height: 44px; }

/* ---------- phone mockup ---------- */

.phone {
  width: min(300px, 100%); margin: 0 auto;
  background: #26231e;
  border-radius: 40px; padding: 11px;
  box-shadow: 0 24px 48px -18px rgba(60, 45, 12, 0.35);
}
.phone-screen {
  background: var(--white);
  border-radius: 30px; overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
  font-size: 13px;
}
.phone.mini { width: min(270px, 100%); }
.phone.mini .phone-screen { min-height: 400px; }
.phone.night .phone-screen { background: var(--night); color: #e8d8c8; }
.phone-caption { text-align: center; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-top: 14px; }

.p-status { display: flex; justify-content: space-between; padding: 12px 18px 4px; font-weight: 700; font-size: 12px; color: var(--ink-soft); }
.phone.night .p-status { color: #a08b78; }

.p-kids { display: flex; gap: 8px; padding: 10px 16px; }
.p-kid {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--cream-deep); font-weight: 700; font-size: 12px;
}
.p-kid.on { background: var(--yellow-soft); border: 1.5px solid var(--yellow-deep); }
.phone.night .p-kid { background: var(--night-card); }
.phone.night .p-kid.on { background: #4a3a28; border-color: var(--night-amber); }
.p-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--pond-deep); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.p-strip { display: flex; gap: 8px; padding: 6px 16px 10px; }
.p-fact { flex: 1; background: var(--cream); border-radius: var(--radius-sm); padding: 9px 10px; line-height: 1.35; }
.p-fact b { display: block; font-size: 14px; }
.p-fact span { font-size: 10.5px; color: var(--ink-soft); }
.phone.night .p-fact { background: var(--night-card); }
.phone.night .p-fact span { color: #a08b78; }

.p-timer {
  margin: 4px 16px 10px; padding: 12px 14px;
  background: var(--pond-soft); border: 1.5px solid var(--pond-deep);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between;
}
.phone.night .p-timer { background: #3a2f26; border-color: var(--night-amber); box-shadow: 0 0 24px rgba(240,163,94,0.14); }
.p-timer .t-label { font-weight: 700; font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.p-timer .t-label svg { width: 14px; height: 14px; flex: none; }
.p-timer .t-time { font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; }
.p-stop { background: var(--pond-deep); color: #fff; border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 12px; }
.phone.night .p-stop { background: var(--night-amber); color: var(--night); }

.p-feed { flex: 1; padding: 2px 16px; display: flex; flex-direction: column; gap: 7px; }
.p-event {
  display: flex; gap: 10px; align-items: center;
  background: var(--white); border: 1px solid rgba(85,66,24,0.12);
  border-radius: var(--radius-sm); padding: 9px 10px;
}
.phone.night .p-event { background: var(--night-card); border-color: #4a3f36; }
.p-ico {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: var(--pond-soft); color: var(--pond-deep);
  display: flex; align-items: center; justify-content: center;
}
.p-ico svg { width: 15px; height: 15px; }
.phone.night .p-ico { background: #453728; color: var(--night-amber); }
.p-event b { font-size: 12.5px; display: block; }
.p-event span { font-size: 10.5px; color: var(--ink-soft); }
.phone.night .p-event span { color: #a08b78; }

.p-confirm {
  margin: 4px 16px 10px; padding: 12px 14px;
  background: var(--yellow-soft); border: 1.5px solid var(--yellow-deep);
  border-radius: var(--radius-md); line-height: 1.4;
}
.p-confirm b { font-size: 13px; }
.p-confirm .p-actions { display: flex; gap: 8px; margin-top: 9px; }
.p-confirm .p-actions span { border-radius: 999px; padding: 6px 15px; font-weight: 700; font-size: 12px; }
.p-confirm .p-yes { background: var(--pond-deep); color: #fff; }
.p-confirm .p-edit { background: var(--white); border: 1.5px solid rgba(85,66,24,0.25); }

.p-capture {
  padding: 10px 14px 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: linear-gradient(transparent, var(--cream-deep) 30%);
}
.phone.night .p-capture { background: linear-gradient(transparent, #1c1815 30%); }
.p-tile {
  background: var(--white); border: 1.5px solid rgba(85,66,24,0.14);
  border-radius: var(--radius-sm); text-align: center; padding: 10px 4px 8px;
  font-weight: 600; font-size: 11.5px; color: var(--ink);
}
.p-tile svg { width: 18px; height: 18px; display: block; margin: 0 auto 4px; color: var(--pond-deep); }
.phone.night .p-tile { background: var(--night-card); border-color: #4a3f36; color: #e8d8c8; font-size: 13px; padding: 14px 4px 12px; }
.phone.night .p-tile svg { color: var(--night-amber); width: 22px; height: 22px; }
.p-mic {
  grid-column: 1 / -1;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; text-align: center;
  font-weight: 700; padding: 11px; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.p-mic svg { width: 15px; height: 15px; flex: none; }
.phone.night .p-mic { background: var(--night-amber); color: var(--night); }

.p-banner {
  margin: 4px 16px 8px; padding: 8px 12px;
  background: var(--cream-deep); border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.p-banner svg { width: 13px; height: 13px; flex: none; }
.phone.night .p-banner { background: var(--night-card); color: #a08b78; }

/* ---------- sections ---------- */

section { padding-block: 72px; }
section.tint { background: var(--white); }
section.tint-deep { background: var(--cream-deep); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(85, 66, 24, 0.12);
}
section.tint .card, section.tint-deep .card { background: var(--cream); }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-strip .t-item {
  background: var(--white); border: 1px solid rgba(85,66,24,0.12);
  border-radius: var(--radius-md); padding: 18px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.5;
}
.trust-strip .t-item b {
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 15px; margin-bottom: 4px;
}
.trust-strip .t-item b svg { width: 16px; height: 16px; color: var(--pond-deep); flex: none; }
section.tint .trust-strip .t-item { background: var(--cream); }

/* voice demo */
.voice-demo { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto; }
.bubble {
  padding: 14px 20px; border-radius: 20px; font-size: 16.5px;
  border: 1px solid rgba(85,66,24,0.12); max-width: 85%;
}
.bubble.said { background: var(--pond-deep); border-color: var(--pond-deep); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
.bubble.logged { background: var(--white); align-self: flex-start; border-bottom-left-radius: 6px; }
.bubble.logged b { color: var(--pond-deep); }
.bubble .undo { font-weight: 700; color: var(--text-accent); font-size: 14px; margin-left: 10px; }
.demo-note { text-align: center; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; margin-top: 18px; }

/* night */
.night-section { background: var(--night); color: #f0e4d6; }
.night-section h2 { color: #fff; }
.night-section .sub { color: #c4b3a2; }
.night-section .card { background: var(--night-card); border-color: #453a31; }
.night-section .card h3 { color: #ffe9c9; }
.night-section .card p { color: #c4b3a2; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--white); border-radius: var(--radius-md);
  padding: 4px 22px; margin-bottom: 10px;
  border: 1px solid rgba(85,66,24,0.14);
}
.faq summary {
  font-weight: 700; cursor: pointer; font-size: 16.5px; padding: 15px 0;
  list-style: none; position: relative; padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--pond-deep);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-bottom: 16px; font-size: 15.5px; }
section.tint .faq details { background: var(--cream); }

/* CTA band */
.cta-band {
  background: var(--pond-ink);
  border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 10%, rgba(246,196,69,0.18) 0%, transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #bcd8d6; max-width: 36em; margin: 0 auto; font-size: 17px; }
.cta-band .btn { margin-top: 26px; background: var(--yellow); border-color: transparent; color: var(--ink); }
.cta-band .btn:hover { background: var(--yellow-deep); }
.cta-band .cta-caption { color: #9dc4c2; margin-top: 14px; }

/* ---------- footer ---------- */

.site-footer { background: var(--pond-ink); color: #cfe3e2; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer .footer-h {
  color: #fff; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 700;
  font-family: var(--font);
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.site-footer a { color: #cfe3e2; font-size: 15px; display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: #fff; }
.footer-logo { font-size: 22px; margin-bottom: 12px; }
.footer-logo a { color: #fff; display: flex; align-items: center; gap: 10px; }
.footer-logo a:hover { text-decoration: none; }
.footer-logo svg { width: 32px; height: 32px; }
.footer-tag { font-size: 14.5px; max-width: 24em; opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 22px; font-size: 13px; opacity: 0.85;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-disclaimer { font-size: 12.5px; opacity: 0.7; max-width: 62em; margin-top: 10px; }

/* ---------- legal ---------- */

.legal { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 40px; margin-bottom: 6px; }
.legal .updated { color: var(--ink-soft); font-weight: 600; margin-bottom: 26px; }
.legal h2 { font-size: 24px; margin: 36px 0 10px; }
.legal p, .legal li { color: #4c463d; font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 24px; margin-bottom: 14px; }
.table-wrap { overflow-x: auto; margin: 14px 0 22px; }
.legal table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 420px; }
.legal caption { text-align: left; font-weight: 700; font-size: 14px; color: var(--ink-soft); padding-bottom: 8px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(85,66,24,0.15); vertical-align: top; }
.legal th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }

.draft-banner {
  border: 1px solid rgba(85,66,24,0.22);
  border-left: 4px solid var(--yellow-deep);
  color: var(--ink-soft); font-weight: 600; font-size: 14px;
  border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 30px;
  background: var(--white);
}

.callout {
  background: var(--pond-soft); border-left: 4px solid var(--pond-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin: 18px 0; font-size: 15.5px;
}

/* ---------- inner pages ---------- */

.page-hero { padding-block: 64px 8px; text-align: center; }
.page-hero h1 { max-width: 17em; margin-inline: auto; }
.page-hero .sub { margin: 16px auto 0; }

.feature-group { margin-bottom: 8px; }
.feature-group > h2 { margin-bottom: 4px; }
.feature-group > .sub { margin-bottom: 8px; }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding-block: 36px;
}
.feature-row.flip .f-copy { order: 2; }
.feature-row h3 { font-size: 25px; margin-bottom: 10px; }
.feature-row h3 .tag { margin-left: 10px; }
.feature-row p { color: var(--ink-soft); font-size: 16px; margin-bottom: 10px; }
.feature-row ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.feature-row li { padding-left: 27px; position: relative; color: var(--ink-soft); font-size: 15.5px; }
.feature-row li::before {
  content: ""; position: absolute; left: 2px; top: 7px;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--pond-deep); border-bottom: 2.5px solid var(--pond-deep);
  transform: rotate(-45deg);
}

.value-list { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }
.value-list .card { display: flex; gap: 20px; align-items: flex-start; }
.value-list .icon { flex: none; margin: 0; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid, .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip .f-copy { order: 0; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav > .btn { margin-left: 0; }
  .hero { padding-block: 48px 40px; }
}

@media (max-width: 640px) {
  section { padding-block: 52px; }
  .grid-3, .grid-2, .trust-strip, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 22px; }
  .card { padding: 22px; }
}

/* ---------- comparison table ---------- */

.compare-wrap { overflow-x: auto; border: 1px solid rgba(85,66,24,0.14); border-radius: var(--radius-lg); background: var(--white); }
.compare { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14.5px; min-width: 760px; }
.compare caption { text-align: left; padding: 18px 20px 6px; font-weight: 600; color: var(--ink-soft); font-size: 13.5px; }
.compare th, .compare td { padding: 12px 14px; text-align: center; border-bottom: 1px solid rgba(85,66,24,0.1); vertical-align: middle; }
.compare thead th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); border-bottom: 2px solid rgba(85,66,24,0.18); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); font-size: 14.5px; min-width: 200px; }
.compare .duck-col { background: var(--pond-soft); font-weight: 700; }
.compare thead .duck-col { color: var(--pond-ink); }
.compare .yes { color: var(--pond-deep); font-weight: 800; }
.compare .no { color: rgba(98,92,81,0.55); }
.compare .paid { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px; background: var(--yellow-soft); color: var(--text-accent); border: 1px solid var(--yellow-deep); text-transform: uppercase; letter-spacing: 0.04em; }
.compare .next { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px; background: var(--cream-deep); color: var(--ink-soft); border: 1px solid rgba(85,66,24,0.2); text-transform: uppercase; letter-spacing: 0.04em; }
.compare .cell-note { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-soft); margin-top: 2px; }
.compare-legend { display: flex; gap: 18px; flex-wrap: wrap; margin: 16px 4px 0; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.compare-footnote { font-size: 13px; color: var(--ink-soft); margin-top: 14px; max-width: 60em; }
