/* =============================================
   ZYNC Design System — v4.9
   Dark-native. Violet + Amber only. No decoration.
   ============================================= */

:root {
  /* Surfaces */
  --bg: #08090a;
  --panel: #0f1011;
  --elevated: #191a1b;
  --surface-2: #28282c;

  /* Text */
  --text: #f7f8f8;
  --text-2: #d0d6e0;
  --text-3: #8a8f98;
  --text-4: #62666d;

  /* Accents — v3 (green primary, April 2026). Variable names retained from v2 for back-compat; values are green. */
  --violet: #22C55E;
  --violet-hover: #16A34A;
  --violet-muted: #15803D;
  --violet-tint: rgba(34,197,94,0.15);
  --violet-border: rgba(34,197,94,0.35);
  --violet-text: #4ADE80;

  /* Canonical v3 aliases — prefer these going forward */
  --green: #22C55E;
  --green-hover: #16A34A;
  --green-dark: #16A34A;
  --green-text: #4ADE80;
  --green-tint: rgba(34,197,94,0.15);
  --green-border: rgba(34,197,94,0.35);

  --amber: #D97706;
  --amber-hover: #F59E0B;
  --amber-border: rgba(217,119,6,0.3);

  /* Borders */
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.05);
  --border-bright: rgba(255,255,255,0.15);

  /* Card backgrounds */
  --card-bg: rgba(255,255,255,0.02);
  --card-bg-hover: rgba(255,255,255,0.04);
  --card-bg-elev: rgba(255,255,255,0.03);

  /* Status */
  --success: #10b981;
  --error: #E24B4A;

  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-body: 'Inter', 'SF Pro Display', -apple-system, system-ui, 'Helvetica Neue', sans-serif;
  --font-wordmark: 'Archivo Black', 'Inter', sans-serif;
  --font-mono: 'Berkeley Mono', ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', Menlo, monospace;
}

/* =============================================
   Reset + base
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv01", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

::selection { background: var(--violet); color: #fff; }

/* =============================================
   Container + typography helpers
   ============================================= */

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--violet-tint);
  color: var(--violet-text);
  border: 1px solid var(--violet-border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-feature-settings: "cv01", "ss03";
}
.eyebrow--plain {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head--left { text-align: left; margin-left: 0; }
.section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}
.section__head p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
}

section {
  padding: 100px 0;
  position: relative;
}
section + section { border-top: 1px solid var(--border-subtle); }

.section--panel { background: var(--panel); }
.section--canvas { background: var(--bg); }

.text-center { text-align: center; }
.ctas-center { justify-content: center; }
.lead-center { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.mt-10 { margin-top: 10px; }
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }
.pb-40 { padding-bottom: 40px; }
.pb-48 { padding-bottom: 48px; }

.eyebrow--amber {
  background: rgba(217,119,6,0.12);
  color: var(--amber-hover);
  border-color: var(--amber-border);
}

.grid-split-offset { grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.pt-24 { padding-top: 24px; }
.hidden { display: none; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 14.5px;
}
.checklist svg { flex-shrink: 0; }

.icp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.icp-list li {
  color: var(--text-2);
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}
.icp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.bundle-wrap {
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.plan--left { text-align: left; }
.plan__per--alt { margin-left: 10px; }

.contact-detail { color: var(--text-2); }
.contact-detail strong { color: var(--text); }
.contact-detail a { color: var(--violet-text); }
.contact-detail + .contact-detail { margin-top: 6px; }
.card + .card { margin-top: 16px; }

.note {
  color: var(--text-2);
  font-size: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  line-height: 1.6;
}
.note strong { color: var(--text); }

/* Tier note — proper callout variant */
.tier-note {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--violet);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 14.5px;
  color: #d0d6e0;
  line-height: 1.7;
}
.tier-note strong { color: var(--text); }

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  font-feature-settings: "cv01", "ss03";
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 160ms ease, color 160ms ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--violet);
  color: #fff;
}
.btn--primary:hover { background: var(--violet-hover); }
.btn--primary:active { transform: scale(0.97); }

.btn--action {
  background: var(--amber);
  color: #fff;
}
.btn--action:hover { background: var(--amber-hover); }
.btn--action:active { transform: scale(0.97); }

.btn--ghost {
  background: var(--card-bg);
  color: var(--text-2);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--card-bg-hover);
  color: var(--text);
  border-color: var(--border-bright);
}

.btn--secondary {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn--secondary:hover { background: var(--card-bg-hover); color: var(--text); border-color: var(--border-bright); }

.btn--full { width: 100%; }

/* =============================================
   Navigation
   ============================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 16, 17, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.nav__wordmark {
  font-family: var(--font-wordmark);
  font-size: 18px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.2px #f7f8f8;
  text-shadow: 0 0 12px rgba(247,248,248,0.08);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav__toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  font-feature-settings: "cv01", "ss03";
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a[aria-current="page"] { color: var(--text); }

.nav__cta {
  background: var(--violet);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--violet-hover); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 24px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease, padding 240ms ease;
  }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav__links li:last-child a { border-bottom: none; margin-top: 10px; }
  .nav__links.is-open { max-height: 600px; }
  .nav__cta { text-align: center; padding: 11px 16px; }
}

/* =============================================
   Hero
   ============================================= */

.hero {
  padding: 120px 0 100px;
  background: var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text);
  margin: 18px 0 20px;
}
.hero__title--sm { font-size: clamp(2rem, 4vw, 2.8rem); }
.hero__title--md { font-size: clamp(2rem, 4vw, 2.6rem); }
.hero__title--lg { font-size: clamp(2rem, 4vw, 3rem); }
.hero__title span {
  color: var(--violet-text);
  font-weight: 600;
}
.hero__lead {
  color: var(--text-2);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #d0d6e0;
}
.hero__meta svg { color: var(--violet); flex-shrink: 0; }

/* Stat panel */
.statpanel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
}
.statpanel__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-text);
  margin-bottom: 20px;
}
.statpanel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 500ms ease, transform 500ms ease, border-color 160ms ease, background 160ms ease;
}
.statpanel.is-visible .stat,
.statpanel.is-revealed .stat { opacity: 1; transform: translateY(0) scale(1); }
.statpanel.is-visible .stat:nth-child(1),
.statpanel.is-revealed .stat:nth-child(1) { transition-delay: 40ms; }
.statpanel.is-visible .stat:nth-child(2),
.statpanel.is-revealed .stat:nth-child(2) { transition-delay: 140ms; }
.statpanel.is-visible .stat:nth-child(3),
.statpanel.is-revealed .stat:nth-child(3) { transition-delay: 240ms; }
.statpanel.is-visible .stat:nth-child(4),
.statpanel.is-revealed .stat:nth-child(4) { transition-delay: 340ms; }

.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #f7f8f8;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: #8a8f98;
  line-height: 1.5;
  margin-top: 6px;
}

.statpanel__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #8a8f98;
  line-height: 1.6;
}
.statpanel__note strong { color: #d0d6e0; display: block; margin-bottom: 4px; }

/* =============================================
   Problem / Fix cards
   ============================================= */

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.pf-card {
  background: var(--card-bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pf-card--problem { border-color: var(--amber-border); }
.pf-card--fix     { border-color: var(--violet-border); }
.pf-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}
.pf-card ul { list-style: none; display: grid; gap: 12px; }
.pf-card li {
  position: relative;
  padding-left: 22px;
  color: #d0d6e0;
  font-size: 15px;
  line-height: 1.55;
}
.pf-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pf-card--problem li::before { background: var(--amber); }
.pf-card--fix li::before     { background: var(--violet); }

/* =============================================
   Generic grids + cards
   ============================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.card p, .card li {
  color: #d0d6e0;
  font-size: 15px;
  line-height: 1.55;
}
.card ul { list-style: none; display: grid; gap: 8px; }
.card ul li { padding-left: 18px; position: relative; }
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-3);
}

/* ICP card — med-spa / salon / beauty therapy */
.card.icp-card {
  border-top: 2px solid rgba(34,197,94,0.4);
  padding-top: 20px;
}

/* Vertical link card (home) */
.vert-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.vert-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.vert-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--violet-tint);
  border: 1px solid var(--violet-border);
  color: var(--violet-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vert-card__icon svg { width: 20px; height: 20px; }
.vert-card h3 { font-size: 20px; }
.vert-card p { flex: 1; }
.vert-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--violet-text);
  font-size: 14px;
  font-weight: 500;
  transition: gap 160ms ease;
}
.vert-card:hover .vert-card__link { gap: 10px; }
.vert-card__link svg { width: 16px; height: 16px; }

/* =============================================
   Testimonials
   ============================================= */

.t-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.t-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); }
.t-card__stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}
.t-card__quote {
  color: #d0d6e0;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.t-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.t-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--violet-tint);
  border: 1px solid var(--violet-border);
  color: var(--violet-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.t-card__name { color: var(--text); font-size: 14px; font-weight: 500; }
.t-card__role { color: var(--text-3); font-size: 12px; margin-top: 2px; }

/* =============================================
   Pricing plans
   ============================================= */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plans--two { grid-template-columns: 1fr 1fr; max-width: 820px; margin: 0 auto; }

.plan {
  position: relative;
  background: var(--card-bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 160ms ease, border-color 160ms ease;
}
.plan:hover { background: var(--card-bg-hover); }

.plan--featured {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 80px rgba(34,197,94,0.1), 0 0 0 1px rgba(34,197,94,0.2);
}
.plan--featured:hover { background: rgba(34,197,94,0.07); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan__tagline {
  color: var(--text-3);
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: -8px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.plan__amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan__per {
  color: var(--text-3);
  font-size: 14px;
}
.plan__setup {
  color: var(--text-3);
  font-size: 13px;
}
.plan__setup strong { color: var(--text-2); font-weight: 500; }

.plan__features {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 4px 0 4px;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding-left: 22px;
  color: #d0d6e0;
  font-size: 15px;
  line-height: 1.55;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--violet-tint);
  border: 1px solid var(--violet-border);
}
.plan__features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--violet-text);
  border-bottom: 1.5px solid var(--violet-text);
  transform: rotate(-45deg);
}

.plan__why {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  color: #d0d6e0;
  line-height: 1.7;
  margin: 20px 0;
}
.plan__why strong {
  display: block;
  color: #4ADE80;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan .btn { margin-top: auto; }

.guarantee-banner {
  margin-top: 24px;
  background: var(--card-bg-elev);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.guarantee-banner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}
.guarantee-banner strong { color: var(--text); display: block; margin-bottom: 4px; font-size: 14px; }
.guarantee-banner p { color: #d0d6e0; font-size: 13.5px; line-height: 1.55; }

/* =============================================
   Price stack (pricing page compact list)
   ============================================= */

.pstack {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pstack__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.pstack__item:last-child { border-bottom: none; }
.pstack__item:hover { background: var(--card-bg-hover); }

.pstack__item.is-featured {
  border-color: rgba(34,197,94,0.4);
  background: rgba(34,197,94,0.06);
  box-shadow: 0 0 40px rgba(34,197,94,0.08);
  border-left: 2px solid var(--violet);
}

.pstack__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.pstack__name span {
  color: var(--text-3);
  font-weight: 400;
  font-size: 13px;
}
.pstack__monthly, .pstack__setup {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
}
.pstack__monthly small, .pstack__setup small {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pstack__monthly { color: var(--text); font-family: var(--font-mono); font-weight: 400; font-size: 16px; }
.pstack__setup { color: var(--text-3); font-family: var(--font-mono); font-size: 13px; }

/* Compact add-ons table */
.addons {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.addons__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 12px 24px;
  min-height: 44px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 160ms ease;
  font-size: 14px;
}
.addons__row:last-child { border-bottom: none; }
.addons__row:hover { background: var(--card-bg-hover); }
.addons__name { color: var(--text); font-weight: 500; }
.addons__name span {
  color: var(--text-3);
  font-weight: 400;
  margin-left: 8px;
  font-size: 13px;
}
.addons__setup, .addons__ongoing {
  color: var(--text-2);
  font-size: 13.5px;
  min-width: 100px;
  text-align: right;
  font-family: var(--font-mono);
}
.addons__ongoing { color: var(--text-3); }

/* =============================================
   Trades "How it works" tab component
   ============================================= */

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab, .tabs__pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: #d0d6e0;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-feature-settings: "cv01", "ss03";
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.tab:hover, .tabs__pill:hover { color: var(--text); border-color: var(--border-bright); }
.tab[aria-selected="true"],
.tab.is-active,
.tabs__pill.is-active {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  font-size: 14px;
}

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fadeIn 280ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  background: var(--card-bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet-tint);
  border: 1px solid var(--violet-border);
  color: var(--violet-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 500; color: #f7f8f8; margin-bottom: 8px; letter-spacing: -0.015em; }
.step p { color: #d0d6e0; font-size: 15px; line-height: 1.55; }

/* =============================================
   Horizontal "natural path" steps
   ============================================= */

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.flow__step {
  background: var(--card-bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.flow__step strong { color: var(--text); font-weight: 500; font-size: 15px; }
.flow__step span { color: #d0d6e0; font-size: 13.5px; line-height: 1.45; }
.flow__arrow {
  align-self: center;
  color: var(--text-4);
  font-size: 20px;
}
@media (max-width: 720px) {
  .flow { grid-template-columns: 1fr; }
  .flow__arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* =============================================
   CTA band
   ============================================= */

.cta-band {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text);
}
.cta-band p { color: #d0d6e0; margin: 0 auto 24px; max-width: 560px; font-size: 15.5px; line-height: 1.6; }

/* =============================================
   Forms
   ============================================= */

.form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form h2 { font-size: 22px; letter-spacing: -0.02em; color: var(--text); }
.form__hint { color: #d0d6e0; font-size: 14px; line-height: 1.6; }
.form__hint a { color: var(--violet-text); }
.form__row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__row--split > div { display: flex; flex-direction: column; gap: 6px; }
.form label {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  font-feature-settings: "cv01", "ss03";
}
.form input, .form select, .form textarea {
  background: var(--card-bg-hover);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  font-feature-settings: "cv01", "ss03";
  width: 100%;
  transition: border-color 160ms ease, background 160ms ease;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: rgba(34,197,94,0.6);
  background: var(--card-bg-hover);
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-4); }
.form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form button[type=submit] { margin-top: 8px; background: var(--amber); color: #fff; border: none; padding: 12px 20px; border-radius: var(--radius); font-size: 15px; font-weight: 500; transition: background 160ms ease, transform 0.1s ease; }
.form button[type=submit]:hover { background: var(--amber-hover); }
.form button[type=submit]:active { transform: scale(0.97); }

/* =============================================
   Split (two-column content)
   ============================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.split--align-center { align-items: center; }
.split h2 { font-size: clamp(1.35rem, 2.4vw, 1.65rem); margin-bottom: 12px; color: var(--text); }
.split p { color: #d0d6e0; font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.split ul.accent { list-style: none; display: grid; gap: 10px; }
.split ul.accent li {
  padding-left: 22px;
  position: relative;
  color: #d0d6e0;
  font-size: 15px;
  line-height: 1.55;
}
.split ul.accent li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet);
}
.split ul.accent.danger li::before { background: var(--amber); }

/* =============================================
   Call flow demo (homepage hero follow-on)
   ============================================= */

.call-flow-demo {
  background: #0f1011;
  padding: 80px 0;
}
.call-flow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 16px;
}
.call-flow__heading {
  text-align: center;
  margin-bottom: 16px;
}
.call-flow__heading span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.call-flow__heading h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cf-panel {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 1;
  transform: translateY(0);
}
.cf-panel__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
}
.cf-panel__icon svg { width: 18px; height: 18px; }
.cf-panel__body { flex: 1; min-width: 0; }
.cf-panel__label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.cf-panel__text {
  color: #f7f8f8;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-word;
}
.cf-panel--reply .cf-panel__text::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #f7f8f8;
  vertical-align: -2px;
  margin-left: 2px;
  animation: cf-caret 900ms steps(2) infinite;
  opacity: 0;
}
.cf-panel--reply.is-typing .cf-panel__text::after { opacity: 1; }
@keyframes cf-caret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.cf-panel--capture .cf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: cf-pulse 1800ms ease-in-out infinite;
}
@keyframes cf-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.cf-panel--capture .cf-panel__icon { color: var(--success); border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.08); }

/* Step 4 — outcome (job booked, money kept) */
.cf-panel--booked {
  background: linear-gradient(180deg, rgba(34,197,94,0.06), rgba(34,197,94,0) 70%), var(--elevated);
  border-color: var(--violet-border);
}
.cf-panel--booked .cf-panel__icon {
  color: var(--violet-text);
  border-color: var(--violet-border);
  background: var(--violet-tint);
}
.cf-panel--booked .cf-panel__label {
  color: var(--violet-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cf-panel__money {
  color: var(--violet-text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding: 1px 6px;
  margin: 0 2px;
  border-radius: 4px;
  background: var(--violet-tint);
}

@media (min-width: 769px) {
  .call-flow .cf-panel {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .call-flow.is-playing .cf-panel:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
  .call-flow.is-playing .cf-panel:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
  .call-flow.is-playing .cf-panel:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1800ms; }
  .call-flow.is-playing .cf-panel:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 2700ms; }
}

/* =============================================
   Footer
   ============================================= */

.footer {
  background: var(--panel);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer__wordmark {
  font-family: var(--font-wordmark);
  font-size: 15px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.2px #f7f8f8;
  text-shadow: 0 0 12px rgba(247,248,248,0.08);
  letter-spacing: 0.08em;
  line-height: 1;
}
.footer__blurb { color: #d0d6e0; font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer h5 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a {
  color: var(--text-2);
  font-size: 14px;
  transition: color 160ms ease;
}
.footer ul a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-4);
  font-size: 12.5px;
}

/* =============================================
   Legal pages
   ============================================= */

.legal { padding: 96px 0 120px; }
.legal__container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal h1 { font-size: clamp(1.8rem, 3vw, 2.3rem); letter-spacing: -0.03em; margin-bottom: 20px; }
.legal__meta {
  display: grid;
  gap: 6px;
  color: #d0d6e0;
  font-size: 13.5px;
  padding: 18px 22px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.legal__meta strong { color: var(--text); font-weight: 500; }
.legal-note {
  background: rgba(217,119,6,0.06);
  border: 1px solid var(--amber-border);
  color: #d0d6e0;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.legal-note strong { color: var(--amber-hover); }
.legal h2 {
  font-size: 20px;
  color: var(--text);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.legal p, .legal li { color: #d0d6e0; font-size: 15px; line-height: 1.65; }
.legal p { margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; display: grid; gap: 6px; }
.legal ul li { list-style: disc; }
.legal a { color: var(--violet-text); border-bottom: 1px solid var(--violet-border); }
.legal a:hover { color: var(--text); border-color: var(--text-3); }

/* =============================================
   Reveal on scroll
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible,
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 80px 0 60px; }
  .plans { grid-template-columns: 1fr; }
  .plans--two { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .grid-split-offset { grid-template-columns: 1fr; }
  .icp-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .statpanel__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 60px 0; }
  .call-flow-demo { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .statpanel { padding: 20px; }
  .statpanel__grid { gap: 16px; }
  .stat { padding: 16px; }
  .form__row--split { grid-template-columns: 1fr; }
  .pstack__item { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
  .pstack__monthly, .pstack__setup { text-align: left; min-width: 0; flex-direction: row; gap: 8px; align-items: baseline; }
  .addons__row { grid-template-columns: 1fr; gap: 4px; }
  .addons__setup, .addons__ongoing { text-align: left; min-width: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links { padding: 12px 16px 16px; }
  .tabs { gap: 6px; }
  .tab, .tabs__pill { padding: 8px 14px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .stat, .cf-panel { opacity: 1 !important; transform: none !important; }
}

/* Card alignment lock — do not remove */
.grid-2,
.grid-3 {
  align-items: start !important;
}

/* =============================================
   v4.8 — kill translateY on reveal cards in grids
   Prevents mid-animation offsets that look like misalignment.
   Opacity fade + stagger retained.
   ============================================= */
.grid-2 > .reveal,
.grid-3 > .reveal,
.plans > .reveal,
.pf-grid > .reveal {
  transform: none;
}

/* =============================================
   v4.9 — strip .card + .card margin inside grid containers
   Prevents 16px vertical offset on non-first cards in grids.
   Preserves stacked-card spacing in asides and other non-grid contexts.
   ============================================= */
.grid-2 > .card + .card,
.grid-3 > .card + .card,
.pf-grid > .card + .card {
  margin-top: 0;
}
