/* MyFoody — Marketing site stylesheet
   Tokens, typography, layout primitives, components, and page styles. */

/* ───────── 1. Tokens ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:        #f6f3ec;
  --cream-2:      #efeadf;
  --cream-3:      #e6e0d0;
  --primary:      #1f4d2e;
  --primary-deep: #0f2a18;
  --primary-bright: #2d6a3f;
  --lime:         #c8de6b;
  --lime-soft:    #e9f0c5;
  --orange:       #e07a3e;
  --orange-soft:  #fbe5d4;
  --rose:         #e6695b;
  --gold:         #d9a441;
  --ink:          #1a1f1c;
  --ink-2:        #4a544c;
  --ink-3:        #8a948b;
  --ink-4:        #c5cbc4;
  --line:         #e6e2d8;
  --line-dark:    rgba(255,255,255,0.10);

  /* Type */
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Sizes (fluid) */
  --t-display: clamp(52px, 8.6vw, 124px);
  --t-h1:      clamp(40px, 6.4vw, 88px);
  --t-h2:      clamp(32px, 4.6vw, 64px);
  --t-h3:      clamp(22px, 2.4vw, 32px);
  --t-h4:      19px;
  --t-bodyL:   19px;
  --t-body:    16px;
  --t-small:   14px;
  --t-tiny:    12px;
  --t-eyebrow: 12px;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 160px; --s-12: 192px;

  /* Radii */
  --r-1: 6px;  --r-2: 10px; --r-3: 14px; --r-4: 20px;
  --r-5: 28px; --r-6: 36px; --pill: 999px;

  /* Shadow */
  --sh-soft: 0 4px 16px rgba(15,42,24,0.04), 0 1px 2px rgba(15,42,24,0.04);
  --sh-card: 0 12px 32px rgba(15,42,24,0.06), 0 2px 6px rgba(15,42,24,0.04);
  --sh-lift: 0 24px 56px rgba(15,42,24,0.12), 0 6px 12px rgba(15,42,24,0.06);
  --sh-deep: 0 40px 96px rgba(15,42,24,0.20), 0 16px 28px rgba(15,42,24,0.08);

  /* Layout */
  --w-page: 1240px;
  --w-narrow: 880px;
  --w-text: 640px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 68px;
}

/* ───────── 2. Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  text-rendering: optimizeLegibility;
  /* overflow-x lives on html so body stays a non-scrolling container — keeps
     position: sticky on the nav (and other descendants) working. */
}
#nav-host { position: sticky; top: 0; z-index: 60; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--primary-deep); }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .82; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--primary-deep); }

/* ───────── 3. Typography helpers ─────────────────────────────────────── */
.display { font-size: var(--t-display); letter-spacing: -0.035em; line-height: 0.96; }
.h1      { font-size: var(--t-h1);     letter-spacing: -0.03em;  line-height: 1.00; }
.h2      { font-size: var(--t-h2);     letter-spacing: -0.025em; line-height: 1.04; }
.h3      { font-size: var(--t-h3);     letter-spacing: -0.018em; line-height: 1.18; }
.h4      { font-size: var(--t-h4);     letter-spacing: -0.012em; line-height: 1.3; font-weight: 600; }
.body-l  { font-size: var(--t-bodyL);  line-height: 1.5; color: var(--ink-2); }
.body    { font-size: var(--t-body);   line-height: 1.6; color: var(--ink-2); }
.small   { font-size: var(--t-small);  color: var(--ink-2); }
.tiny    { font-size: var(--t-tiny);   color: var(--ink-3); }
.eyebrow {
  font-size: var(--t-eyebrow); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); display: inline-flex;
  align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.serif    { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.balance  { text-wrap: balance; }
.pretty   { text-wrap: pretty; }
.mono     { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ───────── 4. Layout primitives ──────────────────────────────────────── */
.container { max-width: var(--w-page);   margin: 0 auto; padding: 0 var(--gutter); }
.narrow    { max-width: var(--w-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section   { padding: clamp(64px, 9vw, 144px) 0; }
.section-sm{ padding: clamp(40px, 6vw, 96px) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack-1 > * + * { margin-top: 4px; }
.stack-2 > * + * { margin-top: 8px; }
.stack-3 > * + * { margin-top: 12px; }
.stack-4 > * + * { margin-top: 16px; }
.stack-5 > * + * { margin-top: 24px; }
.stack-6 > * + * { margin-top: 32px; }
.stack-7 > * + * { margin-top: 48px; }
.stack-8 > * + * { margin-top: 64px; }

.row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.row.start { justify-content: flex-start; }
.row.center { justify-content: center; }
.row.between { justify-content: space-between; }

/* ───────── 5. Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 22px; border-radius: var(--pill);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  white-space: nowrap; cursor: pointer; user-select: none;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .25s, background .25s, color .25s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--primary-deep); color: #fff;
  box-shadow: 0 8px 24px rgba(15,42,24,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-primary:hover { background: var(--primary); box-shadow: 0 12px 32px rgba(15,42,24,0.28), inset 0 1px 0 rgba(255,255,255,0.10); }
.btn-lime {
  background: var(--lime); color: var(--primary-deep);
  box-shadow: 0 8px 20px rgba(200,222,107,0.45), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-lime:hover { background: #d4e87a; }
.btn-ghost {
  background: transparent; color: var(--primary-deep);
  border: 1px solid var(--ink-4);
}
.btn-ghost:hover { border-color: var(--primary-deep); background: rgba(15,42,24,0.04); }
.btn-light {
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,0.18); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }

/* Store badges */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px; border-radius: 16px;
  background: var(--primary-deep); color: #fff;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), background .25s;
}
.store-btn:hover { transform: translateY(-2px); background: var(--primary); }
.store-btn .glyph { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .lines { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-btn .pre   { font-size: 10px; opacity: .7; letter-spacing: 0.08em; text-transform: uppercase; }
.store-btn .name  { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* Icon button */
.iconbtn {
  width: 44px; height: 44px; border-radius: var(--pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(15,42,24,0.06); transition: background .2s;
}
.iconbtn:hover { background: rgba(15,42,24,0.12); }

/* ───────── 6. Top promo bar + Nav ────────────────────────────────────── */
.promo-bar {
  background: var(--primary-deep); color: #fff;
  text-align: center; font-size: 13px; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: -0.005em;
}
.promo-bar .pill {
  background: var(--lime); color: var(--primary-deep);
  padding: 2px 10px; border-radius: var(--pill);
  font-weight: 700; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
}
.promo-bar a { color: var(--lime); font-weight: 600; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: rgba(15,42,24,0.06); }
.nav-inner {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--primary-deep);
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; font-size: 14.5px; font-weight: 500;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--pill); color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--primary-deep); background: rgba(15,42,24,0.05); }
.nav-links a.active { color: var(--primary-deep); background: rgba(15,42,24,0.06); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex; align-items: center;
  background: rgba(15,42,24,0.06); border-radius: var(--pill); padding: 3px;
  font-size: 12px; font-weight: 600;
}
.lang-switch button {
  padding: 6px 11px; border-radius: var(--pill); color: var(--ink-3);
  transition: background .2s, color .2s;
}
.lang-switch button[aria-pressed="true"] { background: #fff; color: var(--primary-deep); box-shadow: 0 1px 2px rgba(15,42,24,0.10); }

.nav-burger { display: none; width: 40px; height: 40px; border-radius: var(--pill); background: rgba(15,42,24,0.06); align-items: center; justify-content: center; transition: background .2s; }
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: transform .25s, opacity .25s, background-color .25s; }
.nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); transition: transform .25s, top .25s, bottom .25s, background-color .25s; }
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { bottom: -6px; }
/* Filled dark circle with white X when the menu is open — clear, high-contrast
   close affordance. The middle bar disappears by going transparent (not via
   scale/opacity, which would also hide the ::before/::after lines that form
   the actual X because they're nested inside the span). */
.nav-burger.open { background: var(--primary-deep); }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); background: #fff; }
.nav-burger.open span::after  { bottom: 0; transform: rotate(-45deg); background: #fff; }

.mobile-nav {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 50;
  background: var(--cream);
  color: var(--primary-deep);
  padding: 24px var(--gutter) 48px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
  /* Subtle inner top border + drop shadow so the panel reads as a distinct
     surface against the sticky nav (which is cream-on-cream otherwise). */
  border-top: 1px solid rgba(15,42,24,0.08);
  box-shadow: 0 18px 40px rgba(15,42,24,0.12);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  padding: 18px 4px; border-bottom: 1px solid var(--line);
  font-size: 22px; font-weight: 500; color: var(--primary-deep);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a::after { content: '→'; color: var(--primary); opacity: .5; }
.mobile-nav .ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mobile-nav .btn  { width: 100%; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .lang-switch.in-nav { display: none; }
  .nav-right .btn { display: none; }
  /* On mobile the panel is rendered (flex) but invisible until .open flips
     opacity/pointer-events/transform. `display: none` would block the
     transition and was hiding the menu entirely. */
  .mobile-nav { display: flex; }
}

/* ───────── 7. Cards & surfaces ───────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--r-4);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
  overflow: hidden; position: relative;
}
.card-pad { padding: clamp(20px, 2.4vw, 32px); }
.card-tilt { transform: rotate(-1.2deg); transition: transform .4s; }
.card-tilt:hover { transform: rotate(0); }
.surface-cream { background: var(--cream-2); border-radius: var(--r-4); padding: clamp(20px, 2.4vw, 32px); }

/* Dark surfaces */
.dark {
  background: var(--primary-deep); color: #fff;
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .body, .dark .small, .dark .body-l { color: rgba(255,255,255,0.72); }
.dark .eyebrow { color: var(--lime); }
.dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.92); }
.dark .card h3 { color: #fff; }
.dark hr { border-color: rgba(255,255,255,0.10); }

/* ───────── 8. Pills, chips, badges ───────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--pill);
  background: rgba(15,42,24,0.06); color: var(--primary-deep);
  font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
}
.chip.dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); display: inline-block;
}
.chip.lime { background: var(--lime-soft); color: var(--primary-deep); }
.chip.orange { background: var(--orange-soft); color: #a04518; }
.chip.dark { background: rgba(255,255,255,0.10); color: #fff; backdrop-filter: blur(6px); }
.chip.outline { background: transparent; border: 1px solid var(--ink-4); }

/* ───────── 9. Form fields ────────────────────────────────────────────── */
.field {
  display: flex; align-items: stretch; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--pill); padding: 6px 6px 6px 22px;
  height: 60px; max-width: 460px;
}
.field input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 16px; color: var(--ink); min-width: 0;
}
.field input::placeholder { color: var(--ink-3); }
.field .btn { height: 48px; flex-shrink: 0; }
.field.dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.field.dark input { color: #fff; }
.field.dark input::placeholder { color: rgba(255,255,255,0.50); }

/* Stack input + button below ~520px so the CTA button label never gets cut off. */
@media (max-width: 520px) {
  .field {
    flex-direction: column; align-items: stretch;
    height: auto; padding: 8px;
    border-radius: 18px;
  }
  .field input {
    background: rgba(255,255,255,0.05); border-radius: 12px;
    padding: 0 16px; height: 50px; font-size: 16px;
  }
  .field.dark input { background: rgba(255,255,255,0.08); }
  .field .btn { width: 100%; height: 50px; border-radius: 12px; }
}

.form-status { font-size: 13px; color: var(--ink-3); margin-top: 8px; min-height: 18px; }
.form-status.ok { color: var(--primary); }
.form-status.err { color: var(--rose); }

/* ───────── 10. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; padding: clamp(40px, 7vw, 96px) 0 clamp(40px, 7vw, 80px);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(48px, 8.4vw, 112px);
  line-height: 0.94; letter-spacing: -0.038em;
}
.hero h1 .serif { color: var(--primary); }
.hero h1 .lime-underline {
  position: relative; display: inline-block;
}
.hero h1 .lime-underline::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 4%; height: 36%;
  background: var(--lime); border-radius: 4px; z-index: -1; opacity: 0.55;
}
.hero-sub { font-size: clamp(17px, 1.4vw, 21px); color: var(--ink-2); max-width: 540px; line-height: 1.5; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; font-size: 13.5px; color: var(--ink-2); }
.hero-meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .item svg { color: var(--primary); flex-shrink: 0; }

/* Decorative shapes */
.blob {
  position: absolute; border-radius: 50%; filter: blur(48px);
  pointer-events: none; z-index: -1;
}

/* ───────── 11. iPhone Mockup ─────────────────────────────────────────── */
.phone-stage { position: relative; aspect-ratio: 1 / 1.05; }
.phone {
  position: relative;
  width: min(360px, 92%);
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: var(--primary-deep);
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 50px 100px -20px rgba(15,42,24,0.35),
    0 30px 60px -30px rgba(15,42,24,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.10);
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.34,1.2,.64,1);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone-screen {
  width: 100%; height: 100%; border-radius: 38px; overflow: hidden;
  background: var(--cream); position: relative;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; border-radius: 16px; background: var(--primary-deep);
  z-index: 10;
}
.phone-statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 50px; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px 0;
  font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em;
}
.phone-statusbar .right { display: flex; gap: 6px; align-items: center; }

/* Floating cards around phone */
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-3);
  padding: 12px 14px; box-shadow: var(--sh-lift);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; max-width: 220px;
  border: 1px solid var(--line);
  animation: floatY 5s ease-in-out infinite;
}
.float-card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.float-card .ttl { font-weight: 600; color: var(--primary-deep); font-size: 13px; line-height: 1.2; }
.float-card .sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }

.float-1 { top: 6%;  left: -8%; animation-delay: 0s; }
.float-2 { top: 28%; right: -12%; animation-delay: 1.2s; }
.float-3 { bottom: 16%; left: -10%; animation-delay: 2.4s; }
.float-4 { bottom: 4%; right: -8%; animation-delay: 3.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Phone home screen — modeled on the real HomeScreen.tsx */
.ph-home {
  padding: 56px 14px 14px; height: 100%; display: flex; flex-direction: column;
  gap: 10px; overflow: hidden; background: var(--cream);
}
.ph-header { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.ph-greet-row { display: flex; align-items: center; gap: 8px; }
.ph-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: #5a7d3a;
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ph-greet-mini { font-size: 9px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; line-height: 1; }
.ph-name-bold { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin-top: 2px; line-height: 1; }
.ph-action-row { display: flex; gap: 5px; }
.ph-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(15,42,24,0.06); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.ph-circle.primary { background: var(--primary); color: #fff; }
.ph-circle svg { width: 14px; height: 14px; }

.ph-card { background: #fff; border-radius: 16px; padding: 12px; }

.ph-kcal-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ph-kcal-ring { width: 96px; height: 96px; }
.ph-kcal-num { font-size: 22px; font-weight: 800; color: var(--primary-deep); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.ph-kcal-goal { font-size: 9px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.02em; margin-top: 2px; }

.ph-macros { display: flex; gap: 8px; width: 100%; }
.ph-macro { flex: 1; min-width: 0; }
.ph-macro .lbl { font-size: 8px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.05em; text-transform: uppercase; }
.ph-macro .val { font-size: 11px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.ph-macro .val .of { font-size: 9px; color: var(--ink-3); font-weight: 600; }
.ph-macro .bar { height: 4px; border-radius: 2px; background: var(--cream-2); margin-top: 4px; overflow: hidden; }
.ph-macro .bar > div { height: 100%; }

.ph-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--primary-deep); color: #fff;
  border-radius: 99px; padding: 7px 12px;
  font-size: 10px; font-weight: 800; letter-spacing: -0.005em;
  width: 100%;
}
.ph-cta-row svg { width: 11px; height: 11px; }

.ph-tracking-link {
  text-align: center; font-size: 10px; font-weight: 800; color: var(--primary);
  margin-top: 8px; letter-spacing: -0.005em;
}

.ph-section-row { display: flex; justify-content: space-between; align-items: center; padding: 2px 4px 0; }
.ph-section-title { font-size: 14px; font-weight: 800; color: var(--ink); }
.ph-section-action { font-size: 10px; font-weight: 700; color: var(--primary); }

.ph-meal {
  background: #fff; border-radius: 14px; padding: 8px;
  display: flex; gap: 8px; align-items: center;
}
.ph-meal .img {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: var(--lime-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.ph-meal .meta { flex: 1; min-width: 0; }
.ph-meal .topline { display: flex; align-items: center; gap: 4px; }
.ph-meal .when { font-size: 8px; color: var(--ink-3); font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.ph-meal .state-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }
.ph-meal .state-label { font-size: 8px; font-weight: 700; color: var(--ink-3); }
.ph-meal .ttl { font-size: 11px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; line-height: 1.2; margin-top: 2px; }
.ph-meal .sub { font-size: 9px; color: var(--ink-3); margin-top: 2px; }

/* Water + Streak row */
.ph-side-row { display: flex; gap: 8px; }
.ph-water-card {
  flex: 1.4; background: #eaf5fb; border-radius: 14px; padding: 10px;
  display: flex; flex-direction: column; gap: 7px;
}
.ph-water-head { display: flex; align-items: center; gap: 6px; }
.ph-water-icon {
  width: 24px; height: 24px; border-radius: 8px; background: #5b9bd5;
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.ph-water-icon svg { width: 12px; height: 12px; }
.ph-water-info { flex: 1; min-width: 0; }
.ph-water-info .t { font-size: 10px; font-weight: 800; color: var(--ink); line-height: 1; }
.ph-water-info .s { font-size: 8.5px; font-weight: 700; color: var(--ink-3); margin-top: 2px; line-height: 1; }
.ph-water-plus {
  width: 24px; height: 24px; border-radius: 8px; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
}
.ph-water-glasses { display: flex; gap: 2px; }
.ph-water-glasses .g { flex: 1; height: 14px; border-radius: 4px; background: #fff; transition: background .3s; }
.ph-water-glasses .g.full { background: #5b9bd5; }

.ph-streak-card {
  flex: 1; background: var(--orange); color: #fff;
  border-radius: 14px; padding: 10px;
}
.ph-streak-card .row { display: flex; align-items: center; gap: 5px; }
.ph-streak-card .row span:first-child { font-size: 20px; line-height: 1; }
.ph-streak-card .num { font-size: 26px; font-weight: 800; line-height: 1; }
.ph-streak-card .sub { font-size: 9px; color: rgba(255,255,255,0.92); font-weight: 600; line-height: 1.2; margin-top: 5px; }

.ph-tip {
  background: #fff; border-radius: 14px; overflow: hidden;
  display: flex; gap: 0; align-items: stretch;
}
.ph-tip .img {
  width: 64px; flex-shrink: 0; background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.ph-tip .meta { padding: 8px 10px; display: flex; flex-direction: column; justify-content: space-between; flex: 1; }
.ph-tip .eyebrow-mini { font-size: 8px; color: var(--orange); font-weight: 800; letter-spacing: 0.06em; }
.ph-tip .ttl { font-size: 11px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; line-height: 1.2; margin-top: 2px; }
.ph-tip .sub { font-size: 9px; color: var(--ink-3); margin-top: 4px; }

.ph-tabs {
  margin-top: auto; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-radius: var(--pill); padding: 6px 8px;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(15,42,24,0.06);
}
.ph-tab { font-size: 7px; color: var(--ink-3); font-weight: 700; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; min-width: 0; }
.ph-tab .ico { width: 14px; height: 14px; }
.ph-tab.active { color: var(--primary); }
.ph-tab.fab {
  width: 32px; height: 32px; border-radius: 50%; margin-top: -14px;
  background: var(--primary-deep); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(15,42,24,0.30);
  flex: 0 0 32px;
}
.ph-tab.fab .ico { width: 14px; height: 14px; }
.ph-tab.fab .fab-emoji {
  font-size: 16px; line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.20));
}

/* Kcal ring */
.ring-track   { fill: none; stroke: var(--cream-2); stroke-width: 8; }
.ring-prog    { fill: none; stroke: url(#ringGrad); stroke-width: 8; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; }
.ring-prog-anim { stroke-dasharray: 220; stroke-dashoffset: 220; animation: ringFill 2s cubic-bezier(.34,1.2,.64,1) forwards; }
@keyframes ringFill { to { stroke-dashoffset: 66; } }
@keyframes ringFillBig { from { stroke-dashoffset: 264; } to { stroke-dashoffset: 78; } }
.ring-glow { fill: none; stroke: url(#ringGrad); stroke-width: 12; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; opacity: 0.18; filter: blur(2px); }

/* Live counter */
[data-count] { font-variant-numeric: tabular-nums; }

/* ───────── 12. Trust strip ───────────────────────────────────────────── */
.trust {
  border-block: 1px solid var(--line);
  background: var(--cream-2);
  padding: 24px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); }
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-item b { color: var(--primary-deep); font-weight: 600; }
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

/* ───────── 13. Feature pillars ───────────────────────────────────────── */
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-4);
  padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--sh-card); border-color: rgba(15,42,24,0.12); }
.pillar .ic {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--lime-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.pillar h3 { font-size: 19px; letter-spacing: -0.015em; }
.pillar p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.pillar a.more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.pillar a.more::after { content: '→'; transition: transform .25s; }
.pillar a.more:hover::after { transform: translateX(4px); }

/* ───────── 14. Big feature blocks ────────────────────────────────────── */
.feature-block { padding: clamp(64px, 9vw, 144px) 0; }
.feature-block:nth-child(even) .feature-grid { direction: rtl; }
.feature-block:nth-child(even) .feature-grid > * { direction: ltr; }

.feature-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 880px) {
  .feature-grid, .feature-block:nth-child(even) .feature-grid { grid-template-columns: 1fr; direction: ltr; }
}

.feature-visual {
  background: var(--cream-2); border-radius: var(--r-5);
  padding: clamp(24px, 4vw, 56px); aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feature-visual.dark { background: var(--primary-deep); }
.feature-visual.lime { background: var(--lime-soft); }
.feature-visual.orange { background: var(--orange-soft); }

.feature-copy h2 { margin-bottom: 20px; }
.feature-copy .body-l { margin-bottom: 28px; max-width: 540px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-2); line-height: 1.5;
}
.feature-list li svg {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--primary);
  background: var(--lime-soft); padding: 4px; border-radius: 50%; box-sizing: content-box;
  margin-top: 1px;
}
.feature-list li b { color: var(--primary-deep); font-weight: 600; }

/* ───────── 15. How-it-works ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff; border-radius: var(--r-4);
  padding: 28px 22px;
  position: relative;
  border: 1px solid var(--line);
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-deep); color: var(--lime);
  font-family: var(--font-serif); font-style: italic; font-size: 19px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.015em; }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.step-visual {
  margin-top: 18px; height: 110px; border-radius: var(--r-3);
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* ───────── 16. Sparrechner ───────────────────────────────────────────── */
.calc {
  background: var(--primary-deep); color: #fff;
  border-radius: var(--r-6); padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } }
.calc h2 { color: #fff; margin-bottom: 16px; }
.calc .body-l { color: rgba(255,255,255,0.72); margin-bottom: 28px; }

.calc-result {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border-radius: var(--r-4); padding: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.calc-result .label { font-size: 12px; color: var(--lime); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.calc-result .num {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(56px, 9vw, 112px); line-height: 1; letter-spacing: -0.04em;
  color: #fff; margin: 16px 0 8px; font-variant-numeric: tabular-nums;
}
.calc-result .num .euro { font-family: var(--font-sans); font-style: normal; font-weight: 500; font-size: 0.45em; color: var(--lime); }
.calc-result .sub { font-size: 14px; color: rgba(255,255,255,0.65); }

.slider-wrap { margin-bottom: 24px; }
.slider-wrap .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.slider-wrap label { font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 500; }
.slider-wrap .val { font-family: var(--font-serif); font-style: italic; font-size: 28px; color: #fff; letter-spacing: -0.01em; }
input[type=range].slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; background: rgba(255,255,255,0.10); border-radius: 4px;
  outline: 0;
}
input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30); cursor: grab;
}
input[type=range].slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.30); cursor: grab;
}

.calc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ───────── 17. Karte ─────────────────────────────────────────────────── */
.map-section {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 4vw, 64px); align-items: center;
}
@media (max-width: 880px) { .map-section { grid-template-columns: 1fr; } }
.map-frame {
  background: var(--cream-2); border-radius: var(--r-5); padding: 24px;
  position: relative; overflow: hidden; aspect-ratio: 1 / 1.05;
}
.map-frame svg { width: 100%; height: 100%; }
.map-region { fill: var(--cream-3); stroke: var(--ink-4); stroke-width: 0.6; transition: fill .3s; }
.map-region.supported { fill: var(--primary); }
.map-region.partial { fill: var(--lime); }
.map-pin {
  fill: var(--orange); stroke: #fff; stroke-width: 1.2;
}

.market-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.market-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-3);
  padding: 12px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--primary-deep);
}
.market-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* ───────── 18. Magic features ────────────────────────────────────────── */
.magic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .magic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .magic-grid { grid-template-columns: 1fr; } }
.magic-card {
  position: relative; padding: 24px 22px 28px;
  border-radius: var(--r-4);
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform .3s;
}
.magic-card:hover { transform: translateY(-4px); }
.magic-card .ic { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,0.14); display: inline-flex; align-items: center; justify-content: center; color: var(--lime); margin-bottom: 14px; }
.magic-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.magic-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.magic-card .tag { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; border-radius: var(--pill); background: var(--lime); color: var(--primary-deep); }
.magic-card.alt-1 { background: #2d5a3f; }
.magic-card.alt-2 { background: #1f4d2e; }
.magic-card.alt-3 { background: linear-gradient(135deg, #1f4d2e, #0f2a18); }
.magic-card.alt-4 { background: linear-gradient(135deg, #2d6a3f, #1f4d2e); }
.magic-card .deco { position: absolute; right: -20px; bottom: -20px; opacity: 0.10; font-size: 160px; line-height: 1; }

/* ───────── 19. FAQ ───────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-3); overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; text-align: left; gap: 16px;
  font-size: 17px; font-weight: 500; color: var(--primary-deep); letter-spacing: -0.012em;
}
.faq-q .pm {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: rgba(15,42,24,0.06); display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s, background .25s;
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 24px;
  color: var(--ink-2); font-size: 15px; line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* ───────── 20. CTA block ─────────────────────────────────────────────── */
.cta-block {
  background: var(--primary-deep); color: #fff;
  border-radius: var(--r-6); padding: clamp(48px, 7vw, 96px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-block h2 { color: #fff; font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.028em; }
.cta-block .body-l { color: rgba(255,255,255,0.70); margin: 20px auto 36px; max-width: 540px; }
.cta-block .stores { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-block .nl { max-width: 460px; margin: 0 auto; }
.cta-block .deco {
  position: absolute; pointer-events: none; opacity: 0.18;
  font-family: var(--font-serif); font-style: italic; line-height: 1;
}

/* ───────── 21. Footer ────────────────────────────────────────────────── */
.footer { background: var(--primary-deep); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 16px; text-transform: uppercase; opacity: 0.6; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { max-width: 320px; }
.footer-brand .store-row { display: flex; flex-wrap: nowrap; gap: 10px; margin-top: 20px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Brand column needs the full row so the two store-buttons (~150px each)
     can sit side by side without crushing the labels. */
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .footer-brand .store-row { flex-wrap: wrap; }
}
.footer-brand .body { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 14px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.50);
}
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-bottom .socials a:hover { background: var(--lime); color: var(--primary-deep); }

/* ───────── 22. Cookie banner ─────────────────────────────────────────── */
.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 480px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-4);
  padding: 20px; box-shadow: var(--sh-deep); z-index: 80;
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.cookie.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie b { color: var(--primary-deep); font-weight: 600; }
.cookie .row { margin-top: 14px; gap: 8px; }
.cookie .btn { height: 40px; padding: 0 16px; font-size: 13px; }

/* ───────── 23. Reveal-on-scroll ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ───────── 24. Page sub-headers ──────────────────────────────────────── */
.page-hero {
  padding: clamp(64px, 8vw, 128px) 0 clamp(40px, 5vw, 80px);
  text-align: center; position: relative;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(40px, 7vw, 96px); letter-spacing: -0.032em; margin-top: 16px; }
.page-hero .body-l { max-width: 640px; margin: 24px auto 0; }

/* ───────── 25. Blog ──────────────────────────────────────────────────── */
.post-card {
  background: #fff; border-radius: var(--r-4);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.post-card .img { aspect-ratio: 16 / 10; background: var(--lime-soft); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.post-card .meta { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .date { font-size: 12px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.post-card h3 { font-size: 19px; letter-spacing: -0.015em; line-height: 1.3; }
.post-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ───────── 26. Pricing ───────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-5);
  padding: 36px 32px; position: relative;
}
.price-card.featured { background: var(--primary-deep); color: #fff; border-color: var(--primary-deep); }
.price-card.featured h3 { color: #fff; }
.price-card .name { font-family: var(--font-serif); font-style: italic; font-size: 32px; color: var(--primary-deep); letter-spacing: -0.015em; }
.price-card.featured .name { color: var(--lime); }
.price-card .amount { font-size: 56px; font-weight: 600; letter-spacing: -0.03em; color: var(--primary-deep); margin: 16px 0 4px; line-height: 1; }
.price-card.featured .amount { color: #fff; }
.price-card .amount .unit { font-size: 16px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.price-card.featured .amount .unit { color: rgba(255,255,255,0.6); }
.price-card .desc { color: var(--ink-2); font-size: 14px; margin-bottom: 24px; }
.price-card.featured .desc { color: rgba(255,255,255,0.7); }
.price-card ul { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.price-card li { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); }
.price-card.featured li { color: rgba(255,255,255,0.85); }
.price-card li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 1px; }
.price-card.featured li svg { color: var(--lime); }
.price-card .badge { position: absolute; top: -12px; right: 24px; background: var(--lime); color: var(--primary-deep); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill); }
