
/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --off:        #fafaf9;
  --stone-50:   #f5f5f4;
  --stone-100:  #e7e5e4;
  --stone-200:  #d6d3d1;
  --stone-400:  #a8a29e;
  --stone-600:  #57534e;
  --stone-800:  #292524;
  --ink:        #0f0f0e;
  --ink-soft:   rgba(15,15,14,0.55);
  --ink-xsoft:  rgba(15,15,14,0.32);
  --border:     rgba(15,15,14,0.08);
  --border-md:  rgba(15,15,14,0.13);
  --border-strong: rgba(15,15,14,0.2);
  --green:      #16a34a;
  --green-bg:   #f0fdf4;
  --shadow-nav: 0 8px 32px rgba(15,15,14,0.07), 0 1px 4px rgba(15,15,14,0.04);
  --shadow-md:  0 4px 20px rgba(15,15,14,0.06), 0 1px 4px rgba(15,15,14,0.04);
  --nav-h:      60px;
  --r:          10px;
  --r-lg:       14px;
  --max-w:      1160px;
  --font:       'Geist', system-ui, sans-serif;
  --mono:       'Geist Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ─────────────────────────────────────────
   NAV  (from st-nav.html — final version)
───────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
}
.nav-bar {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.nav-bar.scrolled { box-shadow: var(--shadow-nav); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 30px; height: 30px; background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo-word { font-size: 15px; font-weight: 600; letter-spacing: -.025em; color: var(--ink); }
.logo-word span { font-weight: 300; color: var(--stone-600); }
.logo-shopify {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--stone-50); border: 1px solid var(--border-md);
  border-radius: 5px; padding: 2px 7px;
  font-size: 10px; font-weight: 500; color: var(--stone-600);
  font-family: var(--mono); letter-spacing: .03em;
}
.logo-shopify::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #96bf48; flex-shrink: 0;
}
.nav-links {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  list-style: none; gap: 2px;
}
.nav-item { position: relative; }
.nav-trigger {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 11px; border-radius: 8px;
  font-size: 13.5px; font-weight: 400; color: var(--stone-600);
  cursor: pointer; border: none; background: none;
  font-family: var(--font);
  transition: color .15s, background .15s;
  white-space: nowrap; user-select: none;
}
.nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--ink); background: var(--stone-50); }
.nav-chevron {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease; flex-shrink: 0;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }
.nav-plain {
  padding: 7px 11px; border-radius: 8px;
  font-size: 13.5px; font-weight: 400; color: var(--stone-600);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-plain:hover { color: var(--ink); background: var(--stone-50); }
.nav-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  justify-content: flex-end; flex-shrink: 0;
}
.nav-signin {
  font-size: 13.5px; color: var(--stone-600);
  text-decoration: none; padding: 7px 11px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-signin:hover { color: var(--ink); background: var(--stone-50); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--ink); color: #fff;
  font-size: 13.5px; font-weight: 500; border-radius: 8px;
  text-decoration: none; letter-spacing: -.01em;
  transition: opacity .15s, transform .15s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }
.nav-cta svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 580px; background: var(--white);
  border: 1px solid var(--border-md); border-radius: var(--r-lg);
  box-shadow: var(--shadow-nav);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item.open .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: var(--white);
  border-left: 1px solid var(--border-md);
  border-top: 1px solid var(--border-md);
}
.drop-tab {
  flex: 1; padding: 13px 16px 12px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--stone-400); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s; text-align: center; user-select: none;
}
.drop-tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.drop-tab:hover:not(.active) { color: var(--stone-600); }
.drop-panels { padding: 18px; }
.drop-panel { display: none; }
.drop-panel.active { display: block; }
.role-header {
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.role-eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-400); margin-bottom: 5px;
}
.role-headline { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.3; letter-spacing: -.02em; }
.role-headline em {
  font-style: normal; font-size: 12.5px; font-weight: 400;
  color: var(--stone-600); display: block; margin-top: 4px; letter-spacing: 0;
}
.role-cta-sm {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 500; border-radius: 7px;
  text-decoration: none; margin-top: 2px; transition: opacity .15s; white-space: nowrap;
}
.role-cta-sm:hover { opacity: .8; }
.role-cta-sm svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.questions-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-400); margin-bottom: 9px;
}
.questions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.q-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer; text-decoration: none;
  background: var(--white); transition: border-color .15s, background .15s;
}
.q-card:hover { border-color: var(--border-md); background: var(--stone-50); }
.q-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
}
.q-icon.a { background: #f0f4ff; }
.q-icon.b { background: #f0fdf4; }
.q-icon.c { background: #fffbeb; }
.q-icon.d { background: var(--stone-50); }
.q-question { font-size: 12.5px; font-weight: 400; color: var(--ink); line-height: 1.4; letter-spacing: -.01em; margin-bottom: 2px; }
.q-module { font-size: 10px; color: var(--stone-400); letter-spacing: .07em; text-transform: uppercase; font-family: var(--mono); }
.drop-footer {
  padding: 11px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--stone-50); border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.drop-footer-note { font-size: 12px; color: var(--stone-400); }
.drop-footer-note strong { color: var(--stone-800); font-weight: 500; }
.drop-footer-links { display: flex; gap: 12px; }
.drop-footer-links a {
  font-size: 12px; color: var(--stone-600); text-decoration: none;
  display: flex; align-items: center; gap: 4px; transition: color .15s;
}
.drop-footer-links a:hover { color: var(--ink); }
.drop-footer-links a svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.drop-pricing {
  min-width: 380px;
}

.drop-pricing .drop-panels {
  padding: 16px;
}

.price-tier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 16px;
  padding: 15px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s, transform .15s;
}

.price-tier:hover {
  border-color: var(--border-md);
  background: var(--stone-50);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.price-tier:last-child {
  margin-bottom: 0;
}

.price-tier-info {
  min-width: 0;
}

.price-tier-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: -.015em;
}

.price-tier-info span {
  display: block;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--stone-400);
  font-family: var(--mono);
}

.price-amt,
.price-amt-nav {
  justify-self: end;
  width: 86px;
  text-align: right;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: normal;
}

.price-tier.featured {
  border-color: var(--ink);
  background: var(--ink);
}

.price-tier.featured:hover {
  background: #171716;
}

.price-tier.featured .price-tier-info h5 {
  color: #fff;
}

.price-tier.featured .price-tier-info span {
  color: rgba(255,255,255,.46);
}

.price-tier.featured .price-amt,
.price-tier.featured .price-amt-nav {
  color: #fff;
}

.drop-pricing .drop-footer {
  align-items: center;
  gap: 14px;
}

.drop-pricing .drop-footer-note {
  max-width: 180px;
  line-height: 1.45;
}

.drop-pricing .drop-footer-links a {
  white-space: nowrap;
}

/* mobile */
.mob-toggle {
  display: none; width: 36px; height: 36px; border-radius: 8px;
  background: none; border: none; cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  position: relative; z-index: 1;
}
.mob-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all .2s ease; transform-origin: center;
}
body.mob-open .mob-toggle span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
body.mob-open .mob-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.mob-open .mob-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.mob-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  overflow-y: auto; padding: 0 20px 48px;
  border-top: 1px solid var(--border);
}
body.mob-open .mob-menu { display: block; }
.mob-section { border-bottom: 1px solid var(--border); padding: 18px 0; }
.mob-section-title {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-400); margin-bottom: 12px;
}
.mob-q-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; cursor: pointer;
}
.mob-q-item:last-child { border-bottom: none; }
.mob-q-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.mob-q-question { font-size: 13.5px; font-weight: 400; color: var(--ink); margin-bottom: 1px; letter-spacing: -.01em; }
.mob-q-module { font-size: 10.5px; color: var(--stone-400); font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.mob-link { display: block; padding: 12px 0; font-size: 15px; color: var(--stone-800); text-decoration: none; border-bottom: 1px solid var(--border); }
.mob-link:last-child { border-bottom: none; }
.mob-ctas { padding: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.mob-cta-primary { display: block; text-align: center; padding: 13px 20px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; border-radius: 9px; text-decoration: none; }
.mob-cta-ghost { display: block; text-align: center; padding: 13px 20px; border: 1px solid var(--border-md); color: var(--stone-600); font-size: 14px; border-radius: 9px; text-decoration: none; }

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-cta { display: none; }
  .mob-toggle { display: flex; }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  gap: 60px;
}

/* left */
.hero-left { padding: 80px 0; }
.hero-shopify-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--stone-50); border: 1px solid var(--border-md);
  border-radius: 6px; padding: 4px 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--stone-600); letter-spacing: .04em;
  margin-bottom: 28px;
}
.hero-shopify-tag::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #96bf48; flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--stone-400);
}
.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--stone-600); font-weight: 400;
  max-width: 420px; margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-ctas { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 500; border-radius: 9px;
  text-decoration: none; letter-spacing: -.01em;
  transition: opacity .15s, transform .15s; border: none; cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; background: transparent; color: var(--stone-600);
  font-size: 14px; font-weight: 400; border-radius: 9px;
  border: 1px solid var(--border-strong); text-decoration: none;
  transition: color .15s, border-color .15s, background .15s; cursor: pointer; font-family: var(--font);
}
.btn-ghost:hover { color: var(--ink); background: var(--stone-50); border-color: var(--border-strong); }
.hero-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--stone-400); flex-wrap: wrap;
}
.hero-trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--stone-200); }

/* right — orb */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 80px 0;
}
.orb-stage {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}

/* rings */
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: ringPulse 3s ease-in-out infinite;
}
.orb-ring:nth-child(1) { width: 380px; height: 380px; animation-delay: 0s; }
.orb-ring:nth-child(2) { width: 300px; height: 300px; animation-delay: .4s; border-style: dashed; }
.orb-ring:nth-child(3) { width: 220px; height: 220px; animation-delay: .8s; }
@keyframes ringPulse {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.015); }
}

/* dots scattered */
.orb-dots {
  position: absolute; inset: 0; border-radius: 50%;
  overflow: hidden;
}
.orb-dot {
  position: absolute; border-radius: 50%;
  background: var(--stone-200);
  animation: dotFloat 4s ease-in-out infinite;
}
@keyframes dotFloat {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: .7; transform: translateY(-4px); }
}

/* center orb */
.orb-center {
  position: relative; z-index: 2;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-md);
  box-shadow: 0 8px 40px rgba(15,15,14,0.1), 0 2px 8px rgba(15,15,14,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.orb-center:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(15,15,14,0.14), 0 3px 10px rgba(15,15,14,0.08);
}
.orb-icon { width: 36px; height: 36px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.orb-label {
  position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: var(--stone-400); letter-spacing: .04em;
  white-space: nowrap; font-family: var(--mono);
}

/* wave bars — active state */
.orb-wave {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 3px; height: 28px; opacity: 0;
  transition: opacity .3s ease;
}
.orb-stage.listening .orb-wave { opacity: 1; }
.orb-stage.listening .orb-center { box-shadow: 0 0 0 12px rgba(15,15,14,0.04), 0 12px 48px rgba(15,15,14,0.12); }
.wbar {
  width: 3px; background: var(--ink); border-radius: 2px;
  animation: waveBar .8s ease-in-out infinite;
}
.wbar:nth-child(1) { animation-delay: .0s; }
.wbar:nth-child(2) { animation-delay: .1s; }
.wbar:nth-child(3) { animation-delay: .2s; }
.wbar:nth-child(4) { animation-delay: .3s; }
.wbar:nth-child(5) { animation-delay: .2s; }
.wbar:nth-child(6) { animation-delay: .1s; }
.wbar:nth-child(7) { animation-delay: .0s; }
@keyframes waveBar {
  0%, 100% { height: 6px; }
  50% { height: 24px; }
}

/* floating query chips */
.orb-queries {
  position: absolute; inset: 0; pointer-events: none;
}
.orb-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 11.5px; color: var(--stone-600);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}
.orb-chip.show { opacity: 1; }
.orb-chip strong { color: var(--ink); font-weight: 500; }
.orb-chip.tl { top: 18%; left: -8%; }
.orb-chip.tr { top: 22%; right: -10%; }
.orb-chip.bl { bottom: 22%; left: -6%; }
.orb-chip.br { bottom: 18%; right: -8%; }

/* "Talk to CoPilot" label below orb */
.orb-cta-label {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: var(--stone-400);
  font-family: var(--mono); letter-spacing: .04em; white-space: nowrap;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-left { padding: 0 0 20px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-right { padding: 0 0 60px; }
  .orb-stage { width: 300px; height: 300px; }
  .orb-ring:nth-child(1) { width: 300px; height: 300px; }
  .orb-ring:nth-child(2) { width: 240px; height: 240px; }
  .orb-ring:nth-child(3) { width: 180px; height: 180px; }
  .orb-chip { display: none; }
}

/* ─────────────────────────────────────────
   HOME SECTIONS — shared
───────────────────────────────────────── */
.section-w { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--stone-400); margin-bottom: 14px;
}
.section-h {
  font-size: clamp(28px,3.8vw,46px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.08;
  color: var(--ink); margin-bottom: 18px;
}
.section-h em { font-style: normal; font-weight: 300; color: var(--stone-400); }
.section-sub { font-size: 16px; line-height: 1.7; color: var(--stone-600); max-width: 560px; }
.section-sub.center { text-align: center; margin: 0 auto; }

/* ── PROOF BAR ── */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--stone-50);
  padding: 0;
  overflow: hidden;
}
.proof-track {
  display: flex; width: max-content;
  animation: proofScroll 28s linear infinite;
}
.proof-track:hover { animation-play-state: paused; }
@keyframes proofScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.proof-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 44px;
  border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}
.proof-num {
  font-size: 22px; font-weight: 700; letter-spacing: -.03em;
  color: var(--ink);
}
.proof-label { font-size: 13px; color: var(--stone-600); font-weight: 400; }

/* ── PROBLEM ── */
.problem-section { padding: 112px 0; }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 56px;
}
.prob-card {
  background: var(--white); padding: 40px 36px;
  transition: background .15s;
}
.prob-card:hover { background: var(--stone-50); }
.prob-num {
  font-family: var(--mono); font-size: 11px; color: var(--stone-200);
  margin-bottom: 16px; font-weight: 500; letter-spacing: .06em;
}
.prob-card h4 {
  font-size: 17px; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.prob-card p { font-size: 14px; line-height: 1.7; color: var(--stone-600); }
.prob-solve {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12.5px; font-weight: 500;
  color: var(--stone-800);
  font-family: var(--mono); letter-spacing: .02em;
}
.prob-solve::before { content: '→'; }
@media(max-width:700px){ .problem-grid{ grid-template-columns:1fr; } }

/* ── COPILOT DEMO ── */
.demo-section { padding: 112px 0; background: var(--stone-50); }
.demo-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px; align-items: start; margin-top: 56px;
}
.demo-questions { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.demo-q {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 9px;
  border: 1px solid transparent;
  font-size: 13.5px; color: var(--stone-600);
  cursor: pointer; transition: all .15s;
  letter-spacing: -.01em;
}
.demo-q:hover { background: var(--white); border-color: var(--border-md); color: var(--ink); }
.demo-q.active { background: var(--white); border-color: var(--border-strong); color: var(--ink); box-shadow: 0 1px 4px rgba(15,15,14,.05); }
.demo-q-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stone-200); flex-shrink: 0; transition: background .15s; }
.demo-q.active .demo-q-dot { background: var(--ink); }
.chat-window {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,15,14,.06), 0 1px 4px rgba(15,15,14,.04);
}
.chat-titlebar {
  background: var(--ink); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chat-dots span:nth-child(1){background:#ff5f57}
.chat-dots span:nth-child(2){background:#febc2e}
.chat-dots span:nth-child(3){background:#28c840}
.chat-title { font-size: 11.5px; color: rgba(255,255,255,.4); font-family: var(--mono); letter-spacing: .04em; }
.chat-body { padding: 18px; min-height: 260px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { display: flex; gap: 9px; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 600; margin-top: 1px;
}
.chat-av.u { background: var(--ink); color: #fff; }
.chat-av.s { background: var(--stone-100); color: var(--stone-600); }
.chat-bub {
  max-width: 88%; padding: 9px 13px; border-radius: 11px;
  font-size: 13px; line-height: 1.55;
}
.chat-msg.user .chat-bub { background: var(--ink); color: #fff; border-radius: 11px 3px 11px 11px; }
.chat-msg.st   .chat-bub { background: var(--stone-50); color: var(--ink); border-radius: 3px 11px 11px 11px; }
.chat-insight { font-size: 11.5px; color: var(--stone-600); margin-top: 5px; font-style: italic; }
.chat-chip {
  display: inline-block; margin-top: 7px;
  background: var(--white); border: 1px solid var(--border-md);
  color: var(--stone-600); font-size: 11px; padding: 3px 9px;
  border-radius: 100px; font-family: var(--mono);
}
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 10px 13px; background: var(--stone-50); border-radius: 3px 11px 11px 11px; width: fit-content; }
.chat-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--stone-400); }
.chat-typing span:nth-child(1){animation:typeBounce .9s 0s ease infinite}
.chat-typing span:nth-child(2){animation:typeBounce .9s .15s ease infinite}
.chat-typing span:nth-child(3){animation:typeBounce .9s .3s ease infinite}
@keyframes typeBounce{0%,100%{transform:translateY(0)}40%{transform:translateY(-5px)}}
.chat-bar {
  padding: 10px 14px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.chat-input-mock {
  flex: 1; background: var(--stone-50); border: 1px solid var(--border-md);
  border-radius: 8px; padding: 8px 13px;
  font-size: 13px; color: var(--stone-400); font-family: var(--font);
  white-space: nowrap; overflow: hidden;
}
.chat-cursor { display: inline-block; width: 2px; height: 12px; background: var(--ink); margin-left: 1px; vertical-align: middle; border-radius: 1px; animation: cursorBlink .7s step-end infinite; }
@keyframes cursorBlink{0%,100%{opacity:1}50%{opacity:0}}
.chat-send-btn {
  width: 32px; height: 32px; background: var(--ink); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: none; cursor: pointer;
}
.chat-send-btn svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media(max-width:860px){ .demo-layout{ grid-template-columns:1fr; } }

/* ── FEATURES ── */
.features-section { padding: 112px 0; }
.feat-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.feat-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.feat-tab {
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--border-md); background: var(--white);
  font-size: 13px; font-weight: 400; color: var(--stone-600);
  cursor: pointer; transition: all .15s; user-select: none;
}
.feat-tab:hover { border-color: var(--border-strong); color: var(--ink); }
.feat-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.feat-panel { display: none; }
.feat-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item {
  display: flex; gap: 14px; padding: 16px 18px;
  border-radius: 12px; background: var(--white);
  border: 1px solid var(--border); transition: border-color .15s, box-shadow .15s;
}
.feat-item:hover { border-color: var(--border-md); box-shadow: 0 2px 10px rgba(15,15,14,.05); }
.feat-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.feat-item h5 { font-size: 14px; font-weight: 600; letter-spacing: -.015em; color: var(--ink); margin-bottom: 4px; }
.feat-item p { font-size: 13px; line-height: 1.6; color: var(--stone-600); }
.feat-visual-card {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,15,14,.06);
  position: sticky; top: 84px;
}
.fvc-head {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.fvc-title { font-size: 13px; font-weight: 500; color: var(--ink); }
.fvc-badge {
  font-size: 10.5px; font-weight: 500; padding: 2px 9px;
  border-radius: 100px; background: var(--stone-50);
  border: 1px solid var(--border-md); color: var(--stone-600);
  font-family: var(--mono);
}
.fvc-body { padding: 16px; }
.fvc-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.fvc-kpi { background: var(--stone-50); border-radius: 9px; padding: 11px 12px; }
.fvc-kpi-n { font-size: 20px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1; margin-bottom: 3px; }
.fvc-kpi-n.up { color: #16a34a; }
.fvc-kpi-n.dn { color: #dc2626; }
.fvc-kpi-n.am { color: #d97706; }
.fvc-kpi-l { font-size: 10.5px; color: var(--stone-400); font-family: var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.fvc-bar-row { margin-bottom: 9px; }
.fvc-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--stone-600); margin-bottom: 4px; }
.fvc-bar-label span:last-child { font-weight: 500; color: var(--ink); }
.fvc-bar-bg { height: 6px; background: var(--stone-100); border-radius: 100px; overflow: hidden; }
.fvc-bar-fill { height: 100%; border-radius: 100px; background: var(--ink); }
.fvc-bar-fill.teal { background: #0d9488; }
.fvc-bar-fill.amber { background: #d97706; }
.fvc-insight {
  background: var(--stone-50); border-radius: 9px; padding: 11px 13px;
  font-size: 12px; line-height: 1.55; color: var(--ink); margin-top: 12px;
  border-left: 2px solid var(--ink);
}
.fvc-insight strong { font-weight: 600; }
@media(max-width:860px){ .feat-panel.active{ grid-template-columns:1fr; } .feat-head{ grid-template-columns:1fr; gap:24px; } }

/* ── EMAIL SECTION ── */
.email-section { padding: 112px 0; background: var(--stone-50); }
.email-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.email-mock {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,15,14,.06);
}
.email-mock-head {
  background: var(--ink); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.email-icon-sq {
  width: 34px; height: 34px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.email-icon-sq svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.email-mock-head h4 { font-size: 13.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.email-mock-head span { font-size: 11px; color: rgba(255,255,255,.35); font-family: var(--mono); }
.email-mock-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.email-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 13px; background: var(--stone-50);
  border-radius: 10px; border: 1px solid var(--border);
}
.email-row-ico {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.email-row-ico.up { background: #f0fdf4; }
.email-row-ico.dn { background: #fef2f2; }
.email-row-ico.inf { background: #eff6ff; }
.email-row h5 { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.email-row p { font-size: 12px; color: var(--stone-600); line-height: 1.5; }
.email-delta { font-size: 12px; font-weight: 600; margin-top: 2px; }
.email-delta.up { color: #16a34a; }
.email-delta.dn { color: #dc2626; }
.email-action {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; padding: 6px 12px; background: var(--ink);
  color: #fff; font-size: 11.5px; font-weight: 500; border-radius: 7px;
  cursor: pointer;
}
.email-action svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media(max-width:860px){ .email-layout{ grid-template-columns:1fr; } }

/* ── FOR WHO ── */
.who-section { padding: 112px 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 56px; }
.who-card { background: var(--white); padding: 48px 44px; }
.who-card.dark { background: var(--ink); }
.who-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 20px;
}
.who-pill.light { background: var(--stone-50); border: 1px solid var(--border-md); color: var(--stone-600); }
.who-pill.drk { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.who-card h3 { font-size: 24px; font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 12px; color: var(--ink); }
.who-card.dark h3 { color: #fff; }
.who-card > p { font-size: 14.5px; line-height: 1.7; color: var(--stone-600); margin-bottom: 24px; }
.who-card.dark > p { color: rgba(255,255,255,.45); }
.who-qs { display: flex; flex-direction: column; gap: 7px; }
.who-q {
  font-size: 13.5px; color: var(--stone-600);
  padding: 9px 13px; background: var(--stone-50); border-radius: 8px;
  display: flex; align-items: flex-start; gap: 8px;
}
.who-q::before { content: '→'; color: var(--stone-400); flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.who-card.dark .who-q { background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); }
.who-card.dark .who-q::before { color: rgba(255,255,255,.2); }
@media(max-width:700px){ .who-grid{ grid-template-columns:1fr; } .who-card{ padding:36px 28px; } }

/* ── COMPARE ── */
.compare-section { padding: 112px 0; background: var(--stone-50); }
.vs-table { border: 1px solid var(--border-md); border-radius: 16px; overflow: hidden; margin-top: 48px; box-shadow: 0 2px 12px rgba(15,15,14,.04); }
.vs-head { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; background: var(--ink); padding: 13px 24px; }
.vs-th { font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); font-family: var(--mono); }
.vs-th.hl { color: #fff; }
.vs-row { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; padding: 12px 24px; background: var(--white); border-bottom: 1px solid var(--border); transition: background .12s; }
.vs-row:last-child { border-bottom: none; }
.vs-row:hover { background: var(--stone-50); }
.vs-cell { font-size: 13px; color: var(--stone-600); display: flex; align-items: center; gap: 5px; }
.vs-cell.feat { color: var(--ink); font-weight: 500; }
.vs-cell.hl { color: var(--ink); font-weight: 500; }
.ic-y { color: var(--ink); font-weight: 700; }
.ic-p { color: var(--stone-400); }
.ic-n { color: var(--stone-200); }
@media(max-width:700px){ .vs-head,.vs-row{ grid-template-columns:1.8fr 1fr 1fr; } .vs-th:last-child,.vs-cell:last-child{ display:none; } }

/* ── PRICING ── */
.pricing-section { padding: 112px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 56px; }
.price-card {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 16px; padding: 32px 28px; position: relative;
}
.price-card.featured { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(15,15,14,.06), 0 8px 32px rgba(15,15,14,.08); }
.price-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 12px; border-radius: 100px; white-space: nowrap;
}
.price-plan { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--stone-400); margin-bottom: 16px; }
.price-from { font-size: 11px; color: var(--stone-400); margin-bottom: 2px; }
.price-card .price-amt { font-size: 36px; font-weight: 700; letter-spacing: -.04em; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.price-card .price-amt sup { font-size: 18px; font-weight: 600; vertical-align: super; }
.price-gmv { font-size: 12px; color: var(--stone-400); font-family: var(--mono); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--stone-600); }
.price-features li::before { content: '✓'; color: var(--ink); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.price-features li.off::before { content: '—'; color: var(--stone-200); }
.price-features li.off { color: var(--stone-300); }
.price-btn {
  display: block; text-align: center; padding: 11px 16px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; text-decoration: none; transition: all .15s;
}
.price-btn.solid { background: var(--ink); color: #fff; }
.price-btn.solid:hover { opacity: .85; transform: translateY(-1px); }
.price-btn.outline { background: transparent; border: 1px solid var(--border-strong); color: var(--ink); }
.price-btn.outline:hover { background: var(--stone-50); }
.price-note { font-size: 11px; color: var(--stone-400); text-align: center; margin-top: 10px; font-family: var(--mono); }
@media(max-width:900px){ .pricing-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:540px){ .pricing-grid{ grid-template-columns:1fr; max-width:360px; margin-left:auto; margin-right:auto; } }

/* ── FINAL CTA ── */
.final-cta { padding: 120px 28px; text-align: center; background: var(--white); border-top: 1px solid var(--border); }
.final-cta h2 { font-size: clamp(32px,4.5vw,56px); font-weight: 700; letter-spacing: -.04em; line-height: 1.06; color: var(--ink); max-width: 640px; margin: 0 auto 18px; }
.final-cta h2 em { font-style: normal; font-weight: 300; color: var(--stone-400); }
.final-cta p { font-size: 16px; color: var(--stone-600); max-width: 420px; margin: 0 auto 36px; line-height: 1.65; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.final-trust { display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; font-size: 12px; color: var(--stone-400); }
.final-trust-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--stone-200); }

/* ─────────────────────────────────────────
   FOOTER  (upgraded)
───────────────────────────────────────── */
footer { background: var(--ink); color: var(--white); }

/* CTA zone above links */
.foot-cta-zone {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px 28px 72px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-cta-zone h2 {
  font-size: clamp(28px,3.5vw,44px); font-weight: 700;
  letter-spacing: -.035em; line-height: 1.1; color: #fff;
}
.foot-cta-zone h2 em { font-style: normal; font-weight: 300; color: rgba(255,255,255,.3); }
.foot-cta-zone p { font-size: 15px; color: rgba(255,255,255,.4); margin-top: 10px; line-height: 1.65; max-width: 480px; }
.foot-cta-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.foot-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 600; border-radius: 10px; text-decoration: none;
  letter-spacing: -.01em; white-space: nowrap; transition: opacity .15s, transform .15s;
}
.foot-btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.foot-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: rgba(255,255,255,.5);
  font-size: 13.5px; font-weight: 400; border-radius: 10px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.12); white-space: nowrap; transition: all .15s;
}
.foot-btn-ghost:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.22); }

/* link columns */
.foot-links-zone {
  max-width: var(--max-w); margin: 0 auto;
  padding: 56px 28px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-brand-col {}
.foot-brand-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; margin-bottom: 14px;
}
.foot-brand-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.foot-brand-icon svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.75); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.foot-brand-name { font-size: 14px; font-weight: 600; letter-spacing: -.025em; color: rgba(255,255,255,.85); }
.foot-brand-name span { font-weight: 300; color: rgba(255,255,255,.35); }
.foot-manifesto { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.32); max-width: 230px; margin-bottom: 20px; }
.foot-green-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(150,191,72,.1); border: 1px solid rgba(150,191,72,.2);
  border-radius: 6px; padding: 3px 9px; margin-bottom: 22px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  color: rgba(150,191,72,.8); letter-spacing: .04em;
}
.foot-green-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #96bf48; flex-shrink: 0; }
.foot-socials { display: flex; gap: 8px; }
.foot-soc {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .15s;
}
.foot-soc:hover { background: rgba(255,255,255,.1); }
.foot-soc svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.45); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.foot-nav-col h5 {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.foot-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-nav-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.45);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color .15s;
}
.foot-nav-col ul li a:hover { color: rgba(255,255,255,.85); }
.ft-tag {
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  background: rgba(255,255,255,.07); border-radius: 3px;
  padding: 1px 5px; color: rgba(255,255,255,.28); letter-spacing: .05em; text-transform: uppercase;
}

/* bottom bar */
.foot-bar {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot-bar-left { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.18); }
.foot-bar-right { display: flex; gap: 18px; }
.foot-bar-right a { font-size: 11.5px; color: rgba(255,255,255,.22); text-decoration: none; transition: color .15s; }
.foot-bar-right a:hover { color: rgba(255,255,255,.5); }

@media(max-width:900px){
  .foot-cta-zone { grid-template-columns: 1fr; gap: 28px; }
  .foot-cta-btns { flex-direction: row; align-items: flex-start; }
  .foot-links-zone { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand-col { grid-column: 1 / -1; }
}
@media(max-width:480px){
  .foot-links-zone { grid-template-columns: 1fr; }
  .foot-cta-btns { flex-direction: column; align-items: flex-start; }
}

@media(max-width:700px){
  #pricing .section-w > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
