/* ============================================================
   ZICORP ENTERPRISES — DESIGN TOKENS
   Palette grounded in the trade: asphalt/shingle charcoal,
   storm-flare orange (urgency/missed revenue), blueprint blue
   (infrastructure/trust/data). Two accents, two distinct jobs.
   ============================================================ */

:root {
  --bg: #14171a;
  --bg-panel: #1b1f23;
  --bg-panel-2: #20262b;
  --bg-raised: #262c31;
  --line: #2d3339;
  --line-bright: #3a4148;

  --text: #f3f1ea;
  --text-muted: #9aa1a8;
  --text-dim: #6b7278;

  --orange: #ff5c35;
  --orange-dim: #c8471f;
  --orange-glow: rgba(255, 92, 53, 0.18);

  --blue: #4fa3c4;
  --blue-bright: #7cc6e8;
  --blue-glow: rgba(79, 163, 196, 0.16);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1120px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.03em; }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow.blue { color: var(--blue-bright); }
.eyebrow.blue::before { background: var(--blue-bright); }

.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 640px;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #14171a;
  font-weight: 600;
}
.btn-primary:hover { background: #ff7451; transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--line-bright);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

/* ---------- Splash Screen ---------- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
}
#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
.splash-logo {
  height: 56px;
  width: auto;
  opacity: 0;
  animation: splash-slide-left 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.splash-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.splash-flash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  margin-left: -110px;
  margin-top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,198,232,0.85) 0%, rgba(255,92,53,0.35) 40%, rgba(124,198,232,0) 72%);
  opacity: 0;
  transform: scale(0.25);
  animation: splash-flash-pulse 1.6s ease forwards;
  pointer-events: none;
}
.splash-inc {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
  opacity: 0;
  animation: splash-slide-right 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes splash-slide-left {
  0%   { opacity: 0; transform: translateX(-90px) scale(0.92); filter: brightness(1) drop-shadow(0 0 0 rgba(124,198,232,0)); }
  42%  { opacity: 1; transform: translateX(6px) scale(1.01); }
  50%  { opacity: 1; transform: translateX(0) scale(1); filter: brightness(1.9) drop-shadow(0 0 16px rgba(124,198,232,0.85)); }
  66%  { filter: brightness(1) drop-shadow(0 0 0 rgba(124,198,232,0)); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes splash-slide-right {
  0%   { opacity: 0; transform: translateX(70px); filter: brightness(1) drop-shadow(0 0 0 rgba(255,92,53,0)); }
  42%  { opacity: 1; transform: translateX(-5px); }
  50%  { opacity: 1; transform: translateX(0); filter: brightness(1.9) drop-shadow(0 0 12px rgba(255,92,53,0.85)); }
  66%  { filter: brightness(1) drop-shadow(0 0 0 rgba(255,92,53,0)); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes splash-flash-pulse {
  0%, 40% { opacity: 0; transform: scale(0.25); }
  50%     { opacity: 0.9; transform: scale(1); }
  68%     { opacity: 0; transform: scale(1.7); }
  100%    { opacity: 0; transform: scale(1.7); }
}
@media (prefers-reduced-motion: reduce) {
  #splash { display: none; }
  .splash-logo { animation: none; opacity: 1; }
}

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 23, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--orange); }
.logo-img { height: 30px; width: auto; display: block; }
.logo-inc {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 2px;
}
.footer-logo-img { height: 26px; margin-bottom: 10px; }
.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--orange);
  color: #14171a;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-bright);
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--radius);
}

/* ---------- Ticker (signature element) ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-panel), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg-panel), transparent); }
.ticker-track {
  display: inline-flex;
  gap: 48px;
  padding: 14px 0;
  animation: ticker-scroll 34s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.ticker-track span.t-time { color: var(--text-dim); }
.ticker-track span.t-miss { color: var(--orange); }
.ticker-track span.t-text { color: var(--blue-bright); }
.ticker-track span.t-book { color: #7bd88f; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,23,26,0.55) 0%, rgba(20,23,26,0.88) 65%, rgba(20,23,26,1) 100%),
    linear-gradient(90deg, rgba(20,23,26,0.75) 0%, rgba(20,23,26,0.25) 55%);
}
.hero-bg-overlay.light {
  background:
    linear-gradient(180deg, rgba(20,23,26,0.30) 0%, rgba(20,23,26,0.62) 65%, rgba(20,23,26,0.85) 100%),
    linear-gradient(90deg, rgba(20,23,26,0.55) 0%, rgba(20,23,26,0.08) 55%);
}
.hero > .wrap {
  position: relative;
  z-index: 2;
}
.hero .proof {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--blue-bright);
  border-left: 2px solid var(--blue);
  padding-left: 14px;
}

/* ---------- AI Notification Bubble (About hero) ---------- */
.ai-bubble-card {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 3;
  width: 300px;
  max-width: 78vw;
  background: rgba(27, 31, 35, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--blue);
  box-shadow: 0 0 0 1px rgba(79,163,196,0.15), 0 18px 40px rgba(0,0,0,0.45);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-family: var(--font-mono);
}
.ai-bubble-card .bb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-dim);
}
.ai-bubble-card .bb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.ai-bubble-card .bb-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.ai-bubble-card .bb-line:last-child { margin-bottom: 0; }
.ai-bubble-card .bb-line.bb-ai { color: var(--blue-bright); }
.ai-bubble-card .bb-line.bb-booked { color: #7bd88f; }
.ai-bubble-card .bb-line strong { color: var(--text); font-weight: 500; }
@media (max-width: 720px) {
  .ai-bubble-card { right: 5%; bottom: 6%; width: 260px; padding: 14px 16px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }
.section-head { max-width: 680px; margin-bottom: 52px; }

/* ---------- Comparison table ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare .row { display: contents; }
.compare .cell {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare .cell.label {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-panel);
}
.compare .cell.old { color: var(--text-muted); }
.compare .cell.new { color: var(--text); background: var(--orange-glow); }
.compare .head { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 20px; }
.compare .head.label { background: var(--bg-panel); color: var(--text-dim); }
.compare .head.old { color: var(--text-dim); }
.compare .head.new { color: var(--orange); background: rgba(255,92,53,0.08); }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: 32px 26px;
  position: relative;
}
.step .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--orange);
  margin-bottom: 22px;
  display: block;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.92rem; }
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 32px;
  color: var(--text-dim);
  z-index: 3;
  background: var(--bg);
}

/* ---------- Feature grid (dashboard) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--bg-panel);
  padding: 30px;
}
.feature .eyebrow { margin-bottom: 12px; }
.feature p { color: var(--text-muted); font-size: 0.92rem; margin-top: 8px; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 760px;
}
.price-card { background: var(--bg-panel); padding: 34px; }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--orange);
  margin: 12px 0 8px;
}
.price-card .amount small { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-muted); text-transform: none; }
.price-card p.desc { color: var(--text-muted); font-size: 0.88rem; }
.roi-note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--text-muted);
  border-left: 2px solid var(--orange);
  padding-left: 16px;
  max-width: 640px;
}
.roi-note strong { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-panel-2));
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 { max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: var(--text-muted); margin: 0 auto; max-width: 500px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Table lists (checks) ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--blue-bright);
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat { background: var(--bg-panel); padding: 26px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--blue-bright); }
.stat .label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

/* ---------- Contact Form ---------- */
.contact-form { margin-top: 30px; }
.hp-field { position: absolute; left: -9999px; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 6px; border: none; }

@media (max-width: 560px) {
  .form-row-split { grid-template-columns: 1fr; }
}

/* ---------- Booking page ---------- */
.booking-shell {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 46px;
}
.booking-embed {
  margin-top: 30px;
  border: 1px dashed var(--line-bright);
  border-radius: var(--radius);
  padding: 60px 24px;
  text-align: center;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 50px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-grid .logo { margin-bottom: 8px; }
.footer-logo-row { display: flex; align-items: flex-end; margin-bottom: 8px; }
.footer-logo-inc { margin-left: 6px; margin-bottom: 4px; }
.footer-meta { color: var(--text-dim); font-size: 0.82rem; font-family: var(--font-mono); }
.footer-contact-label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.footer-contact a {
  color: var(--blue-bright);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-contact a svg { width: 14px; height: 14px; flex: none; }
.footer-contact a:hover { color: var(--text); }
.footer-links { display: flex; gap: 24px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-family: var(--font-mono);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--text-muted); }

/* ---------- Insights (image-card grid) ---------- */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.insight-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: var(--radius);
  overflow: hidden;
}
.insight-card.open { grid-column: 1 / -1; }
.insight-card-trigger { cursor: pointer; }
.insight-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-panel-2);
}
.insight-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(20,23,26,0.15) 0%, rgba(20,23,26,0.65) 100%);
}
.insight-thumb-label {
  background: rgba(20, 23, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 22px;
  border-radius: var(--radius);
}
.insight-thumb-label .l1 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}
.insight-thumb-label .l2 {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-top: 4px;
}
.insight-card-preview { padding: 22px 24px 24px; cursor: pointer; }
.insight-card-preview h3 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.insight-card-preview p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.insight-toggle {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.insight-toggle::after { content: "READ ARTICLE →"; }
.insight-card.open .insight-toggle::after { content: "COLLAPSE ↑"; }
.insight-body {
  display: none;
  padding: 4px 24px 30px;
  max-width: 760px;
}
.insight-card.open .insight-body { display: block; }
.insight-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.insight-body p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 820px;
}
.faq-item { background: var(--bg-panel); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--blue-bright);
  font-size: 1.3rem;
  flex: none;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-answer {
  padding: 0 26px 26px;
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 700px;
}

/* ---------- Legal pages ---------- */
.legal-body { max-width: 760px; }
.legal-body h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.25rem;
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 20px; }
.legal-body .updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

@media (max-width: 720px) {
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card.open { grid-column: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare .head, .compare .cell { border-right: none; }
  .pricing { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  header.site.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-panel);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  header.site.open .nav-cta { display: inline-flex; margin: 0 24px 20px; }
}
