/*
Theme Name: Verain
Theme URI: https://verain.ca
Author: Verain Insurance Inc.
Author URI: https://verain.ca
Description: Insurance that reflects how you live. A clean, editorial WordPress theme for Verain Insurance.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: verain
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #FFFFFF;
  --bg-2: #F4F6F9;
  --ink: #0B1E3A;
  --ink-2: #2a3a58;
  --muted: #7a8499;
  --rule: #0B1E3A;
  --rule-soft: #E2E6EE;
  --accent: #0B1E3A;
  --accent-2: #C9A24A;
  --card: #FAFBFD;
  --paper: #F8F4EC;
  --shadow: 0 1px 0 rgba(11,30,58,0.06);
  --gap: 1.25rem;
  --rad: 2px;
  --ok: #1f7a4d;
  --err: #a8321f;
}
[data-theme="dark"] {
  --bg: #0B1E3A;
  --bg-2: #0f2444;
  --ink: #F4F6F9;
  --ink-2: #cfd5e0;
  --muted: #8a93a6;
  --rule: #F4F6F9;
  --rule-soft: #1f3056;
  --accent: #6BA3FF;
  --accent-2: #E4B248;
  --card: #10274a;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding-left: 1.4rem; margin: 0; }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: "Newsreader", "Iowan Old Style", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: "IBM Plex Mono", ui-monospace, monospace; }
h1, h2, h3, h4 { font-family: "Newsreader", serif; font-weight: 400; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5.6rem); line-height: 0.98; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); line-height: 1.05; }
h3 { font-size: 1.25rem; line-height: 1.25; }
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-2);
}
.italic { font-style: italic; }
.rule { height: 1px; background: var(--rule); opacity: 0.85; }
.rule-soft { height: 1px; background: var(--rule-soft); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.2rem, 3.5vw, 2.8rem); }
.article-wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.2rem, 3.5vw, 2.8rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  border-radius: var(--rad);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule-soft); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; }
.arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== TOPBAR ===== */
.topbar {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 0.9rem 0;
  max-width: 1320px; margin: 0 auto;
  padding-left: clamp(1.2rem, 3.5vw, 2.4rem);
  padding-right: clamp(1.2rem, 3.5vw, 2.4rem);
}
.topbar .brand { display: flex; align-items: center; gap: 0.7rem; }
.topbar .brand img.logo { height: 72px; width: auto; display: block; }
[data-theme="dark"] .topbar .brand img.logo { filter: invert(1); }
.topbar .nav {
  display: flex; justify-content: center; gap: clamp(0.8rem, 2.2vw, 2rem);
  font-size: 0.88rem;
}
.topbar .nav a { padding: 0.3rem 0; position: relative; color: inherit; text-decoration: none; }
.topbar .nav a::after {
  content: ""; position: absolute; inset: auto 0 -4px 0; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.topbar .nav a:hover::after,
.topbar .nav a.active::after,
.topbar .nav a[aria-current="page"]::after { transform: scaleX(1); }
.topbar .top-cta { display: flex; align-items: center; gap: 0.9rem; font-size: 0.85rem; }
.topbar .top-cta .phone-link { display: flex; align-items: center; gap: 0.45rem; color: inherit; text-decoration: none; }
.topbar .btn-mini {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--accent);
  background: var(--accent); color: #fff;
  font-size: 0.78rem; letter-spacing: 0.02em;
  border-radius: var(--rad);
  text-decoration: none;
  transition: transform 0.15s ease;
  font-family: inherit;
}
.topbar .btn-mini:hover { transform: translateY(-1px); }
.topbar .btn-mini .arrow { transition: transform 0.2s ease; }
.topbar .btn-mini:hover .arrow { transform: translateX(3px); }
@media (max-width: 960px) { .topbar .nav { display: none; } }

/* ===== FOOTER ===== */
footer { background: var(--bg); color: var(--ink); padding: 4rem 0 1.5rem; border-top: 1px solid var(--rule); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 3rem; }
.foot-brand img.logo { height: 110px; width: auto; display: block; }
[data-theme="dark"] .foot-brand img.logo { filter: invert(1); }
.foot-brand p { margin-top: 1.2rem; color: var(--ink-2); max-width: 30ch; }
.foot-col h4 { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin: 0 0 1rem; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; font-size: 0.92rem; }
.foot-col a { color: inherit; text-decoration: none; }
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom {
  margin-top: 4rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted);
  flex-wrap: wrap; gap: 1rem;
}
.foot-bottom a { color: inherit; }
.foot-bottom a:hover { color: var(--ink); }
.foot-news-form { display: grid; gap: 0.5rem; }
.foot-news-form input {
  font: inherit; padding: 0.7rem 0.8rem;
  border: 1px solid var(--rule-soft); background: var(--bg);
  color: var(--ink); border-radius: var(--rad);
}
.foot-news-form input:focus { outline: none; border-color: var(--accent); }
.foot-news-form button {
  padding: 0.5rem 0.85rem; font-size: 0.78rem;
  background: var(--ink); color: var(--bg); border: 1px solid var(--ink);
  border-radius: var(--rad); cursor: pointer;
  width: max-content;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: inherit;
}
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

/* ===== CTA BAND (shared) ===== */
.cta-band {
  background: var(--ink); color: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--rule);
}
.cta-band .cta-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: end;
}
.cta-band h2 { color: var(--bg); text-wrap: balance; }
.cta-band h2 .italic { font-style: italic; color: var(--accent-2); }
.cta-band .lede { color: rgba(255,255,255,0.7); max-width: 40ch; margin-top: 1rem; }
.cta-band .eyebrow { color: rgba(255,255,255,0.55); }
.cta-band .btn {
  background: var(--accent-2); color: var(--ink); border-color: var(--accent-2);
  font-weight: 500; padding: 0.95rem 1.6rem; font-size: 0.92rem; letter-spacing: 0.03em;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15), 0 8px 24px -10px rgba(201,162,74,0.6);
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.cta-band .btn:hover { background: #d9b25a; border-color: #d9b25a; transform: translateY(-2px); box-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 14px 32px -10px rgba(201,162,74,0.75); }
.cta-band .btn.ghost { background: transparent; color: var(--bg); border-color: rgba(255,255,255,0.4); padding: 0.95rem 1.4rem; box-shadow: none; }
.cta-band .btn.ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
@media (max-width: 960px) { .cta-band .cta-inner { grid-template-columns: 1fr; } }

/* ===== SECTIONS ===== */
section { padding: clamp(3.5rem, 6vw, 6rem) 0; border-top: 1px solid var(--rule); }
.section-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end; padding-bottom: 2.5rem;
}
.section-head h2 { text-wrap: balance; max-width: 16ch; }
.section-head .lede { color: var(--ink-2); max-width: 52ch; }
.lede { color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; }

/* ===== CALLOUT ===== */
.callout { background: var(--bg-2); border-left: 3px solid var(--accent-2); padding: 1.3rem 1.5rem; margin: 1.5rem 0; font-size: 0.96rem; }
.callout .label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-2); display: block; margin-bottom: 0.5rem; }

/* ===== HOMEPAGE: HERO ===== */
.hero { padding: 0 0 clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch; position: relative;
}
.hero-copy { align-self: center; position: relative; z-index: 1; }
.hero-visual { z-index: 0; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3; }
}
.hero h1 { text-wrap: balance; }
.hero h1 .italic { font-style: italic; color: var(--accent); }
.hero h1 .underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 92%; padding-bottom: 2px;
}
.hero-lede { color: var(--ink-2); font-size: 1.05rem; max-width: 34ch; margin-top: 1.6rem; }
.hero-meta { display: flex; gap: 1.5rem; margin-top: 2.2rem; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 4 / 5; background: transparent; overflow: visible; }
.hero-visual .hero-frame { position: absolute; inset: 0; overflow: visible; }
.hero-visual .corner {
  position: absolute; top: 1rem; left: 1rem; right: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: "IBM Plex Mono", monospace; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: #fff; z-index: 3;
}
.hero-visual .corner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.hero-visual .hero-photo {
  position: absolute; top: -4%; bottom: -4%; left: -55%; right: -3%; width: auto; height: 108%;
  object-fit: cover; object-position: center 30%; display: block;
  filter: saturate(1.02) contrast(1.04); z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,1) 60%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,1) 60%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.hero-visual .hero-tint {
  position: absolute; top: -4%; bottom: -4%; left: -55%; right: -3%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,0.35) 100%), radial-gradient(60% 50% at 85% 15%, rgba(201,162,74,0.15), rgba(201,162,74,0) 65%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 18%, rgba(0,0,0,1) 60%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 18%, rgba(0,0,0,1) 60%);
}
.hero-visual .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.hero-visual::before {
  content: ""; position: absolute; right: -3%; top: 8%; bottom: 8%; width: 2px;
  background: var(--accent-2); z-index: 4; opacity: 0.7;
}

/* STAT STRIP */
.strip {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(4, 1fr);
  font-family: "IBM Plex Mono", monospace; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.strip > div { padding: 1rem clamp(0.8rem, 1.5vw, 1.4rem); border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.3rem; }
.strip > div:last-child { border-right: 0; }
.strip .big { font-family: "Newsreader", serif; font-size: 1.5rem; color: var(--ink); text-transform: none; letter-spacing: -0.01em; }

/* PRODUCTS GRID */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--rule); }
.product { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1.6rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; min-height: 420px; background: var(--bg); transition: background 0.2s ease; cursor: pointer; position: relative; }
.product:hover { background: var(--card); }
.products .product:nth-child(4n) { border-right: 0; }
.products .product:nth-last-child(-n+4) { border-bottom: 0; }
.product .idx { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; }
.product h3 { font-weight: 400; }
.product .desc { color: var(--ink-2); font-size: 0.92rem; margin-top: auto; }
.product .go { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; letter-spacing: 0.05em; margin-top: 0.4rem; color: var(--accent); }
.pdiag { height: 160px; border: 1px solid var(--rule-soft); background: var(--card); display: grid; place-items: center; position: relative; overflow: hidden; }
.pdiag img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.3s ease; filter: saturate(0.92); }
.product:hover .pdiag img { transform: scale(1.04); filter: saturate(1); }
.pdiag::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,30,58,0) 55%, rgba(11,30,58,0.35) 100%); pointer-events: none; }

/* WHY SECTION */
.why { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); }
.why-points { display: grid; gap: 0; }
.why-point { border-top: 1px solid var(--rule); padding: 1.6rem 0; display: grid; grid-template-columns: 3rem 1fr auto; gap: 1rem; align-items: start; cursor: pointer; }
.why-point:last-child { border-bottom: 1px solid var(--rule); }
.why-point .n { font-family: "IBM Plex Mono", monospace; font-size: 0.8rem; color: var(--muted); padding-top: 0.35rem; }
.why-point h3 { font-family: "Newsreader", serif; font-size: 1.5rem; font-weight: 400; }
.why-point p { color: var(--ink-2); font-size: 0.95rem; margin-top: 0.4rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease; }
.why-point.open p { max-height: 160px; margin-top: 0.5rem; }
.why-point .plus { font-size: 1.1rem; color: var(--muted); transition: transform 0.2s ease; user-select: none; }
.why-point.open .plus { transform: rotate(45deg); }
.why-visual { aspect-ratio: 3/4; border: 1px solid var(--rule); background: #0B1E3A; position: relative; overflow: hidden; }
.why-visual .why-art { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.why-visual .why-corner { position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem; display: flex; justify-content: space-between; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.72); z-index: 2; }
.why-visual .why-corner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }

/* QUOTE WIZARD */
.quote { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.quote-copy h2 .italic { font-style: italic; color: var(--accent); }
.quote-benefits { margin-top: 2rem; display: grid; gap: 1rem; }
.qb { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.9rem; font-size: 0.95rem; color: var(--ink-2); }
.qb .check { width: 18px; height: 18px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; margin-top: 3px; }
.qb .check::after { content: ""; width: 8px; height: 4px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); margin-top: -2px; }
.wizard { border: 1px solid var(--rule); background: var(--card); padding: clamp(1.5rem, 3vw, 2.2rem); display: grid; gap: 1.2rem; }
.wizard-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1rem; border-bottom: 1px solid var(--rule-soft); }
.steps { display: flex; gap: 0.5rem; }
.step-dot { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--rule-soft); display: grid; place-items: center; color: var(--muted); transition: all 0.2s ease; }
.step-dot.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.step-dot.done { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.field input, .field select, .field textarea { font: inherit; padding: 0.8rem 0.9rem; border: 1px solid var(--rule-soft); background: var(--bg); color: var(--ink); border-radius: var(--rad); transition: border-color 0.15s ease; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { padding: 0.55rem 0.85rem; border: 1px solid var(--rule-soft); border-radius: 999px; font-size: 0.85rem; background: var(--bg); cursor: pointer; transition: all 0.15s ease; }
.chip:hover { border-color: var(--ink-2); }
.chip.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.wizard-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 0.4rem; }
.prog { flex: 1; height: 1px; background: var(--rule-soft); position: relative; }
.prog span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--accent); transition: width 0.3s ease; }
.wizard .done-card { text-align: left; padding: 1rem 0; display: grid; gap: 0.8rem; }
.wizard .done-card .big { font-family: "Newsreader", serif; font-size: 2rem; line-height: 1.1; }
.wizard .done-card .big .italic { color: var(--accent); font-style: italic; }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); }
.tm { padding: 2rem 1.8rem; border-right: 1px solid var(--rule); display: grid; gap: 1.5rem; }
.tm:last-child { border-right: 0; }
.tm blockquote { margin: 0; font-family: "Newsreader", serif; font-size: 1.3rem; line-height: 1.35; letter-spacing: -0.01em; }
.tm blockquote::before { content: "\201C"; font-size: 2rem; color: var(--accent); line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }
.tm .who { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; }
.tm .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; font-family: "Newsreader", serif; border: 1px solid var(--rule-soft); }
.tm .meta { color: var(--muted); font-size: 0.78rem; }

/* PARTNERS MARQUEE */
.partners { position: relative; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.partners-track { display: flex; width: max-content; animation: partners-scroll 42s linear infinite; }
.partners:hover .partners-track { animation-play-state: paused; }
.partners .p { flex: 0 0 auto; width: clamp(150px, 16vw, 210px); height: 80px; display: grid; place-items: center; padding: 0 1.2rem; border-right: 1px solid var(--rule-soft); white-space: nowrap; filter: grayscale(1) opacity(0.75); transition: filter 0.25s ease; }
.partners .p:hover { filter: grayscale(0) opacity(1); background: var(--card); }
.partners .p svg, .partners .p img { max-width: 100%; max-height: 44px; width: auto; height: auto; display: block; object-fit: contain; }
@keyframes partners-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; } }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 5vw, 5rem); }
.faq-item { border-top: 1px solid var(--rule); padding: 1.3rem 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .q { font-family: "Newsreader", serif; font-size: 1.3rem; font-weight: 400; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease; color: var(--ink-2); font-size: 0.95rem; max-width: 60ch; }
.faq-item.open .faq-a { max-height: 200px; margin-top: 0.8rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-q .plus { transition: transform 0.2s ease; color: var(--muted); }

/* ===== ABOUT PAGE ===== */
.cover { background: var(--paper); border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.cover::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(11,30,58,0.08) 1px, transparent 0); background-size: 22px 22px; opacity: 0.5; pointer-events: none; }
.cover-grid { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; padding: clamp(3rem, 6vw, 5.5rem) 0 0; }
.cover-text .issue { display: flex; gap: 1.6rem; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 0.6rem 0; margin-bottom: 1.8rem; flex-wrap: wrap; }
.cover-text .issue strong { color: var(--ink); font-weight: 500; }
.cover-text h1 { font-weight: 300; }
.cover-text h1 .amp { font-style: italic; color: var(--accent-2); font-weight: 400; }
.cover-text .deck { margin-top: 1.6rem; font-family: "Newsreader", serif; font-size: 1.25rem; line-height: 1.4; color: var(--ink-2); max-width: 42ch; font-style: italic; }
.cover-text .stamp { margin-top: 2.4rem; display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0.9rem; border: 1px solid var(--accent-2); color: var(--accent-2); font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; transform: rotate(-1.5deg); }
.cover-text .stamp::before { content: "★"; }
.cover-photo { position: relative; aspect-ratio: 1/1; align-self: end; }
.cover-photo .frame { position: absolute; inset: 0; border: 1px solid var(--rule); }
.cover-photo .img { position: absolute; inset: 12px; background-size: cover; background-position: center top; filter: grayscale(0.15) contrast(1.02); }
.cover-photo .caption { position: absolute; left: 0; right: 0; bottom: -36px; display: flex; justify-content: space-between; font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.cover-photo .badge { position: absolute; top: -22px; right: -22px; width: 110px; height: 110px; border-radius: 50%; background: var(--accent-2); color: var(--ink); display: grid; place-items: center; font-family: "Newsreader", serif; font-style: italic; font-size: 0.95rem; line-height: 1.1; text-align: center; padding: 0 12px; transform: rotate(8deg); box-shadow: 0 6px 20px rgba(11,30,58,0.18); }
.cover-photo .badge::before, .cover-photo .badge::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(11,30,58,0.45); border-radius: 50%; }
.cover-photo .badge .b-line { position: relative; z-index: 1; }
.cover-marquee { position: relative; margin-top: clamp(3.5rem, 6vw, 5rem); padding: 1rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; gap: 2.5rem; overflow: hidden; font-family: "Newsreader", serif; font-style: italic; font-size: 1.1rem; color: var(--ink-2); white-space: nowrap; }
.cover-marquee .track { display: flex; gap: 2.5rem; animation: scroll 38s linear infinite; }
.cover-marquee .track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.cover-marquee .track span::after { content: "✦"; color: var(--accent-2); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hello { padding: clamp(4rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--rule-soft); }
.hello-grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); }
.hello .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.hello .body { max-width: 62ch; display: grid; gap: 1.3rem; font-size: 1.08rem; color: var(--ink-2); }
.hello .body p:first-child::first-letter { font-family: "Newsreader", serif; font-style: italic; font-size: 4.4rem; float: left; line-height: 0.85; padding: 0.4rem 0.7rem 0 0; color: var(--accent-2); }
.hello .body strong { color: var(--ink); font-weight: 500; }
.hello .signoff { margin-top: 1rem; display: grid; gap: 0.4rem; }
.hello .signoff .sig { font-family: "Newsreader", serif; font-style: italic; font-size: 2rem; color: var(--accent); transform: rotate(-2deg); display: inline-block; }
.hello .signoff .sig-meta { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.timeline { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--bg-2); }
.tl-head { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); margin-bottom: 3rem; }
.tl-head .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.tl-list { position: relative; display: grid; gap: 0; }
.tl-row { display: grid; grid-template-columns: 110px 1fr 80px; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--rule-soft); align-items: baseline; }
.tl-row:last-child { border-bottom: 1px solid var(--rule-soft); }
.tl-row .yr { font-family: "Newsreader", serif; font-size: 1.6rem; color: var(--accent-2); font-style: italic; }
.tl-row h3 { font-family: "Newsreader", serif; font-size: 1.3rem; line-height: 1.25; }
.tl-row .note { display: block; margin-top: 0.4rem; color: var(--ink-2); font-family: "IBM Plex Sans", sans-serif; font-size: 0.95rem; font-style: normal; }
.tl-row .icon { font-family: "Newsreader", serif; font-style: italic; font-size: 1.5rem; color: var(--ink-2); text-align: right; }
.quirks { padding: clamp(4rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--rule-soft); }
.quirks-head { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); margin-bottom: 2.5rem; }
.quirks-head .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.q-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule-soft); border: 1px solid var(--rule-soft); }
.q-cell { background: var(--bg); padding: 1.5rem; min-height: 170px; display: grid; gap: 0.5rem; align-content: start; transition: background 0.25s ease; cursor: default; }
.q-cell:hover { background: var(--paper); }
.q-cell .k { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.q-cell .v { font-family: "Newsreader", serif; font-size: 1.25rem; line-height: 1.25; color: var(--ink); }
.q-cell .v em { color: var(--accent-2); font-style: italic; }
.beliefs { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--paper); position: relative; overflow: hidden; }
.beliefs::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(11,30,58,0.07) 1px, transparent 0); background-size: 22px 22px; opacity: 0.5; pointer-events: none; }
.beliefs-head { position: relative; display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); margin-bottom: 3rem; }
.beliefs-head .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.b-list { position: relative; display: grid; gap: 1.2rem; max-width: 64ch; margin-left: clamp(0px, 18vw, 220px); }
.b-item { display: grid; grid-template-columns: 38px 1fr; gap: 1rem; padding: 1.2rem 1.4rem; background: rgba(255,255,255,0.6); border: 1px solid rgba(11,30,58,0.08); backdrop-filter: blur(2px); transition: transform 0.2s ease, background 0.2s ease; }
.b-item:nth-child(odd) { transform: rotate(-0.3deg); }
.b-item:nth-child(even) { transform: rotate(0.3deg); }
.b-item:hover { transform: translateX(4px) rotate(0); background: rgba(255,255,255,0.9); }
.b-item .num { font-family: "Newsreader", serif; font-style: italic; font-size: 1.5rem; color: var(--accent-2); line-height: 1; padding-top: 0.15rem; }
.b-item .text { font-family: "Newsreader", serif; font-size: 1.2rem; line-height: 1.3; }
.b-item .text em { color: var(--accent-2); font-style: italic; }
.day { padding: clamp(4rem, 7vw, 6rem) 0; border-bottom: 1px solid var(--rule-soft); }
.day-head { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); margin-bottom: 3rem; align-items: end; }
.day-head .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.day-grid { display: grid; grid-template-columns: 100px 1fr; gap: 0; max-width: 720px; }
.day-row { display: contents; }
.day-row .t { padding: 1.1rem 1.5rem 1.1rem 0; border-top: 1px solid var(--rule-soft); font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--accent-2); }
.day-row .e { padding: 1.1rem 0; border-top: 1px solid var(--rule-soft); font-family: "Newsreader", serif; font-size: 1.1rem; line-height: 1.4; }
.day-row .e small { display: block; margin-top: 0.3rem; font-family: "IBM Plex Sans", sans-serif; font-size: 0.85rem; color: var(--muted); font-style: italic; }
.day-row:last-child .t, .day-row:last-child .e { border-bottom: 1px solid var(--rule-soft); }
.pull { padding: clamp(4rem, 7vw, 6rem) 0; }
.pull .wrap { max-width: 980px; }
.pull .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); margin-bottom: 1.5rem; display: inline-block; }
.pull blockquote { margin: 0; font-family: "Newsreader", serif; font-weight: 300; font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.22; letter-spacing: -0.01em; text-wrap: balance; }
.pull blockquote .mark { color: var(--accent-2); font-style: italic; font-size: 1.6em; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.pull blockquote em { color: var(--accent-2); font-style: italic; }
.pull cite { display: block; margin-top: 2rem; font-style: normal; font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.about-cta { padding: clamp(3.5rem, 6vw, 5rem) 0; background: var(--ink); color: #fff; }
.about-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.about-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; max-width: 22ch; }
.about-cta h2 .italic { color: var(--accent-2); }
.about-cta p { color: rgba(255,255,255,0.7); margin-top: 1rem; max-width: 50ch; }
.about-cta .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-cta .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.4rem; font-size: 0.88rem; letter-spacing: 0.02em; border-radius: 2px; transition: transform 0.15s ease; }
.about-cta .btn-primary { background: var(--accent-2); color: var(--ink); border: 1px solid var(--accent-2); }
.about-cta .btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.about-cta .btn:hover { transform: translateY(-1px); }

/* ===== INSURANCE PAGE ===== */
.page-head { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--rule-soft); }
.ins-nav-pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.75rem; border: 1px solid var(--rule-soft); border-radius: 2px; font-size: 0.82rem; color: var(--ink-2); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.ins-nav-pill:hover { border-color: var(--ink); color: var(--ink); }
.ins-plan { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--rule-soft); }
.ins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ins-plan--flip .ins-grid { direction: rtl; }
.ins-plan--flip .ins-grid > * { direction: ltr; }
.ins-img-wrap { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--rule-soft); }
.ins-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92); transition: filter 0.3s ease; }
.ins-img-wrap:hover img { filter: saturate(1); }
.ins-idx { position: absolute; bottom: 0.8rem; right: 0.8rem; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: #fff; background: rgba(11,30,58,0.6); padding: 0.2rem 0.5rem; border-radius: 2px; }
.ins-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.ins-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-2); }
.ins-check { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%; background: var(--accent-2); display: inline-flex; align-items: center; justify-content: center; }
.ins-check::after { content: ''; display: block; width: 5px; height: 3px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg) translateY(-1px); }
@media (max-width: 768px) { .ins-grid { grid-template-columns: 1fr; direction: ltr !important; } }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) 0; align-items: start; }
.cform { display: grid; gap: 1.4rem; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cform .field input, .cform .field select, .cform .field textarea { border: 0; border-bottom: 1px solid var(--rule); background: transparent; padding: 0.7rem 0; font: inherit; color: var(--ink); border-radius: 0; outline: none; width: 100%; transition: border-color 0.2s ease; }
.cform .field input:focus, .cform .field select:focus, .cform .field textarea:focus { border-bottom-color: var(--accent-2); }
.cform .field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.cf-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.4rem; margin-top: 0.4rem; }
.cf-check { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-2); cursor: pointer; }
.cf-check input { width: 14px; height: 14px; accent-color: var(--accent-2); }
.cf-consent { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.cf-consent a { border-bottom: 1px solid var(--accent-2); }
.submit-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.6rem; }
.form-status { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; color: var(--accent-2); letter-spacing: 0.12em; opacity: 0; transition: opacity 0.3s ease; }
.form-status.show { opacity: 1; }
.contact-aside { display: grid; gap: 2rem; }
.info-block { padding-top: 1.4rem; border-top: 1px solid var(--rule); display: grid; gap: 0.6rem; }
.info-block .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }
.info-block .big { font-family: "Newsreader", serif; font-size: 1.5rem; line-height: 1.2; color: var(--ink); }
.info-block .sub { font-size: 0.94rem; color: var(--ink-2); line-height: 1.55; }
.info-block a.inline { color: var(--ink); border-bottom: 1px solid var(--accent-2); }
.info-block a.inline:hover { background: rgba(201,162,74,0.12); }
.map-card { aspect-ratio: 4/3; position: relative; overflow: hidden; border: 1px solid var(--rule); background: #0B1E3A; }
.map-card iframe { display: block; }
.map-card .map-link { position: absolute; right: 0.8rem; bottom: 0.8rem; z-index: 2; background: #fff; color: var(--ink); padding: 0.55rem 0.9rem; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--rule); text-decoration: none; box-shadow: 0 2px 8px rgba(11,30,58,0.18); }
.map-card .map-link:hover { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.hours-strip { padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 1px solid var(--rule); }
.hours-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(2rem, 5vw, 4rem); }
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 0.96rem; }
.hours-list li .day { color: var(--ink); font-weight: 500; }
.hours-list li .h { color: var(--ink-2); font-family: "IBM Plex Mono", monospace; font-size: 0.86rem; }

/* ===== QUOTE / LANDING PAGE ===== */
.lp-pitch { padding-top: 0.5rem; }
.lp-pitch .lede { margin-top: 1.4rem; font-size: 1.08rem; color: var(--ink-2); max-width: 42ch; }
.lp-pitch .points { margin-top: 2rem; display: grid; gap: 0.9rem; }
.pt { display: grid; grid-template-columns: 22px 1fr; gap: 0.8rem; align-items: start; font-size: 0.98rem; }
.pt .check { width: 18px; height: 18px; border: 1px solid var(--accent-2); border-radius: 50%; display: grid; place-items: center; margin-top: 4px; }
.pt .check::after { content: ""; width: 8px; height: 4px; border-left: 1.5px solid var(--accent-2); border-bottom: 1.5px solid var(--accent-2); transform: rotate(-45deg); margin-top: -2px; }
.pt strong { font-weight: 600; }
.pt span.note { display: block; color: var(--ink-2); font-size: 0.92rem; margin-top: 0.15rem; }
.lp-stats { margin-top: 2.2rem; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; }
.lp-stats > div { padding: 0.85rem 0.9rem; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.25rem; }
.lp-stats > div:last-child { border-right: 0; }
.lp-stats .big { font-family: "Newsreader", serif; font-size: 1.4rem; color: var(--ink); text-transform: none; letter-spacing: -0.01em; }
.lp-carriers { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--rule-soft); }
.lp-carriers .label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 0.7rem; }
.lp-carriers .row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; filter: grayscale(1) opacity(0.75); }
.lp-carriers .row img { height: 26px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.form-card { background: var(--card); border: 1px solid var(--rule); padding: clamp(1.4rem, 2.4vw, 2rem); box-shadow: 0 1px 0 rgba(11,30,58,0.06); position: sticky; top: 1rem; }
.form-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule-soft); margin-bottom: 1.2rem; }
.form-head h2 { font-size: 1.55rem; line-height: 1.05; }
.form-head h2 .em { font-style: italic; color: var(--accent-2); }
.form-head .tag { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); white-space: nowrap; }
.lp-field { display: grid; gap: 0.35rem; margin-bottom: 0.95rem; }
.lp-field label { font-family: "IBM Plex Mono", monospace; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.lp-field label .req { color: var(--accent-2); margin-left: 0.2rem; }
.lp-field input, .lp-field select { font: inherit; padding: 0.85rem 0.9rem; border: 1px solid var(--rule-soft); background: var(--bg); color: var(--ink); border-radius: var(--rad); transition: border-color 0.15s ease, box-shadow 0.15s ease; width: 100%; }
.lp-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.4rem; }
.lp-field input:focus, .lp-field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(11,30,58,0.08); }
.lp-field.invalid input, .lp-field.invalid select { border-color: var(--err); box-shadow: 0 0 0 3px rgba(168,50,31,0.08); }
.lp-field .err-msg { font-size: 0.78rem; color: var(--err); display: none; }
.lp-field.invalid .err-msg { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.lp-consent { display: grid; grid-template-columns: 18px 1fr; gap: 0.65rem; margin: 0.4rem 0 1.2rem; font-size: 0.82rem; color: var(--ink-2); line-height: 1.45; }
.lp-consent input { margin-top: 3px; }
.lp-consent a { text-decoration: underline; text-underline-offset: 2px; }
.lp-submit { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 1rem 1.2rem; background: var(--ink); color: #fff; border: 1px solid var(--ink); font-family: inherit; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; cursor: pointer; border-radius: var(--rad); transition: transform 0.15s ease, background 0.15s ease; }
.lp-submit:hover { transform: translateY(-1px); background: #08172d; }
.lp-submit .arrow { display: inline-block; transition: transform 0.15s ease; }
.lp-submit:hover .arrow { transform: translateX(3px); }
.lp-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.lp-reassure { margin-top: 0.85rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); font-family: "IBM Plex Mono", monospace; letter-spacing: 0.08em; }
.form-card.done .form-body { display: none; }
.form-card .lp-success { display: none; }
.form-card.done .lp-success { display: grid; gap: 0.9rem; padding: 0.4rem 0 0.2rem; }
.lp-success .check-big { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--accent-2); display: grid; place-items: center; color: var(--accent-2); }
.lp-success .big { font-family: "Newsreader", serif; font-size: 1.7rem; line-height: 1.1; }
.lp-success .italic-accent { font-style: italic; color: var(--accent-2); }
.lp-success p { color: var(--ink-2); max-width: 42ch; }
.below { border-bottom: 1px solid var(--rule); padding: clamp(2rem,4vw,3.5rem) 0; background: var(--bg-2); }
.below-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.quote-block blockquote { margin: 0; font-family: "Newsreader", serif; font-size: clamp(1.4rem,2.2vw,1.9rem); line-height: 1.3; text-wrap: balance; }
.quote-block blockquote::before { content: "\201C"; color: var(--accent-2); font-size: 2.2rem; line-height: 0; vertical-align: -0.32em; margin-right: 0.08em; }
.quote-block .who { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }
.quote-block .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg); border: 1px solid var(--rule-soft); display: grid; place-items: center; font-family: "Newsreader", serif; font-size: 1.05rem; }
.quote-block .meta { color: var(--muted); font-size: 0.78rem; font-family: "IBM Plex Mono", monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.lp-steps { display: grid; gap: 1.2rem; }
.lp-step { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; border-top: 1px solid var(--rule-soft); padding-top: 1rem; }
.lp-step:first-child { border-top: 0; padding-top: 0; }
.lp-step .n { font-family: "IBM Plex Mono", monospace; color: var(--muted); font-size: 0.8rem; padding-top: 0.25rem; }
.lp-step h3 { font-family: "Newsreader", serif; font-size: 1.2rem; font-weight: 400; }
.lp-step p { color: var(--ink-2); font-size: 0.92rem; margin-top: 0.25rem; }

/* ===== BLOG / JOURNAL PAGE ===== */
.masthead { border-bottom: 1px solid var(--rule); padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 3rem); }
.masthead-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.masthead h1 { text-wrap: balance; }
.masthead h1 .italic { font-style: italic; color: var(--accent-2); }
.masthead-meta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.masthead-meta .lede { color: var(--ink-2); font-size: 1.05rem; max-width: 38ch; }
.issue-line { display: flex; gap: 1.5rem; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.issue-line .dot { width: 4px; height: 4px; background: var(--accent-2); border-radius: 50%; }
.topics { border-bottom: 1px solid var(--rule); padding: 1rem 0; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.topics .label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-right: 0.6rem; }
.topic { padding: 0.4rem 0.85rem; border: 1px solid var(--rule-soft); border-radius: 999px; font-size: 0.8rem; background: var(--bg); cursor: pointer; transition: all 0.15s ease; }
.topic:hover { border-color: var(--ink-2); }
.topic.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
section.featured { padding: clamp(2.5rem, 5vw, 4.5rem) 0; border-bottom: 1px solid var(--rule); }
.feat-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
.feat-main { display: grid; grid-template-rows: auto 1fr; gap: 1.5rem; }
.feat-image { aspect-ratio: 16 / 10; border: 1px solid var(--rule); background: var(--card); position: relative; overflow: hidden; }
.feat-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,30,58,0) 60%, rgba(11,30,58,0.4) 100%); }
.feat-image .corner { position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem; display: flex; justify-content: space-between; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: #fff; z-index: 2; mix-blend-mode: difference; }
.feat-image .corner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.feat-copy { display: grid; gap: 1rem; align-content: start; }
.feat-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.05; text-wrap: balance; }
.feat-copy h2 .italic { font-style: italic; color: var(--accent-2); }
.feat-copy .deck { color: var(--ink-2); font-size: 1.05rem; max-width: 50ch; }
.meta-line { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.meta-line .sep { color: var(--rule-soft); }
.feat-side { display: grid; grid-template-rows: 1fr 1fr; gap: 0; border-left: 1px solid var(--rule); }
.feat-side article { padding: 1.5rem 0 1.5rem 2rem; display: grid; gap: 0.7rem; align-content: center; border-bottom: 1px solid var(--rule-soft); cursor: pointer; transition: background 0.2s ease; }
.feat-side article:last-child { border-bottom: 0; }
.feat-side article:hover { background: var(--card); }
.feat-side h3 { font-size: 1.4rem; line-height: 1.2; text-wrap: balance; }
.feat-side .deck { color: var(--ink-2); font-size: 0.92rem; max-width: 36ch; }
section.archive { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.archive-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
.archive-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.archive-head .count { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.post { border-right: 1px solid var(--rule); border-top: 1px solid var(--rule); padding: 1.6rem 1.5rem 1.8rem; display: grid; gap: 1rem; align-content: start; background: var(--bg); transition: background 0.2s ease; cursor: pointer; min-height: 400px; text-decoration: none; color: inherit; }
.post:hover { background: var(--card); }
.post .pimg { aspect-ratio: 4 / 3; background: var(--bg-2); border: 1px solid var(--rule-soft); position: relative; overflow: hidden; }
.post .pimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post:hover .pimg img { transform: scale(1.04); }
.post .pimg .ph-tag { position: absolute; bottom: 0.6rem; left: 0.7rem; font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.post .topic-tag { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2); }
.post h3 { font-size: 1.45rem; line-height: 1.2; text-wrap: balance; }
.post .deck { color: var(--ink-2); font-size: 0.92rem; }
.post .post-meta { display: flex; gap: 0.8rem; align-items: center; margin-top: auto; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted); }
.pagination { margin-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--rule-soft); }
.page-numbers { display: flex; gap: 0.4rem; }
.page-num { width: 36px; height: 36px; border: 1px solid var(--rule-soft); display: grid; place-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; cursor: pointer; transition: all 0.15s ease; text-decoration: none; color: inherit; }
.page-num.active, .page-num:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.news-band { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.news-grid h2 { text-wrap: balance; max-width: 14ch; }
.news-grid h2 .italic { font-style: italic; color: var(--accent-2); }
.news-form { display: flex; gap: 0.6rem; border: 1px solid var(--ink); background: var(--bg); padding: 0.4rem; }
.news-form input { flex: 1; font: inherit; padding: 0.7rem 0.9rem; border: 0; background: transparent; color: var(--ink); }
.news-form input:focus { outline: none; }

/* ===== BLOG ARTICLE ===== */
.reading-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: transparent; z-index: 100; }
.reading-progress span { display: block; height: 100%; width: 0%; background: var(--accent-2); transition: width 0.1s linear; }
.crumb { padding: 1.2rem 0; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); display: flex; gap: 0.6rem; align-items: center; border-bottom: 1px solid var(--rule-soft); }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--rule-soft); }
.art-head { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem); border-bottom: 1px solid var(--rule-soft); }
.art-head .topic-tag { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-2); margin-bottom: 1.5rem; }
.art-head h1 .italic { font-style: italic; color: var(--accent-2); }
.art-head .deck { margin-top: 1.5rem; font-family: "Newsreader", serif; font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.4; color: var(--ink-2); max-width: 56ch; text-wrap: balance; }
.art-meta { margin-top: 2.5rem; display: flex; gap: 2.5rem; flex-wrap: wrap; font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.art-meta .v { display: flex; flex-direction: column; gap: 0.3rem; }
.art-meta .v .k { color: var(--muted); }
.art-meta .v .val { color: var(--ink); font-family: "Newsreader", serif; font-size: 0.95rem; letter-spacing: 0; text-transform: none; }
.art-hero { aspect-ratio: 21 / 9; border-bottom: 1px solid var(--rule); background: var(--card); position: relative; overflow: hidden; }
.art-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.art-hero .corner { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: #fff; z-index: 2; mix-blend-mode: difference; }
.art-hero .corner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.art-hero .caption { position: absolute; bottom: 1rem; left: 1rem; color: rgba(255,255,255,0.85); font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; z-index: 2; }
.body-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) 0; }
aside.toc { position: sticky; top: 110px; align-self: start; display: grid; gap: 1.4rem; }
aside.toc .label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
aside.toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
aside.toc li { display: grid; grid-template-columns: 1.7rem 1fr; gap: 0.5rem; }
aside.toc li .n { font-family: "IBM Plex Mono", monospace; font-size: 0.75rem; color: var(--muted); padding-top: 0.15rem; }
aside.toc li a { font-family: "Newsreader", serif; font-size: 1rem; line-height: 1.3; color: var(--ink-2); }
aside.toc li a:hover, aside.toc li.active a { color: var(--ink); }
aside.toc .progress { height: 1px; background: var(--rule-soft); position: relative; }
aside.toc .progress span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--accent-2); width: 0; }
aside.toc .share { display: grid; gap: 0.5rem; }
aside.toc .share button { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 0.85rem; display: flex; justify-content: space-between; align-items: center; }
aside.toc .share button:hover { color: var(--accent-2); }
article.body { max-width: 70ch; font-size: 1.02rem; line-height: 1.7; color: var(--ink-2); }
article.body section { margin-top: 2.6rem; padding-top: 2.6rem; border-top: 1px solid var(--rule-soft); }
article.body section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
article.body h2 { color: var(--ink); margin-bottom: 1rem; display: grid; grid-template-columns: 3rem 1fr; gap: 0.5rem; align-items: baseline; }
article.body h2 .n { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.14em; }
article.body h3 { color: var(--ink); margin: 1.6rem 0 0.6rem; font-size: 1.15rem; }
article.body p + p { margin-top: 1rem; }
article.body em { color: var(--accent-2); font-style: italic; }
article.body strong { color: var(--ink); font-weight: 500; }
article.body a.inline { color: var(--ink); border-bottom: 1px solid var(--accent-2); }
article.body a.inline:hover { background: rgba(201,162,74,0.12); }
article.body ul, article.body ol { padding-left: 1.2rem; margin: 0.8rem 0; }
article.body li { margin-bottom: 0.4rem; }
.legal-meta { margin-top: 2rem; display: flex; gap: 2rem; flex-wrap: wrap; font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.contact-card { margin-top: 3rem; border: 1px solid var(--rule); padding: 1.6rem 1.5rem; display: grid; gap: 0.4rem; background: var(--card); }
.contact-card .label { font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.contact-card .who { font-family: "Newsreader", serif; font-size: 1.3rem; color: var(--ink); margin-top: 0.4rem; }
.contact-card .row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.6rem; font-size: 0.95rem; color: var(--ink-2); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule-soft); margin: 2rem 0; border: 1px solid var(--rule-soft); }
.pillar { background: var(--bg); padding: 1.4rem 1.3rem; }
.pillar .k { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-2); }
.pillar .v { font-family: "Newsreader", serif; font-size: 1.15rem; color: var(--ink); margin-top: 0.4rem; line-height: 1.3; }
.pillar p { margin-top: 0.5rem; font-size: 0.93rem; }
.pull-stat { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule); margin: 2.5rem 0; font-family: "Newsreader", serif; }
.pull-stat > div { padding: 1.5rem 1.4rem; border-right: 1px solid var(--rule); display: grid; gap: 0.4rem; }
.pull-stat > div:last-child { border-right: 0; }
.pull-stat .big { font-size: 2.2rem; line-height: 1; color: var(--ink); }
.pull-stat .lab { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.figure { margin: 2.5rem 0; }
.figure .img-wrap { aspect-ratio: 16 / 9; background: var(--card); border: 1px solid var(--rule-soft); position: relative; overflow: hidden; }
.figure .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.figure figcaption { margin-top: 0.7rem; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); display: flex; gap: 0.6rem; }
.figure figcaption .num { color: var(--accent-2); }
.author { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 84px 1fr auto; gap: 1.5rem; align-items: center; }
.author .avatar { width: 84px; height: 84px; background: var(--bg-2); border: 1px solid var(--rule-soft); overflow: hidden; position: relative; display: grid; place-items: center; border-radius: 50%; }
.author .avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.author .meta { display: grid; gap: 0.4rem; }
.author .name { font-family: "Newsreader", serif; font-size: 1.4rem; }
.author .role { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.author .bio { color: var(--ink-2); font-size: 0.95rem; max-width: 50ch; margin-top: 0.4rem; }
.tag-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0 1rem; }
.tag { padding: 0.4rem 0.85rem; border: 1px solid var(--rule-soft); border-radius: 999px; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-2); }
.tag:hover { border-color: var(--ink); color: var(--ink); cursor: pointer; }
section.related { border-top: 1px solid var(--rule); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.related-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.rel { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1.5rem 1.4rem 1.6rem; display: grid; gap: 0.8rem; cursor: pointer; transition: background 0.2s ease; text-decoration: none; color: inherit; }
.rel:hover { background: var(--card); }
.rel .topic-tag { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2); }
.rel h3 { font-size: 1.3rem; line-height: 1.2; text-wrap: balance; }
.rel .deck { color: var(--ink-2); font-size: 0.92rem; }
.rel .meta { margin-top: auto; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted); }

/* ===== ABOUT PAGE — CTA DARK SECTION ===== */
.cta { padding: clamp(3.5rem, 6vw, 5rem) 0; background: var(--ink); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; max-width: 22ch; }
.cta h2 .italic { color: var(--accent-2); }
.cta p { color: rgba(255,255,255,0.7); margin-top: 1rem; max-width: 50ch; }
.cta .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta .btn-primary { background: var(--accent-2); color: var(--ink); border: 0; padding: 0.9rem 1.4rem; font-size: 0.88rem; border-radius: 2px; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform 0.15s ease; }
.cta .btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 0.9rem 1.4rem; font-size: 0.88rem; border-radius: 2px; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform 0.15s ease; }
.cta .btn-primary:hover, .cta .btn-secondary:hover { transform: translateY(-1px); }

/* ===== SINGLE POST LAYOUT ===== */
.art-breadcrumb { padding: 1.2rem 0; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); display: flex; gap: 0.6rem; align-items: center; border-bottom: 1px solid var(--rule-soft); }
.art-breadcrumb a:hover { color: var(--ink); }
.art-meta { margin-top: 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap; font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.art-meta .sep { color: var(--rule-soft); }
.art-hero-img { padding: clamp(1.5rem,3vw,2.5rem) 0; border-bottom: 1px solid var(--rule-soft); }
.article-layout { padding: clamp(2rem,4vw,3.5rem) 0; }
.article-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem,5vw,5rem); }
.article-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: 1rem; }
.toc-label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 0.5rem; }
.toc-link { display: block; font-family: "Newsreader", serif; font-size: 0.98rem; line-height: 1.5; color: var(--ink-2); margin-bottom: 0.5rem; }
.toc-link:hover { color: var(--ink); }
.toc-h3 { padding-left: 0.8rem; font-size: 0.88rem; }
.article-body { max-width: 68ch; font-size: 1.08rem; line-height: 1.7; color: var(--ink-2); }
.article-body h2 { color: var(--ink); margin: 3rem 0 1.2rem; font-size: clamp(1.6rem, 2.4vw, 2rem); }
.article-body h3 { color: var(--ink); margin: 2.2rem 0 0.7rem; font-size: 1.3rem; }
.article-body p { margin-top: 1.2rem; }
.article-body p:first-child { margin-top: 0; }
.article-body em { color: var(--accent-2); font-style: italic; }
.article-body strong { color: var(--ink); font-weight: 500; }
.article-body a { color: var(--ink); border-bottom: 1px solid var(--accent-2); }
.article-body a:hover { background: rgba(201,162,74,0.12); }
.article-body blockquote { margin: 2rem 0; padding: 0.5rem 0 0.5rem 1.5rem; border-left: 2px solid var(--accent-2); font-family: "Newsreader", serif; font-size: 1.5rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.article-body ul, .article-body ol { padding-left: 1.3rem; margin: 1.2rem 0; }
.article-body li { margin-bottom: 0.5rem; }
.art-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0 1rem; }
.art-tag { padding: 0.4rem 0.85rem; border: 1px solid var(--rule-soft); border-radius: 999px; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-2); }
.art-tag:hover { border-color: var(--ink); color: var(--ink); }
.art-author { margin-top: 3rem; padding: 1.8rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem; align-items: center; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--rule-soft); display: grid; place-items: center; font-family: "Newsreader", serif; font-size: 1.2rem; color: var(--ink-2); }
.author-name { font-family: "Newsreader", serif; font-size: 1.1rem; color: var(--ink); }
.author-bio { font-size: 0.9rem; color: var(--ink-2); margin-top: 0.2rem; }
.related-posts { padding: clamp(2.5rem,5vw,4rem) 0; border-top: 1px solid var(--rule); }

/* ===== LANDING / QUOTE PAGE ===== */
.lp-hero { border-bottom: 1px solid var(--rule); padding: clamp(2rem,4vw,3.5rem) 0; }
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.pitch { padding-top: 0.5rem; }
.pitch h1 .underline { background-image: linear-gradient(currentColor,currentColor); background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 92%; padding-bottom: 2px; }
.lp-points { margin-top: 2rem; display: grid; gap: 0.9rem; }
.pt { display: grid; grid-template-columns: 22px 1fr; gap: 0.8rem; align-items: start; font-size: 0.98rem; }
.pt .check { width: 18px; height: 18px; border: 1px solid var(--accent-2); border-radius: 50%; display: grid; place-items: center; margin-top: 4px; }
.pt .check::after { content: ""; width: 8px; height: 4px; border-left: 1.5px solid var(--accent-2); border-bottom: 1.5px solid var(--accent-2); transform: rotate(-45deg); margin-top: -2px; }
.pt strong { font-weight: 600; }
.pt .note { display: block; color: var(--ink-2); font-size: 0.92rem; margin-top: 0.15rem; }
.lp-carriers { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--rule-soft); }
.lp-carriers-label { font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 0.7rem; }
.lp-carriers-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; filter: grayscale(1) opacity(0.75); }
.lp-carriers-row img { height: 26px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.form-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule-soft); margin-bottom: 1.2rem; }
.form-head h2 { font-size: 1.55rem; line-height: 1.05; }
.form-head h2 .em { font-style: italic; color: var(--accent-2); }
.form-head .tag { font-family: "IBM Plex Mono", monospace; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); white-space: nowrap; }
.field label .req { color: var(--accent-2); margin-left: 0.2rem; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 0.65rem; margin: 0.4rem 0 1.2rem; font-size: 0.82rem; color: var(--ink-2); line-height: 1.45; }
.consent input { margin-top: 3px; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.submit { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 1rem 1.2rem; background: var(--ink); color: #fff; border: 1px solid var(--ink); font-family: "IBM Plex Sans",sans-serif; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; cursor: pointer; border-radius: var(--rad); transition: transform 0.15s ease, background 0.15s ease; }
.submit:hover { transform: translateY(-1px); background: #08172d; }
.submit .arrow { display: inline-block; transition: transform 0.15s ease; }
.submit:hover .arrow { transform: translateX(3px); }
.submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.reassure { margin-top: 0.85rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); font-family: "IBM Plex Mono", monospace; letter-spacing: 0.08em; }
.lock { width: 14px; height: 14px; border: 1.2px solid var(--muted); border-radius: 2px; position: relative; }
.lock::before { content: ""; position: absolute; left: 3px; top: -4px; width: 6px; height: 6px; border: 1.2px solid var(--muted); border-bottom: 0; border-radius: 6px 6px 0 0; }
.form-card.done .form-body { display: none; }
.form-card .success { display: none; }
.form-card.done .success { display: grid; gap: 0.9rem; padding: 0.4rem 0 0.2rem; }
.check-big { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--accent-2); display: grid; place-items: center; color: var(--accent-2); }
.success .big { font-family: "Newsreader", serif; font-size: 1.7rem; line-height: 1.1; }
.success p { color: var(--ink-2); max-width: 42ch; }
.lp-below { border-bottom: 1px solid var(--rule); padding: clamp(2rem,4vw,3.5rem) 0; background: var(--bg-2); }
.below-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.quote-block blockquote { margin: 0; font-family: "Newsreader", serif; font-size: clamp(1.4rem,2.2vw,1.9rem); line-height: 1.3; text-wrap: balance; }
.quote-block blockquote::before { content: "\201C"; color: var(--accent-2); font-size: 2.2rem; line-height: 0; vertical-align: -0.32em; margin-right: 0.08em; }
.quote-block .who { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }
.quote-block .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg); border: 1px solid var(--rule-soft); display: grid; place-items: center; font-family: "Newsreader", serif; font-size: 1.05rem; }
.quote-block .meta { color: var(--muted); font-size: 0.78rem; font-family: "IBM Plex Mono", monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.lp-step { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; border-top: 1px solid var(--rule-soft); padding-top: 1rem; }
.lp-step:first-child { border-top: 0; padding-top: 0; }
.lp-step .n { font-family: "IBM Plex Mono", monospace; color: var(--muted); font-size: 0.8rem; padding-top: 0.25rem; }
.lp-step h3 { font-family: "Newsreader", serif; font-size: 1.2rem; font-weight: 400; }
.lp-step p { color: var(--ink-2); font-size: 0.92rem; margin-top: 0.25rem; }

/* ===== INSURANCE PAGE ===== */
.ins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.ins-img-wrap { position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--rule-soft); }
.ins-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92); transition: filter 0.3s ease; }
.ins-img-wrap:hover img { filter: saturate(1); }
.ins-idx { position: absolute; bottom: 0.8rem; right: 0.8rem; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: #fff; background: rgba(11,30,58,0.6); padding: 0.2rem 0.5rem; border-radius: 2px; }
.ins-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.ins-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-2); }
.ins-check { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%; background: var(--accent-2); display: inline-flex; align-items: center; justify-content: center; }
.ins-check::after { content: ''; display: block; width: 5px; height: 3px; border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg) translateY(-1px); }

/* ===== ARCHIVE PAGE ===== */
.archive-section { padding: clamp(2.5rem,5vw,4.5rem) 0; }
.archive-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 2rem; border-bottom: 1px solid var(--rule); }
.archive-head h2 { font-size: clamp(1.8rem,3vw,2.4rem); }
.archive-head .count { font-family: "IBM Plex Mono", monospace; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.news-form { display: flex; gap: 0.6rem; border: 1px solid var(--ink); background: var(--bg); padding: 0.4rem; }
.news-form input { flex: 1; font: inherit; padding: 0.7rem 0.9rem; border: 0; background: transparent; color: var(--ink); }
.news-form input:focus { outline: none; }
.news-tip { margin-top: 1rem; font-family: "IBM Plex Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.pagination { margin-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--rule-soft); }
.issue-line { display: flex; gap: 1.5rem; align-items: center; font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.issue-line .dot { width: 4px; height: 4px; background: var(--accent-2); border-radius: 50%; }

/* ===== CONTACT PAGE extra ===== */
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.4rem; margin-top: 0.4rem; }
.check { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-2); cursor: pointer; }
.check input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--accent-2); }
.form-status { font-family: "IBM Plex Mono", monospace; font-size: 0.78rem; color: var(--accent-2); letter-spacing: 0.12em; opacity: 0; transition: opacity 0.3s ease; }
.form-status.show { opacity: 1; }
.submit-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.6rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid, .why, .quote, .section-head { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .products .product:nth-child(4n) { border-right: 1px solid var(--rule); }
  .products .product:nth-child(2n) { border-right: 0; }
  .products .product:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .products .product:nth-last-child(-n+2) { border-bottom: 0; }
  .testimonials { grid-template-columns: 1fr; }
  .tm { border-right: 0; border-bottom: 1px solid var(--rule); }
  .tm:last-child { border-bottom: 0; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip > div:nth-child(2n) { border-right: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .masthead-inner, .feat-grid, .news-grid { grid-template-columns: 1fr; }
  .feat-side { border-left: 0; border-top: 1px solid var(--rule); }
  .feat-side article { padding: 1.5rem 0; }
  .post-grid { grid-template-columns: 1fr; }
  .body-grid { grid-template-columns: 1fr; }
  aside.toc { position: static; }
  .pillars { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .pull-stat { grid-template-columns: 1fr; }
  .pull-stat > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .pull-stat > div:last-child { border-bottom: 0; }
  .author { grid-template-columns: 64px 1fr; }
  .author .btn { grid-column: 1 / -1; justify-self: start; }
  .author .avatar { width: 64px; height: 64px; }
  .contact-grid, .hours-grid { grid-template-columns: 1fr; }
  .cform .row { grid-template-columns: 1fr; }
  .cf-checks, .hours-list { grid-template-columns: 1fr; }
  .cover-grid { grid-template-columns: 1fr; }
  .cover-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .hello-grid, .tl-head, .quirks-head, .beliefs-head, .day-head { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 80px 1fr; }
  .tl-row .icon { display: none; }
  .q-grid { grid-template-columns: repeat(2, 1fr); }
  .b-list { margin-left: 0; }
  .about-cta-grid { grid-template-columns: 1fr; }
  .below-grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stats > div:nth-child(2) { border-right: 0; }
  .row-2 { grid-template-columns: 1fr; }
  .form-card { position: static; }
}
@media (max-width: 480px) {
  .q-grid { grid-template-columns: 1fr; }
}
