/* ===========================================================
   Cori Marketing Site — Design System
   =========================================================== */

:root {
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-800: #1e3a8a;
  --electric: #2230ff;
  --cyan: #06b6d4;
  --success: #059669;

  --ink: #0b1020;
  --slate: #475569;
  --muted: #64748b;

  --bg: #f7f9fc;
  --card: #ffffff;
  --line: #e6ebf2;

  --hero-grad: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #06b6d4 100%);
  --brand-grad: linear-gradient(120deg, var(--electric), var(--cyan));

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.16);

  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--slate); margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.section {
  padding: 84px 0;
}
.section-tight { padding: 56px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--brand-600); background: rgba(37,99,235,0.06); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 252, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}
.brand-name span { color: var(--brand-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-700);
  background: rgba(37, 99, 235, 0.08);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 16px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links a { padding: 12px 14px; }
  .nav-open .nav-links { max-height: 600px; padding: 10px 16px 16px; }
  .nav-actions .btn-outline { display: none; }
}

/* ---------- Landing pages (no primary nav) ---------- */
.site-header--lp .nav-actions { margin-left: auto; }
@media (max-width: 880px) {
  .site-header--lp .nav-actions .btn-outline { display: inline-flex; }
}

.lp-lead-grid { display: grid; gap: 28px; margin-top: 28px; }
@media (min-width: 880px) {
  .lp-lead-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---------- Monthly leak calculator ---------- */
.leak-result { text-align: center; margin: 22px 0 6px; }
.leak-figure {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-700);
  line-height: 1.05;
}
.leak-sub { color: var(--slate); font-weight: 600; }
.leak-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 0 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--brand-700); font-weight: 700; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 0 18px; margin: 0; }

/* ---------- Exit-intent modal ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal[hidden] { display: none; }
.exit-modal__backdrop { position: absolute; inset: 0; background: rgba(11, 16, 32, 0.55); }
.exit-modal__card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
}
.exit-modal__x {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  color: #fff;
  padding: 120px 0 110px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(6,182,212,0.55), transparent 70%);
  top: -160px; right: -120px;
  animation: float-a 16s ease-in-out infinite;
}
.hero::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%);
  bottom: -180px; left: -100px;
  animation: float-b 20s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.12); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.08); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(120deg, #fff, #bcd9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.trust-row {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.trust-row .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.trust-badge img { height: 22px; width: auto; border-radius: 4px; }

/* ---------- Stats band ---------- */
.stats-band {
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 26px 22px;
  text-align: center;
  border: 1px solid var(--line);
}
.stat-card .num {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .lbl { font-size: 0.85rem; color: var(--muted); font-weight: 600; margin-top: 4px; }

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}
.card .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
.card a.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-700);
  text-decoration: none;
}
.card a.card-link:hover { text-decoration: underline; }

/* ---------- Feature deep-dive sections ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-visual {
  background: var(--brand-grad);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-md);
}
.feature-visual-inner {
  background: var(--card);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 36px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.feature-visual-inner .big-icon { font-size: 3.4rem; }
.feature-visual-inner img.shot { border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

.feature-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.feature-copy ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--slate);
  font-weight: 500;
}
.feature-copy ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-visual { order: 0; }
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Flow diagram ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}
.flow-node {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 130px;
}
.flow-node .sub { display: block; font-weight: 500; font-size: 0.76rem; color: var(--muted); margin-top: 4px; }
.flow-arrow { color: var(--brand-600); font-size: 1.4rem; font-weight: 800; }
@media (max-width: 720px) {
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote-card .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.quote-person .name { font-weight: 700; font-size: 0.92rem; }
.quote-person .role { font-size: 0.8rem; color: var(--muted); }

[data-rotator] { position: relative; }
[data-rotator] [data-slide] {
  display: none;
}
[data-rotator] [data-slide].is-visible {
  display: flex;
}
[data-rotator][data-static] [data-slide] { display: flex; position: static; }

.placeholder-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 36px;
  font-style: italic;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 720px) { .metrics-strip { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid var(--brand-600);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px; left: 28px;
  background: var(--brand-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card .tier-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.price-card .tier-tag { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.price-card .tier-cta { margin-top: auto; padding-top: 22px; }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--slate);
  font-weight: 500;
}
.price-card ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  color: var(--success);
  font-weight: 800;
}
@media (max-width: 1020px) { .pricing-grid { grid-template-columns: 1fr; } }

.value-bullets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.value-bullet {
  text-align: center;
  padding: 22px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
}
.value-bullet .vb-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
@media (max-width: 880px) { .value-bullets { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--hero-grad);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Contact / Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.contact-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--card);
}
.contact-option .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-option h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-option p { margin-bottom: 0; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 12px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .18s ease;
}
.footer-col ul li a:hover { color: #fff; }
.footer-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-badges .trust-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- 404 ---------- */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found .code {
  font-size: 6rem;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margit-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
