/* ════════════════════════════════════════════════════════
   ZIPPY — shared site styles
   Cool, editorial, serif-headed. Continuous flow (not slides).
   ════════════════════════════════════════════════════════ */

:root {
  /* Cool neutrals */
  --ink: #191c28;
  --ink-2: #20243a;       /* cool navy for dark sections */
  --ink-3: #2a2f4d;
  --paper: #f6f7f9;       /* cool off-white page base */
  --paper-2: #eceef3;     /* cooler panel */
  --surface: #ffffff;
  --line: #e6e8ee;
  --line-2: #d6dae4;
  --muted: #565b6a;
  --muted-2: #878d9d;

  /* Brand — Zippy orange primary, violet accent, steel-blue data, green positive */
  --primary: #f97316;
  --primary-2: #ea580c;
  --primary-soft: #fff1e8;
  --primary-line: #fcd9bd;
  --blue: #2f6fe0;
  --blue-soft: #e8f0fd;
  --blue-line: #c4d8f8;
  --accent: #6d38f6;
  --accent-2: #5a28dd;
  --accent-soft: #f0ebfe;
  --green: #15a06b;
  --green-soft: #e3f4ec;
  --green-line: #b5e3cd;

  --shadow-xs: 0 1px 2px rgba(25,28,40,.05);
  --shadow-sm: 0 1px 2px rgba(25,28,40,.04), 0 2px 8px rgba(25,28,40,.05);
  --shadow-md: 0 6px 16px rgba(25,28,40,.07), 0 18px 44px rgba(25,28,40,.08);
  --shadow-lg: 0 10px 30px rgba(25,28,40,.10), 0 36px 80px rgba(25,28,40,.12);
  --shadow-frame: 0 12px 28px rgba(40,30,90,.14), 0 40px 90px rgba(40,30,90,.18);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --maxw: 1180px;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif; /* @kind font */
  --sans: 'Inter', system-ui, -apple-system, sans-serif; /* @kind font */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: -0.012em; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* Eyebrow / labels */
.eyebrow {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--primary-2);
}
.eyebrow.blue { color: var(--blue); }
.eyebrow.accent { color: var(--accent-2); }
.eyebrow.muted { color: var(--muted-2); }
.lede { font-family: var(--sans); color: var(--muted); font-size: 19px; line-height: 1.6; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans);
  font-weight: 600; font-size: 15px; padding: 12px 20px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease, color .16s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-xs); }
.btn-dark:hover { background: #000; transform: translateY(-1.5px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-1.5px); box-shadow: 0 8px 20px rgba(249,115,22,.26); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); transform: translateY(-1.5px); box-shadow: 0 8px 20px rgba(109,56,246,.26); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.02); transform: translateY(-1.5px); }
.btn-sm { padding: 9px 15px; font-size: 13.5px; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }

/* ── Header ── */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line); transition: border-color .2s, box-shadow .2s, background .2s;
}
header.site.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 1px 12px rgba(20,22,31,.05); }
.nav { display: flex; align-items: center; height: 54px; gap: 26px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 27px; height: 27px; }
.brand span { font-family: var(--sans); font-weight: 800; font-size: 21px; letter-spacing: -0.035em; color: var(--ink); }
.nav-links, .nav-secondary { display: flex; gap: 2px; margin-left: 6px; }
.nav-links a, .nav-secondary a {
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--muted); padding: 8px 13px; border-radius: 9px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-secondary a:hover { color: var(--ink); background: rgba(0,0,0,.035); }
.nav-links a.active, .nav-secondary a.active { color: var(--primary-2); font-weight: 700; background: var(--primary-soft); }
/* Resources dropdown (CSS-only, hover/focus reveal) */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 6px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: translateY(-1px) rotate(45deg); opacity: .55;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px; display: none; flex-direction: column;
  background: #fff; border: 1px solid rgba(10,11,17,.08); border-radius: 12px;
  box-shadow: 0 14px 32px rgba(10,11,17,.13); padding: 6px; z-index: 2000;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 8px; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-secondary { display: flex; gap: 2px; }
.nav-secondary { margin-left: 0; }
.nav-right .signin {
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: #fff;
  background: var(--ink); padding: 9px 18px; border-radius: 999px; margin-left: 10px;
  transition: background .16s, transform .16s, box-shadow .16s;
}
.nav-right .signin:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(249,115,22,.26); }
/* Mobile hamburger — hidden on desktop, revealed in the ≤940px block below. */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; margin-left: auto; padding: 0; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.nav-toggle:hover { border-color: var(--primary-line); }
.nav-toggle span {
  display: block; width: 18px; height: 2px; margin: 0 auto; border-radius: 2px;
  background: var(--ink); transition: transform .2s, opacity .2s;
}
header.site.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.site.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
header.site.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Sections / rhythm ── */
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 47px); font-weight: 500; }
.sec-head .lede { margin-top: 18px; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── Product frame (cool device chrome, Edexia-like) ── */
.frame {
  border-radius: var(--r-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-frame);
}
.frame.grad {
  padding: 8px; border: 0;
  background: linear-gradient(150deg, #431407 0%, #c2410c 45%, #f97316 100%);
  border-radius: 22px;
}
.frame.grad > .frame-inner { border-radius: 15px; overflow: hidden; background: #fff; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: #f1f2f5; border-bottom: 1px solid var(--line); }
.browser-bar .b { width: 11px; height: 11px; border-radius: 50%; background: #cdd1da; }
.browser-bar .url { margin-left: 12px; font-size: 12px; color: var(--muted-2); background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 4px 12px; font-family: var(--sans); }
.frame img { width: 100%; display: block; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }

/* ── Footer ── */
footer.site { background: var(--paper-2); color: var(--ink); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.foot-brand .brand span { color: var(--ink); }
.foot-brand p { font-family: var(--sans); margin-top: 18px; color: var(--muted); font-size: 14.5px; max-width: 320px; line-height: 1.65; }
.foot-col h5 { font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin: 0 0 16px; }
.foot-col a { display: block; font-family: var(--sans); color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 16px; flex-wrap: wrap; }
.foot-bottom p, .foot-bottom a { font-family: var(--sans); color: var(--muted-2); font-size: 13px; }
.foot-bottom a:hover { color: var(--ink); }

/* ════════ COMPONENTS ════════ */

/* Try-box */
.trybox {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 10px; text-align: left; max-width: 600px;
}
.trybox-label { display: flex; align-items: center; gap: 8px; padding: 12px 14px 10px; font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.trybox-label .free { color: var(--green); font-weight: 600; }
.trybox-field { border: 1px solid var(--line); border-radius: var(--r-md); background: #fcfcfd; padding: 15px 15px 11px; transition: border-color .18s, box-shadow .18s; }
.trybox-field:focus-within { border-color: var(--primary-line); box-shadow: 0 0 0 4px var(--primary-soft); }
.trybox textarea { width: 100%; border: 0; background: transparent; resize: none; outline: none; font-family: var(--sans); font-size: 15px; line-height: 1.55; color: var(--ink); min-height: 70px; }
.trybox textarea::placeholder { color: var(--muted-2); }
.trybox-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.upload-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; padding: 6px 8px; border-radius: 8px; }
.upload-link:hover { color: var(--ink); background: rgba(0,0,0,.03); }
.upload-link svg { width: 15px; height: 15px; }
.trybox-actions .spacer { flex: 1; }
.frameworks { display: flex; align-items: center; gap: 6px; padding: 11px 6px 4px; flex-wrap: wrap; }
.fw-label { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--muted-2); margin-right: 4px; }
.fw-pill { font-family: var(--sans); font-size: 12.5px; font-weight: 500; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--muted); cursor: pointer; transition: all .15s; }
.fw-pill:hover { border-color: var(--ink); color: var(--ink); }
.fw-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.fw-pill.active .tag { color: var(--accent); }

/* Skill dot meter */
.skill-row { display: grid; grid-template-columns: 88px auto 1fr; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.skill-row .sname { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); }
.dots { display: flex; gap: 5px; }
.dot-pip { width: 11px; height: 11px; border-radius: 50%; background: var(--primary-soft); border: 1.5px solid var(--primary-line); transition: background .4s ease, border-color .4s; }
.dot-pip.on { background: var(--primary); border-color: var(--primary); }
.skill-row .sdesc { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }

/* Feature slider (tabs left, screenshot right) */
.fslider { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 44px; align-items: start; }
.ftabs { display: flex; flex-direction: column; }
.ftab { text-align: left; background: none; border: 0; border-left: 2px solid var(--line); padding: 18px 22px; cursor: pointer; transition: border-color .2s, background .2s; position: relative; }
.ftab h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--muted); transition: color .2s; letter-spacing: -0.01em; }
.ftab p { font-family: var(--sans); font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-top: 0; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease, margin-top .3s; }
.ftab.active { border-left-color: var(--primary); background: linear-gradient(90deg, var(--primary-soft), transparent 80%); }
.ftab.active h3 { color: var(--ink); }
.ftab.active p { max-height: 160px; opacity: 1; margin-top: 9px; }
.ftab:hover h3 { color: var(--ink); }
.fpanel { position: relative; }
.fpanel-stage { position: relative; }
.fshot { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; pointer-events: none; }
.fshot.active { opacity: 1; position: relative; pointer-events: auto; }

/* Generic feature row (alternating text + screenshot) */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.frow.reverse > .frow-media { order: -1; }
.frow-copy .eyebrow { display: block; margin-bottom: 14px; }
.frow-copy h2 { font-size: clamp(26px,3.4vw,38px); font-weight: 500; }
.frow-copy h3 { font-size: clamp(22px,2.8vw,30px); font-weight: 500; }
.frow-copy .lede { margin-top: 16px; font-size: 17px; }
.frow-copy ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.frow-copy li { display: flex; align-items: flex-start; gap: 11px; font-family: var(--sans); font-size: 15.5px; color: var(--ink); }
.frow-copy li svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Inline icon chip */
.chip-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.chip-ic svg { width: 21px; height: 21px; }

/* Subpage hero */
.phero { padding: 60px 0 72px; }
.phero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.phero .eyebrow { display: block; margin-bottom: 16px; }
.phero h1 { font-size: clamp(38px, 5vw, 58px); font-weight: 500; letter-spacing: -0.02em; max-width: 15ch; }
.phero h1 em { font-style: italic; color: var(--primary); background: linear-gradient(120deg, #f97316 0%, #ea580c 42%, #6d38f6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 3px 14px rgba(109,56,246,.22)); }
.phero .sub { font-family: var(--sans); margin-top: 20px; max-width: 500px; font-size: 19px; color: var(--muted); line-height: 1.55; }
.phero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.phero-media { position: relative; }
@media (max-width: 940px) {
  .phero-grid { grid-template-columns: 1fr; gap: 38px; }
  .phero-media { order: -1; }
}

/* Resource / capability grid */
.rgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rcell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; transition: transform .16s, box-shadow .16s, border-color .16s; }
.rcell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.rcell .ric { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px; background: var(--primary-soft); color: var(--primary-2); }
.rcell .ric svg { width: 19px; height: 19px; }
.rcell h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.rcell p { font-family: var(--sans); margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 940px) { .rgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .rgrid { grid-template-columns: 1fr; } }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step .snum { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--primary-line); line-height: 1; }
.step h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; margin-top: 12px; letter-spacing: -0.01em; }
.step p { font-family: var(--sans); margin-top: 9px; color: var(--muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr; gap: 22px; } }

/* Zippy Discover highlight band */
.discover-band { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; background: linear-gradient(165deg, #fff7ed 0%, #fffaf5 60%, #fff 100%); border: 1.5px solid var(--primary-line); border-radius: var(--r-xl); padding: 48px; box-shadow: 0 14px 44px rgba(249,115,22,.10); }
.discover-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .01em; padding: 7px 15px; border-radius: 999px; box-shadow: 0 6px 16px rgba(249,115,22,.28); }
.discover-badge svg { width: 16px; height: 16px; }
.discover-copy h2 { margin-top: 18px; font-size: clamp(26px,3.1vw,38px); }
.discover-copy .lede { margin-top: 14px; }
.discover-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.discover-list li { display: flex; align-items: flex-start; gap: 11px; font-family: var(--sans); font-size: 15px; color: var(--ink); line-height: 1.45; }
.discover-list li svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.discover-media .frame { box-shadow: var(--shadow-lg); }
@media (max-width: 940px) { .discover-band { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; } .discover-media { order: -1; } }

/* Value cards */
.vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vcard .chip-ic { margin-bottom: 18px; }
.vcard h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.vcard p { font-family: var(--sans); margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 940px) { .vgrid { grid-template-columns: 1fr; } }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xs); transition: transform .18s, box-shadow .18s; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { height: 150px; background: var(--paper-2); display: grid; place-items: center; position: relative; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post .tag { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-2); }
.post h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.2; margin-top: 10px; }
.post p { font-family: var(--sans); margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
.post .meta { font-family: var(--sans); margin-top: 16px; font-size: 12.5px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.blog-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 44px; }
.blog-feature .bf-media { background: var(--ink-2); min-height: 320px; position: relative; overflow: hidden; }
.blog-feature .bf-media img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.blog-feature .bf-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature h2 { font-size: clamp(26px,3vw,36px); font-weight: 500; margin-top: 14px; }
.blog-feature p { font-family: var(--sans); margin-top: 16px; color: var(--muted); font-size: 16px; line-height: 1.6; }
@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr; } .blog-feature { grid-template-columns: 1fr; } .blog-feature .bf-media { min-height: 200px; } .blog-feature .bf-body { padding: 32px; } }

/* CTA panel (shared) */
.cta-band { background: var(--paper-2); border: 1px solid var(--line); color: var(--ink); border-radius: var(--r-xl); padding: 60px 48px; text-align: center; }
.cta-band h2 { color: var(--ink); font-size: clamp(28px,3.6vw,42px); font-weight: 500; }
.cta-band p { font-family: var(--sans); margin: 16px auto 0; max-width: 520px; color: var(--muted); font-size: 17px; }
.cta-band .cta-btns { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 600px) { .cta-band { padding: 44px 24px; } }

/* ── Responsive ── */
@media (max-width: 940px) {
  /* Collapse the nav into a hamburger; reveal a stacked dropdown when open. */
  header.site .nav { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links, .nav-right { display: none; }
  /* Let the bar grow to wrap the dropdown rows (it has a fixed 54px height),
     so the menu sits inside the header background instead of overflowing it. */
  header.site.nav-open .nav { height: auto; row-gap: 0; padding-bottom: 12px; }
  header.site.nav-open .nav-links,
  header.site.nav-open .nav-right {
    display: flex; flex-direction: column; align-items: stretch;
    flex-basis: 100%; width: 100%; gap: 2px; margin: 4px 0 0;
  }
  header.site.nav-open .nav-secondary { display: flex; flex-direction: column; gap: 2px; margin: 0; }
  header.site.nav-open .nav-links a,
  header.site.nav-open .nav-secondary a { padding: 11px 12px; border-radius: 10px; }
  /* On mobile the dropdown expands inline (no hover): show its items indented. */
  header.site.nav-open .nav-dropdown { flex-direction: column; align-items: stretch; }
  header.site.nav-open .nav-dropdown > a::after { display: none; }
  header.site.nav-open .nav-dropdown-menu {
    position: static; display: flex; border: 0; box-shadow: none; padding: 0 0 0 12px; min-width: 0;
  }
  header.site.nav-open .nav-right .signin { margin: 6px 0 0; text-align: center; }
  .fslider { grid-template-columns: 1fr; gap: 28px; }
  .frow { grid-template-columns: 1fr; gap: 32px; }
  .frow.reverse > .frow-media { order: 0; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .sec { padding: 68px 0; }
  .foot-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
