/* ==========================================================================
   ConsumeIT — Design System
   Single stylesheet. No framework. Dark-first, technology-forward.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surface ramp */
  --ink-1000: #050608;
  --ink-900:  #08090C;
  --ink-800:  #0D0F14;
  --ink-700:  #12151B;
  --ink-600:  #191D25;
  --ink-500:  #232833;

  /* Foreground ramp */
  --fg:       #F2F5F7;
  --fg-soft:  #C3CAD3;
  --fg-mute:  #8B95A2;
  --fg-faint: #7B8794;

  /* Brand signal — taken from the ConsumeIT mark */
  --signal:      #00FF40;
  --signal-deep: #00C733;
  --signal-glow: rgba(0, 255, 64, 0.14);
  --on-signal:   #05210D;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --maxw: 1240px;
  --maxw-narrow: 760px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* Radii — restrained, not bubbly */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

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

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

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

::selection { background: var(--signal); color: var(--on-signal); }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.display,
h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 600;
}

h2, .h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 600;
}

h3, .h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 600;
}

h4 {
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--fg-soft);
}

.muted { color: var(--fg-mute); }
.small { font-size: 0.875rem; line-height: 1.55; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex: none;
}

.signal { color: var(--signal); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--ink-800); }
.section--line { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  gap: 1.25rem;
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
  .section-head--split > :last-child { justify-self: end; text-align: left; }
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-2, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stack { display: grid; gap: 1rem; }
.stack-sm { display: grid; gap: 0.5rem; }
.flow > * + * { margin-top: 1.15em; }

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 200;
  background: var(--signal);
  color: var(--on-signal);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.75rem; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  background: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
              color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--signal);
  color: var(--on-signal);
}
.btn--primary:hover { background: #4dff77; }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--fg-mute); background: rgba(255, 255, 255, 0.04); }

.btn--quiet { color: var(--fg-soft); padding-inline: 0; }
.btn--quiet:hover { color: var(--signal); }

.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 540px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fg);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.arrow-link svg { flex: none; transition: transform 0.2s var(--ease); }
.arrow-link:hover { color: var(--signal); gap: 0.7rem; }

/* --------------------------------------------------------------------------
   6. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }

.nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0.35rem;
  margin-inline: auto;
}
.nav__links a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-soft);
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav__links a:hover { color: var(--fg); background: rgba(255, 255, 255, 0.05); }
.nav__links a[aria-current="page"] { color: var(--fg); }
.nav__links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  width: 16px;
  margin: 3px auto 0;
  background: var(--signal);
  border-radius: 2px;
}

.nav__actions { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; }
.nav__actions .btn { padding: 0.6rem 1.05rem; font-size: 0.875rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav-toggle { display: none; }
  .nav__actions { margin-left: 0; }
}
@media (max-width: 1023px) {
  .nav__actions .btn--ghost { display: none; }
}
@media (max-width: 460px) {
  .nav__actions .btn--primary { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--ink-900);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  visibility: hidden;
  /* visibility flips to hidden only after the slide-out finishes; on the way in
     it flips immediately, so the first link is focusable the moment it opens. */
  transition: transform 0.32s var(--ease), visibility 0s linear 0.32s;
}
.drawer[data-open="true"] {
  transform: none;
  visibility: visible;
  transition: transform 0.32s var(--ease), visibility 0s linear 0s;
}
.drawer__top { display: flex; align-items: center; min-height: 72px; }
.drawer__top .nav-toggle { display: inline-flex; margin-left: auto; }
.drawer__nav { list-style: none; display: grid; align-content: start; gap: 0.25rem; padding-block: 1rem; }
.drawer__nav a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}
.drawer__nav a[aria-current="page"] { color: var(--signal); }
.drawer__foot { display: grid; gap: 0.6rem; padding-bottom: 2rem; }
.drawer__foot .small { color: var(--fg-mute); }
@media (min-width: 1024px) { .drawer { display: none; } }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 720px;
  background:
    radial-gradient(58% 46% at 22% 8%, var(--signal-glow), transparent 68%),
    radial-gradient(46% 40% at 82% 0%, rgba(90, 140, 255, 0.10), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}
.hero h1 { max-width: 15ch; }
.hero .lede { max-width: 52ch; }

.hero__verbs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
}
.hero__verbs span { display: inline-block; }
.hero__verbs .dot { color: var(--signal); }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--fg-mute);
}
.hero__meta strong { color: var(--fg); font-weight: 600; }

/* Hero visual — pure CSS/SVG "system" panel */
.hero__visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  padding: 1rem;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.panel__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.25rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}
.panel__dots { display: flex; gap: 5px; }
.panel__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-500); display: block; }
.panel__dots i:first-child { background: var(--signal-deep); }

.panel__rows { display: grid; gap: 0.55rem; padding-top: 0.9rem; }
.panel-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.018);
}
.panel-row__label { display: block; font-size: 0.8125rem; font-weight: 500; }
.panel-row__tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--fg-faint);
  white-space: nowrap;
}
.panel-row__icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(0, 255, 64, 0.08);
  color: var(--signal);
  flex: none;
}
.panel-row__icon svg { width: 15px; height: 15px; }

.meter {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: var(--ink-600);
  overflow: hidden;
  margin-top: 0.4rem;
}
.meter > i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--signal-deep), var(--signal));
  width: 0;
  transition: width 1.1s var(--ease);
}
.is-revealed .meter > i { width: var(--w, 60%); }

/* --------------------------------------------------------------------------
   8. Marquee (capability ticker)
   -------------------------------------------------------------------------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink-800);
  padding-block: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: ticker 46s linear infinite;
}
.ticker__track > span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg-mute);
  white-space: nowrap;
}
.ticker__track > span::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--signal-deep);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-800);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.card--link:hover { border-color: var(--line-strong); background: var(--ink-700); }
.card--link:hover .arrow-link { color: var(--signal); }
.card__foot { margin-top: auto; padding-top: 0.5rem; }

/* Stretched link keeps the whole card clickable with one real anchor */
.stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

.card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(0, 255, 64, 0.06);
  color: var(--signal);
  margin-bottom: 0.35rem;
}
.card__icon svg { width: 20px; height: 20px; }

.card__num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}

/* Pillar (Build / Grow / Automate) */
.pillar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(0, 255, 64, 0.05), transparent 42%),
    var(--ink-800);
}
.pillar__kicker {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}
.pillar h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); letter-spacing: -0.025em; }
.pillar ul { list-style: none; display: grid; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; }
.pillar li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--fg-soft);
}
.pillar li::before {
  content: "";
  width: 5px; height: 5px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--signal-deep);
  flex: none;
}

/* Checklist */
.checks { list-style: none; display: grid; gap: 0.7rem; }
.checks li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--fg-soft);
}
.checks li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 0.18em;
  border-radius: 50%;
  background: var(--signal-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff40' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Problem lists: a checkmark next to a list of failures reads wrong. */
.checks--issue li::before {
  background: rgba(255, 255, 255, 0.05)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B95A2' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

/* --------------------------------------------------------------------------
   10. Process
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  gap: 0.5rem 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--signal);
  letter-spacing: 0.1em;
}
.step p { color: var(--fg-mute); font-size: 0.9375rem; max-width: 62ch; }
@media (min-width: 800px) {
  .step { grid-template-columns: 80px minmax(0, 260px) minmax(0, 1fr); align-items: start; }
}

/* --------------------------------------------------------------------------
   11. Metrics
   -------------------------------------------------------------------------- */
.metric {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-800);
}
.metric__val {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}
.metric__val .unit { color: var(--signal); }
.metric__label { margin-top: 0.6rem; font-size: 0.875rem; color: var(--fg-mute); }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-800);
}
.quote blockquote {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--fg-soft);
  letter-spacing: -0.01em;
}
.quote figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-600);
  color: var(--fg-soft);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.quote cite { font-style: normal; font-weight: 600; font-size: 0.9375rem; display: block; }
.quote .loc { font-size: 0.8125rem; color: var(--fg-mute); }

.stars { display: flex; gap: 2px; color: var(--signal); }
.stars svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-800);
}
.tier--featured {
  border-color: rgba(0, 255, 64, 0.34);
  background: linear-gradient(180deg, rgba(0, 255, 64, 0.06), transparent 38%), var(--ink-800);
}
.tier__flag {
  position: absolute;
  top: -1px; right: 1.25rem;
  transform: translateY(-50%);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  background: var(--signal);
  color: var(--on-signal);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.tier__price .from { font-size: 0.8125rem; font-weight: 500; color: var(--fg-mute); letter-spacing: 0; }
.tier__best {
  font-size: 0.8125rem;
  color: var(--fg-mute);
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.tier__best strong { color: var(--fg-soft); font-weight: 600; }
.tier .btn { margin-top: auto; }

/* Pricing category filter */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.filters button {
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--fg-soft);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filters button:hover { border-color: var(--fg-mute); color: var(--fg); }
.filters button[aria-pressed="true"] {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--on-signal);
}

.price-group { scroll-margin-top: 100px; }
.price-group + .price-group { margin-top: clamp(3rem, 6vw, 4.5rem); }
.price-group[hidden] { display: none; }

.note {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--signal-deep);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.8125rem;
  color: var(--fg-mute);
}

/* --------------------------------------------------------------------------
   14. FAQ / accordion
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  cursor: pointer;
}
.faq__q:hover { color: var(--signal); }
.faq__q .ico {
  position: relative;
  width: 18px; height: 18px;
  justify-self: end;
}
.faq__q .ico::before,
.faq__q .ico::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
.faq__q .ico::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .ico::after { transform: rotate(0deg); }
.faq__q[aria-expanded="true"] { color: var(--signal); }
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s var(--ease);
}
.faq__a p {
  padding-bottom: 1.5rem;
  max-width: 78ch;
  color: var(--fg-mute);
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   15. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-800);
  padding: clamp(2.25rem, 5vw, 4rem);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 340px;
  background: radial-gradient(50% 60% at 50% 100%, var(--signal-glow), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lede { max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.8125rem; font-weight: 500; color: var(--fg-soft); }
.field .req { color: var(--signal); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--ink-900);
  color: var(--fg);
  font-size: 0.9375rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--fg-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--ink-800);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B95A2' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.4rem;
}
.field option { background: var(--ink-800); }

.form-grid { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-full { grid-column: 1 / -1; }

.form-more summary {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-mute);
  padding: 0.35rem 0;
  list-style: none;
}
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::before { content: "+ "; color: var(--signal); }
.form-more[open] summary::before { content: "− "; }

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  border: 1px solid var(--line);
}
.form-status[data-state="ok"] { border-color: rgba(0, 255, 64, 0.4); color: var(--signal); background: rgba(0, 255, 64, 0.06); }
.form-status[data-state="err"] { border-color: rgba(255, 90, 90, 0.4); color: #ff9a9a; background: rgba(255, 90, 90, 0.06); }
.form-status[hidden] { display: none; }

/* Contact channels */
.channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-800);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.channel:hover { border-color: var(--line-strong); background: var(--ink-700); }
.channel__icon {
  width: 38px; height: 38px;
  flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: rgba(0, 255, 64, 0.07);
  color: var(--signal);
}
.channel__icon svg { width: 18px; height: 18px; }
.channel b { display: block; font-size: 0.9375rem; font-weight: 600; }
.channel span { font-size: 0.8125rem; color: var(--fg-mute); word-break: break-word; }

/* Legal/policy pages ------------------------------------------------------- */
.legal { max-width: 74ch; }
.legal h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal h3 { margin-top: 1.75rem; font-size: 1.0625rem; }
.legal p, .legal li { color: var(--fg-soft); font-size: 0.9375rem; }
.legal p { margin-top: 0.9rem; }
.legal ul, .legal ol { margin-top: 0.9rem; padding-left: 1.25rem; display: grid; gap: 0.5rem; }
.legal a { color: var(--signal); text-decoration: underline; text-underline-offset: 0.15em; }
.legal dl { margin-top: 1rem; display: grid; gap: 0.9rem; }
.legal dt { font-weight: 600; color: var(--fg); font-size: 0.9375rem; }
.legal dd { margin: 0.2rem 0 0; color: var(--fg-soft); font-size: 0.9375rem; }

/* Details ConsumeIT must confirm before publishing — deliberately obvious. */
.placeholder {
  display: block;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(255, 196, 0, 0.45);
  border-radius: var(--r-sm);
  background: rgba(255, 196, 0, 0.05);
  color: #ffd25e;
  font-size: 0.875rem;
}
.placeholder b { color: #ffdf94; }

.toc { display: grid; gap: 0.4rem; list-style: none; padding: 0; margin-top: 1.25rem; }
.toc a { font-size: 0.9375rem; color: var(--fg-mute); text-decoration: none; }
.toc a:hover { color: var(--signal); }

.legal-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.875rem; }
.legal-table th, .legal-table td {
  text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th { color: var(--fg); font-weight: 600; }
.legal-table td { color: var(--fg-mute); }
.table-scroll { overflow-x: auto; }

/* --------------------------------------------------------------------------
   17. Breadcrumb
   -------------------------------------------------------------------------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--fg-faint);
  list-style: none;
}
.crumbs a { color: var(--fg-mute); }
.crumbs a:hover { color: var(--signal); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--fg-faint); }
.crumbs [aria-current] { color: var(--fg-soft); }

.page-head { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.page-head::before {
  content: "";
  position: absolute;
  inset: -60% 40% auto -10%;
  height: 520px;
  background: radial-gradient(50% 50% at 30% 50%, var(--signal-glow), transparent 70%);
  pointer-events: none;
}
.page-head > * { position: relative; }
.page-head h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 22ch;
  margin-top: 1.25rem;
}
.page-head + .section { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.page-head .lede { max-width: 62ch; margin-top: 1.25rem; }

/* Inline links inside running copy need to look like links. */
main .flow p a,
main .lede a,
main .note a,
main .faq__a a,
main .checks a,
main dd a,
main .metric__label a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}
main .flow p a:hover,
main .lede a:hover,
main .note a:hover,
main .faq__a a:hover,
main .checks a:hover,
main dd a:hover { text-decoration-thickness: 2px; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-1000);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer a { font-size: 0.9375rem; color: var(--fg-mute); transition: color 0.18s var(--ease); }
.site-footer a:hover { color: var(--signal); }
.site-footer .brand img { height: 28px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--fg-faint);
}

/* --------------------------------------------------------------------------
   19. Floating WhatsApp / contact dock
   -------------------------------------------------------------------------- */
.dock {
  position: fixed;
  right: clamp(0.9rem, 3vw, 1.5rem);
  bottom: clamp(0.9rem, 3vw, 1.5rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border-radius: 100px;
  background: #25D366;
  color: #04220F;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  transition: transform 0.35s var(--ease), background-color 0.2s var(--ease);
}
.dock.is-in { transform: none; }
.dock:hover { background: #34e57a; }
.dock svg { width: 20px; height: 20px; flex: none; }
@media (max-width: 480px) {
  .dock { padding: 0.85rem; }
  .dock span { display: none; }
}

/* --------------------------------------------------------------------------
   20. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.07s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .meter > i { width: var(--w, 60%); }
}

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mt-4 { margin-top: 3rem; }
