/* ════════════════════════════════════════════════════════════════════
   Authorial — Website Design System
   Brand: Cormorant Garamond (display) · DM Sans (body) · Syne (labels)
   Navy #0B1E3F · Orange #E8622A · Cream #F7F2EB
   ════════════════════════════════════════════════════════════════════ */

:root {
  --navy-900: #080F1E;
  --navy-800: #0B1E3F;
  --navy-700: #0F2A56;
  --navy-600: #1A3A72;
  --navy-500: #1E5FBE;
  --navy-300: #89AEE5;
  --navy-100: #E8F0FB;
  --navy-50:  #F3F7FD;

  --orange-600: #C04D15;
  --orange-500: #E8622A;
  --orange-400: #F07845;
  --orange-100: #FDE9DC;

  --cream-dark: #E8E1D6;
  --cream: #F7F2EB;
  --warm-white: #FEFAF6;
  --white: #FFFFFF;

  --green: #1F9D5B;
  --green-d: #127A43;
  --green-bg: rgba(31,157,91,0.12);
  --amber: #E0A92E;
  --amber-d: #A9781A;
  --amber-bg: rgba(224,169,46,0.14);
  --red: #E0533A;
  --red-d: #BC3C24;
  --red-bg: rgba(224,83,58,0.12);

  --text: #0B1E3F;
  --text-2: #41557C;
  --text-3: #7A8CAD;

  --border: #E7E1D7;
  --border-2: #D6CEC0;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'Syne', sans-serif;

  --maxw: 1200px;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(11,30,63,0.04);
  --shadow: 0 10px 30px rgba(11,30,63,0.08);
  --shadow-lg: 0 28px 64px rgba(11,30,63,0.16);
}

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

/* ── Text selection highlight ── */
::selection { background: var(--orange-500); color: #fff; }
::-moz-selection { background: var(--orange-500); color: #fff; }
/* On orange surfaces, flip to blue */
.btn-primary ::selection, .price-flag::selection, .step-num::selection,
.btn-primary::selection, .badge-ai::selection,
.bg-orange ::selection, .bg-orange::selection { background: var(--navy-700); color: #fff; }
.btn-primary ::-moz-selection, .btn-primary::-moz-selection,
.bg-orange ::-moz-selection, .bg-orange::-moz-selection { background: var(--navy-700); color: #fff; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-500);
}
.display {
  font-family: var(--ff-display); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.015em; color: var(--navy-800);
}
h1.display { font-size: clamp(42px, 6vw, 76px); }
h2.display { font-size: clamp(34px, 4.4vw, 54px); }
h3.display { font-size: clamp(24px, 2.6vw, 34px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-2); line-height: 1.65; }
em.serif-em { font-style: italic; color: var(--orange-500); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 10px; border: 1.5px solid transparent;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, color .18s, border-color .18s;
  white-space: nowrap; cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; left: -8%; right: -8%; bottom: 0; height: 100%; z-index: -1;
  transform: translateY(102%); transform-origin: bottom;
  border-radius: 42% 38% 0 0 / 22px 18px 0 0;
  transition: transform .42s cubic-bezier(.45,0,.15,1);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { transform: translateY(-2px) scale(1.025); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }
.btn svg { width: 18px; height: 18px; transition: transform .28s cubic-bezier(.34,1.56,.64,1); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--orange-500); color: #fff; }
.btn-primary::before { background: var(--orange-600); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(232,98,42,0.32); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy::before { background: var(--orange-500); }
.btn-navy:hover { box-shadow: 0 10px 24px rgba(11,30,63,0.28); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--border-2); }
.btn-ghost::before { background: var(--cream); }
.btn-ghost:hover { border-color: var(--navy-300); }
.btn-white { background: #fff; color: var(--navy-800); }
.btn-white::before { background: var(--cream); }
.btn-white:hover { box-shadow: var(--shadow); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,250,246,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .55s ease, border-bottom-color .55s ease, box-shadow .55s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav {
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-family: var(--ff-display); font-size: 25px; font-weight: 600; color: var(--navy-800); letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 15px; border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: background .15s, color .15s;
}
.nav-links > li > a { transition: background .18s, color .18s, transform .28s cubic-bezier(.34,1.56,.64,1); }
.nav-links > li > a:hover { background: var(--cream); color: var(--navy-800); transform: translateY(-1px); }
.nav-links > li > a.active { color: var(--navy-800); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-login { font-size: 14.5px; font-weight: 600; color: var(--navy-800); padding: 9px 14px; border-radius: 9px; }
.nav-login:hover { background: var(--cream); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--navy-800); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ── Module groups (home + features) ── */
.mod-group-label { display: flex; align-items: center; gap: 16px; margin: 8px 0 22px; }
.mod-group-label:not(:first-of-type) { margin-top: 44px; }
.mod-group-label .line { flex: 1; height: 1px; background: var(--border); }
.mod-group-label span { font-family: var(--ff-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.soon-card { border-style: dashed; opacity: 0.94; cursor: default; }
.soon-card:hover { transform: none; box-shadow: var(--shadow); }
.soon-card .mod-title { color: var(--text-2); }
.soon-badge { font-family: var(--ff-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-d); background: var(--amber-bg); padding: 3px 9px; border-radius: 100px; }

/* ── Feature mega-menu ── */
.has-mega { position: static; }
.mega-trigger { cursor: pointer; }
.mega-caret { width: 15px !important; height: 15px !important; transition: transform .2s; opacity: 0.6; }
.has-mega:hover .mega-caret, .has-mega:focus-within .mega-caret, .has-mega.mega-open .mega-caret { transform: rotate(180deg); }
.mega {
  position: absolute; top: 64px; left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(940px, calc(100vw - 40px)); z-index: 90;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* Unsichtbare „Brücke" über die Lücke zwischen Trigger und Panel, damit der
   Hover beim Herunterfahren nicht abreißt (nur aktiv, wenn das Panel offen ist). */
.mega::before {
  content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.mega-open .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  background: var(--warm-white); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mega-main { padding: 18px; }
.mega-col-label { display: block; font-family: var(--ff-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin: 4px 0 12px 8px; }
.mega-col-label.promo { color: var(--orange-400); position: relative; z-index: 1; margin-left: 12px; }
.mega-grid { display: grid; grid-template-columns: 1fr; gap: 8px 14px; width: 100%; align-content: start; grid-auto-rows: 86px; }
.mega-item { display: flex; gap: 14px; padding: 0 14px; border-radius: 12px; transition: background .15s; align-items: center; height: 100%; }
.mega-item:hover { background: var(--cream); }
.mega-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s; }
.mega-ic svg { width: 20px; height: 20px; color: var(--navy-600); }
.mega-item:hover .mega-ic { background: var(--orange-100); }
.mega-item:hover .mega-ic svg { color: var(--orange-600); }
.mega-tx { display: flex; flex-direction: column; gap: 4px; }
.mega-t { font-family: var(--ff-display); font-size: 19px; font-weight: 600; color: var(--navy-800); line-height: 1.1; }
.mega-d { font-size: 13px; color: var(--text-2); line-height: 1.5; }
/* blue promo panel */
.mega-promo { background: var(--navy-800); padding: 18px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.mega-promo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; position: relative; z-index: 1; width: 100%; align-content: start; grid-auto-rows: 86px; }
.mega-promo-item { display: flex; gap: 12px; padding: 0 14px; border-radius: 12px; align-items: center; height: 100%; transition: background .15s; }
.mega-promo-item:hover { background: rgba(255,255,255,0.07); }
.mega-promo-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-promo-ic svg { width: 19px; height: 19px; color: var(--orange-400); }
.mega-promo-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega-promo-t { font-family: var(--ff-display); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.15; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.mega-promo-soon { font-family: var(--ff-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-400); background: rgba(232,98,42,0.22); padding: 2px 6px; border-radius: 100px; }
.mega-promo-d { font-size: 12px; color: rgba(255,255,255,0.62); line-height: 1.4; }
@media (max-width: 720px) { .mega { display: none; } }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--warm-white); padding: 24px 32px; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 19px; font-weight: 600; color: var(--navy-800); padding: 16px 0; border-bottom: 1px solid var(--border); font-family: var(--ff-display); }
.mobile-menu .btn { margin-top: 18px; }
body.menu-open { overflow: hidden; }

/* ── Sections ── */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.section-head .lead { margin-top: 18px; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-900); color: var(--warm-white); }
.bg-navy .display { color: #fff; }
.bg-navy .lead { color: rgba(255,255,255,0.6); }
.bg-navy .eyebrow { color: var(--orange-400); }

/* ── Benefit splits (home) ── */
.feat-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feat-split + .feat-split { margin-top: clamp(56px, 8vw, 104px); }
.feat-split.reverse .feat-viz { order: -1; }
.feat-eyebrow { color: var(--orange-500); margin-bottom: 18px; display: inline-block; }
.feat-text h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.1; color: var(--text); }
.feat-lead { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; color: var(--text-2); margin-top: 18px; max-width: 30em; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-top: 26px; }
.benefit-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; color: var(--text-2); }
.benefit-list .bi { flex: 0 0 auto; width: 25px; height: 25px; border-radius: 7px; background: var(--orange-100); color: var(--orange-600); display: grid; place-content: center; margin-top: 1px; }
.benefit-list .bi svg { width: 13px; height: 13px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; color: var(--text-2);
  border: 1px solid var(--border-2); padding: 6px 12px; border-radius: 999px;
  transition: color .2s, border-color .2s, background .2s;
}
a.feat-tag:hover { color: var(--orange-600); border-color: var(--orange-400); background: var(--orange-100); }
.feat-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-400); }

/* graphic card holding the mini-visuals */
.feat-viz-card {
  background: var(--warm-white); border: 1px solid var(--cream-dark);
  border-radius: 18px; padding: 22px; color: var(--text);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.viz-panel { background: #fff; border: 1px solid var(--cream-dark); border-radius: 13px; padding: 15px 16px; }
.viz-avatars { display: flex; align-items: center; }
.viz-avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -9px;
  border: 2.5px solid var(--white); display: grid; place-content: center;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700; color: #fff;
}
.viz-avatars span:first-child { margin-left: 0; }
.viz-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.viz-k { font-family: var(--ff-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.viz-big { font-family: var(--ff-display); font-weight: 600; font-size: 30px; line-height: 1; color: var(--text); }
.viz-big.green { color: var(--green-d); }
.viz-up { display: inline-flex; align-items: center; gap: 3px; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; color: var(--green-d); background: var(--green-bg); padding: 4px 9px; border-radius: 999px; }
.viz-up svg { width: 11px; height: 11px; }
/* split profit bar */
.viz-bar { display: flex; height: 11px; border-radius: 6px; overflow: hidden; gap: 2px; margin-top: 4px; }
.viz-bar span { display: block; }
.viz-legend { display: flex; gap: 16px; margin-top: 11px; }
.viz-legend > span { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--text-2); }
.viz-legend i { width: 8px; height: 8px; border-radius: 2px; flex: 0 0 auto; }
/* receipt */
.viz-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; padding: 4px 0; color: var(--text-2); }
.viz-line .v { font-family: var(--ff-mono); font-weight: 600; color: var(--text); }
.viz-line.minus .v { color: var(--red-d); }
.viz-sep { height: 1px; background: var(--cream-dark); margin: 6px 0; }
.viz-line.total .lbl { font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: var(--text); }
.viz-line.total .v { font-family: var(--ff-display); font-size: 22px; color: var(--green-d); }
/* sparkline + bars */
.viz-spark { display: block; width: 100%; height: 52px; margin-top: 8px; }
.viz-bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; margin-top: 8px; }
.viz-bars span { flex: 1; background: var(--navy-300); border-radius: 4px 4px 0 0; }
.viz-bars span:last-child { background: var(--orange-500); }
/* shield / protection rows */
.viz-shield { display: flex; flex-direction: column; gap: 11px; }
.viz-srow { display: flex; align-items: center; gap: 12px; }
.viz-ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-content: center; flex: 0 0 auto; }
.viz-ico svg { width: 18px; height: 18px; }
.viz-srow .t { flex: 1; min-width: 0; }
.viz-srow .t b { font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: var(--text); display: block; line-height: 1.2; }
.viz-srow .t span { font-size: 11.5px; color: var(--text-3); }
.viz-check { color: var(--green-d); flex: 0 0 auto; }
.viz-check svg { width: 19px; height: 19px; }
/* module hub */
.viz-hub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.viz-hub .t { aspect-ratio: 1; border-radius: 10px; background: var(--navy-50); border: 1px solid var(--navy-100); display: grid; place-content: center; color: var(--navy-600); }
.viz-hub .t svg { width: 18px; height: 18px; }
.viz-hub .t.on { background: var(--orange-100); border-color: rgba(232,98,42,0.3); color: var(--orange-600); }

@media (max-width: 920px) {
  .feat-split { grid-template-columns: 1fr; gap: 32px; }
  .feat-split.reverse .feat-viz { order: 0; }
}

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: clamp(56px,8vw,104px) 0 clamp(48px,6vw,80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* centered hero (home) */
body[data-page="home"] .hero { display: flex; align-items: center; min-height: calc(100vh - 72px); }
.hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-inner h1 { margin-bottom: 22px; }
.hero-inner .lead { max-width: 600px; margin: 0 auto 34px; }
.hero-inner .hero-actions { justify-content: center; }

/* scroll hint (home hero) */
.scroll-hint {
  position: absolute; left: 50%; bottom: clamp(18px, 3.5vh, 36px); transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  transition: color .2s;
}
.scroll-hint:hover { color: rgba(255,255,255,0.85); }
.scroll-hint svg { width: 19px; height: 19px; animation: scrollBob 1.9s ease-in-out infinite; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(-2px); opacity: 0.55; }
  50%      { transform: translateY(4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint svg { animation: none; } }

/* background: manuscript that slowly "writes" + pieces falling off */
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
  -webkit-mask: radial-gradient(ellipse min(860px,92vw) min(470px,64vh) at 50% 50%, transparent 0 46%, #000 82%);
          mask: radial-gradient(ellipse min(860px,92vw) min(470px,64vh) at 50% 50%, transparent 0 46%, #000 82%);
}
.hero-ms {
  position: absolute; inset: 0;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: clamp(11px, 1.05vw, 13.5px); line-height: 1;
  letter-spacing: 0.4px; color: rgba(255,255,255,0.12);
  -webkit-user-select: none; user-select: none;
}
.ms-layer {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(48px,7vh,110px) clamp(40px,7vw,140px);
}
.ms-layer.is-leaving { animation: msWipeOut 2.2s ease-in forwards; }
.ms-line { display: block; white-space: nowrap; overflow: hidden; width: 100%; min-height: 1em; animation: msWrite 3.4s ease-out both; }
.ms-indent { padding-left: 4.5%; }
.ms-quote { padding-left: 9%; padding-right: 10%; position: relative; }
.ms-quote::before { content: ""; position: absolute; left: 6%; top: 1px; bottom: 1px; width: 2px; border-radius: 2px; background: rgba(255,255,255,0.14); }
.ms-spacer { height: 0; flex: 0 0 auto; }
@keyframes msWrite {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  10%  { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes msWipeOut {
  0%   { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 100% 0 0); opacity: 0; }
}
.flake {
  position: absolute; top: -10px; display: block;
  background: rgba(255,255,255,0.13);
  animation-name: flakeFall; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes flakeFall {
  0%   { transform: translateY(-12px) translateX(0) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.55; }
  85%  { opacity: 0.35; }
  100% { transform: translateY(calc(100vh - 60px)) translateX(var(--drift, 0px)) rotate(220deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ms-line { animation: none; clip-path: none; opacity: 1; }
  .flake { display: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 100px;
  background: var(--orange-100); border: 1px solid rgba(232,98,42,0.2);
  font-family: var(--ff-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange-600); margin-bottom: 26px;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--green); }

/* ── Home: navy header + hero ── */
/* At top: header matches the navy hero */
body[data-page="home"] .site-header:not(.scrolled) { background: var(--navy-800); border-bottom-color: transparent; box-shadow: none; }
/* Scrolled: light, barely transparent */
body[data-page="home"] .site-header.scrolled { background: rgba(254,250,246,0.94); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
/* White chrome only while at the top */
body[data-page="home"] .brand-name,
body[data-page="home"] .nav-links > li > a,
body[data-page="home"] .nav-login,
body[data-page="home"] .nav-toggle { transition: color .55s ease, background .2s ease; }
body[data-page="home"] .site-header .book-mark rect:first-of-type,
body[data-page="home"] .site-header .book-mark line { transition: stroke .55s ease, fill .55s ease; }
body[data-page="home"] .site-header:not(.scrolled) .brand-name { color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .book-mark rect:first-of-type { fill: rgba(255,255,255,0.08); stroke: var(--warm-white); }
body[data-page="home"] .site-header:not(.scrolled) .book-mark line { stroke: var(--warm-white); }
body[data-page="home"] .site-header:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,0.72); }
body[data-page="home"] .site-header:not(.scrolled) .nav-links > li > a:hover { background: rgba(255,255,255,0.08); color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .nav-links > li > a.active { color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .nav-login { color: #fff; }
body[data-page="home"] .site-header:not(.scrolled) .nav-login:hover { background: rgba(255,255,255,0.08); }
body[data-page="home"] .site-header:not(.scrolled) .nav-toggle { color: #fff; }

body[data-page="home"] .hero { background: var(--navy-800); color: var(--warm-white); }
body[data-page="home"] .hero h1.display { color: #fff; }
body[data-page="home"] .hero .lead { color: rgba(255,255,255,0.68); }
body[data-page="home"] .hero-note { color: rgba(255,255,255,0.5); }
body[data-page="home"] .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.32); }
body[data-page="home"] .hero .btn-ghost::before { background: rgba(255,255,255,0.12); }
body[data-page="home"] .hero .btn-ghost:hover { border-color: rgba(255,255,255,0.55); }
body[data-page="home"] .hero .mock { border: 1px solid rgba(255,255,255,0.10); }

/* ── Logo-mark (book) reusable ── */
.book-mark { flex-shrink: 0; }

/* ── Logo hover: elegant book "tip-open" + writing rules ── */
.brand { cursor: pointer; }
.brand .book-mark { transform-origin: 22% 82%; transition: transform .6s cubic-bezier(.34,1.45,.5,1); }
.brand .brand-name { transition: transform .6s cubic-bezier(.34,1.45,.5,1); }
.brand:hover .book-mark { transform: rotate(-7deg) translateY(-1px); }
.brand:hover .brand-name { transform: translateX(2px); }
.brand:active .book-mark { transform: rotate(-3deg) scale(.97); transition-duration: .14s; }

.brand .book-mark line { stroke-dasharray: 15; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: no-preference) {
  .brand:hover .book-mark line { animation: brandWrite .5s ease both; }
  .brand:hover .book-mark line:nth-of-type(2) { animation-delay: .08s; }
  .brand:hover .book-mark line:nth-of-type(3) { animation-delay: .16s; }
}
@keyframes brandWrite {
  from { stroke-dashoffset: 15; }
  to   { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .brand:hover .book-mark,
  .brand:hover .brand-name { transform: none; }
}

/* ── App mockup chrome ── */
.mock {
  background: var(--navy-900); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08);
}
.mock-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: #0A1120; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-body { background: #EDF1F7; }

/* generic card */
.card {
  background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, border-color .2s;
}
.card-hover:hover { transform: translateY(-5px) scale(1.012); box-shadow: var(--shadow); border-color: var(--border-2); }
.mod-card:hover .mod-icon { transform: rotate(-6deg) scale(1.08); }
.mod-icon { transition: transform .32s cubic-bezier(.34,1.56,.64,1), background .15s; }

/* ── Logos / social proof strip ── */
.proof { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-label { text-align: center; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; }
.proof-row { display: flex; align-items: center; justify-content: center; gap: clamp(28px,5vw,64px); flex-wrap: wrap; }
.proof-item { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text-3); opacity: 0.7; }

/* ── Stat row ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat-num { font-family: var(--ff-display); font-size: clamp(38px,4.4vw,56px); font-weight: 600; color: var(--orange-500); line-height: 1; }
.bg-navy .stat-num { color: var(--orange-400); }
.stat-label { font-size: 14px; color: var(--text-2); margin-top: 8px; }
.bg-navy .stat-label { color: rgba(255,255,255,0.55); }

/* ── Module grid ── */
.mod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mod-card { display: flex; flex-direction: column; gap: 14px; }
.mod-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-50); display: flex; align-items: center; justify-content: center; }
.mod-icon svg { width: 23px; height: 23px; color: var(--navy-600); }
.mod-card.flagship { background: var(--navy-800); border-color: var(--navy-800); }
.mod-card.flagship .mod-title, .mod-card.flagship .mod-desc { color: #fff; }
.mod-card.flagship .mod-desc { color: rgba(255,255,255,0.6); }
.mod-card.flagship .mod-icon { background: rgba(232,98,42,0.18); }
.mod-card.flagship .mod-icon svg { color: var(--orange-400); }
.mod-title { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--navy-800); }
.mod-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.6; flex: 1; }
.mod-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--orange-600); }
.mod-card.flagship .mod-link { color: var(--orange-400); }
.mod-link svg { width: 15px; height: 15px; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.mod-card:hover .mod-link { gap: 10px; }
.mod-link { transition: gap .25s cubic-bezier(.34,1.56,.64,1); }
.mod-card:hover .mod-link svg { transform: translateX(4px); }
.badge-ai { font-family: var(--ff-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange-400); background: rgba(232,98,42,0.18); padding: 3px 7px; border-radius: 100px; }

/* ── Feature row (alternating) ── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }
.feat-row + .feat-row { margin-top: clamp(64px,9vw,128px); }
.feat-row.flip .feat-visual { order: -1; }
.feat-tag { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.feat-tag-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-100); display: flex; align-items: center; justify-content: center; }
.feat-tag-icon svg { width: 19px; height: 19px; color: var(--orange-600); }
.feat-tag-label { font-family: var(--ff-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-600); }
.feat-row h3 { margin-bottom: 16px; }
.feat-row p { color: var(--text-2); font-size: 16.5px; line-height: 1.7; margin-bottom: 18px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.feat-list svg { width: 21px; height: 21px; flex-shrink: 0; color: var(--green); margin-top: 1px; }
.feat-list b { font-weight: 600; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
.step { position: relative; }
.step-num { font-family: var(--ff-mono); font-size: 13px; font-weight: 700; color: #fff; background: var(--orange-500); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--navy-800); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ── Testimonials ── */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote-stars { display: flex; gap: 3px; }
.quote-stars svg { width: 17px; height: 17px; color: var(--orange-500); }
.quote-text { font-family: var(--ff-display); font-size: 21px; line-height: 1.4; color: var(--navy-800); font-weight: 500; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 600; font-size: 17px; color: #fff; flex-shrink: 0; }
.quote-name { font-size: 14.5px; font-weight: 600; color: var(--navy-800); }
.quote-role { font-size: 12.5px; color: var(--text-3); }

/* ── CTA band ── */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; padding: clamp(48px,7vw,80px); text-align: center; background: var(--navy-800); }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 18px; max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Beta signup (CTA band) ── */
.cta-badge { display: inline-block; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-400); background: rgba(232,98,42,0.14); border: 1px solid rgba(232,98,42,0.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.beta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 540px; margin: 0 auto; }
.beta-field { position: relative; flex: 1 1 100%; max-width: 480px; margin: 0 auto; width: 100%; }
.beta-input { width: 100%; flex: 1 1 280px; min-width: 0; font-family: var(--ff-body); font-size: 16px; color: #fff; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 15px 18px; transition: border-color .18s, background .18s; }
.beta-field .beta-input { padding-right: 148px; }
.beta-submit {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-body); font-size: 15px; font-weight: 600; color: #fff;
  background: var(--orange-500); border: none; border-radius: 10px; padding: 11px 17px;
  cursor: pointer; transition: background .18s, transform .12s;
}
.beta-submit svg { width: 16px; height: 16px; transition: transform .25s; }
.beta-submit:hover { background: var(--orange-600); }
.beta-submit:hover svg { transform: translateX(3px); }
.beta-submit:active { transform: translateY(-50%) scale(.97); }
.beta-input::placeholder { color: rgba(255,255,255,0.4); }
.beta-input:focus { outline: none; border-color: var(--orange-400); background: rgba(255,255,255,0.12); }
.beta-input-error { border-color: #E0533A; background: rgba(224,83,58,0.12); }
.beta-form .btn { flex: 0 0 auto; }
.beta-success { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 500; color: #fff; background: rgba(31,157,91,0.16); border: 1px solid rgba(31,157,91,0.4); border-radius: 14px; padding: 15px 22px; }
.beta-success svg { width: 22px; height: 22px; color: #4ED88A; flex-shrink: 0; }
.beta-note { margin-top: 16px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(255,255,255,0.42); }
.beta-consent { flex: 1 1 100%; display: flex; align-items: flex-start; justify-content: center; gap: 10px; margin-top: 4px; font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,0.7); cursor: pointer; text-align: left; }
.beta-consent input { appearance: none; -webkit-appearance: none; flex: 0 0 auto; width: 19px; height: 19px; margin: 1px 0 0; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 5px; background: rgba(255,255,255,0.08); cursor: pointer; display: grid; place-content: center; transition: border-color .15s, background .15s; }
.beta-consent input::before { content: ""; width: 10px; height: 10px; transform: scale(0); transform-origin: center; transition: transform .12s ease-out; box-shadow: inset 1em 1em #fff; clip-path: polygon(14% 47%, 0 60%, 40% 100%, 100% 18%, 86% 4%, 38% 72%); }
.beta-consent input:checked { background: var(--orange-500); border-color: var(--orange-500); }
.beta-consent input:checked::before { transform: scale(1); }
.beta-consent input:focus-visible { outline: 2px solid var(--orange-400); outline-offset: 2px; }
.beta-consent a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.beta-consent a:hover { color: var(--orange-400); }
.beta-consent-error { color: #FFB4A4; }
.beta-consent-error input { border-color: #E0533A; background: rgba(224,83,58,0.14); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--orange-500); box-shadow: 0 20px 50px rgba(232,98,42,0.16); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange-500); color: #fff; font-family: var(--ff-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.price-name { font-family: var(--ff-display); font-size: 26px; font-weight: 600; color: var(--navy-800); }
.price-desc { font-size: 13.5px; color: var(--text-3); margin: 4px 0 22px; min-height: 38px; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amt .num { font-family: var(--ff-display); font-size: 52px; font-weight: 600; color: var(--navy-800); line-height: 1; }
.price-amt .per { font-size: 14px; color: var(--text-3); }
.price-sub { font-size: 12.5px; color: var(--text-3); margin-bottom: 24px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; flex: 1; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-2); }
.price-feats svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--green); margin-top: 1px; }
.price-feats li.muted { color: var(--text-3); }
.price-feats li.muted svg { color: var(--border-2); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: none; padding: 24px 0; text-align: left; font-family: var(--ff-display); font-size: 21px; font-weight: 600; color: var(--navy-800); }
.faq-q svg { width: 22px; height: 22px; color: var(--orange-500); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 24px; font-size: 15.5px; color: var(--text-2); line-height: 1.7; max-width: 640px; }

/* ── Footer ── */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.6); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col-wide { grid-column: span 2; }
.footer-modules { display: grid !important; grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.footer-brand .brand-name { color: #fff; }
.footer-tag { font-size: 14px; line-height: 1.65; margin: 18px 0 22px; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: rgba(232,98,42,0.2); }
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer-col h4 { font-family: var(--ff-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color .18s; position: relative; }
.footer-col a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px; background: var(--orange-400); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.footer-col a:hover { color: #fff; }
.footer-col a:hover::after { transform: scaleX(1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ── Pill / chip ── */
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; padding: 5px 11px; border-radius: 100px; text-transform: uppercase; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; }
.pill.green { background: var(--green-bg); color: var(--green-d); }
.pill.green .dot { background: var(--green); }
.pill.amber { background: var(--amber-bg); color: var(--amber-d); }
.pill.amber .dot { background: var(--amber); }
.pill.red { background: var(--red-bg); color: var(--red-d); }
.pill.red .dot { background: var(--red); }

/* ── Page hero (subpages) ── */
.page-hero { padding: clamp(56px,7vw,88px) 0 clamp(40px,5vw,56px); text-align: center; }
.page-hero .lead { max-width: 620px; margin: 20px auto 0; }
.page-hero.left { text-align: left; }
.page-hero.left .lead { margin-left: 0; margin-right: 0; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .mod-grid, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .feat-row { grid-template-columns: 1fr; gap: 32px; }
  .feat-row.flip .feat-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: block; }
  .mod-grid, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Prose (legal pages) — full container width, single column ── */
.prose { max-width: none; }
.prose > section + section { margin-top: 8px; }
.prose > section:first-child h2, .prose > *:first-child { margin-top: 0; }
.prose h2 { font-family: var(--ff-display); font-size: 27px; font-weight: 600; color: var(--navy-800); margin: 38px 0 14px; }
.prose h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--navy-800); margin: 26px 0 10px; }
.prose p, .prose li { font-size: 16px; line-height: 1.78; color: var(--text-2); }
.prose p { margin-bottom: 15px; }
.prose ul { padding-left: 22px; margin-bottom: 15px; list-style: disc; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--orange-600); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--navy-800); font-weight: 600; }
.prose .placeholder { background: var(--orange-100); color: var(--orange-600); padding: 1px 6px; border-radius: 5px; font-size: 14px; font-family: var(--ff-mono); }
.legal-meta { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--text-3); margin-bottom: 8px; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-thumb { aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb svg { width: 54px; height: 54px; opacity: 0.9; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.blog-card:hover .blog-thumb svg { transform: scale(1.12) rotate(-5deg); }
.blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-family: var(--ff-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 11px; }
.blog-title { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--navy-800); line-height: 1.18; margin-bottom: 10px; }
.blog-excerpt { font-size: 14.5px; color: var(--text-2); line-height: 1.6; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12.5px; color: var(--text-3); }
.blog-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden; padding: 0; margin-bottom: 32px; }
.blog-feature .blog-thumb { aspect-ratio: auto; height: 100%; min-height: 300px; }
.blog-feature .blog-body { padding: 40px 44px; justify-content: center; }
.blog-feature .blog-title { font-size: 32px; }
.blog-feature .blog-excerpt { font-size: 16px; flex: none; margin-bottom: 6px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-feature { grid-template-columns: 1fr; } .blog-feature .blog-thumb { min-height: 200px; } }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
