/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* Brand palette: #14aea9 teal + #2e2e29 dark */
  --brand:        #14aea9;   /* primary teal */
  --brand-dark:   #2e2e29;   /* dark charcoal — hero / nav bg */
  --brand-deeper: #1a1a16;   /* footer bg */
  --brand-mid:    #0d8a85;   /* deepened teal for icons/accents */
  --brand-accent: #14aea9;   /* primary CTA — teal */
  --brand-accent2:#1dcdc7;   /* hover lightened teal */
  --brand-pale:   #d0f5f4;   /* very pale teal tint */
  --brand-ultra:  #f0fbfb;   /* off-white section bg */
  --ink:          #1a1a16;   /* near-black text */
  --body:         #2e2e29;   /* body text */
  --muted:        #5a7a79;   /* placeholders, captions */
  --border:       #a8dedd;   /* subtle teal-tinted dividers */
  --white:        #ffffff;
  /* Typography */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --text-font: 'Hanken Grotesk', system-ui, sans-serif;
  /* Spacing / Radius */
  --r8: 8px; --r12: 12px; --r16: 16px; --r20: 20px; --r24: 24px;
  /* Shadows */
  --s1: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --s2: 0 4px 20px rgba(0,0,0,.09), 0 1px 3px rgba(0,0,0,.04);
  --s3: 0 12px 40px rgba(0,0,0,.14);
  --nav-h: 68px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--text-font); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.at-top    { background: transparent; border-bottom: 1px solid transparent; }
.nav.scrolled  { background: rgba(46,46,41,.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(20,174,169,.15); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  color: #fff; letter-spacing: -.04em; display: flex; align-items: center; gap: .35rem;
  flex-shrink: 0;
}
.nav-logo-accent { color: var(--brand-accent); }
.nav-links { display: flex; align-items: center; gap: .1rem; flex: 1; justify-content: center; }
.nav-links a {
  padding: .45rem .9rem; border-radius: var(--r8);
  font-size: .88rem; font-weight: 450; color: rgba(255,255,255,.65);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.btn-nav-ghost {
  padding: .48rem 1.1rem; border-radius: var(--r8);
  border: 1px solid rgba(255,255,255,.22); background: none;
  font: 450 .875rem/1 var(--text-font); color: rgba(255,255,255,.8);
  cursor: pointer; transition: border-color .15s, color .15s;
}
.btn-nav-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-nav-cta {
  padding: .5rem 1.2rem; border-radius: var(--r8);
  background: var(--brand-accent); color: var(--brand-dark);
  font: 700 .875rem/1 var(--text-font); cursor: pointer; border: none;
  transition: background .15s, transform .1s;
}
.btn-nav-cta:hover { background: var(--brand-accent2); transform: translateY(-1px); }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-ham span { width: 22px; height: 1.5px; background: rgba(255,255,255,.85); display: block; border-radius: 2px; transition: all .2s; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--brand-dark);
  padding: calc(var(--nav-h) + 5rem) 1.5rem 5.5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
/* subtle radial glow */
.hero::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20,174,169,.08) 0%, transparent 70%);
  pointer-events: none;
}
/* grid texture */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,174,169,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,174,169,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem; border-radius: 20px;
  border: 1px solid rgba(20,174,169,.3); background: rgba(20,174,169,.08);
  font-size: .72rem; font-weight: 600; color: var(--brand-accent);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--brand-accent); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 .green { color: var(--brand-accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.6);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.1rem; border-radius: var(--r12);
  background: var(--brand-accent); color: var(--brand-dark);
  font: 700 1rem var(--text-font); cursor: pointer; border: none;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(20,174,169,.3);
}
.btn-hero-primary:hover { background: var(--brand-accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(20,174,169,.4); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.1rem; border-radius: var(--r12);
  border: 1px solid rgba(255,255,255,.22); background: transparent;
  font: 450 1rem var(--text-font); color: rgba(255,255,255,.8);
  cursor: pointer; transition: border-color .15s, color .15s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* trust row */
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.4);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: #fff;
  margin-left: -6px; flex-shrink: 0;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }
.trust-num { color: rgba(255,255,255,.65); }
.trust-num strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* hero dashboard mockup */
.hero-mockup-wrap {
  margin-top: 4rem; position: relative;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero-mockup {
  background: var(--white);
  border-radius: var(--r20);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  animation: riseUp .9s cubic-bezier(.16,1,.3,1) .1s both;
}
@keyframes riseUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.mockup-browser-bar {
  background: #e8f9f9; border-bottom: 1px solid #a8dedd;
  padding: .6rem 1rem; display: flex; align-items: center; gap: .4rem;
}
.mbdot { width: 10px; height: 10px; border-radius: 50%; }
.mbdot-r { background: #f87171; }
.mbdot-y { background: #fbbf24; }
.mbdot-g { background: var(--brand-accent); }
.mburl {
  margin-left: .5rem; background: #c8f0ef;
  border-radius: 6px; padding: .2rem .9rem;
  font-size: .68rem; color: var(--muted); font-family: monospace;
  display: flex; align-items: center; gap: .35rem;
}
.mburl-lock { color: var(--brand-mid); font-size: .7rem; }
.mockup-body {
  padding: 1.25rem; display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  grid-template-rows: auto auto;
  gap: .75rem;
}
.mk-card {
  background: var(--brand-ultra); border-radius: var(--r16);
  border: 1px solid var(--border); padding: 1rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.mk-label { font-size: .58rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.mk-val { font-family: var(--display); font-size: 1.35rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.mk-chip { display: inline-flex; align-items: center; gap: .2rem; padding: .18rem .5rem; border-radius: 20px; font-size: .62rem; font-weight: 600; width: fit-content; }
.chip-up { background: #d0f5f4; color: #0d8a85; }
.chip-warn { background: #fff8e1; color: #b45309; }
.chip-info { background: #e8f0ff; color: #1a56db; }
/* wide chart card */
.mk-card-chart {
  grid-column: span 2; background: var(--brand-ultra);
  border-radius: var(--r16); border: 1px solid var(--border);
  padding: 1rem; display: flex; flex-direction: column; gap: .6rem;
}
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 52px; }
.cbar { border-radius: 4px 4px 0 0; flex: 1; background: var(--brand-mid); opacity: .45; transition: opacity .2s; }
.cbar.peak { background: var(--brand-accent); opacity: 1; }
/* right sidebar card */
.mk-card-side { grid-row: span 2; background: var(--brand-dark); border-radius: var(--r16); border: 1px solid rgba(255,255,255,.06); padding: 1rem; display: flex; flex-direction: column; gap: .65rem; }
.mk-card-side .mk-label { color: rgba(255,255,255,.35); }
.mk-card-side .mk-val { color: #fff; font-size: 1.1rem; }
.activity-row { display: flex; align-items: center; gap: .55rem; padding: .5rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.act-text { font-size: .7rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.act-text strong { color: rgba(255,255,255,.8); font-weight: 500; }

/* floating notification badges */
.hero-float {
  position: absolute; background: #fff; border-radius: var(--r12);
  border: 1px solid var(--border); padding: .6rem .9rem;
  box-shadow: var(--s3); display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 500; color: var(--ink); white-space: nowrap; z-index: 2;
}
.hero-float .fdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hf1 { bottom: 2rem; left: -3rem; animation: fbob1 4s ease-in-out infinite; }
.hf2 { top: 3rem; right: -3rem; animation: fbob2 4s ease-in-out infinite 1.2s; }
@keyframes fbob1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fbob2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ─── TRUST LOGOS STRIP ──────────────────────────────── */
.logos-strip {
  background: var(--brand-ultra); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem;
}
.logos-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.logos-label { font-size: .75rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.logo-chip { display: flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; color: var(--muted); }
.logo-chip-ico { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.logo-img-chip { display: flex; align-items: center; justify-content: center; padding: .45rem .9rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r12); box-shadow: var(--s1); transition: transform .15s, box-shadow .15s; }
.logo-img-chip:hover { transform: translateY(-2px); box-shadow: var(--s2); }
.logo-img-chip img { display: block; height: 30px; width: auto; object-fit: contain; }

/* ─── SECTION BASE ───────────────────────────────────── */
.section { padding: 6rem 1.5rem; }
.section-alt { background: var(--brand-ultra); }
.section-dark { background: var(--brand-dark); }
.container { max-width: 1160px; margin: 0 auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .75rem; border-radius: 20px;
  background: var(--brand-pale); border: 1px solid var(--border);
  font-size: .7rem; font-weight: 600; color: var(--brand-mid);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .9rem;
}
.eyebrow-dark {
  background: rgba(20,174,169,.15); border-color: rgba(20,174,169,.2);
  color: var(--brand-accent);
}
.display-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1.15;
}
.display-heading.light { color: #fff; }
.body-lead {
  font-size: 1.05rem; color: var(--muted); font-weight: 300;
  line-height: 1.8; max-width: 560px; margin-top: .65rem;
}
.body-lead.light { color: rgba(255,255,255,.55); }
.center .body-lead { margin-left: auto; margin-right: auto; }

/* ─── FEATURE TABS ───────────────────────────────────── */
.tab-nav {
  display: flex; gap: .35rem; padding: .35rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow-x: auto; scrollbar-width: none;
  width: max-content; margin: 2.5rem auto;
  box-shadow: var(--s1);
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: .52rem 1.2rem; border-radius: 10px;
  font: 500 .875rem var(--text-font); color: var(--muted);
  border: none; background: none; cursor: pointer;
  transition: all .18s; white-space: nowrap;
}
.tab-btn.on { background: var(--brand); color: #fff; font-weight: 600; box-shadow: 0 2px 10px rgba(20,174,169,.3); }
.tab-panel { display: none; }
.tab-panel.on { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feat-items { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-top: 1.75rem; }
.feat-item { display: flex; align-items: flex-start; gap: .85rem; }
.feat-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem;
}
.feat-ico svg { width: 16px; height: 16px; stroke: var(--brand-mid); }
.feat-text { font-size: .925rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.feat-text strong { color: var(--ink); font-weight: 600; }

.tab-preview-wrap {
  background: var(--white); border-radius: var(--r20);
  border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--s3);
}
.tab-pv-header {
  padding: .8rem 1.2rem; background: var(--brand-ultra);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.tab-pv-title { font-family: var(--display); font-size: .82rem; font-weight: 700; color: var(--ink); }
.tbl { width: 100%; border-collapse: collapse; }
.tbl th { padding: .6rem 1rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); background: #fafcf2; }
.tbl td { padding: .68rem 1rem; font-size: .82rem; color: var(--muted); border-bottom: 1px solid #f5f7ea; font-weight: 300; }
.tbl tr:last-child td { border-bottom: none; }
.pill { display: inline-flex; padding: .2rem .6rem; border-radius: 20px; font-size: .68rem; font-weight: 600; }
.pill-g { background: #d0f5f4; color: #0d8a85; }
.pill-a { background: #fff8e1; color: #b45309; }
.pill-b { background: #e8f0ff; color: #1a56db; }
.pill-r { background: #fef2f2; color: #b91c1c; }

/* ─── WHO IS IT FOR ──────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.aud-card {
  border-radius: var(--r24); padding: 2.75rem 2.5rem;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.aud-card.biz   { background: linear-gradient(145deg, var(--brand-dark) 0%, #2e3c05 100%); }
.aud-card.logi  { background: linear-gradient(145deg, #1a2012 0%, #1e2c08 100%); }
/* decorative circles */
.aud-card::before, .aud-card::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.aud-card::before { width: 260px; height: 260px; top: -80px; right: -80px; background: rgba(20,174,169,.06); }
.aud-card::after  { width: 160px; height: 160px; bottom: -50px; right: 60px; background: rgba(20,174,169,.04); }
.aud-tag {
  font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: .65rem;
}
.aud-h { font-family: var(--display); font-size: 1.75rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.2; margin-bottom: .85rem; }
.aud-p { font-size: .935rem; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.75; flex: 1; max-width: 340px; margin-bottom: 1.5rem; }
.aud-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; }
.aud-pill { padding: .26rem .65rem; border-radius: 20px; font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.aud-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem 1.5rem; border-radius: 10px;
  background: rgba(255,255,255,.93); font: 700 .875rem var(--text-font);
  transition: background .15s; width: max-content; margin-top: auto;
}
.aud-card.biz  .aud-cta { color: var(--brand); }
.aud-card.logi .aud-cta { color: #1a2012; }
.aud-cta:hover { background: #fff; }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
  counter-reset: step;
}
.step-card {
  background: var(--white); border-radius: var(--r20);
  border: 1px solid var(--border); padding: 2rem;
  counter-increment: step; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--s3); }
.step-n {
  font-family: var(--display); font-size: 3.5rem; font-weight: 800;
  color: var(--border); letter-spacing: -.06em; line-height: 1;
  position: absolute; top: 1.25rem; right: 1.5rem;
}
.step-ico {
  width: 48px; height: 48px; border-radius: var(--r12);
  background: var(--brand-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.step-ico svg { width: 21px; height: 21px; stroke: var(--brand-mid); }
.step-h { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; letter-spacing: -.02em; }
.step-p { font-size: .875rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card {
  background: var(--white); border-radius: var(--r20);
  border: 1px solid var(--border); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.testi-card:hover { box-shadow: var(--s2); transform: translateY(-2px); }
.testi-stars { color: #e8b831; font-size: .85rem; letter-spacing: .08em; }
.testi-q { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; font-weight: 300; flex: 1; }
.testi-q::before { content: '\201C'; color: var(--brand-accent); font-size: 1.5rem; line-height: .5; vertical-align: -.4rem; margin-right: .15rem; }
.testi-by { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; }
.t-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: .85rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.t-name { font-family: var(--display); font-size: .88rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.t-role { font-size: .75rem; color: var(--muted); margin-top: .05rem; font-weight: 300; }

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-wrap { background: var(--brand); padding: 3rem 1.5rem; }
.stats-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-n { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -.05em; line-height: 1; }
.stat-l { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .3rem; font-weight: 300; }

/* ─── INTEGRATIONS ───────────────────────────────────── */
.int-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 2.5rem; }
.int-chip {
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem 1.2rem; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r12);
  font: 600 .875rem var(--text-font); color: var(--ink);
  box-shadow: var(--s1); transition: transform .15s, box-shadow .15s;
}
.int-chip:hover { transform: translateY(-2px); box-shadow: var(--s2); }
.int-ico { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; color: #fff; flex-shrink: 0; }

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--brand-dark); padding: 6rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20,174,169,.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1.15; margin-bottom: .85rem; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.75; font-weight: 300; max-width: 460px; margin: 0 auto 2.25rem; }
.cta-btns { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-cta-lime {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--r12);
  background: var(--brand-accent); color: var(--brand-dark);
  font: 700 1rem var(--text-font); cursor: pointer; border: none;
  transition: background .15s, transform .1s;
}
.btn-cta-lime:hover { background: var(--brand-accent2); transform: translateY(-1px); }
.btn-cta-outline-w {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--r12);
  border: 1px solid rgba(255,255,255,.22); background: transparent;
  font: 450 1rem var(--text-font); color: rgba(255,255,255,.75);
  cursor: pointer; transition: border-color .15s, color .15s;
}
.btn-cta-outline-w:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--brand-deeper); padding: 4.5rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; max-width: 1160px; margin-left: auto; margin-right: auto; }
.f-logo { font-family: var(--display); font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -.04em; margin-bottom: .75rem; }
.f-logo .f-acc { color: var(--brand-accent); }
.f-tagline { font-size: .875rem; color: rgba(255,255,255,.3); line-height: 1.7; font-weight: 300; max-width: 240px; }
.f-socials { display: flex; gap: .5rem; margin-top: 1rem; }
.soc { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.soc:hover { background: rgba(255,255,255,.14); }
.soc svg { width: 14px; height: 14px; fill: rgba(255,255,255,.55); }
.f-col-h { font-family: var(--display); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.22); margin-bottom: .9rem; }
.f-link { display: block; font-size: .875rem; padding: .22rem 0; color: rgba(255,255,255,.38); transition: color .15s; font-weight: 300; }
.f-link:hover { color: rgba(255,255,255,.85); }
.f-bottom { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: rgba(255,255,255,.22); }
.f-badges { display: flex; gap: .55rem; }
.f-badge { padding: .25rem .65rem; background: rgba(255,255,255,.05); border-radius: 20px; font-size: .67rem; font-weight: 600; color: rgba(255,255,255,.25); }

/* ─── MOBILE NAV OPEN ────────────────────────────────── */
body.nav-open .nav-links {
  display: flex !important; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--brand-dark); padding: 1rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(20,174,169,.1); z-index: 299; gap: .2rem;
}
body.nav-open .nav-right {
  display: flex !important; flex-direction: column;
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--brand-dark); border-top: 1px solid rgba(20,174,169,.1); z-index: 299; gap: .5rem;
}

  /* ── Ecosystem Slider ── */


.eco-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.eco-slider .aud-card {
  min-width: calc(50% - 0.75rem);
  flex-shrink: 0;
}

/* Production card accent */
.aud-card.prod {
  background: linear-gradient(135deg, #0d0a1a 0%, #1a1030 100%);
  border-color: #8b5cf622;
}
.aud-card.prod .aud-tag { color: #a78bfa; }
.aud-card.prod .aud-pill {
  background: #8b5cf615;
  color: #c4b5fd;
  border-color: #8b5cf630;
}

/* Kitchen card accent */
.aud-card.kitchen {
  background: linear-gradient(135deg, #1a1200 0%, #2a1f00 100%);
  border-color: #f59e0b22;
}
.aud-card.kitchen .aud-tag { color: #f59e0b; }
.aud-card.kitchen .aud-pill {
  background: #f59e0b15;
  color: #fbbf24;
  border-color: #f59e0b30;
}

/* Marketplace card accent */
.aud-card.market {
  background: linear-gradient(135deg, #001a0f 0%, #002a18 100%);
  border-color: #10b98122;
}
.aud-card.market .aud-tag { color: #10b981; }
.aud-card.market .aud-pill {
  background: #10b98115;
  color: #34d399;
  border-color: #10b98130;
}

/* Coming Soon badge */
.eco-badge.coming-soon {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #ffffff15;
  color: #ffffff80;
  border: 1px solid #ffffff20;
  vertical-align: middle;
}

/* Muted CTA for coming-soon cards */
.aud-cta--muted {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff40;
  cursor: default;
  user-select: none;
}

/* Controls */
.eco-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.eco-dots {
  display: flex;
  gap: 0.5rem;
}

.eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #ffffff25;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}

.eco-dot.active {
  width: 24px;
  background: var(--brand, #6366f1);
}

.eco-arrows {
  display: flex;
  gap: 0.5rem;
}

.eco-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ffffff20;
  background: #ffffff08;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.eco-arrow:hover {
  background: #ffffff15;
  border-color: #ffffff40;
}


.eco-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.eco-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.eco-arrows {
  display: flex;
  gap: 0.5rem;
}

.eco-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ffffff25;
  background: #ffffff0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.eco-arrow:hover {
  background: #ffffff18;
  border-color: #ffffff50;
}

.eco-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.eco-arrow svg {
  display: block;
  pointer-events: none;
}

/* Mobile: one card at a time */
@media (max-width: 768px) {
  .eco-slider .aud-card {
    min-width: 100%;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hero stacks at tablet */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  /* Tabs */
  .tab-panel.on { grid-template-columns: 1fr; }
  .tab-preview-wrap { display: none; }
  /* Audience */
  .audience-grid { grid-template-columns: 1fr; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  /* Float badges */
  .hf1, .hf2 { display: none; }
  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-ham { display: flex; }
  /* Hero stacks: text above mockup */
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: calc(var(--nav-h) + 3rem) 1.25rem 3rem; }
  .hero-inner > div:first-child { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mockup-wrap { margin-top: 2.5rem; max-width: 100%; }
  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  /* Steps */
  .steps-row { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  /* Mockup simplify */
  .mockup-body { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mk-card-side { grid-row: auto; display: none; }
  .mk-card-chart { grid-column: span 2; }
  /* Section padding */
  .section { padding: 4rem 1.25rem; }
  .section-alt { padding: 4rem 1.25rem; }
  /* Logos strip wraps */
  .logos-strip { padding: 1.25rem 1rem; }
  .logos-inner { gap: .75rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: .25rem; }
  .logos-inner::-webkit-scrollbar { display: none; }
  /* Feature tabs nav scrollable */
  .tab-nav { margin-left: 0; margin-right: 0; max-width: 100%; }
  /* Audience grid */
  .audience-grid { grid-template-columns: 1fr; }
  /* Integrations */
  .int-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .mockup-body { grid-template-columns: 1fr 1fr; }
  .mk-card-chart { grid-column: span 2; }
  .mk-card-side { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-n { font-size: 1.65rem; }
  /* CTA buttons stack */
  .hero-ctas, .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas a, .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }
}

/* ═══ GLOBAL MOBILE / TOUCH FIXES ══════════════════════════════════════ */
@supports (padding: max(0px)) {
  .nav-inner { padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); }
  body > footer, .footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
}
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }
a, button { touch-action: manipulation; }
.btn-ghost-nav, .btn-cta-nav, .btn-accent, .btn-lime, .btn-primary,
.btn-hero-primary, .btn-cta-lime, .btn-hero-ghost, .btn-cta-outline-w,
.btn-outline-w, .plan-btn, .btn-submit { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.nav-ham span { transition: transform .25s ease, opacity .2s ease; }
body.nav-open .nav-ham span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-ham span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-ham span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Overlay backdrop when nav open */
body.nav-open::before { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 198; }

@media (max-width: 375px) {
  :root { --nav-h: 60px; }
  .section, .section-alt { padding: 3rem 1rem; }
  .container { padding: 0 1rem; }
  .display-heading { font-size: 1.6rem !important; }
  .eyebrow { font-size: .65rem; }
}

