/* ───────────────────────────────────────────────
   Bento — usebento.io
   Base: rice paper light mode · Box tints: Stationery v3
   ─────────────────────────────────────────────── */

:root {
  --paper:        #EFE7D6;   /* canvas — warm rice paper */
  --paper-deep:   #E6DCC6;   /* frame */
  --rice:         #FBF5E8;   /* compartment fill */
  --rice-2:       #F2EAD6;
  --cream:        #E8C7A0;   /* sesame */
  --cream-soft:   #F4E5C8;

  --ink:          #2A1F14;   /* warm dark brown — the foreground */
  --ink-2:        rgba(42, 31, 20, 0.72);
  --ink-3:        rgba(42, 31, 20, 0.50);
  --ink-4:        rgba(42, 31, 20, 0.28);

  --forest:       #1F3A2E;   /* primary accent */
  --forest-deep:  #0F2419;
  --forest-soft:  rgba(31, 58, 46, 0.10);
  --forest-line:  rgba(31, 58, 46, 0.16);

  --persimmon:    #C8553D;   /* terracotta highlight */
  --persimmon-soft: rgba(200, 85, 61, 0.12);

  /* Box tints — Stationery palette v3 (no food references) */
  --t-coral:  #E8634A;   /* ink — alerts, recipes, today        */
  --t-butter: #E8B752;   /* ink — notes, drafts, in-progress    */
  --t-rose:   #D89AAC;   /* ink — social, people, gifts         */
  --t-sky:    #BFD3E8;   /* paper — links, web, references      */
  --t-mint:   #C8DDD0;   /* paper — fitness, fresh, today       */
  --t-cream:  #F2E5BE;   /* paper — reading, archive            */
  --t-bone:   #EFE8D8;   /* paper — neutral, default            */
  --t-clay:   #E8C8B0;   /* paper — audio, voice                */
  --t-iris:   #6B7DB8;   /* cloth — focus, deep work            */
  --t-sage:   #7A9079;   /* cloth — places, travel, outdoor     */
  --t-slate:  #1B2A48;   /* dark  — vault, finance, home base   */
  --t-indigo: #2D4068;   /* dark  — private, locked             */

  /* Legacy aliases so nothing breaks if referenced elsewhere */
  --t-ginger: var(--t-coral);
  --t-plum:   var(--t-rose);
  --t-pickle: var(--t-sky);
  --t-nori:   var(--t-slate);
  --t-sesame: var(--t-cream);
  --t-miso:   var(--t-butter);
  --t-wasabi: var(--t-mint);
  --t-salmon: var(--t-clay);
  --t-shoyu:  var(--t-indigo);
  --t-shiso:  var(--t-iris);
  --t-tea:    var(--t-sage);

  --line:        rgba(42, 31, 20, 0.10);
  --line-strong: rgba(42, 31, 20, 0.18);

  --font-sans:  "Inter Tight", -apple-system, system-ui, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "New York", Georgia, serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20, 20, 24, 0.04), 0 4px 12px rgba(20, 20, 24, 0.05);
  --shadow:    0 8px 24px rgba(20, 20, 24, 0.08), 0 2px 6px rgba(20, 20, 24, 0.05);
  --shadow-lg: 0 24px 60px rgba(20, 20, 24, 0.18), 0 6px 16px rgba(20, 20, 24, 0.08);
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--forest); color: var(--rice); }

/* ─────────────────  Layout primitives  ───────────────── */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .num { color: var(--forest); font-weight: 600; }

.section-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 auto 32px;
  max-width: 1200px;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-label .num { color: var(--forest); font-weight: 600; }
.section-label h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 22px;
  color: var(--ink);
}
.section-label .rule { flex: 1; height: 1px; background: var(--line); }

em.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.persimmon em.serif { color: var(--persimmon); }

/* ─────────────────  Top nav  ───────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 231, 214, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--forest);
  display: grid; place-items: center;
}
.brand-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-wordmark {
  height: 26px;
  width: auto;
  display: block;
}
.brand-wordmark--lg { height: 88px; }
@media (max-width: 720px) {
  .brand-wordmark--lg { height: 64px; }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) {
  font-size: 14px; color: var(--ink-2);
  transition: color 120ms ease;
}
.nav-links a:not(.btn):hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ─────────────────  Buttons  ───────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--forest); color: var(--rice); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(42, 31, 20, 0.04); }

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink); color: var(--rice);
  border-radius: 14px;
  transition: transform 120ms ease, background 120ms ease;
}
.btn-store:hover { transform: translateY(-1px); background: #1a1208; }
.btn-store .pre { font-size: 10px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; margin-bottom: 4px; }
.btn-store .name { font-size: 16px; font-weight: 600; line-height: 1; }

/* ─────────────────  Hero  ───────────────── */

.hero {
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 40% at 20% 10%, rgba(31, 58, 46, 0.06), transparent 60%),
    radial-gradient(40% 40% at 90% 30%, rgba(200, 85, 61, 0.06), transparent 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.hero .lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  line-height: 1.5;
  margin: 0 0 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta span::before { content: "·"; margin-right: 8px; color: var(--forest); }
.hero-meta span:first-child::before { display: none; }

@media (max-width: 980px) {
  .hero { padding: 56px 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────  Phone visual (right column of hero)  ───────────────── */

.phone-shell {
  width: 300px;
  flex-shrink: 0;
  border-radius: 54px;
  background: #1A1410;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: rotate(-3deg);
  transition: transform 400ms ease;
}
.phone-shell:hover { transform: rotate(0deg); }
.phone-shot {
  width: 100%;
  border-radius: 46px;
  display: block;
}

@media (max-width: 980px) {
  .phone-shell { transform: none; width: 260px; }
}

/* ─────────────────  Logo wordmark  ───────────────── */

.wordmark {
  display: inline-flex; align-items: center; gap: 18px;
  margin-bottom: 4px;
}
.wordmark .mark {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--forest);
  display: grid; place-items: center;
}

/* ─────────────────  Three-step "How it works"  ───────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.step {
  background: var(--rice);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 16px;
}
.step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.step h3 em { font-family: var(--font-serif); font-style: italic; color: var(--forest); font-weight: 400; }
.step p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.step .glyph {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--forest);
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─────────────────  Spotlights (color-blocked App Store style)  ───────────────── */

.spotlights {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.spotlight {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.spotlight:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14); }
.spotlight .badge {
  position: absolute; top: 24px; right: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}
.spotlight h3 {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.spotlight h3 .accent {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  margin-top: 4px;
}
.spotlight p {
  font-size: 14px; line-height: 1.5;
  max-width: 360px;
  margin: 14px 0 0;
  opacity: 0.7;
}

/* Spotlights — color blocks lifted from the App Store shots */
.sp-paper    { background: var(--paper);   color: var(--ink);  grid-column: span 2; }
.sp-paper    .accent { color: var(--forest); }

.sp-forest   { background: var(--forest);  color: var(--rice); grid-column: span 2; }
.sp-forest   .accent { color: var(--cream); }
.sp-forest   .badge { background: rgba(255, 255, 255, 0.12); color: var(--rice); }

.sp-persim   { background: var(--persimmon); color: var(--rice); grid-column: span 2; }
.sp-persim   .accent { color: var(--forest); }
.sp-persim   .badge { background: rgba(255, 255, 255, 0.18); color: var(--rice); }

.sp-cream    { background: var(--cream); color: var(--ink); grid-column: span 3; }
.sp-cream    .accent { color: var(--persimmon); }

.sp-shoyu    { background: var(--ink); color: var(--rice); grid-column: span 3; }
.sp-shoyu    .accent { color: var(--cream); }
.sp-shoyu    .badge { background: rgba(255, 255, 255, 0.10); color: var(--rice); }

@media (max-width: 980px) {
  .spotlights { grid-template-columns: 1fr 1fr; }
  .spotlight, .sp-paper, .sp-forest, .sp-persim, .sp-cream, .sp-shoyu { grid-column: span 1; }
}
@media (max-width: 600px) {
  .spotlights { grid-template-columns: 1fr; }
}

/* ─────────────────  Item types grid (the pantry)  ───────────────── */

.pantry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pantry-tile {
  border-radius: var(--radius);
  padding: 22px;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  color: var(--ink);
  transition: transform 200ms ease;
}
.pantry-tile:hover { transform: translateY(-2px); }
.pantry-tile .pip {
  width: 12px; height: 12px; border-radius: 50%;
}
.pantry-tile .name {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
}
.pantry-tile .desc {
  font-size: 12.5px; opacity: 0.7;
  margin-top: 4px;
  line-height: 1.45;
}
.pantry-tile .kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.p-recipe { background: var(--t-coral); color: var(--ink); }
.p-recipe .pip { background: var(--ink); }
.p-quote  { background: var(--rice); border: 1px solid var(--line); }
.p-quote  .pip { background: var(--persimmon); }
.p-place  { background: var(--t-sky); color: var(--ink); }
.p-place  .pip { background: var(--t-slate); }
.p-voice  { background: var(--t-slate); color: var(--rice); }
.p-voice  .pip { background: var(--t-butter); }
.p-pdf    { background: var(--paper-deep); }
.p-pdf    .pip { background: var(--t-sage); }
.p-photo  { background: var(--t-cream); color: var(--ink); }
.p-photo  .pip { background: var(--ink); }
.p-link   { background: var(--t-iris); color: var(--rice); }
.p-link   .pip { background: var(--rice); }
.p-thread { background: var(--t-rose); color: var(--ink); }
.p-thread .pip { background: var(--ink); }

@media (max-width: 880px) { .pantry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pantry { grid-template-columns: 1fr; } }

/* ─────────────────  Privacy strip ("what stays / what leaves")  ───────────────── */

.privacy-strip {
  background: var(--rice);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.privacy-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 16px;
}
.privacy-copy h2 em { font-family: var(--font-serif); font-style: italic; color: var(--persimmon); font-weight: 400; }
.privacy-copy p { color: var(--ink-2); font-size: 16px; max-width: 460px; margin: 0; }
.privacy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink);
}
.privacy-card .com { color: var(--ink-3); font-size: 11px; letter-spacing: 0.04em; margin-bottom: 6px; }
.privacy-card .nope { color: var(--persimmon); font-weight: 700; }

@media (max-width: 980px) {
  .privacy-strip { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; }
}

/* ─────────────────  FAQ  ───────────────── */

.faq { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq details {
  background: var(--rice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: background 160ms ease;
}
.faq details[open] { background: #fff; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--forest);
  font-weight: 400;
  transition: transform 220ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ─────────────────  Big bottom CTA  ───────────────── */

.cta {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(31, 58, 46, 0.08), transparent 70%),
    var(--paper);
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.cta h2 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 auto 24px;
  max-width: 12ch;
}
.cta h2 em { font-family: var(--font-serif); font-style: italic; color: var(--forest); font-weight: 400; }
.cta p { margin: 0 auto 36px; max-width: 480px; color: var(--ink-2); }
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-tray {
  width: 132px; height: 132px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 18px 36px rgba(20, 20, 24, 0.18));
  transform: rotate(-4deg);
  transition: transform 320ms ease;
}
.cta-tray:hover { transform: rotate(0deg) scale(1.04); }
@media (max-width: 600px) {
  .cta-tray { width: 100px; height: 100px; }
}

/* ─────────────────  Footer  ───────────────── */

footer {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.foot-brand p {
  margin: 16px 0 0;
  font-size: 13px; color: var(--ink-3);
  max-width: 280px; line-height: 1.55;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a { font-size: 14px; color: var(--ink-2); }
.foot-col a:hover { color: var(--ink); }

.foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-base { flex-direction: column; gap: 14px; }
}

/* ─────────────────  Section spacing  ───────────────── */

section { padding: 80px 0; }
section h2.kicker {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 8px 0 18px;
  max-width: 18ch;
}
section h2.kicker em { font-family: var(--font-serif); font-style: italic; color: var(--forest); font-weight: 400; }
section .lede {
  font-size: 17px; color: var(--ink-2); max-width: 600px; margin: 0 0 48px; line-height: 1.55;
}

/* ─────────────────  Article surfaces (privacy/terms/support)  ───────────────── */

.article {
  padding: 80px 0 100px;
}
.article h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 12px 0 8px;
}
.article h1 em { font-family: var(--font-serif); font-style: italic; color: var(--forest); font-weight: 400; }
.article .updated {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.article h2 {
  margin: 48px 0 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.article h3 {
  margin: 32px 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.article p, .article li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 6px; }
.article a { color: var(--forest); border-bottom: 1px solid var(--forest-line); }
.article a:hover { border-bottom-color: var(--forest); }
.article .btn { border-bottom: none; }
.article .btn-primary { color: var(--rice); }
.article .btn-ghost { color: var(--ink); }
.article hr {
  border: 0; height: 1px; background: var(--line); margin: 56px 0;
}
.article .callout {
  background: var(--rice);
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.article .callout p { margin: 0; color: var(--ink); }

/* ─────────────────  Pricing  ───────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: var(--rice);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.plan-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--rice);
}

.plan-tier {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.plan-card--featured .plan-tier { color: rgba(251,245,232,0.55); }

.plan-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.plan-card--featured .plan-name { color: var(--rice); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.plan-amount {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.plan-card--featured .plan-amount { color: var(--rice); }
.plan-period {
  font-size: 15px;
  color: var(--ink-3);
}
.plan-card--featured .plan-period { color: rgba(251,245,232,0.55); }

.plan-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.plan-card--featured .plan-desc { color: rgba(251,245,232,0.72); }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--forest);
}
.plan-features li.off { color: var(--ink-4); }
.plan-features li.off::before { content: '–'; color: var(--ink-4); font-weight: 400; }
.plan-card--featured .plan-features li { color: rgba(251,245,232,0.85); }
.plan-card--featured .plan-features li::before { color: var(--cream); }

.pricing-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 24px;
}
