/* ============================================
   SOLSTIQ WEBSITE — SHARED STYLES
   Brand palette:
     --navy:    #0F1D2A   (deep navy, primary dark)
     --blue:    #3499CC   (accent)
     --pale:    #D6EAF4   (soft accent wash)
     --ink:     #272727   (body text)
     --paper:   #F8F8F8   (warm off-white bg)
   Type: Inter (400 / 500 / 600 / 700)
   ============================================ */

:root {
  --navy:      #0F1D2A;
  --navy-60:   rgba(15, 29, 42, 0.60);
  --navy-10:   rgba(15, 29, 42, 0.08);
  --blue:      #3499CC;
  --blue-600:  #2A83B3;
  --pale:      #D6EAF4;
  --pale-50:   #EDF5FA;
  --ink:       #272727;
  --ink-60:    #4F5052;
  --ink-40:    #818284;
  --rule:      #E5E7EA;
  --rule-soft: #EEF0F2;
  --paper:     #FFFFFF;
  --paper-2:   #F8F8F8;
  --white:     #FFFFFF;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 29, 42, 0.06);
  --shadow:    0 6px 24px -8px rgba(15, 29, 42, 0.12), 0 2px 6px rgba(15, 29, 42, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(15, 29, 42, 0.22);

  --container: 1200px;

  --font: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

@font-face {
  font-family: 'Manrope';
  src: url("726f2631-9d0c-4622-8b75-c17e8c273421") format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
}

body { font-size: 16px; line-height: 1.55; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 112px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--paper-2 { background: var(--paper-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; color: inherit; }

.h-display {
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.h1 { font-size: clamp(36px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
.h2 { font-size: clamp(28px, 2.6vw, 38px); line-height: 1.15; letter-spacing: -0.025em; }
.h3 { font-size: 20px; line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; }

.eyebrow {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.lede { font-size: 19px; line-height: 1.55; color: var(--ink-60); max-width: 60ch; }
.lede--invert { color: rgba(255,255,255,0.72); }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-40);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: #1a2d42; transform: translateY(-1px); }

.btn--accent {
  background: var(--blue);
  color: var(--white);
}
.btn--accent:hover { background: var(--blue-600); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-invert {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost-invert:hover { border-color: rgba(255,255,255,0.6); }

.btn .arrow {
  transition: transform 160ms ease;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav__logo img { width: 28px; height: 28px; }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 15px;
  color: var(--ink-60);
  transition: color 120ms ease;
  position: relative;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a.is-active { color: var(--navy); font-weight: 500; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -26px;
  height: 2px;
  background: var(--blue);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero--light { background: var(--paper); }
.hero--dark {
  background: var(--navy);
  color: var(--white);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--pale);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
}
.hero--dark .hero__badge {
  background: rgba(52,153,204,0.18);
  color: var(--pale);
}

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

.hero__strip {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.hero--dark .hero__strip { border-top-color: rgba(255,255,255,0.08); }
.hero__strip-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 22px;
}
.hero--dark .hero__strip-label { color: rgba(255,255,255,0.5); }
.hero__strip-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  align-items: center;
}
.hero__strip-logos span {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-60);
  letter-spacing: -0.01em;
}
.hero--dark .hero__strip-logos span { color: rgba(255,255,255,0.6); }

/* ---------- Stats row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
.stat__n {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.stat__l {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.4;
}

.section--navy .stat { border-right-color: rgba(255,255,255,0.1); }
.section--navy .stats { border-top-color: rgba(255,255,255,0.1); border-bottom-color: rgba(255,255,255,0.1); }
.section--navy .stat__n { color: var(--white); }
.section--navy .stat__l { color: rgba(255,255,255,0.6); }

/* ---------- Section header ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.sec-head__kicker { margin-bottom: 20px; }

@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Before/After ---------- */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ba__col {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--white);
}
.ba__col--before { background: var(--paper-2); }
.ba__col--after  { background: var(--white); border-color: var(--navy); }
.ba__h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.ba__h .label { letter-spacing: -0.01em; }
.ba__h .tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.ba__col--after .ba__h .tag { color: var(--blue); }

.ba__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ba__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.ba__col--before .ba__list li { color: var(--ink-60); }
.ba__list li .icn {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  margin-top: 2px;
}
.ba__col--before .icn { color: var(--ink-40); }
.ba__col--after  .icn { color: var(--blue); }

@media (max-width: 800px) {
  .ba { grid-template-columns: 1fr; }
}

/* ---------- Module grid ---------- */
.mods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mod {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 160ms ease, transform 160ms ease;
}
.mod:hover { border-color: var(--navy); transform: translateY(-2px); }
.mod__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.mod__status .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--ink-40);
}
.mod__status--live { color: #137A3F; }
.mod__status--live .dot { background: #29B36B; box-shadow: 0 0 0 3px rgba(41,179,107,0.16); }
.mod__status--avail { color: var(--blue); }
.mod__status--avail .dot { background: var(--blue); }
.mod__status--addon { color: var(--ink-60); }
.mod__status--grow  { color: #A06A00; }
.mod__status--grow .dot { background: #D18B1F; }
.mod__title { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.mod__body { font-size: 14px; line-height: 1.55; color: var(--ink-60); }
.mod__mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--pale);
  display: grid; place-items: center;
  color: var(--blue);
}

@media (max-width: 900px) { .mods { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .mods { grid-template-columns: 1fr; } }

/* ---------- Quote block ---------- */
.quote {
  padding: 64px;
  background: var(--pale-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--pale);
}
.quote__body {
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-weight: 500;
  max-width: 38ch;
}
.quote__body::before {
  content: "\201C";
  font-size: 64px;
  line-height: 0;
  color: var(--blue);
  margin-right: 8px;
  vertical-align: -18px;
}
.quote__body::after {
  content: "\201D";
  font-size: 64px;
  line-height: 0;
  color: var(--blue);
  margin-left: 6px;
  vertical-align: -18px;
}
.quote__attrib {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-60);
}
.quote__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 640px) { .quote { padding: 36px 24px; } .quote__body { font-size: 20px; } }

/* ---------- Steps ---------- */
.steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step__num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.step__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.step__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
}

@media (max-width: 800px) {
  .step { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* ---------- Split (for integration page comparison) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split__col { background: var(--white); padding: 40px; }
.split__col--neg { background: var(--paper-2); }
.split__col--pos { background: var(--white); }
.split__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 10px;
}
.split__title .pill {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--rule);
  color: var(--ink-60);
}
.split__col--pos .split__title .pill { background: var(--navy); color: var(--white); }
.split__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.split__list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  font-size: 14.5px; line-height: 1.5;
}
.split__col--neg li { color: var(--ink-60); }
.split__col--neg .icn { color: var(--ink-40); margin-top: 3px; }
.split__col--pos .icn { color: var(--blue); margin-top: 3px; }

@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.price-card {
  padding: 36px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.price-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}
.price-card--free .price-card__tag { background: var(--pale); color: var(--navy); }
.price-card__name { font-size: 14px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-40); }
.price-card--featured .price-card__name { color: rgba(255,255,255,0.5); }
.price-card__price { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-card__price small { font-size: 14px; font-weight: 400; color: var(--ink-40); letter-spacing: 0; margin-left: 6px; }
.price-card--featured .price-card__price small { color: rgba(255,255,255,0.6); }
.price-card__note { font-size: 14px; color: var(--ink-60); line-height: 1.5; }
.price-card--featured .price-card__note { color: rgba(255,255,255,0.7); }
.price-card__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card__feats li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14.5px; line-height: 1.45; }
.price-card__feats .icn { color: var(--blue); margin-top: 2px; }
.price-card--featured .price-card__feats .icn { color: var(--pale); }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 80px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band__glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(52,153,204,0.35), transparent 70%);
  pointer-events: none;
}

@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; padding: 48px 32px; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot__brand { color: var(--white); }
.foot__brand img { height: 32px; margin-bottom: 20px; }
.foot__tag { max-width: 32ch; line-height: 1.55; }
.foot__col h4 {
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { color: rgba(255,255,255,0.72); transition: color 120ms ease; }
.foot__col a:hover { color: var(--white); }
.foot__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
@media (max-width: 800px) { .foot__top { grid-template-columns: 1fr 1fr; } }

/* ---------- Placeholder visual (for future product screenshots) ---------- */
.ph {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background:
    repeating-linear-gradient(135deg, var(--paper-2) 0 14px, var(--white) 14px 28px);
  overflow: hidden;
}
.ph--dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 14px, rgba(255,255,255,0.06) 14px 28px);
  border-color: rgba(255,255,255,0.08);
}
.ph__label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.ph--dark .ph__label {
  background: rgba(15,29,42,0.6);
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.12);
}

/* ---------- Hero visual (decorative brand composition) ---------- */
.brand-viz {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: grid;
  place-items: center;
}
.brand-viz__ring {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.brand-viz__ring--2 { inset: 8%; border-color: var(--rule-soft); }
.brand-viz__ring--3 { inset: 16%; border-color: var(--rule-soft); border-style: dashed; }
.hero--dark .brand-viz__ring { border-color: rgba(255,255,255,0.08); }
.hero--dark .brand-viz__ring--3 { border-color: rgba(52,153,204,0.3); }
.brand-viz__core {
  width: 42%; aspect-ratio: 1;
  background: var(--navy);
  border-radius: 24px;
  display: grid; place-items: center;
  box-shadow: 0 30px 60px -20px rgba(15,29,42,0.3);
}
.hero--dark .brand-viz__core {
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.brand-viz__core img { width: 62%; }
.brand-viz__tag {
  position: absolute;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 8px;
}
.hero--dark .brand-viz__tag {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
}
.brand-viz__tag .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--blue);
}
.brand-viz__tag--tl { top: 8%; left: -4%; }
.brand-viz__tag--tr { top: 18%; right: -2%; }
.brand-viz__tag--br { bottom: 14%; right: 6%; }
.brand-viz__tag--bl { bottom: 6%; left: 8%; }

/* ---------- Two-column hero (safe) ---------- */
.hero-safe {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-safe { grid-template-columns: 1fr; }
  .brand-viz { max-width: 420px; margin: 0 auto; }
}

/* ---------- Bold hero ---------- */
.hero-bold {
  text-align: left;
  max-width: 100%;
}
.hero-bold .h-display { max-width: 16ch; }
.hero-bold__flow {
  margin-top: 80px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero--dark .hero-bold__flow {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}

.flow {
  display: grid;
  grid-template-columns: 1fr 24px 1.2fr 24px 1fr;
  gap: 0;
  align-items: center;
}
.flow__node {
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.hero--dark .flow__node { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.08); }
.flow__node--center {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero--dark .flow__node--center { background: var(--blue); border-color: var(--blue); }
.flow__node-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 8px;
}
.flow__node--center .flow__node-label { color: rgba(255,255,255,0.6); }
.flow__node-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.flow__node-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-40);
}
.flow__node--center .flow__node-sub { color: rgba(255,255,255,0.6); }
.flow__arr {
  height: 2px;
  background: linear-gradient(to right, var(--rule), var(--blue));
  position: relative;
}
.flow__arr::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}
.hero--dark .flow__arr { background: linear-gradient(to right, rgba(255,255,255,0.12), var(--blue)); }

@media (max-width: 800px) {
  .flow { grid-template-columns: 1fr; gap: 8px; }
  .flow__arr { height: 24px; width: 2px; background: linear-gradient(to bottom, var(--rule), var(--blue)); justify-self: center; }
  .flow__arr::after { right: auto; left: 50%; top: auto; bottom: 0; transform: translateX(-50%) rotate(135deg); }
}

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  font-family: var(--font);
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks__head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-family: var(--mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 14px;
}
.tweaks__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.tweaks__label { font-size: 12px; color: var(--ink-60); }
.tweaks__seg {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 3px;
}
.tweaks__seg button {
  appearance: none; border: 0; background: transparent;
  padding: 7px 10px; font-size: 13px; border-radius: 6px;
  cursor: pointer; font-family: var(--font); color: var(--ink-60);
  transition: all 120ms ease;
}
.tweaks__seg button.is-on { background: var(--navy); color: var(--white); }

/* ---------- Utilities ---------- */
.spacer-40 { height: 40px; }
.spacer-24 { height: 24px; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-45 { max-width: 45ch; }
.max-60 { max-width: 60ch; }

.page { display: none; }
.page.is-active { display: block; animation: fade 240ms ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-in { opacity: 1; transform: none; }



  /* ---- copy-deck overrides on top of the shared stylesheet ---- */
  :root {
    --display-font: 'Inter Tight', 'Manrope', sans-serif;
  }
  body { background: var(--navy); color: #fff; }

  .h-display, .h1, .h2, h1, h2, h3, h4 {
    font-family: var(--display-font);
    letter-spacing: -0.025em;
  }
  .h-display { font-weight: 500; line-height: 1.02; }
  .h1 { font-weight: 500; }

  /* nav on dark */
  .nav {
    background: rgba(15,29,42,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__logo { color: #fff; display: inline-flex; align-items: center; }
  .nav__logo img.nav__logo-img { height: 41px; width: auto; display: block; }
  .nav__logo-text { color: #fff; font-family: var(--display-font); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-left: 12px; }
  .nav__links a { color: rgba(255,255,255,0.7); }
  .nav__links a:hover { color: #fff; }
  .nav__links a.is-active { color: #fff; }
  .nav__links a.is-active::after { background: var(--blue); }

  .btn--primary { background: var(--blue); color: #fff; }
  .btn--primary:hover { background: var(--blue-600); }
  .btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.18);
  }
  .btn--ghost:hover { border-color: rgba(255,255,255,0.5); }

  .btn--white {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
  }
  .btn--white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

  /* sections all on navy now */
  .section { padding: 120px 0; }
  .section--paper-2 { background: #142435; color: #fff; }
  .section--deep    { background: #0A1520; color: #fff; }

  /* Hero — left column big headline */
  .hero { padding: 96px 0 72px; background: var(--navy); color: #fff; }
  .hero h1 {
    max-width: 14ch;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 500;
    letter-spacing: -0.035em;
  }
  .hero h1 em { font-style: normal; color: var(--blue); }
  .hero .lede { color: rgba(255,255,255,0.72); margin-top: 28px; max-width: 56ch; }
  .hero .eyebrow { color: var(--blue); }
  .hero .eyebrow::before { background: var(--blue); }

  .hero__partners {
    margin-top: 80px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hero__partners-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
  }
  .hero__partners-row {
    display: flex; flex-wrap: wrap; gap: 16px 56px; align-items: center;
    font-family: var(--display-font);
    font-size: 18px;
    color: rgba(255,255,255,0.78);
  }
  .hero__partners-row .logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 500; letter-spacing: -0.01em;
  }
  .hero__partners-row .logo svg, .hero__partners-row .logo .glyph {
    width: 22px; height: 22px; color: rgba(255,255,255,0.6);
  }

  /* Big stats on dark */
  .bigstats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .bigstat { padding: 56px 32px; border-right: 1px solid rgba(255,255,255,0.1); }
  .bigstat:last-child { border-right: none; }
  .bigstat__n {
    font-family: var(--display-font);
    font-size: clamp(56px, 5.4vw, 84px);
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 0.95;
  }
  .bigstat__l { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.45; max-width: 22ch; }
  @media (max-width: 900px) { .bigstats { grid-template-columns: 1fr 1fr; } .bigstat { border-bottom: 1px solid rgba(255,255,255,0.1); } }

  /* B/A on dark */
  .ba__col { background: #142435; border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.86); }
  .ba__col--before { background: rgba(255,255,255,0.02); }
  .ba__col--after { background: #142435; border-color: var(--blue); }
  .ba__h { color: #fff; border-bottom-color: rgba(255,255,255,0.1); }
  .ba__h .tag { color: rgba(255,255,255,0.5); }
  .ba__col--after .ba__h .tag { color: var(--blue); }
  .ba__col--before .ba__list li { color: rgba(255,255,255,0.6); }
  .ba__col--before .icn { color: rgba(255,255,255,0.4); }
  .ba__col--after .ba__list li { color: rgba(255,255,255,0.92); }

  /* Module cards — mostly white, one blue feature */
  .mod {
    background: #fff;
    border: 1px solid #fff;
    color: var(--navy);
  }
  .mod:hover { border-color: var(--blue); transform: translateY(-3px); }
  .mod__title { color: var(--navy); }
  .mod__body { color: var(--ink-60); }
  .mod__status { color: var(--ink-40); }
  .mod__status--live { color: #137A3F; }
  .mod__status--avail { color: var(--blue); }
  .mod__status--addon { color: var(--ink-60); }
  .mod__status--grow { color: #A06A00; }
  .mod__mark { background: var(--pale); color: var(--blue); }

  .mod--featured { background: var(--blue); border-color: var(--blue); color: #fff; }
  .mod--featured .mod__title { color: #fff; }
  .mod--featured .mod__body { color: rgba(255,255,255,0.88); }
  .mod--featured .mod__status, .mod--featured .mod__status--live { color: rgba(255,255,255,0.78); }
  .mod--featured .mod__status .dot { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
  .mod--featured .mod__mark { background: rgba(255,255,255,0.18); color: #fff; }

  /* sec-head on dark */
  .sec-head__kicker { color: var(--blue); }
  .sec-head .lede { color: rgba(255,255,255,0.65); }

  /* Steps timeline — numbered cards on dark */
  .stepblock {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stepblock:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stepblock__num {
    font-family: var(--display-font);
    font-size: 56px;
    font-weight: 500;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .stepblock__t { font-family: var(--display-font); font-size: 24px; font-weight: 500; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; }
  .stepblock__b { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.66); max-width: 70ch; }
  @media (max-width: 700px) { .stepblock { grid-template-columns: 1fr; gap: 12px; } }

  /* Pricing on dark */
  .price-card {
    background: #142435;
    border-color: rgba(255,255,255,0.1);
    color: #fff;
  }
  .price-card__name { color: rgba(255,255,255,0.55); }
  .price-card__note { color: rgba(255,255,255,0.7); }
  .price-card__feats .icn { color: var(--blue); }
  .price-card--featured {
    background: var(--blue);
    border-color: var(--blue);
  }
  .price-card--featured .price-card__name { color: rgba(255,255,255,0.85); }
  .price-card--featured .price-card__note { color: rgba(255,255,255,0.95); }
  .price-card--featured .price-card__feats .icn { color: #fff; }
  .price-card--featured .price-card__tag { background: #fff; color: var(--blue); }
  .price-card__tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
  .price-card--free .price-card__tag { background: rgba(52,153,204,0.18); color: var(--blue); }

  /* CTA band */
  .cta-band { background: #142435; border: 1px solid rgba(255,255,255,0.08); }
  .cta-band__glow {
    background: radial-gradient(closest-side, rgba(52,153,204,0.45), transparent 70%);
  }

  /* Quote */
  .quote {
    background: #142435;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 72px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 36px;
    align-items: start;
  }
  .quote__mark {
    font-family: var(--display-font);
    font-size: 120px;
    line-height: 0.6;
    color: var(--blue);
  }
  .quote__body {
    font-family: var(--display-font);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 30ch;
  }
  .quote__body::before, .quote__body::after { content: none; }
  .quote__attrib { color: rgba(255,255,255,0.65); margin-top: 28px; }
  .quote__attrib strong { color: #fff; font-weight: 500; }
  @media (max-width: 700px) { .quote { padding: 40px 28px; grid-template-columns: 1fr; } }

  /* Footer */
  .foot { background: #0A1520; border-top: 1px solid rgba(255,255,255,0.06); }

  /* Tweaks panel on dark host */
  .tweaks { background: #142435; border-color: rgba(255,255,255,0.1); color: #fff; }
  .tweaks__head { color: rgba(255,255,255,0.5); }
  .tweaks__label { color: rgba(255,255,255,0.7); }
  .tweaks__seg { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
  .tweaks__seg button { color: rgba(255,255,255,0.7); }
  .tweaks__seg button.is-on { background: var(--blue); color: #fff; }

  /* Form fields on dark (contact) */
  input, textarea, select {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: #fff !important;
  }
  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35) !important; }

  /* Section headers reveal */
  .h-display em.accent { color: var(--blue); font-style: normal; }
