/* ============================================================
   Solomon Systems — shared design system
   ============================================================ */

:root {
  /* Ink / slate (dark anchors only: footer + CTA panels + product cards) */
  --ink-900: #0F172A;   /* deepest slate — footer, CTA band, phone */
  --ink-800: #16213A;   /* dark component bg — feature media, price card */
  --navy-700: #1E293B;  /* card on dark */
  --navy-600: #273549;

  /* Light surfaces */
  --white: #FFFFFF;
  --off: #F5F7FA;       /* light sections */
  --off-2: #EAEEF4;

  /* Accent (the one signal color) — blue */
  --amber: #2563EB;
  --amber-600: #1D4ED8;
  --amber-soft: rgba(37, 99, 235, 0.10);
  --blue-on-dark: #7CA9FF; /* accent that reads on dark panels */
  --gold: #F5A623;         /* review stars stay gold */

  /* Text */
  --ink: #0F172A;       /* near-black primary text on light */
  --muted: #55647A;     /* muted text */
  --ink-on-dark: #E7ECF5;
  --muted-on-dark: #9AA8BD;

  /* Lines */
  --line: #E4E9F1;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing / shape */
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1140px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 43, 0.06);
  --shadow: 0 18px 40px -18px rgba(14, 26, 43, 0.28);
  --shadow-amber: 0 16px 36px -14px rgba(37, 99, 235, 0.42);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section themes — the whole site is light now; dark is reserved for
   the footer and the CTA/product panels (.band, .card--dark, etc.). */
.bg-dark { background: var(--off); color: var(--ink); }
.bg-darkest { background: var(--white); color: var(--ink); }
.bg-light { background: var(--off); color: var(--ink); }
.bg-white { background: var(--white); color: var(--ink); }

/* Dark-panel text context (applies only where a dark surface stays) */
.band .eyebrow { color: var(--blue-on-dark); }
.band .lead, .band p { color: var(--muted-on-dark); }
.band .btn--ghost { color: var(--white); border-color: var(--line-dark); }
.band .btn--ghost:hover { color: var(--blue-on-dark); border-color: var(--blue-on-dark); }
.band .muted, .card--dark .muted { color: var(--muted-on-dark); }

/* Blueprint grid texture — now a faint slate grid on light sections */
.blueprint { position: relative; }
.blueprint::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 78%);
  pointer-events: none;
}
.blueprint > * { position: relative; z-index: 1; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin: 0 0 0.9rem;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn--primary {
  background: var(--amber); color: var(--white);
  box-shadow: var(--shadow-amber);
}
.nav-cta .btn--primary { color: var(--white); }
.btn--primary:hover { background: var(--amber-600); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-600); }
.btn--lg { padding: 1em 1.85em; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 8px; }

/* Logo mark — rounded amber square w/ 3 connected nodes */
.logo-mark { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 13px; border-radius: 9px;
  color: var(--muted); font-weight: 500; font-size: 0.95rem;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(15,23,42,0.05); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 5px; border-radius: 2px;
  background: var(--amber);
}
.nav-links a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px 18px 22px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 13px 12px; font-size: 1.05rem; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--amber-soft); color: var(--amber-600); }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(70px, 10vw, 120px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero h1 {
  color: var(--ink); max-width: 22ch; text-wrap: balance;
  font-size: clamp(2.9rem, 7.4vw, 5.3rem);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.03em;
}
.hero .btn-row .btn--lg { padding: 1.2em 2.4em; font-size: 1.2rem; }
.hero .lead { max-width: 54ch; margin-top: 1.1rem; }
.hero .btn-row { margin-top: 2rem; }
.hero-note { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); }
.hero-note strong { color: var(--ink); font-weight: 600; }

/* ---------- Pipeline (signature element — stays a dark product panel) ---------- */
.pipeline {
  margin-top: clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, #111c31, #0F172A);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3vw, 34px);
  position: relative;
  box-shadow: var(--shadow);
}
.pipeline-cap { display:flex; align-items:center; gap:10px; justify-content:center; margin-bottom: 26px; color: var(--muted-on-dark); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;}
.pipeline-cap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.pipeline-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative; align-items: start;
}
/* connecting line */
.pipeline-line {
  position: absolute; left: 10%; right: 10%; top: 27px; height: 3px;
  background: rgba(157,176,196,0.22); border-radius: 3px; overflow: hidden;
}
.pipeline-pulse {
  position: absolute; top: 0; left: -20%; width: 20%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 3px;
  animation: pulseMove 3.4s linear infinite;
}
@keyframes pulseMove {
  0% { left: -22%; }
  100% { left: 100%; }
}
.pipe-node { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; }
.pipe-dot {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: var(--navy-700); border: 1px solid var(--line-dark);
  color: var(--amber); position: relative; z-index: 2;
}
.pipe-node:nth-child(2) .pipe-dot { animation: nodePop 3.4s ease-in-out infinite; animation-delay: 0s; }
.pipe-node:nth-child(3) .pipe-dot { animation: nodePop 3.4s ease-in-out infinite; animation-delay: 0.68s; }
.pipe-node:nth-child(4) .pipe-dot { animation: nodePop 3.4s ease-in-out infinite; animation-delay: 1.36s; }
.pipe-node:nth-child(5) .pipe-dot { animation: nodePop 3.4s ease-in-out infinite; animation-delay: 2.04s; }
.pipe-node:nth-child(6) .pipe-dot { animation: nodePop 3.4s ease-in-out infinite; animation-delay: 2.72s; }
@keyframes nodePop {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(246,166,35,0); border-color: var(--line-dark); }
  12%, 24% { box-shadow: 0 0 0 6px var(--amber-soft); border-color: var(--amber); }
}
.pipe-label { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1rem; line-height: 1.25; }
.pipe-sub { font-size: 0.82rem; color: var(--muted-on-dark); margin-top: 4px; }

@media (max-width: 720px) {
  .pipeline-track { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .pipeline-line { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pipeline-pulse { animation: none; left: 40%; }
  .pipe-dot { animation: none !important; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d4dbe5; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card--dark { background: var(--navy-700); border-color: var(--line-dark); }
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--muted-on-dark); }

.icon-badge {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--amber-soft); color: var(--amber-600); margin-bottom: 18px;
}
.card--dark .icon-badge { color: var(--amber); }
.icon-badge svg { width: 26px; height: 26px; }

/* numbered step */
.step-num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  background: var(--amber); color: var(--white); margin-bottom: 18px;
}

/* ---------- Section heading block ---------- */
.sec-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Trades grid ---------- */
.trades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .trades { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .trades { grid-template-columns: repeat(2, 1fr); } }
.trade {
  display: flex; align-items: center; gap: 11px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font-weight: 500; color: var(--ink);
  transition: border-color 0.18s, transform 0.18s var(--ease);
}
.trade:hover { border-color: var(--amber); transform: translateY(-2px); }
.trade .tk { color: var(--amber-600); flex: 0 0 auto; display:grid; place-items:center; }
.trade .tk svg { width: 20px; height: 20px; }

/* ---------- Feature row (alternating) ---------- */
.feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: none; }
.feature.rev .feature-media { order: -1; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature.rev .feature-media { order: 0; }
}
.feature-media {
  background: var(--ink-800); border-radius: var(--radius-lg); padding: 30px;
  min-height: 260px; display: grid; place-items: center; color: var(--ink-on-dark);
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.feature h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.feature .eyebrow { margin-bottom: 0.6rem; }
.checklist { list-style: none; margin: 1rem 0 0; padding: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--muted); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231D4ED8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* phone mock used in feature media */
.phone {
  width: 200px; background: var(--ink-900); border: 1px solid var(--line-dark);
  border-radius: 26px; padding: 16px 14px; box-shadow: var(--shadow);
}
.phone .bubble { border-radius: 14px; padding: 10px 13px; font-size: 0.86rem; margin-bottom: 9px; line-height: 1.4; }
.phone .in { background: var(--navy-700); color: var(--ink-on-dark); border-bottom-left-radius: 4px; }
.phone .out { background: var(--amber); color: var(--white); border-bottom-right-radius: 4px; margin-left: auto; max-width: 88%; font-weight: 500; }
.phone .meta { font-size: 0.72rem; color: var(--muted-on-dark); text-align:center; margin-top:4px; }

/* stars (visual element, not a rating claim) */
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 22px; height: 22px; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--ink-800); color: var(--ink-on-dark); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 46px);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.price-card .ribbon {
  position: absolute; top: 20px; right: -38px; transform: rotate(45deg);
  background: var(--amber); color: var(--white); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 46px;
}
.price-amount { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 4px; }
.price-amount .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 4.2rem); color: var(--white); line-height: 1; }
.price-amount .per { color: var(--muted-on-dark); font-size: 1.05rem; }
.price-sub { color: var(--muted-on-dark); margin-bottom: 22px; }
.price-features { list-style: none; margin: 24px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
@media (max-width: 600px){ .price-features { grid-template-columns: 1fr; } }
.price-features li { position: relative; padding-left: 30px; color: var(--ink-on-dark); }
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- Callout / quote band ---------- */
.band {
  background: var(--ink-900); color: var(--white); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.band h2 { color: var(--white); }
.band .lead { color: var(--muted-on-dark); }

/* ---------- Placeholder (Results / Contact) ---------- */
.placeholder {
  border: 1.5px dashed #c4cdd9; border-radius: var(--radius); padding: 26px;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(91,107,124,0.04) 12px, rgba(91,107,124,0.04) 24px);
  color: var(--muted);
}
.placeholder .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-600); background: var(--amber-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.placeholder h3 { color: var(--ink); }
.placeholder--dark { border-color: rgba(255,255,255,0.22); color: var(--muted-on-dark); background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 24px); }
.placeholder--dark h3 { color: var(--white); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 4px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; list-style: none; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--amber-600); font-family: var(--font-body); transition: transform 0.2s;
}
.faq details[open] summary::after { content: "\2013"; }
.faq summary:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 6px; }
.faq p { color: var(--muted); padding: 0 40px 16px 4px; margin: 0; }

/* contact methods */
.contact-card {
  display:flex; align-items:flex-start; gap:16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.contact-card .icon-badge { margin-bottom: 0; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.contact-card p { margin: 0; color: var(--muted); }

/* ---------- Tools strip ---------- */
.tools { display: flex; flex-wrap: wrap; gap: 12px 14px; justify-content: center; }
.tool-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy-700); border: 1px solid var(--line-dark); color: var(--ink-on-dark);
  padding: 11px 18px; border-radius: 999px; font-weight: 500; font-size: 0.95rem;
}
.tool-chip .tk { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--muted-on-dark); padding: 64px 0 30px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted-on-dark); transition: color 0.15s; }
.footer-links a:hover { color: var(--amber); }
.footer-links a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
.footer-brand p { color: var(--muted-on-dark); max-width: 34ch; margin-top: 14px; font-size: 0.95rem; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 0.86rem;
}
.ph { color: var(--amber); font-style: normal; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--amber); color: var(--white); padding: 10px 16px; border-radius: 8px; font-weight: 600;
  transition: top 0.15s;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   Reviews & video testimonials (populate via assets/reviews.js)
   ============================================================ */

/* Hero trust row — platform badges with star strip */
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px;
  margin-top: 26px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
}
.trust-badge .plat {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line);
}
.trust-badge .plat svg { width: 18px; height: 18px; }
.trust-badge .stars { display: inline-flex; align-items: center; gap: 2px; }
.trust-badge .stars svg { width: 16px; height: 16px; }
.trust-badge .tb-txt { line-height: 1.15; }
.trust-badge .tb-txt b { color: var(--ink); font-family: var(--font-display); }
.trust-badge .tb-txt span { display: block; font-size: 0.76rem; color: var(--muted); }
.trust-sep { width: 1px; height: 30px; background: var(--line); }
@media (max-width: 560px) { .trust-sep { display: none; } }

/* Review (text) cards */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d4dbe5; }
.review-card .stars svg { width: 18px; height: 18px; }
.review-card .quote { color: var(--ink); font-size: 1.02rem; line-height: 1.55; margin: 0; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600;
  background: var(--amber-soft); color: var(--amber-600); font-size: 1rem;
}
.review-card .who b { display: block; color: var(--ink); font-size: 0.95rem; }
.review-card .who span { display: block; color: var(--muted); font-size: 0.83rem; }
.review-card .src { margin-left: auto; opacity: 0.7; }
.review-card .src svg { width: 20px; height: 20px; }

/* Video testimonial cards */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.video-thumb {
  position: relative; aspect-ratio: 16 / 10; background: var(--ink-900);
  display: grid; place-items: center; overflow: hidden;
}
.video-thumb img, .video-thumb video, .video-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0;
}
.video-thumb .play {
  position: relative; z-index: 2; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(37,99,235,0.95); display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.5); transition: transform 0.18s var(--ease);
}
.video-card:hover .video-thumb .play { transform: scale(1.08); }
.video-thumb .play svg { width: 24px; height: 24px; color: var(--white); margin-left: 3px; }
.video-thumb .ph-label {
  position: absolute; z-index: 2; bottom: 12px; left: 12px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-on-dark); background: rgba(10,20,34,0.7); padding: 4px 10px; border-radius: 999px;
}
.video-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.video-body .stars svg { width: 18px; height: 18px; }
.video-body .quote { color: var(--ink); margin: 0; line-height: 1.5; }
.video-body .who b { color: var(--ink); }
.video-body .who span { color: var(--muted); font-size: 0.86rem; }

/* Empty-state (honest, shown until real reviews are added) */
.reviews-empty {
  border: 1.5px dashed #c4cdd9; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px); text-align: center; max-width: 720px; margin: 0 auto;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(91,107,124,0.04) 12px, rgba(91,107,124,0.04) 24px);
}
.reviews-empty .pill { margin-bottom: 16px; }
.reviews-empty h3 { color: var(--ink); }
.reviews-empty p { color: var(--muted); max-width: 52ch; margin: 0 auto 8px; }
.reviews-empty code {
  font-size: 0.86rem; background: var(--off-2); padding: 2px 8px; border-radius: 6px; color: var(--ink);
}

/* Aggregate rating strip */
.rating-strip {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 22px; box-shadow: var(--shadow-sm);
}
.rating-strip .big { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.rating-strip .stars svg { width: 20px; height: 20px; }
.rating-strip .rs-meta { color: var(--muted); font-size: 0.9rem; }

/* misc */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: 10px; }
.muted { color: var(--muted); }
.bg-dark .muted, .bg-darkest .muted { color: var(--muted); }
.band .muted, .card--dark .muted { color: var(--muted-on-dark); }
.pill {
  display:inline-flex; align-items:center; gap:8px; background: var(--amber-soft); color: var(--amber-600);
  border:1px solid rgba(37,99,235,0.3); padding:7px 14px; border-radius:999px; font-weight:600; font-size:0.84rem;
}
