/* ==========================================================================
   Wheelz365 — landing page
   Dark, iridescent. Single stylesheet, no build step (GitHub Pages friendly).
   ========================================================================== */

/* ------------------------------ tokens ---------------------------------- */
:root {
  --bg:            #050506;
  --bg-soft:       #08080a;
  --panel:         #0d0d10;
  --panel-2:       #121216;
  --panel-3:       #17171c;
  --line:          rgba(255, 255, 255, 0.09);
  --line-strong:   rgba(255, 255, 255, 0.16);
  --fg:            #f6f6f8;
  --fg-muted:      rgba(246, 246, 248, 0.62);
  --fg-dim:        rgba(246, 246, 248, 0.42);
  --accent:        #17b877;
  --accent-warm:   #ff6a2b;
  --accent-blue:   #4d7bff;
  --accent-violet: #9b6bff;
  --accent-amber:  #ffb020;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 26px;

  --container:      1440px;
  --container-wide: 1760px;
  --pad: clamp(20px, 4vw, 64px);

  --font: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter,
          Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

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

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

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

h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; color: #000; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------ layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.container--wide { max-width: var(--container-wide); }

.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 132px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.section--proof { border-top: 0; }

.section__title {
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.028em;
  text-align: center;
  text-wrap: balance;
  max-width: 22ch;
  margin-inline: auto;
}
.section__title--left { text-align: left; margin-inline: 0; max-width: 26ch; }
.section__title--display {
  font-size: clamp(1.9rem, 3.1vw, 2.9rem);
  max-width: 48ch;
  text-wrap: pretty;
  margin-block: 26px 48px;
}
.section__sub {
  margin-top: 18px;
  color: var(--fg-muted);
  font-size: clamp(0.95rem, 1.05vw, 1.0625rem);
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
}
.section__sub--left { text-align: left; margin-inline: 0; max-width: 54ch; }
.section__cta { display: flex; justify-content: center; margin-top: 32px; }

.eyebrow-wrap { display: flex; justify-content: center; margin-bottom: 22px; }
.eyebrow-wrap--left { justify-content: flex-start; }

.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

/* ------------------------------ brand ----------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 22px; height: 22px; border-radius: 50%;
  background:
    conic-gradient(from 210deg,
      #ff3d81 0deg, #ff8a3d 55deg, #ffd166 110deg, #2fe08a 175deg,
      #35d6ff 235deg, #4d7bff 290deg, #9b6bff 330deg, #ff3d81 360deg);
  box-shadow: 0 0 16px rgba(120, 160, 255, 0.35);
  position: relative;
  flex: none;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%; background: var(--bg);
}
.brand__name { font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.02em; }
.brand__name-accent { color: var(--fg-muted); font-weight: 500; }

/* ------------------------------ buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn--light {
  background: #fff; color: #07070a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 10px 30px rgba(0, 0, 0, 0.45);
}
.btn--light:hover { transform: translateY(-1px); background: #f1f1f4; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--fg);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 8px 9px 18px; font-size: 0.875rem; }
.btn--xs { padding: 8px 14px; font-size: 0.8125rem; }
.btn--block { width: 100%; }

.btn__dot {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #07070a; color: #fff;
  font-size: 0.75rem; line-height: 1;
}
.btn--lg .btn__dot { width: 26px; height: 26px; font-size: 0.8125rem; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--fg-muted);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.07); color: var(--fg); }
.icon-btn[disabled] { opacity: 0.35; cursor: default; }

/* ------------------------------ pills ----------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  letter-spacing: -0.005em;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: var(--fg);
}
.pill--badge {
  background: rgba(12, 12, 16, 0.66);
  border-color: rgba(255, 255, 255, 0.14);
  transition: border-color 0.18s var(--ease);
}
.pill--badge:hover { border-color: rgba(255, 255, 255, 0.3); }
.pill__dot {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #ffb06a, var(--accent-warm));
  box-shadow: 0 0 10px rgba(255, 106, 43, 0.6);
}
.pill__chev { color: var(--fg-dim); }
.pill--eyebrow { color: var(--fg-muted); }
.pill--ghost {
  color: var(--fg);
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.pill--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--line-strong); }
.pill--lg { padding: 10px 18px; font-size: 0.875rem; flex: none; }

/* ------------------------------ nav ------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.nav__links {
  display: none;
  gap: 30px;
  margin-inline: auto;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.nav__links a { transition: color 0.18s var(--ease); }
.nav__links a:hover { color: var(--fg); }
.nav__actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
/* on small screens the CTA lives in the drop-down, so the bar stays inside 390px */
.nav__actions > .btn { display: none; }
.link-quiet { display: none; font-size: 0.875rem; color: var(--fg-muted); }
.link-quiet:hover { color: var(--fg); }

.nav__toggle {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 16px; height: 1.5px; background: var(--fg); }

/* display:grid would otherwise beat the [hidden] attribute */
.nav__mobile[hidden] { display: none; }
.nav__mobile {
  display: grid; gap: 4px;
  padding: 10px var(--pad) 22px;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a { padding: 11px 2px; color: var(--fg-muted); font-size: 0.9375rem; }
.nav__mobile .btn { margin-top: 10px; color: #07070a; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__actions > .btn { display: inline-flex; }
  .link-quiet { display: inline; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
  .nav__inner { height: 76px; }
}

/* ------------------------------ hero ------------------------------------ */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: center;
  padding-block: 140px 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -2;
}
/* keeps the top of the hero near-black so the headline always reads */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(130% 74% at 50% 8%, rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.6) 44%, rgba(5, 5, 6, 0) 78%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(5, 5, 6, 0.6) 26%, rgba(5, 5, 6, 0.08) 56%, rgba(5, 5, 6, 0) 72%),
    linear-gradient(to bottom, rgba(5, 5, 6, 0) 88%, var(--bg) 100%);
}
.hero__content { position: relative; text-align: center; }
/* a soft dark halo so the copy stays crisp while the waves stay bright at the edges */
.hero__content::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(1240px, 96%); height: 145%;
  z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(5, 5, 6, 0.94) 0%, rgba(5, 5, 6, 0.72) 42%, rgba(5, 5, 6, 0.28) 62%, rgba(5, 5, 6, 0) 76%);
}
.hero__title {
  margin-top: 26px;
  font-size: clamp(2.5rem, 5.4vw, 4.65rem);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero__sub {
  margin: 22px auto 0;
  max-width: 56ch;
  color: rgba(246, 246, 248, 0.74);
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}
.hero__cta { margin-top: 30px; display: flex; justify-content: center; }
.hero__note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: rgba(246, 246, 248, 0.68);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 16px rgba(0, 0, 0, 0.9);
}

/* ------------------------------ stats ----------------------------------- */
.section--proof { padding-top: clamp(56px, 6vw, 88px); }
.stats { margin-top: 42px; }
.stats__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(272px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.stats__track::-webkit-scrollbar { display: none; }

.stat-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 26px 24px 24px;
  min-height: 232px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.stat-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.stat-card__lead { color: var(--fg-muted); font-size: 0.9375rem; line-height: 1.45; max-width: 26ch; }
.stat-card__value {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex; align-items: flex-start; gap: 6px;
}
.stat-card__arrow {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: #04120c;
  font-size: 0.6875rem; font-weight: 600;
  transform: translateY(2px);
}
.stat-card__label {
  margin-top: 12px;
  font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim);
}
.stats__nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

/* ------------------------------ tabs ------------------------------------ */
.tabs {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px;
  margin-top: 22px;
}
.tab {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--fg-dim);
  border: 1px solid transparent;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab:hover { color: var(--fg-muted); }
.tab.is-active {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
}
.tab-pause {
  width: 30px; height: 30px; border-radius: 50%;
  margin-left: 6px;
  display: grid; place-items: center;
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 18px rgba(77, 123, 255, 0.45);
}
.tab-pause__icon { width: 16px; height: 16px; fill: currentColor; grid-area: 1 / 1; }
.tab-pause.is-playing .tab-pause__icon--play { display: none; }
.tab-pause:not(.is-playing) .tab-pause__icon--pause { display: none; }

.panel-stage { position: relative; }
.panel { display: none; }
.panel.is-active { display: block; animation: panel-in 0.45s var(--ease) both; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ------------------------------ app mockup ------------------------------ */
.app {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #101015, #0a0a0d);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
}
.app__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.app__crumb { margin-left: 12px; font-size: 0.75rem; color: var(--fg-dim); }

/* a steady min-height keeps the page from jumping as tabs advance */
.app__body { display: grid; grid-template-columns: 1fr; min-height: 460px; }
.app__body--single { padding: clamp(16px, 2vw, 26px); }
@media (min-width: 860px) {
  .app__body { grid-template-columns: 224px 1fr; }
  /* panels without a sidebar must not inherit the 224px rail */
  .app__body--single { grid-template-columns: 1fr; }
}
/* centre the content instead of stretching it, so a short panel gets even
   padding rather than a pile of dead space under it */
.app__body--single { align-content: center; }

.app__side {
  display: none;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8125rem;
}
@media (min-width: 860px) { .app__side { display: flex; } }
.app__search {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 10px; color: var(--fg-dim); font-size: 0.75rem; margin-bottom: 12px;
}
.app__side-h {
  font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28); margin: 12px 0 6px 8px;
}
.app__nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; border-radius: 7px; color: var(--fg-muted);
}
.app__nav-item.is-active { background: rgba(255, 255, 255, 0.07); color: var(--fg); }
.chip {
  margin-left: auto; font-size: 0.6875rem; color: var(--fg-dim);
  background: rgba(255, 255, 255, 0.07); border-radius: 5px; padding: 1px 6px;
}
.bullet { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.bullet--blue { background: var(--accent-blue); }
.bullet--violet { background: var(--accent-violet); }
.bullet--green { background: var(--accent); }
.app__user {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 9px;
}
.app__user b { display: block; font-size: 0.75rem; font-weight: 500; }
.app__user span:last-child { font-size: 0.6875rem; color: var(--fg-dim); }
.avatar {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent-violet), var(--accent-blue));
  font-size: 0.625rem; font-weight: 600; color: #fff;
}
.avatar--sm { width: 24px; height: 24px; font-size: 0.5625rem; }

.app__main { display: flex; flex-direction: column; min-width: 0; }
.app__head {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.ticket-id {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-warm); background: rgba(255, 106, 43, 0.14);
  border-radius: 5px; padding: 2px 6px;
}
.app__head-title { font-size: 0.875rem; font-weight: 500; }
.badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.6875rem; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--fg-muted);
}
.badge--live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.badge--solid { margin-left: 0; background: #fff; color: #07070a; border-color: #fff; font-weight: 500; }

.thread { padding: 18px; display: grid; gap: 16px; font-size: 0.8125rem; flex: 1; }
.thread__msg { color: var(--fg-muted); line-height: 1.55; }
.thread__agent { display: flex; gap: 11px; }
.agent-mark {
  width: 22px; height: 22px; border-radius: 6px; flex: none; margin-top: 2px;
  background: conic-gradient(from 200deg, #ff3d81, #ffd166, #2fe08a, #35d6ff, #9b6bff, #ff3d81);
}
.thread__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 0.75rem; }
.thread__meta b { font-weight: 500; }
.thread__meta span { color: var(--fg-dim); }
.tag-auto {
  font-size: 0.5625rem !important; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-blue) !important; background: rgba(77, 123, 255, 0.16);
  border-radius: 4px; padding: 2px 5px;
}

.checklist {
  margin-top: 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  padding: 13px 15px;
}
.checklist__head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-bottom: 11px; margin-bottom: 4px; border-bottom: 1px solid var(--line);
}
.checklist__head b { font-weight: 500; font-size: 0.8125rem; }
.checklist__head span { font-size: 0.6875rem; color: var(--fg-dim); }
.checklist__row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 0.8125rem; color: var(--fg-muted);
}
.checklist__row i {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.checklist__row.is-ok i {
  border-color: var(--accent); background: rgba(23, 184, 119, 0.18);
  box-shadow: inset 0 0 0 3px rgba(23, 184, 119, 0.55);
}
.checklist__row.is-pending i { border-style: dashed; }
.checklist__row > span:last-child { margin-left: auto; font-size: 0.6875rem; color: var(--fg-dim); }
.await { color: var(--accent-blue) !important; }
.checklist__actions {
  display: flex; justify-content: flex-end; gap: 8px;
  padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line);
}
.app__composer {
  margin: 0 18px 18px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-dim); font-size: 0.8125rem;
}

/* connect panel */
.connect-grid { display: grid; gap: 10px; }
.connect-row {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  padding: 13px 15px;
}
.connect-row b { display: block; font-size: 0.875rem; font-weight: 500; }
.connect-row span:not([class]) { font-size: 0.75rem; color: var(--fg-dim); }
.connect-row > .tagline { margin-left: auto; }
.src {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 600; color: #fff;
}
.src--sheets { background: linear-gradient(140deg, #1f9d55, #0f6b39); }
.src--bio    { background: linear-gradient(140deg, #4d7bff, #2a4ec2); }
.src--bank   { background: linear-gradient(140deg, #9b6bff, #5f3ec7); }
.src--wa     { background: linear-gradient(140deg, #25d366, #128c46); }
.src--books  { background: linear-gradient(140deg, #ffb020, #c97c05); }

.tagline {
  font-size: 0.6875rem; line-height: 1.5; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--fg-dim); white-space: nowrap;
  align-self: center;   /* never stretch to a flex/grid parent's height */
}
.tagline--ok { color: var(--accent); border-color: rgba(23, 184, 119, 0.35); background: rgba(23, 184, 119, 0.1); }
.tagline--live { color: var(--accent-blue); border-color: rgba(77, 123, 255, 0.35); background: rgba(77, 123, 255, 0.1); }
.tagline--warn { color: var(--accent-amber); border-color: rgba(255, 176, 32, 0.35); background: rgba(255, 176, 32, 0.1); }

/* approve panel */
/* align-content:start — the panel has a min-height, and a stretched auto row
   would blow the status chips up into ellipses */
.approve { display: grid; gap: 16px; align-content: start; }
.approve__summary {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.approve__summary div {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025); padding: 13px 15px;
}
.approve__summary span { display: block; font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-dim); }
.approve__summary b { font-size: 1.375rem; font-weight: 500; letter-spacing: -0.02em; }
.approve__summary .ok { color: var(--accent); }
.approve__rows { display: grid; gap: 8px; }
.approve__row {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02); padding: 11px 15px;
}
.approve__row b { display: block; font-size: 0.8125rem; font-weight: 500; }
.approve__row span:not([class]) { font-size: 0.75rem; color: var(--fg-dim); }
.approve__row .tagline { margin-left: auto; }
.approve__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 6px; font-size: 0.8125rem; color: var(--fg-dim);
}

/* pay panel */
.payrun { display: grid; gap: 16px; align-content: start; }
.payrun__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.payrun__head b { display: block; font-size: 0.9375rem; font-weight: 500; }
.payrun__head span { font-size: 0.75rem; color: var(--fg-dim); }
.payrun__table { font-size: 0.8125rem; }
.payrun__table th {
  text-align: left; font-weight: 400; font-size: 0.625rem;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--fg-dim);
  padding: 0 12px 9px 0; border-bottom: 1px solid var(--line);
}
.payrun__table td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); color: var(--fg-muted); }
.payrun__table td:first-child { color: var(--fg); }
.payrun__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

/* ------------------------------ why / accordion ------------------------- */
.why {
  margin-top: 46px;
  display: grid; gap: 32px;
  align-items: start;
}
@media (min-width: 1000px) { .why { grid-template-columns: 1fr 1fr; gap: 56px; } }

.acc-item { border-radius: var(--radius); border: 1px solid transparent; }
.acc-item + .acc-item { margin-top: 4px; }
.acc-item.is-open {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}
.acc-item__head {
  width: 100%; display: flex; align-items: center; gap: 13px;
  padding: 15px 18px; text-align: left;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease);
}
.acc-item.is-open .acc-item__head { color: var(--fg); }
.acc-item__head:hover { color: var(--fg); }
.acc-item__icon { color: var(--fg-dim); width: 18px; flex: none; text-align: center; }
.acc-item.is-open .acc-item__icon { color: var(--fg); }
.acc-item__title { font-size: 0.9375rem; font-weight: 500; }
.acc-item__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.acc-item.is-open .acc-item__body { grid-template-rows: 1fr; }
.acc-item__body > p {
  overflow: hidden;
  padding: 0 18px 0 49px;
  color: var(--fg-muted);
  font-size: 0.875rem; line-height: 1.6;
}
.acc-item.is-open .acc-item__body > p { padding-bottom: 17px; }

.flow {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(14, 14, 20, 0.62), rgba(8, 8, 11, 0.82)),
    conic-gradient(from 220deg at 30% 60%, #3d2a6e, #17546a, #6b3049, #26407e, #3d2a6e);
  padding: 20px;
  overflow: hidden;
}
.flow__inner { display: grid; gap: 12px; }
.flow__card {
  display: flex; align-items: center; gap: 11px;
  background: rgba(12, 12, 16, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  backdrop-filter: blur(6px);
}
.flow__card--hero {
  background: rgba(16, 16, 24, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  align-items: flex-start;
  line-height: 1.5;
}
.flow__dots { margin-left: auto; color: var(--fg-dim); letter-spacing: 2px; flex: none; }
.flow__zap {
  margin-left: auto; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-warm); font-size: 0.75rem;
}
.kbd {
  font-size: 0.5625rem; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 5px; flex: none; font-weight: 600;
}
.kbd--trigger { color: #ffb98f; background: rgba(255, 106, 43, 0.18); }
.kbd--action  { color: #a8bcff; background: rgba(77, 123, 255, 0.18); }

/* ------------------------------ compare cards --------------------------- */
.cards-3 {
  margin-top: 44px;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card__head { display: flex; align-items: center; gap: 11px; font-size: 1.0625rem; font-weight: 500; }
.card p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; flex: 1; }
.card .pill { align-self: flex-start; }
.glyph {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 600; color: #fff;
}
.glyph--sm { width: 22px; height: 22px; border-radius: 7px; font-size: 0.625rem; }
.glyph--green  { background: linear-gradient(140deg, #21c179, #0d7a4a); }
.glyph--blue   { background: linear-gradient(140deg, #5b86ff, #2a4ec2); }
.glyph--violet { background: linear-gradient(140deg, #a97cff, #6a3fd0); }
.glyph--amber  { background: linear-gradient(140deg, #ffc247, #cd8106); }

/* ------------------------------ slabs ----------------------------------- */
.slab {
  margin-top: 22px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: clamp(22px, 3vw, 34px);
  display: grid; gap: 26px;
}
@media (min-width: 900px) { .slab { grid-template-columns: 300px 1fr; gap: 44px; align-items: start; } }
.slab:first-of-type { margin-top: 52px; }
.slab__aside p { font-size: 0.9375rem; color: var(--fg); max-width: 28ch; line-height: 1.5; }

.logo-grid {
  display: grid; gap: 16px 26px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.logo-grid li { display: flex; align-items: center; gap: 10px; }

.chip-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.chip-grid li {
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  padding: 11px 14px;
  font-size: 0.8125rem; color: var(--fg-muted);
}

/* ------------------------------ team quad ------------------------------- */
.team__head {
  display: grid; gap: 26px; align-items: end;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .team__head { grid-template-columns: 1fr auto; }
}
.grid-2x2 {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  display: grid; grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 800px) { .grid-2x2 { grid-template-columns: 1fr 1fr; } }
.quad { padding: clamp(22px, 2.6vw, 34px); border-top: 1px solid var(--line); }
.quad:first-child { border-top: 0; }
@media (min-width: 800px) {
  .quad:nth-child(-n+2) { border-top: 0; }
  .quad:nth-child(odd) { border-right: 1px solid var(--line); }
}
.quad h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; font-weight: 500; margin-bottom: 9px;
}
.quad h3 span {
  width: 17px; height: 17px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 0.5625rem;
  border: 1px solid var(--line-strong); color: var(--fg-muted);
}
.quad p { color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6; max-width: 46ch; }

/* ------------------------------ cta / form ------------------------------ */
.section--cta { background: var(--bg-soft); }
.cta { display: grid; gap: 40px; align-items: start; }
@media (min-width: 940px) { .cta { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cta__list { margin-top: 26px; display: grid; gap: 10px; }
.cta__list li {
  position: relative; padding-left: 24px;
  color: var(--fg-muted); font-size: 0.875rem;
}
.cta__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-size: 0.75rem;
}

.cta__form { display: grid; gap: 12px; }
.field-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field { display: block; }
.field input, .field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 0.9375rem;
  color: var(--fg);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
  appearance: none;
}
.field select { color: var(--fg-dim); }
.field select:valid { color: var(--fg); }
.field--select { position: relative; }
.field--select::after {
  content: "▾"; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); pointer-events: none; color: var(--fg-dim); font-size: 0.75rem;
}
.field input::placeholder { color: var(--fg-dim); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}
.field input:user-invalid { border-color: rgba(255, 92, 92, 0.55); }
.field select option { background: #101014; color: var(--fg); }
.cta__form .btn { margin-top: 6px; }
.cta__fineprint { font-size: 0.75rem; color: var(--fg-dim); text-align: center; }
.cta__fineprint.is-ok { color: var(--accent); }
.cta__fineprint.is-err { color: #ff8a8a; }

/* ------------------------------ footer ---------------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 76px) 28px; }
.footer__inner {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .footer__inner { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 44px; } }
.footer__brand p {
  margin-top: 16px; max-width: 34ch;
  color: var(--fg-muted); font-size: 0.875rem; line-height: 1.6;
}
.footer__social { display: flex; gap: 9px; margin-top: 20px; }
.footer__social a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 0.75rem; color: var(--fg-muted);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.08); color: var(--fg); }
.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__h {
  font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 4px;
}
.footer__col a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.18s var(--ease); }
.footer__col a:hover { color: var(--fg); }
.footer__base {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.75rem; color: var(--fg-dim);
}

/* ------------------------------ reveal ---------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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