/* ============================================================
   CallVue — marketing site styles
   Plain CSS, no build step. Edit colors/fonts in :root below.
   ============================================================ */

:root {
  /* ---- Type --------------------------------------------------
     Want to switch the whole site to Inter? Change these two lines
     (and swap the <link> in index.html for the Inter family). */
  --font-display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Brand palette (from the CallVue brand kit) ---- */
  --bg:          #f7f5f1;   /* warm cream page */
  --bg-alt:      #efece5;   /* deeper cream band */
  --paper:       #fffdfa;   /* near-white card */
  --ink:         #111013;   /* near-black text */
  --ink-strong:  #050506;
  --ink-dim:     #5a5761;
  --ink-mute:    #8a8691;
  --ink-faint:   #b8b4bc;

  --line:        #e9e6df;
  --line-soft:   #f1eee7;
  --line-strong: #d8d3c7;

  --brand:       #e7684a;   /* peach accent */
  --brand-deep:  #d2502f;
  --brand-soft:  #fbe8dd;
  --brand-ink:   #9a3d1e;

  --good:        #1f7a4a;
  --good-soft:   #e4f2ea;
  --warn:        #b15d12;
  --warn-soft:   #fbe9d1;

  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(17,16,19,.04), 0 4px 14px rgba(17,16,19,.05);
  --shadow-md: 0 8px 30px rgba(17,16,19,.08), 0 2px 8px rgba(17,16,19,.04);
  --shadow-lg: 0 30px 70px -28px rgba(40,22,12,.30), 0 10px 30px -18px rgba(17,16,19,.18);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink-strong);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---- Grain overlay ---- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .72em 1.25em; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn--lg { font-size: 1.02rem; padding: .85em 1.5em; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.btn--solid { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--ink-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

.btn--nav { background: var(--ink); color: #fff; padding: .6em 1.05em; font-size: .9rem; }
.btn--nav:hover { background: var(--brand); transform: translateY(-1px); }

.btn--invert { background: var(--brand); color: #fff; }
.btn--invert:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--ghost-invert { color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost-invert:hover { background: rgba(255,255,255,.08); border-color: #fff; }

.btn__ico { display: inline-flex; }
.btn__ico svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.btn:hover .btn__ico svg { transform: translate(2px,-2px); }

/* ===========================================================
   Nav
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247,245,241,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.nav__logo { height: 26px; width: auto; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: .94rem; font-weight: 500; color: var(--ink-dim);
  position: relative; transition: color .18s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--brand); border-radius: 2px; transition: right .24s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 22px;
  background: rgba(247,245,241,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 12px 4px; font-weight: 500; color: var(--ink-dim); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-child { border: 0; margin-top: 8px; }
.mobile-menu .btn--solid { color: #fff; justify-content: center; }

/* ===========================================================
   Layout helpers
   =========================================================== */
.section {
  max-width: var(--maxw); margin: 0 auto; padding: 96px 24px;
  position: relative; z-index: 2;
}
.section__head { max-width: 720px; margin-bottom: 52px; }
.section__title { font-size: clamp(2rem, 4vw, 3rem); }
.section__lede { color: var(--ink-dim); font-size: 1.12rem; margin-top: 18px; max-width: 620px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-ink); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }

.accent { position: relative; color: var(--brand); white-space: nowrap; }
.accent__under {
  position: absolute; left: 0; right: 0; bottom: .06em; height: .12em;
  background: var(--brand-soft); border-radius: 4px; z-index: -1;
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 150px 24px 70px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.hero__glow {
  position: absolute; z-index: -1; top: -10%; right: -8%;
  width: 620px; height: 620px; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(231,104,74,.20), rgba(231,104,74,0) 64%);
  filter: blur(8px);
}
.hero__eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--brand-ink); background: var(--brand-soft);
  padding: 7px 14px; border-radius: 999px; margin: 0 0 22px;
}
.hero__title { font-size: clamp(2.6rem, 5.4vw, 4.3rem); letter-spacing: -0.03em; }
.hero__lede {
  color: var(--ink-dim); font-size: 1.18rem; line-height: 1.55;
  margin: 24px 0 0; max-width: 520px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__sub { font-size: .92rem; color: var(--ink-mute); margin: 22px 0 0; }

/* Hero art */
.hero__art { position: relative; justify-self: end; width: 100%; max-width: 480px; }

.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(247,245,241,.4));
}
.panel__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.panel__bar .dot:nth-child(1) { background: #e8b4a4; }
.panel__title {
  margin-left: 8px; font-size: .76rem; font-weight: 600; color: var(--ink-mute);
  font-family: var(--font-body); letter-spacing: .01em;
}

.panel--dash .dash { padding: 18px; }
.dash__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.kpi {
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 12px 12px 11px; display: flex; flex-direction: column; gap: 2px;
}
.kpi--accent { background: var(--brand-soft); border-color: #f3d3c3; }
.kpi__label { font-size: .66rem; color: var(--ink-mute); font-weight: 600; letter-spacing: .02em; }
.kpi__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink-strong); letter-spacing: -.02em; }
.kpi__unit { font-size: .9rem; }
.kpi__trend { font-size: .64rem; font-weight: 700; }
.kpi__trend.up { color: var(--good); }
.kpi__trend.down { color: var(--good); }

.funnel { display: flex; flex-direction: column; gap: 9px; }
.funnel__row { display: grid; grid-template-columns: 78px 1fr 34px; align-items: center; gap: 10px; }
.funnel__label { font-size: .72rem; color: var(--ink-dim); font-weight: 500; }
.funnel__bar {
  height: 13px; border-radius: 7px; width: var(--w);
  background: linear-gradient(90deg, #d8d3c7, #cfc8b9);
}
.funnel__bar--win { background: linear-gradient(90deg, var(--brand), var(--brand-deep)); }
.funnel__val { font-size: .72rem; font-weight: 700; color: var(--ink-dim); text-align: right; font-variant-numeric: tabular-nums; }
.funnel__row--win .funnel__val { color: var(--brand-ink); }

/* Floating call panel */
.panel--call {
  position: absolute; bottom: -34px; left: -30px; width: 280px;
  padding: 14px; animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .panel--call { animation: none; } }
.callrow { display: flex; align-items: center; gap: 10px; }
.callrow__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center;
}
.callrow__meta { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.callrow__name { font-size: .82rem; font-weight: 600; }
.callrow__sub { font-size: .7rem; color: var(--ink-mute); }
.chip { font-size: .66rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.chip--win { background: var(--brand-soft); color: var(--brand-ink); }

.checks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.checks--wide { margin-top: 14px; }
.check-chip {
  font-size: .68rem; font-weight: 600; padding: 4px 9px 4px 22px; border-radius: 7px;
  position: relative; background: var(--good-soft); color: var(--good);
}
.check-chip::before {
  content: "✓"; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  font-size: .7rem; font-weight: 700;
}
.check-chip.miss { background: var(--warn-soft); color: var(--warn); }
.check-chip.miss::before { content: "!"; }

/* ===========================================================
   Integrations strip
   =========================================================== */
.strip {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 24px 8px;
  text-align: center; position: relative; z-index: 2;
}
.strip__label { font-size: .8rem; color: var(--ink-mute); font-weight: 500; margin: 0 0 16px; }
.strip__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 22px;
}
.strip__logos li {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: var(--ink-faint); letter-spacing: -.01em;
}
.strip__logos .dotsep { color: var(--line-strong); font-size: 1rem; }

/* ===========================================================
   Problem / value trio
   =========================================================== */
.problem { padding-top: 80px; }
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ill {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ill__ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-ink); margin-bottom: 18px;
}
.ill__ico svg { width: 23px; height: 23px; }
.ill__title { font-size: 1.22rem; margin-bottom: 10px; }
.ill__desc { color: var(--ink-dim); font-size: .98rem; margin: 0; }

/* ===========================================================
   Features grid (cream band)
   =========================================================== */
/* Normal .section sizing (so head + grid align with every other section);
   the deeper-cream band is painted full-width BEHIND it via ::before. */
.features { position: relative; }
.features::before {
  content: ""; position: absolute; z-index: -1; top: 0; bottom: 0;
  left: 50%; margin-left: -50vw; width: 100vw;   /* full-bleed (body has overflow-x:hidden) */
  background: var(--bg-alt); border-block: 1px solid var(--line);
}
.grid--features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.feature {
  background: var(--bg-alt); padding: 34px 30px;
  transition: background .25s var(--ease);
}
.feature:hover { background: var(--paper); }
.feature__ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line); color: var(--brand);
  margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.feature:hover .feature__ico { background: var(--ink); color: var(--brand); border-color: var(--ink); }
.feature__ico svg { width: 22px; height: 22px; }
.feature__title { font-size: 1.18rem; margin-bottom: 9px; }
.feature__desc { color: var(--ink-dim); font-size: .96rem; margin: 0; }

/* ===========================================================
   How it works — steps
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding-top: 26px; border-top: 2px solid var(--line-strong);
  transition: border-color .25s var(--ease);
}
.step:hover { border-top-color: var(--brand); }
.step__num {
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  color: var(--brand); letter-spacing: .04em;
}
.step__title { font-size: 1.4rem; margin: 8px 0 10px; }
.step__desc { color: var(--ink-dim); font-size: .96rem; margin: 0; }

/* ===========================================================
   Spotlights (alternating rows)
   =========================================================== */
.spotlights { display: flex; flex-direction: column; gap: 96px; }
.spot { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.spot--rev .spot__copy { order: 2; }
.spot--rev .spot__art { order: 1; }
.spot__title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.spot__desc { color: var(--ink-dim); font-size: 1.08rem; margin: 0 0 22px; }
.spot__list { display: flex; flex-direction: column; gap: 10px; }
.spot__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); font-size: .98rem; }
.tick { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--brand); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; padding: 3px; background: var(--brand-soft); border-radius: 50%; }

.spot__art { position: relative; }
.spot__art .panel { max-width: 460px; }
.spot--rev .spot__art .panel { margin-left: auto; }

/* transcript panel */
.panel--transcript { padding-bottom: 16px; }
.tline { display: flex; gap: 10px; padding: 11px 16px; border-bottom: 1px solid var(--line-soft); }
.tline__who { font-size: .64rem; font-weight: 700; padding: 3px 7px; border-radius: 6px; height: fit-content; letter-spacing: .03em; text-transform: uppercase; }
.tline__who.rep { background: var(--ink); color: #fff; }
.tline__who.caller { background: var(--bg-alt); color: var(--ink-dim); }
.tline__txt { font-size: .86rem; color: var(--ink-dim); line-height: 1.4; }
.panel--transcript .checks { padding: 0 16px; }

/* reps panel */
.panel--reps { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.panel--reps .panel__bar { margin: -16px -16px 4px; }
.reprow { display: grid; grid-template-columns: 70px 1fr 40px; align-items: center; gap: 12px; }
.reprow__name { font-size: .82rem; font-weight: 600; }
.reprow__track { position: relative; height: 12px; background: var(--bg-alt); border-radius: 7px; overflow: hidden; }
.reprow__fill { position: absolute; inset: 0 auto 0 0; width: var(--w); background: linear-gradient(90deg, var(--brand), var(--brand-deep)); border-radius: 7px; }
.reprow__fill.warn { background: linear-gradient(90deg, #e0a35a, #c98727); }
.reprow__val { font-size: .8rem; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.reprow__val.warn { color: var(--warn); }
.reprow--target .reprow__track { background: transparent; }
.reprow__line { position: absolute; left: var(--w); top: -4px; bottom: -4px; width: 2px; background: var(--ink); border-radius: 2px; }
.reprow--target .reprow__name { color: var(--ink-mute); font-size: .74rem; }

/* coach panel */
.panel--coach { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.panel--coach .panel__bar { margin: -16px -16px 4px; }
.coach-card { background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: 12px; padding: 14px 16px; }
.coach-card--rep { border-left-color: var(--ink); }
.coach-card__tag { font-size: .64rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-ink); }
.coach-card__tag.tag--rep { color: var(--ink-dim); }
.coach-card__head { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin: 6px 0 0; letter-spacing: -.01em; color: var(--ink-strong); }
.coach-card__sub { font-size: .82rem; color: var(--ink-dim); margin: 5px 0 0; }

/* ===========================================================
   Pricing (hidden by default)
   =========================================================== */
.grid--pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.plan--feat { border-color: var(--ink); box-shadow: var(--shadow-md); position: relative; }
.plan__badge {
  position: absolute; top: -12px; left: 28px; background: var(--brand); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.plan__name { font-size: 1.3rem; }
.plan__price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; margin: 12px 0 4px; letter-spacing: -.03em; }
.plan__per { font-size: .9rem; color: var(--ink-mute); font-weight: 500; }
.plan__for { color: var(--ink-dim); font-size: .92rem; margin: 0 0 20px; }
.plan__feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.plan__feats li { font-size: .92rem; color: var(--ink); padding-left: 24px; position: relative; }
.plan__feats li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ===========================================================
   Testimonial
   =========================================================== */
.quote-sec { text-align: center; }
.quote { max-width: 760px; margin: 0 auto; }
.quote__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.28; letter-spacing: -.02em;
  color: var(--ink-strong); margin: 0 0 26px;
}
.quote__by { display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-weight: 700; }
.quote__role { color: var(--ink-mute); font-size: .9rem; }

/* ===========================================================
   CTA band (dark)
   =========================================================== */
.cta-band {
  background: var(--ink);
  background-image: radial-gradient(circle at 80% 0%, rgba(231,104,74,.28), rgba(231,104,74,0) 55%);
  color: #fff; position: relative; z-index: 2;
}
.cta-band__inner { max-width: 720px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.cta-band__mark { display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.cta-band__mark img { width: 34px; height: 34px; }
.cta-band__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); }
.cta-band__lede { color: rgba(255,255,255,.7); font-size: 1.1rem; margin: 18px auto 30px; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--ink-strong); color: rgba(255,255,255,.7); position: relative; z-index: 2; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
}
.footer__logo { height: 26px; margin-bottom: 16px; }
.footer__tag { font-size: .96rem; max-width: 320px; margin: 0 0 14px; line-height: 1.5; }
.footer__made { font-size: .9rem; color: rgba(255,255,255,.5); margin: 0; }
.footer__made a { color: var(--brand); font-weight: 600; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 14px; }
.footer__col a { display: block; font-size: .92rem; padding: 6px 0; color: rgba(255,255,255,.72); transition: color .15s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__base {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.45);
}

/* ===========================================================
   Reveal animations
   =========================================================== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .btn--nav { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 42px; height: 38px; background: transparent; border: 1px solid var(--line-strong);
    border-radius: 10px; cursor: pointer;
  }
  .nav__toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 0 auto; border-radius: 2px; transition: transform .2s var(--ease); }
  .nav.is-scrolled .nav__toggle { border-color: var(--line); }
  .mobile-menu.is-open { display: flex; }

  .hero { grid-template-columns: 1fr; padding-top: 122px; gap: 56px; }
  .hero__art { justify-self: stretch; max-width: 440px; margin: 0 auto; }
  .hero__lede { max-width: none; }
  .panel--call { left: 0; bottom: -26px; }

  .trio, .grid--features, .steps, .grid--pricing { grid-template-columns: 1fr 1fr; }
  .spot, .spot--rev .spot__copy, .spot--rev .spot__art { grid-template-columns: 1fr; order: 0; }
  .spot { gap: 32px; }
  .spot__art .panel, .spot--rev .spot__art .panel { margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 20px; }
  .hero { padding: 110px 20px 50px; }
  .trio, .grid--features, .steps, .grid--pricing { grid-template-columns: 1fr; }
  .dash__kpis { grid-template-columns: 1fr 1fr; }
  .dash__kpis .kpi:last-child { grid-column: span 2; }
  .panel--call { position: relative; left: 0; bottom: 0; margin-top: 16px; width: 100%; animation: none; }
  .hero__art { max-width: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; }
  .cta-band__actions, .hero__cta { flex-direction: column; }
  .cta-band__actions .btn, .hero__cta .btn { width: 100%; justify-content: center; }
}
