/* ============================================================
   Vantage Digital Media LLC — vantaged.media
   Light "warm paper" design system
   ============================================================ */

:root {
  /* surfaces */
  --paper: #FBFAF7;
  --paper-2: #F4F2EC;
  --card: #FFFFFF;
  --ink-block: #16211F;

  /* text */
  --ink: #14171B;
  --ink-2: #3E444D;
  --ink-3: #6C737E;
  --ink-4: #A2A8B2;

  /* lines */
  --line: #E5E2DA;
  --line-2: #D3CFC4;

  /* accents */
  --teal: #0E6E62;
  --teal-2: #0B564C;
  --teal-tint: #E7F1EF;
  --coral: #C4552C;
  --amber: #A9761B;
  --green: #12805C;
  --red: #B93B2B;
  --slate: #8A94A6;

  /* type */
  --display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

  /* layout */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 14px;
  --radius-lg: 20px;

  /* motion */
  --ease: cubic-bezier(0.17, 0.84, 0.44, 1);
  --shadow-sm: 0 1px 2px rgba(20, 23, 27, 0.04), 0 4px 14px rgba(20, 23, 27, 0.04);
  --shadow-md: 0 2px 4px rgba(20, 23, 27, 0.04), 0 12px 32px rgba(20, 23, 27, 0.07);
  --shadow-lg: 0 4px 8px rgba(20, 23, 27, 0.05), 0 28px 70px rgba(20, 23, 27, 0.11);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ── ambient canvas ──────────────────────────────────────── */
.canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.wash { position: absolute; border-radius: 50%; filter: blur(90px); }
.wash--a {
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  top: -22vw; right: -14vw; background: rgba(14, 110, 98, 0.10);
}
.wash--b {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: 44vh; left: -16vw; background: rgba(196, 85, 44, 0.07);
}
.rule-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 23, 27, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 23, 27, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}

/* ── shared bits ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 110, 98, 0.14);
  animation: pulse 2.8s var(--ease) infinite;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.66); }
.eyebrow--light .dot { background: #6ED0BF; box-shadow: 0 0 0 4px rgba(110, 208, 191, 0.18); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.mark {
  position: relative; white-space: nowrap;
  background: linear-gradient(to top, rgba(14, 110, 98, 0.14) 0 38%, transparent 38%);
  padding: 0 2px;
}

em { font-style: italic; }

/* ── buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--lg { padding: 14px 24px; font-size: 15.5px; }
.btn--full { width: 100%; }

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

.btn--line { background: var(--card); color: var(--ink); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--paper { background: #fff; color: var(--ink-block); }
.btn--paper:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); }

.btn--ghostlight { background: transparent; color: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.28); font-family: var(--mono); font-size: 14px; }
.btn--ghostlight:hover { border-color: rgba(255, 255, 255, 0.6); color: #fff; }

.play {
  display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal);
}
.btn:hover .play svg { transform: none; }

/* ── nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; gap: 22px;
  padding: 16px var(--gutter);
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-stuck { border-color: var(--line); padding-top: 11px; padding-bottom: 11px; }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; border: 1px solid var(--line);
  background: var(--card); color: var(--teal); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__type { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -0.02em; }
.brand__sub {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-4);
}

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 8px 13px; border-radius: 999px;
  font-size: 14.5px; color: var(--ink-2);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(20, 23, 27, 0.045); }

.nav__right { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--card);
  cursor: pointer; padding: 0; place-items: center; gap: 5px;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ── hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(56px, 11vh, 118px) var(--gutter) clamp(48px, 8vh, 84px);
}
.hero__inner { max-width: 880px; }

.hero__title {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 8.4vw, 96px);
  font-weight: 400; line-height: 0.98; letter-spacing: -0.038em;
}
.hero__title em { color: var(--teal); }

.hero__lede {
  margin-top: 24px; max-width: 620px;
  font-size: clamp(16.5px, 1.5vw, 19.5px); line-height: 1.62; color: var(--ink-2);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero__stats {
  display: flex; align-items: stretch; flex-wrap: wrap; gap: clamp(18px, 3vw, 40px);
  margin-top: clamp(44px, 7vh, 72px);
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-family: var(--display); font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1;
}
.hero__stat-label { font-size: 13px; color: var(--ink-3); max-width: 170px; line-height: 1.45; }
.hero__sep { width: 1px; background: var(--line); }

.hero__stamp {
  display: flex; align-items: center; gap: 12px;
  margin: clamp(38px, 6vh, 60px) 0 0;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-4);
}
.hero__stamp-line { flex: 0 0 clamp(40px, 8vw, 90px); height: 1px; background: var(--line-2); }

/* ── partners marquee ────────────────────────────────────── */
.partners { padding: 14px 0 clamp(24px, 5vh, 48px); }
.partners__label {
  max-width: var(--wrap); margin: 0 auto 16px; padding: 0 var(--gutter);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-4);
}
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5); padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  animation: slide 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track .word {
  font-family: var(--display); font-size: clamp(17px, 2vw, 23px);
  color: var(--ink-2); white-space: nowrap; letter-spacing: -0.02em;
}
.marquee__track .sep { color: var(--teal); opacity: 0.45; font-size: 15px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── section shell ───────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(64px, 11vh, 120px) var(--gutter);
}
.section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section--tint { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.shead { margin-bottom: clamp(38px, 6vh, 62px); }
.shead__index {
  display: inline-flex; align-items: baseline; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
}
.shead__index i {
  font-style: normal; color: var(--teal); font-weight: 500;
  border-bottom: 1px solid rgba(14, 110, 98, 0.3); padding-bottom: 1px;
}
.shead__title {
  margin-top: 16px; max-width: 780px;
  font-family: var(--display); font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 400; letter-spacing: -0.032em; line-height: 1.06;
}
.shead__title em { color: var(--teal); }
.shead__lede { margin-top: 18px; max-width: 600px; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }

/* ── capability cards ────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; }
.card {
  position: relative; overflow: hidden;
  padding: 26px 24px 24px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card::after {
  content: ''; position: absolute; inset: 0 0 auto; height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(14, 110, 98, 0));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-tint); color: var(--teal); margin-bottom: 18px;
}
.card h3 { font-size: 19.5px; letter-spacing: -0.02em; }
.card > p { margin-top: 10px; font-size: 14.6px; line-height: 1.58; color: var(--ink-2); }
.card__list { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-2); display: grid; gap: 7px; }
.card__list li {
  position: relative; padding-left: 16px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
.card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 2px; background: var(--teal); opacity: 0.5;
}

/* ── console mockup ──────────────────────────────────────── */
.console {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card); border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
}
.console__chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; background: #F7F5F0; border-bottom: 1px solid var(--line);
}
.cdot { width: 9px; height: 9px; border-radius: 50%; }
.cdot--r { background: #E0796B; } .cdot--y { background: #DEB55F; } .cdot--g { background: #7FBE93; }
.console__url {
  display: inline-flex; align-items: center; gap: 7px; margin-left: 12px;
  padding: 4px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.console__body { display: grid; grid-template-columns: 186px 1fr; }
.console__note {
  margin-top: 14px; font-family: var(--mono); font-size: 11px;
  color: var(--ink-4); text-align: center;
}

.side { padding: 18px 14px; border-right: 1px solid var(--line); background: #FCFBF8; }
.side__brand {
  display: flex; align-items: center; gap: 8px; padding: 0 8px 16px;
  font-family: var(--display); font-size: 16px; color: var(--ink);
}
.side__brand span { color: var(--teal); }
.side__nav { display: grid; gap: 2px; }
.side__nav span {
  padding: 8px 10px; border-radius: 9px; font-size: 13px; color: var(--ink-3);
}
.side__nav .is-active { background: var(--teal-tint); color: var(--teal-2); font-weight: 600; }
.side__user {
  display: flex; align-items: center; gap: 9px; margin-top: 22px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.side__avatar {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10.5px;
}
.side__user span span, .side__user > span { display: flex; flex-direction: column; }
.side__user b { font-size: 12.5px; font-weight: 600; }
.side__user i { font-style: normal; font-size: 11px; color: var(--ink-4); }

.dash { padding: 20px clamp(14px, 2vw, 22px) 24px; min-width: 0; }
.dash__head { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; justify-content: space-between; }
.dash__crumb { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); }
.dash__crumb span { color: var(--teal); }
.dash__head h3 { margin-top: 5px; font-size: 21px; font-family: var(--display); font-weight: 500; }
.dash__controls { display: flex; gap: 5px; }
.pill {
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-family: var(--mono); font-size: 11px; color: var(--ink-3);
}
.pill.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 18px; }
.kpi {
  position: relative; overflow: hidden;
  padding: 14px 14px 30px; border-radius: 12px;
  border: 1px solid var(--line); background: #FDFCFA;
}
.kpi__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-4); }
.kpi__value { margin-top: 7px; font-family: var(--display); font-size: 25px; font-weight: 500; letter-spacing: -0.03em; }
.kpi__value span { font-size: 15px; color: var(--ink-3); }
.kpi__delta { margin-top: 5px; font-family: var(--mono); font-size: 10.5px; }
.kpi__delta i { font-style: normal; color: var(--ink-4); }
.kpi__delta.up { color: var(--green); }
.kpi__delta.down { color: var(--red); }
.kpi__spark { position: absolute; left: 0; right: 0; bottom: 0; height: 30px; width: 100%; color: var(--teal); opacity: 0.34; }

.chart { margin-top: 12px; padding: 16px; border-radius: 12px; border: 1px solid var(--line); background: #FDFCFA; }
.chart__head { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: flex-start; }
.chart__head h4 { font-size: 14.5px; font-weight: 600; }
.chart__head p { font-family: var(--mono); font-size: 10.5px; color: var(--ink-4); margin-top: 3px; }
.chart__legend { display: flex; gap: 14px; font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); }
.chart__legend span { display: inline-flex; align-items: center; gap: 6px; }
.sw { width: 9px; height: 2.5px; border-radius: 2px; }
.sw--teal { background: var(--teal); }
.sw--slate { background: var(--slate); }
.chart__svg { width: 100%; height: clamp(120px, 20vw, 176px); margin-top: 12px; }
.chart__x { display: flex; justify-content: space-between; margin-top: 6px; font-family: var(--mono); font-size: 10px; color: var(--ink-4); }

.table { margin-top: 12px; border-radius: 12px; border: 1px solid var(--line); background: #FDFCFA; overflow: hidden; }
.table__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.table__head h4 { font-size: 14.5px; font-weight: 600; }
.table__more { font-family: var(--mono); font-size: 10.5px; color: var(--teal); }
.table__row {
  display: grid; grid-template-columns: 1.7fr 0.7fr 0.7fr 0.8fr 0.6fr 0.9fr;
  gap: 10px; align-items: center; padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-2);
}
.table__row:last-child { border-bottom: 0; }
.table__row--head {
  font-size: 9.5px; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink-4); background: #F8F6F1; padding-top: 8px; padding-bottom: 8px;
}
.table__name { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); }
.tag { justify-self: start; padding: 2px 8px; border-radius: 999px; font-size: 10px; }
.tag--meta { background: #EAF0FB; color: #33559B; }
.tag--google { background: #FDF0E6; color: #A9601B; }
.v-up { color: var(--green); font-weight: 500; }
.v-flat { color: var(--amber); font-weight: 500; }
.v-down { color: var(--red); font-weight: 500; }
.st { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; }
.st i { width: 6px; height: 6px; border-radius: 50%; }
.st--on i { background: var(--green); box-shadow: 0 0 0 3px rgba(18, 128, 92, 0.14); }
.st--warn i { background: var(--amber); box-shadow: 0 0 0 3px rgba(169, 118, 27, 0.14); }
.st--off i { background: var(--ink-4); }
.st--on { color: var(--green); } .st--warn { color: var(--amber); } .st--off { color: var(--ink-4); }

/* ── steps ───────────────────────────────────────────────── */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: clamp(58px, 9vw, 110px) 1fr;
  gap: clamp(14px, 3vw, 34px); align-items: start;
  padding: clamp(22px, 3.6vh, 32px) 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.step:hover { background: rgba(255, 255, 255, 0.7); padding-left: 14px; }
.step__num {
  font-family: var(--mono); font-size: clamp(13px, 1.5vw, 15px);
  color: var(--teal); padding-top: 4px;
}
.step h3 { font-family: var(--display); font-size: clamp(21px, 2.6vw, 28px); font-weight: 400; letter-spacing: -0.025em; }
.step p { margin-top: 8px; max-width: 620px; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }

/* ── stats ───────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.stat {
  padding: 30px 26px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat__num {
  font-family: var(--display); font-size: clamp(46px, 7vw, 68px);
  font-weight: 400; line-height: 1; letter-spacing: -0.04em; color: var(--teal);
}
.stat h3 { margin-top: 14px; font-size: 18.5px; }
.stat > p:last-child { margin-top: 9px; font-size: 14.6px; line-height: 1.58; color: var(--ink-2); }
.stats__note {
  margin-top: 22px; max-width: 700px;
  font-size: 12.5px; line-height: 1.55; color: var(--ink-4);
}

/* ── pillars ─────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pillar { padding: 28px 24px; background: var(--paper); transition: background 0.35s var(--ease); }
.pillar:hover { background: var(--card); }
.pillar__i { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--teal); }
.pillar h3 { margin-top: 12px; font-size: 18px; letter-spacing: -0.02em; }
.pillar p { margin-top: 9px; font-size: 14.5px; line-height: 1.58; color: var(--ink-2); }

/* ── voices ──────────────────────────────────────────────── */
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 18px; }
.voice {
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  margin: 0; padding: 28px 26px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.voice:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice blockquote { margin: 0; }
.voice blockquote p {
  font-family: var(--display); font-size: clamp(17px, 1.9vw, 20.5px);
  line-height: 1.45; letter-spacing: -0.02em; color: var(--ink);
}
.voice blockquote p::before { content: '“'; color: var(--teal); }
.voice blockquote p::after { content: '”'; color: var(--teal); }
.voice blockquote em { color: var(--teal); }
.voice figcaption { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.voice__av {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-2);
  font-family: var(--display); font-size: 16px;
}
.voice figcaption > span:last-child { display: flex; flex-direction: column; }
.voice figcaption b { font-size: 13.5px; font-weight: 600; }
.voice figcaption i { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--ink-4); }

/* ── cta block ───────────────────────────────────────────── */
.cta {
  position: relative; overflow: hidden;
  margin: 0; padding: clamp(64px, 12vh, 116px) var(--gutter);
  background: var(--ink-block); color: #fff;
}
.cta::before {
  content: ''; position: absolute; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  top: -40%; right: -18%; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 110, 98, 0.55), transparent 66%);
}
.cta::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 100%;
}
.cta__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; }
.cta__title {
  margin-top: 20px; font-family: var(--display);
  font-size: clamp(34px, 6vw, 66px); font-weight: 400; letter-spacing: -0.036em; line-height: 1.03;
}
.cta__title em { color: #7FD8C6; }
.cta__lede { margin-top: 20px; max-width: 560px; font-size: 16.5px; line-height: 1.62; color: rgba(255, 255, 255, 0.7); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ── footer ──────────────────────────────────────────────── */
.foot { padding: clamp(50px, 8vh, 80px) var(--gutter) 26px; background: var(--paper-2); border-top: 1px solid var(--line); }
.foot__top {
  display: grid; grid-template-columns: minmax(240px, 1.15fr) 2fr; gap: clamp(30px, 5vw, 72px);
  max-width: var(--wrap); margin: 0 auto;
}
.brand--foot { margin-right: 0; }
.foot__pitch { margin-top: 18px; max-width: 320px; font-size: 14.5px; line-height: 1.58; color: var(--ink-2); }
.foot__addr { margin-top: 20px; font-style: normal; font-family: var(--mono); font-size: 12px; line-height: 1.85; color: var(--ink-3); }
.foot__addr a { color: var(--teal); }
.foot__addr a:hover { text-decoration: underline; }

.foot__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 26px; }
.foot__col { display: flex; flex-direction: column; gap: 9px; }
.foot__h {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 3px;
}
.foot__col a { font-size: 14.5px; color: var(--ink-2); transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.foot__col a:hover { color: var(--teal); transform: translateX(3px); }

.foot__bar {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  max-width: var(--wrap); margin: clamp(38px, 6vh, 60px) auto 0;
  padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-4);
}
.foot__legal { display: flex; gap: 18px; }
.foot__legal a:hover { color: var(--teal); }

/* ── modal + form ────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__scrim { position: absolute; inset: 0; background: rgba(20, 23, 27, 0.42); backdrop-filter: blur(5px); animation: fade 0.3s var(--ease); }
.modal__panel {
  position: relative; width: min(680px, 100%); max-height: calc(100vh - 36px); overflow-y: auto;
  padding: clamp(26px, 4vw, 40px); border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(20, 23, 27, 0.3);
  animation: pop 0.42s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(18px) scale(0.985); } }

.modal__x {
  position: absolute; top: 16px; right: 16px;
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; color: var(--ink-2); transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal__x:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }

.modal__head { margin-bottom: 24px; padding-right: 40px; }
.modal__head h2 { margin-top: 14px; font-family: var(--display); font-size: clamp(24px, 3.4vw, 32px); font-weight: 400; letter-spacing: -0.03em; }
.modal__head > p:last-child { margin-top: 10px; font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }

.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.field > span i { font-style: normal; color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border-radius: 10px;
  border: 1px solid var(--line-2); background: var(--paper);
  font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 76px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 110, 98, 0.13);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--coral); }

.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--teal); flex: none; }
.check a { color: var(--teal); text-decoration: underline; }

.trap { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form__status { min-height: 18px; font-family: var(--mono); font-size: 12px; }
.form__status.is-ok { color: var(--green); }
.form__status.is-err { color: var(--coral); }

.is-sending .btn__label { opacity: 0.6; }

/* ── legal pages ─────────────────────────────────────────── */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(48px, 8vh, 90px) var(--gutter) clamp(60px, 10vh, 110px); }
.legal h1 { font-family: var(--display); font-size: clamp(32px, 5vw, 50px); font-weight: 400; letter-spacing: -0.035em; }
.legal .legal__meta { margin-top: 12px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-4); }
.legal h2 { margin-top: 40px; font-family: var(--display); font-size: clamp(21px, 2.6vw, 26px); font-weight: 500; letter-spacing: -0.025em; }
.legal p, .legal li { margin-top: 12px; font-size: 15.5px; line-height: 1.68; color: var(--ink-2); }
.legal ul { margin-top: 6px; padding-left: 20px; list-style: disc; }
.legal li { margin-top: 7px; }
.legal a { color: var(--teal); text-decoration: underline; }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.legal__back:hover { color: var(--teal); }

/* ── reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .console__body { grid-template-columns: 1fr; }
  .side { display: flex; align-items: center; gap: 16px; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 14px; overflow-x: auto; }
  .side__brand { padding: 0 8px 0 0; border-right: 1px solid var(--line); padding-right: 14px; }
  .side__nav { display: flex; gap: 4px; }
  .side__nav span { white-space: nowrap; }
  .side__user { display: none; }
  .table { overflow-x: auto; }
  .table__row { grid-template-columns: 170px 70px 70px 80px 60px 90px; min-width: 560px; }
  .table__head { min-width: 560px; }
}

@media (max-width: 860px) {
  .burger { display: grid; }
  .nav__cta { display: none; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px var(--gutter) 20px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 14px; border-radius: 10px; font-size: 16px; }
  .foot__top { grid-template-columns: 1fr; }
  .hero__sep { display: none; }
  .hero__stats { gap: 24px 34px; }
}

@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__num { padding-top: 0; }
  .btn--lg { padding: 13px 20px; font-size: 15px; }
  .hero__cta .btn, .cta__btns .btn { width: 100%; }
  .kpis { grid-template-columns: 1fr 1fr; }
}

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

@media print {
  .canvas, .nav, .modal, .cta::before, .cta::after { display: none !important; }
  body { background: #fff; }
}
