/* =========================================================================
   Zel marketing site — V10 editorial design language
   Parchment ivory, Instrument Serif display, indigo + champagne accents.
   Shared by /, /privacy, /support.
   ========================================================================= */

:root {
  /* V10 light (primary) */
  --bg:            #F3EFE7;
  --bg-deep:       #E8E2D4;
  --bg-canvas:     #E6DFCE;
  --surface:       #FFFFFF;
  --surface-2:     #F9F6EF;
  --surface-3:     #FDFBF6;
  --border:        rgba(20, 16, 10, 0.055);
  --border-strong: rgba(20, 16, 10, 0.11);
  --hairline:      rgba(20, 16, 10, 0.04);

  --shadow-xs:     0 1px 1px rgba(20,16,10,0.03);
  --shadow-sm:     0 1px 2px rgba(20,16,10,0.04), 0 2px 6px rgba(20,16,10,0.03);
  --shadow-md:     0 2px 4px rgba(20,16,10,0.04), 0 8px 24px rgba(20,16,10,0.06);
  --shadow-lg:     0 4px 8px rgba(20,16,10,0.04), 0 24px 56px rgba(20,16,10,0.09);
  --shadow-xl:     0 4px 10px rgba(20,16,10,0.05), 0 40px 90px rgba(20,16,10,0.13);
  --shadow-accent: 0 10px 28px rgba(45,52,128,0.28), 0 2px 4px rgba(45,52,128,0.12);
  --inner-hi:      inset 0 1px 0 rgba(255,255,255,0.65);

  --text:          #13110C;
  --text-2:        #3C3830;
  --text-3:        #75705F;
  --text-4:        #A8A293;

  --accent:        #3A3F86;
  --accent-2:      #6B72C7;
  --accent-deep:   #24285A;
  --accent-soft:   rgba(58,63,134,0.07);
  --accent-tint:   rgba(58,63,134,0.14);

  --owe:           #B35235;
  --owe-soft:      rgba(179,82,53,0.09);
  --owed:          #157A66;
  --owed-soft:     rgba(21,122,102,0.09);

  --gold:          #B58B3D;
  --gold-soft:     rgba(181,139,61,0.12);

  /* Typography */
  --display: 'Instrument Serif', 'Cochin', Georgia, serif;
  --sans:    'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --num:     'Geist', 'Inter Tight', sans-serif;

  /* Rhythm */
  --r-xxs: 4px; --r-xs: 8px; --r-sm: 12px; --r-md: 16px;
  --r-lg: 24px; --r-xl: 32px; --r-2xl: 48px; --r-3xl: 72px; --r-4xl: 112px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

/* =========================
   Base
   ========================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1400px 700px at 18% -5%, rgba(58,63,134,0.09), transparent 60%),
    radial-gradient(1000px 600px at 88% 18%, rgba(181,139,61,0.07), transparent 62%),
    radial-gradient(800px 500px at 50% 90%, rgba(179,82,53,0.04), transparent 65%),
    var(--bg-canvas);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  min-height: 100dvh;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
}
main, header, footer { position: relative; z-index: 1; }

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

::selection { background: var(--accent-tint); color: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================
   Layout
   ========================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   Nav
   ========================= */
.nav {
  padding: 22px 0 10px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}
.brand em {
  font-style: italic;
  color: var(--accent);
}
.brand .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8C6A2E);
  margin-left: 5px;
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px rgba(181,139,61,0.16), 0 2px 4px rgba(181,139,61,0.3);
  display: inline-block;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* =========================
   Eyebrow + chips
   ========================= */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--accent-deep);
  vertical-align: middle;
  margin: 0 12px 3px;
  opacity: 0.4;
}
.eyebrow.lone::before { display: none; }
.eyebrow.lone::after { margin-left: 10px; }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(255,253,248,0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(20,16,10,0.07);
  box-shadow: var(--shadow-xs), var(--inner-hi);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-2);
}
.chip .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,63,134,0.12);
}
.chip.gold .d { background: var(--gold); box-shadow: 0 0 0 3px rgba(181,139,61,0.15); }
.chip.owed .d { background: var(--owed); box-shadow: 0 0 0 3px rgba(21,122,102,0.12); }
.chip.owe  .d { background: var(--owe);  box-shadow: 0 0 0 3px rgba(179,82,53,0.12); }

/* =========================
   Typography: display, sections
   ========================= */
.display-xxl {
  font-family: var(--display);
  font-size: clamp(52px, 7.8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--text);
}
.display-xl {
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--text);
}
.display-lg {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--text);
}
.display-xxl em, .display-xl em, .display-lg em {
  font-style: italic;
  color: var(--accent);
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 400;
  max-width: 56ch;
}
.prose p { font-size: 16.5px; line-height: 1.68; color: var(--text-2); }
.prose strong { color: var(--text); font-weight: 600; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  padding-left: 48px;
}
.section-num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.35;
}
.section-desc {
  color: var(--text-3);
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  margin-left: auto;
  max-width: 40ch;
  line-height: 1.5;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 220ms ease-out, background 200ms ease-out;
  text-decoration: none;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #FFFDF7;
  box-shadow: var(--shadow-accent), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(45,52,128,0.34), 0 2px 4px rgba(45,52,128,0.14), inset 0 1px 0 rgba(255,255,255,0.18);
  text-decoration: none;
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xs), var(--inner-hi);
}
.btn-ghost:hover {
  background: var(--surface-3);
  text-decoration: none;
}

/* =========================
   Hero
   ========================= */
.hero {
  padding: clamp(40px, 8vw, 96px) 0 clamp(60px, 10vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
}

/* =========================
   Phone mockup
   ========================= */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-10px) rotate(-0.8deg); }
}
.phone {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 390 / 844;
  border-radius: 54px;
  padding: 11px;
  background:
    radial-gradient(circle at 30% 0%, #3a3347 0%, transparent 45%),
    linear-gradient(152deg, #26222D 0%, #0A0806 85%);
  box-shadow:
    0 50px 100px -24px rgba(20,16,10,0.35),
    0 20px 40px -12px rgba(20,16,10,0.22),
    0 0 0 1px rgba(0,0,0,0.7) inset,
    0 1px 0 rgba(255,248,232,0.10) inset;
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 5;
}

/* Phone content: a pared-down V10 chat.
   Top padding clears the notch (notch ends at 8+28=36px) with breathing room. */
.p-head {
  padding: 52px 18px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--hairline);
}
.p-back {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.p-av {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F4B860, #E8843F);
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  display: flex; align-items: center; justify-content: center;
}
.p-title {
  flex: 1; min-width: 0;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.p-title .sub {
  font-size: 10px; font-weight: 500;
  color: var(--owed);
  display: flex; align-items: center; gap: 4px;
}
.p-title .sub::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--owed);
}

.p-net {
  margin: 12px 14px 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(181,139,61,0.35), transparent 42%),
    linear-gradient(135deg, #4A5199 0%, #2E3378 55%, #1A1D4C 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent);
}
.p-net .lbl {
  font-size: 8px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,248,232,0.72);
  font-weight: 700;
}
.p-net .big {
  font-family: var(--num);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.035em;
  margin: 4px 0 2px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.p-net .sub {
  font-size: 10.5px;
  color: rgba(255,248,232,0.85);
}

.p-chat {
  flex: 1;
  padding: 10px 14px 14px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.p-msg {
  max-width: 76%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.35;
}
.p-msg.you {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.p-msg.them {
  align-self: flex-start;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.p-card {
  align-self: stretch;
  margin-top: 4px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}
.p-card .eb {
  font-size: 8.5px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 3px;
}
.p-card .t {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.p-card .t .desc {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}
.p-card .t .amt {
  font-family: var(--num);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.p-card .sub {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 2px;
}

.p-input {
  padding: 10px 14px 16px;
  border-top: 1px solid var(--hairline);
  display: flex; gap: 8px; align-items: center;
}
.p-input .field {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  color: var(--text-3);
}
.p-input .send {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* =========================
   Feature grid
   ========================= */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section-alt {
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20,16,10,0.03) 40%, rgba(20,16,10,0.03) 60%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-sm), var(--inner-hi);
  position: relative;
  overflow: hidden;
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.feature .icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.feature h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.1;
}
.feature h3 em { font-style: italic; color: var(--accent); }
.feature p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.feature.gold { border-top: 1px solid var(--gold); }
.feature.gold .icon { background: var(--gold-soft); color: var(--gold); }
.feature.owed .icon { background: var(--owed-soft); color: var(--owed); }
.feature.owe  .icon { background: var(--owe-soft);  color: var(--owe); }

/* =========================
   Principles (ivory list)
   ========================= */
.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.principle {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 640px) {
  .principle { grid-template-columns: 60px 1fr; gap: 16px; }
}
.principle .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}
.principle h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.1;
}
.principle p {
  font-size: 15px;
  line-height: 1.58;
  color: var(--text-2);
  margin: 0;
  max-width: 62ch;
}

/* =========================
   CTA block
   ========================= */
.cta-block {
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(36px, 6vw, 72px) clamp(28px, 5vw, 64px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(181,139,61,0.30), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(36,40,90,1) 0%, transparent 55%),
    linear-gradient(135deg, #4A5199 0%, #2E3378 55%, #1A1D4C 100%);
  color: #FFFDF7;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,248,232,0.18), transparent 65%);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,139,61,0.22), transparent 70%);
  pointer-events: none;
}
.cta-block .eyebrow { color: rgba(255,248,232,0.72); }
.cta-block .eyebrow::before, .cta-block .eyebrow::after { background: rgba(255,248,232,0.4); }
.cta-block h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 6px 0 12px;
  font-weight: 400;
  color: #FFFDF7;
  position: relative;
  max-width: 18ch;
}
.cta-block h2 em { font-style: italic; color: var(--gold); }
.cta-block p {
  font-size: 16.5px;
  line-height: 1.56;
  color: rgba(255,248,232,0.85);
  max-width: 52ch;
  margin: 0 0 28px;
  position: relative;
}
.cta-block .btn-primary {
  background: #FFFDF7;
  color: var(--accent-deep);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cta-block .btn-primary:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.cta-block .btn-ghost {
  background: transparent;
  color: #FFFDF7;
  border-color: rgba(255,248,232,0.3);
  box-shadow: none;
}
.cta-block .btn-ghost:hover {
  background: rgba(255,248,232,0.08);
  border-color: rgba(255,248,232,0.5);
}

/* =========================
   Footer
   ========================= */
.site-footer {
  padding: 56px 0 48px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
.footer-grid h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.footer-grid ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-grid a {
  color: var(--text-2);
  font-size: 14px;
}
.footer-grid a:hover { color: var(--text); text-decoration: none; }
.footer-tag {
  font-size: 14px; line-height: 1.55;
  color: var(--text-3);
  max-width: 32ch;
  margin: 12px 0 0;
}
.footer-fine {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; gap: 20px; justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-4);
  letter-spacing: 0.005em;
}

/* =========================
   Article (privacy / support)
   ========================= */
.article {
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
}
.article h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 400;
  margin: 0 0 12px;
}
.article h1 em { font-style: italic; color: var(--accent); }
.article .meta {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  font-family: var(--display);
  font-style: italic;
}
.article h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 14px;
  line-height: 1.15;
  scroll-margin-top: 80px;
}
.article h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: -0.005em;
}
.article p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--text-2);
  margin: 0 0 14px;
}
.article ul, .article ol {
  padding-left: 24px;
  margin: 0 0 18px;
}
.article li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 6px;
}
.article strong { color: var(--text); font-weight: 600; }
.article a { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }
.article a:hover { text-decoration: none; border-bottom-color: var(--accent); }
.article hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14.5px;
}
.article th, .article td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article th {
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-2);
}
.article td { color: var(--text-2); line-height: 1.55; }

.callout {
  padding: 18px 22px;
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  border-radius: 0 14px 14px 0;
  margin: 24px 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   Support-specific
   ========================= */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋';
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  transition: transform 200ms ease-out;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .answer {
  padding-top: 12px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.68;
}

/* =========================
   Entrance animations (tasteful)
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.reveal.d1 { animation-delay: 100ms; }
.reveal.d2 { animation-delay: 200ms; }
.reveal.d3 { animation-delay: 320ms; }
.reveal.d4 { animation-delay: 440ms; }
.reveal.d5 { animation-delay: 560ms; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
