/* =========================================================
   Keurio — Marketing site
   Type: Geist + Geist Mono
   Color: #0f3e18 primary / #b2dbb8 accent + warm neutrals
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* brand */
  --green-900: #0a2a10;
  --green-800: #0f3e18;
  --green-700: #1a5a26;
  --green-200: #b2dbb8;
  --green-100: #d8ecdb;
  --green-50:  #eef6ef;

  /* neutrals — warm, near-white */
  --bg:        #fafaf7;
  --surface:   #ffffff;
  --ink-900:   #0b0d0c;
  --ink-700:   #2a2f2c;
  --ink-500:   #5b6360;
  --ink-400:   #8a918e;
  --ink-300:   #bcc1be;
  --ink-200:   #e3e6e3;
  --ink-100:   #eef0ed;
  --ink-50:    #f5f6f3;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(10,20,12,.04), 0 1px 1px rgba(10,20,12,.03);
  --shadow-md: 0 2px 8px rgba(10,20,12,.06), 0 1px 2px rgba(10,20,12,.04);
  --shadow-lg: 0 20px 60px -20px rgba(10,40,18,.25), 0 8px 24px -12px rgba(10,40,18,.18);
  --shadow-xl: 0 40px 100px -30px rgba(10,40,18,.35), 0 16px 40px -20px rgba(10,40,18,.22);

  /* type */
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink-900); letter-spacing: -0.02em; font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(40px, 6.2vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.06; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.18; letter-spacing: -0.02em; }
h4 { font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; }
p  { margin: 0; color: var(--ink-700); text-wrap: pretty; }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-800);
}
.eyebrow.on-dark { color: var(--green-200); }

.lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-500); line-height: 1.5; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 9vw, 140px) 0; }
.section-sm { padding: clamp(48px, 6vw, 88px) 0; }
.divider { height: 1px; background: var(--ink-200); border: 0; margin: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250, 250, 247, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--ink-200); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 22px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: left center;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-700);
  padding: 8px 14px; border-radius: 8px;
  font-weight: 500; transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--ink-100); color: var(--ink-900); }
.nav-links a.active { color: var(--ink-900); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: 1px solid var(--ink-200); border-radius: 8px; padding: 8px; }
.nav-toggle svg { width: 18px; height: 18px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn.ghost { display: none; }
  .nav-cta { gap: 8px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  font-family: var(--sans);
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn.primary {
  background: var(--green-800); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 1px 2px rgba(15,62,24,.25);
}
.btn.primary:hover { background: var(--green-900); }

.btn.secondary {
  background: var(--surface); color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn.secondary:hover { border-color: var(--ink-300); background: var(--bg); }

.btn.ghost {
  background: transparent; color: var(--ink-700);
}
.btn.ghost:hover { color: var(--ink-900); background: var(--ink-100); }

.btn.lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

.btn.on-dark.primary { background: #fff; color: var(--green-900); }
.btn.on-dark.primary:hover { background: var(--green-50); }
.btn.on-dark.secondary { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.btn.on-dark.secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--bg) 100%);
  color: var(--ink-900);
  padding: clamp(88px, 11vw, 160px) 0 clamp(0px, 4vw, 40px);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: var(--ink-900); }
.hero h1 em {
  font-style: normal;
  color: var(--green-800);
  font-weight: 600;
}
.hero .lead { color: var(--ink-500); max-width: 640px; margin: 22px auto 0; text-align: center; }

.hero-slogan {
  display: inline-flex; align-items: center;
  max-width: 92%;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(178, 219, 184, 0.10);
  border: 1px solid rgba(178, 219, 184, 0.30);
  color: var(--green-800);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.003em;
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 760px) {
  .hero-slogan { white-space: normal; text-align: center; padding: 6px 14px; }
}

.hero-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-actions {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  margin-top: 36px; flex-wrap: wrap;
}
.hero-trust {
  margin-top: 22px;
  display: flex; gap: 16px; justify-content: center; align-items: center; color: var(--ink-500);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-trust .sep { width: 3px; height: 3px; background: var(--ink-300); border-radius: 999px; }

/* ---------- Hero aurora ---------- */
.hero-aurora {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-aurora .blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-aurora .blob.b1 {
  width: 600px; height: 600px;
  background: #b2dbb8;
  opacity: 0.25;
  filter: blur(120px);
  top: -160px; left: -120px;
  animation: aurora1 10s ease-in-out infinite;
}
.hero-aurora .blob.b2 {
  width: 500px; height: 500px;
  background: #0f3e18;
  opacity: 0.15;
  filter: blur(100px);
  top: -100px; right: -120px;
  animation: aurora2 14s ease-in-out infinite;
}
.hero-aurora .blob.b3 {
  width: 400px; height: 400px;
  background: #1a6128;
  opacity: 0.20;
  filter: blur(80px);
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  animation: aurora3 8s ease-in-out infinite;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  50%      { transform: translate(-30px, 40px) scale(0.85); }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(-50%, -50%) scale(0.9); }
  50%      { transform: translate(calc(-50% + 25px), calc(-50% + 25px)) scale(1.2); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-aurora .blob { animation: none; }
}

.hero-shot {
  margin-top: clamp(48px, 7vw, 88px);
  position: relative;
}

/* ---------- App mock (HTML/CSS rendered) ---------- */
.app-mock {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  text-align: left;
  color: var(--ink-900);
}
.app-mock .app-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-50);
}
.app-mock .dots { display: flex; gap: 6px; }
.app-mock .dots span { width: 10px; height: 10px; border-radius: 999px; background: var(--ink-300); }
.app-mock .dots span:nth-child(1) { background: #ed6a5e; }
.app-mock .dots span:nth-child(2) { background: #f5bf4f; }
.app-mock .dots span:nth-child(3) { background: #62c554; }
.app-mock .addr {
  margin-left: 12px; font-family: var(--mono); font-size: 12px; color: var(--ink-500);
  background: #fff; border: 1px solid var(--ink-200); border-radius: 6px; padding: 4px 10px;
}

.app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}
.app-side {
  border-right: 1px solid var(--ink-200);
  padding: 18px 14px;
  background: linear-gradient(180deg, #fbfcfa, #fff);
}
.app-side .brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.app-side .brand .mark {
  width: 22px; height: 22px; border-radius: 6px; background: var(--green-800);
  display: grid; place-items: center; color: #fff; font-size: 12px;
}
.app-side .nav-group { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); padding: 14px 8px 6px; }
.app-side .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: var(--ink-700); font-weight: 500;
  margin-bottom: 2px;
}
.app-side .nav-item.active { background: var(--green-50); color: var(--green-800); }
.app-side .nav-item .ico { width: 14px; height: 14px; color: currentColor; }
.app-side .nav-item .count { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-400); }
.app-side .nav-item.active .count { color: var(--green-700); }

.app-main { padding: 22px 26px; }
.app-h {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.app-h h4 { font-size: 18px; }
.app-h .sub { font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.app-stat {
  border: 1px solid var(--ink-200); border-radius: 10px; padding: 14px 16px; background: #fff;
}
.app-stat .label { font-size: 11px; font-family: var(--mono); color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; }
.app-stat .val { font-size: 22px; font-weight: 600; margin-top: 6px; letter-spacing: -0.02em; }
.app-stat .delta { font-size: 11px; color: var(--green-700); font-family: var(--mono); }
.app-stat .delta.dn { color: #b94e3a; }

.app-table { border: 1px solid var(--ink-200); border-radius: 10px; overflow: hidden; background: #fff; }
.app-table .row { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr 90px; gap: 14px; padding: 12px 16px; font-size: 13px; align-items: center; border-top: 1px solid var(--ink-100); }
.app-table .row.head { background: var(--ink-50); border-top: 0; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); padding: 9px 16px; }
.app-table .row .who { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.app-table .row .avatar { width: 26px; height: 26px; border-radius: 999px; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; font-size: 11px; font-weight: 600; }
.app-table .row .meta { font-size: 11px; color: var(--ink-500); }
.tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-50); color: var(--green-800);
  border: 1px solid var(--green-100);
}
.tag.warn { background: #fff4dc; color: #8a5a06; border-color: #f7e3b7; }
.tag.muted { background: var(--ink-50); color: var(--ink-500); border-color: var(--ink-200); }
.tag .dot { width: 6px; height: 6px; background: currentColor; border-radius: 999px; opacity: .8; }

/* small variant on dark */
.hero-shot .app-mock { transform: translateY(0); }

/* ---------- Dashboard mock (Stripe-style hero) ---------- */
.dash-mock {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  text-align: left;
  color: var(--ink-900);
}
.dash-mock .browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--ink-200);
  background: #fbfbf9;
}
.dash-mock .browser-bar .dots { display: flex; gap: 6px; }
.dash-mock .browser-bar .dots span { width: 11px; height: 11px; border-radius: 999px; background: var(--ink-300); }
.dash-mock .browser-bar .dots span:nth-child(1) { background: #ed6a5e; }
.dash-mock .browser-bar .dots span:nth-child(2) { background: #f5bf4f; }
.dash-mock .browser-bar .dots span:nth-child(3) { background: #62c554; }
.dash-mock .browser-bar .addr {
  flex: 1; max-width: 380px; margin: 0 auto;
  font-family: var(--mono); font-size: 12px; color: var(--ink-500);
  background: #fff; border: 1px solid var(--ink-200); border-radius: 7px;
  padding: 5px 12px;
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.dash-mock .browser-bar .addr svg { width: 12px; height: 12px; color: var(--ink-400); }

.dash-body { padding: 24px 28px 26px; background: #fff; }

/* toolbar */
.dash-toolbar {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.period-group {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
}
.period-group .label { color: var(--ink-500); margin-right: 4px; font-weight: 500; }
.seg {
  display: flex; gap: 4px;
  background: var(--ink-50);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--ink-200);
}
.seg .opt {
  padding: 5px 12px; border-radius: 6px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-700);
  cursor: default;
}
.seg .opt.on { background: var(--green-800); color: #fff; }

.dropdowns { display: flex; gap: 10px; align-items: center; margin-left: auto; flex-wrap: wrap; }
.drop {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  border: 1px solid var(--ink-200); background: #fff;
  color: var(--ink-700);
}
.drop svg { width: 13px; height: 13px; color: var(--ink-400); }
.drop .chev { color: var(--ink-400); margin-left: 2px; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
  min-height: 116px;
}
.kpi.active { background: var(--green-50); border-color: var(--green-200); }
.kpi .head { display: flex; align-items: center; justify-content: space-between; }
.kpi .ttl { font-size: 13px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.005em; }
.kpi .pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: lowercase;
  padding: 2px 7px; border-radius: 999px;
  background: var(--green-100); color: var(--green-800);
  border: 1px solid var(--green-200);
}
.kpi-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 6px; }
.kpi .val { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--ink-900); }
.kpi .sub { font-size: 11.5px; color: var(--ink-500); margin-top: 8px; }

.spark { display: flex; align-items: flex-end; gap: 2.5px; height: 28px; }
.spark span { width: 4px; border-radius: 1px; background: var(--ink-300); }
.kpi.active .spark span { background: var(--green-700); opacity: 0.55; }
.kpi.active .spark span.hi { background: var(--green-800); opacity: 1; }
.spark.orange span { background: #f3c58a; }
.spark.orange span.hi { background: #c98a3f; }
.spark.gray span { background: var(--ink-300); }
.spark.gray span.hi { background: var(--ink-500); }
.spark.greenish span { background: var(--green-200); }
.spark.greenish span.hi { background: var(--green-700); }

/* Bottom row: chart + side cards */
.dash-bottom {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.chart-card {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: #fff;
  padding: 18px 20px 16px;
}
.chart-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.chart-head h5 { font-size: 14px; margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.chart-head .csub { font-size: 11.5px; color: var(--ink-500); margin-top: 2px; }
.chart-head .legend {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-500);
}
.chart-head .legend .ldot { width: 7px; height: 7px; border-radius: 999px; background: var(--green-800); }
.chart-area {
  position: relative;
  height: 200px;
  margin-top: 6px;
}
.chart-area svg { width: 100%; height: 100%; display: block; }

.side-stack { display: flex; flex-direction: column; gap: 12px; }

/* Quick actions dark card */
.qa-card {
  border-radius: 10px;
  padding: 18px 20px;
  background: linear-gradient(155deg, #134a1c 0%, #0a2a10 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #0f3e18;
}
.qa-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(178,219,184,.18), transparent 50%);
  pointer-events: none;
}
.qa-card h5 { color: #fff; font-size: 14px; font-weight: 600; margin: 0 0 2px; letter-spacing: -0.01em; position: relative; }
.qa-card .qsub { font-size: 11.5px; color: rgba(255,255,255,.6); position: relative; }
.qa-list { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; position: relative; }
.qa {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px; font-weight: 500;
  color: #fff;
}
.qa .qi {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(178,219,184,.16);
  color: var(--green-200);
  display: grid; place-items: center; flex-shrink: 0;
}
.qa .qi svg { width: 12px; height: 12px; }
.qa .qarrow { margin-left: auto; color: rgba(255,255,255,.4); }
.qa .qarrow svg { width: 12px; height: 12px; }

/* Get Started card */
.gs-card {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
}
.gs-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.gs-head h5 { font-size: 13.5px; font-weight: 600; margin: 0; letter-spacing: -0.005em; }
.gs-progress { font-family: var(--mono); font-size: 10.5px; color: var(--green-800); }
.gs-bar { height: 4px; background: var(--ink-100); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }
.gs-bar > i { display: block; height: 100%; background: var(--green-800); width: 60%; border-radius: inherit; }
.gs-list { display: flex; flex-direction: column; gap: 8px; }
.gs-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px;
  color: var(--ink-700);
}
.gs-item .ck {
  width: 16px; height: 16px; border-radius: 999px; flex-shrink: 0;
  border: 1.5px solid var(--ink-300);
}
.gs-item.done .ck {
  background: var(--green-800); border-color: var(--green-800);
  display: grid; place-items: center; color: #fff;
}
.gs-item.done .ck svg { width: 9px; height: 9px; }
.gs-item.done { color: var(--ink-400); text-decoration: line-through; text-decoration-thickness: 1px; }

@media (max-width: 1024px) {
  .dash-bottom { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .dash-body { padding: 18px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .dropdowns { width: 100%; margin-left: 0; }
  .dash-mock .browser-bar .addr { display: none; }
  .kpi .val { font-size: 26px; }
  .seg .opt { padding: 5px 9px; }
}

/* ---------- Logo cloud ---------- */
.logos {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--ink-200);
}
.logos-label {
  text-align: center; color: var(--ink-500); font-size: 13px;
  font-family: var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center;
  opacity: .8;
}
.logos-row .lg {
  font-weight: 600; letter-spacing: -0.02em; color: var(--ink-500);
  font-size: 17px; text-align: center; white-space: nowrap;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--sans);
}
.logos-row .lg .swatch { width: 18px; height: 18px; border-radius: 4px; background: var(--ink-300); }
@media (max-width: 860px) {
  .logos-row { grid-template-columns: repeat(3, 1fr); gap: 22px 16px; }
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 860px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit {
  padding: 32px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.benefit:hover { border-color: var(--green-200); }
.benefit .ico-tile {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-800);
  display: grid; place-items: center;
  border: 1px solid var(--green-100);
}
.benefit .ico-tile svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 20px; letter-spacing: -0.015em; }
.benefit p { font-size: 15px; color: var(--ink-500); }
.benefit .meta { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--green-800); padding-top: 12px; }

/* ---------- Section heading ---------- */
.section-head {
  max-width: 720px; margin: 0 auto 56px; text-align: center;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: clamp(16px, 1.4vw, 19px); }

/* ---------- Feature row ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.feature-row.reverse { grid-template-columns: 1.15fr 1fr; }
.feature-row.reverse .feature-copy { order: 2; }
@media (max-width: 860px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-copy { order: 0; }
}
.feature-copy .eyebrow { display: inline-block; margin-bottom: 14px; }
.feature-copy h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.feature-copy p { font-size: 17px; color: var(--ink-500); }
.feature-list { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  list-style: none; padding: 0;
  font-size: 15px; color: var(--ink-700);
}
.feature-list { padding: 0; margin-top: 22px; }
.feature-list .check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .check svg { width: 11px; height: 11px; }

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(56px, 7vw, 96px);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(178,219,184,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(26,90,38,.5), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.7); margin-top: 16px; font-size: 17px; }
.cta .hero-actions { margin-top: 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--ink-200);
  padding: 56px 0 32px;
  margin-top: 80px;
  background: var(--bg);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-brand img {
  height: 20px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
}
.footer-nav a {
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
}
.footer-nav a:hover { color: var(--ink-900); }
.footer-copy {
  font-size: 13px;
  color: var(--ink-500);
  margin-left: auto;
}
@media (max-width: 720px) {
  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-copy { margin-left: 0; }
}

/* ---------- Stat strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  background: #fff; overflow: hidden;
}
.stats-strip .item { padding: 28px; border-right: 1px solid var(--ink-200); }
.stats-strip .item:last-child { border-right: 0; }
.stats-strip .v { font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -0.03em; color: var(--green-800); }
.stats-strip .k { font-size: 13px; color: var(--ink-500); margin-top: 6px; }
@media (max-width: 860px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip .item { border-right: 0; border-top: 1px solid var(--ink-200); }
  .stats-strip .item:nth-child(odd) { border-right: 1px solid var(--ink-200); }
  .stats-strip .item:nth-child(-n+2) { border-top: 0; }
}

/* ---------- Feature card grid (features page) ---------- */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  padding: 28px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color .2s ease;
}
.feat-card:hover { border-color: var(--green-200); }
.feat-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-400); }
.feat-card h3 { font-size: 18px; }
.feat-card p { font-size: 14px; color: var(--ink-500); }
.feat-card .ico-tile { width: 38px; height: 38px; border-radius: 10px; background: var(--green-50); color: var(--green-800); display: grid; place-items: center; border: 1px solid var(--green-100); margin-bottom: 4px; }
.feat-card .ico-tile svg { width: 18px; height: 18px; }

/* ---------- Demo form ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .form-wrap { grid-template-columns: 1fr; } }
.form {
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-700); }
.field label .req { color: var(--green-800); margin-left: 2px; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 14px;
  padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--ink-200);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  color: var(--ink-900);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(15,62,24,.12);
}
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form .row2 { grid-template-columns: 1fr; } }
.form .legal { font-size: 12px; color: var(--ink-500); margin-top: 10px; }
.form .submit { width: 100%; justify-content: center; padding: 13px; font-size: 15px; margin-top: 6px; }

.demo-side h2 { margin-bottom: 18px; }
.demo-side .lead { color: var(--ink-500); }
.demo-side ul { padding: 0; margin: 28px 0 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.demo-side ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-700); }
.demo-side ul li .ico-tile {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px; background: var(--green-50); color: var(--green-800);
  display: grid; place-items: center; border: 1px solid var(--green-100);
}
.demo-side ul li .ico-tile svg { width: 14px; height: 14px; }
.demo-side ul li b { display: block; color: var(--ink-900); font-weight: 600; margin-bottom: 2px; }

.notice {
  margin-top: 28px; padding: 14px 16px;
  border-radius: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-800);
  font-size: 14px;
  display: flex; gap: 10px; align-items: center;
  font-weight: 500;
}
.notice svg { width: 16px; height: 16px; }

/* ---------- About page bits ---------- */
.about-portrait {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
  display: flex; flex-direction: column; gap: 20px;
}
.about-portrait .face {
  width: 100%; aspect-ratio: 4 / 5;
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg, var(--ink-100) 0 8px, var(--ink-50) 8px 16px);
  display: grid; place-items: center;
  color: var(--ink-400);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.about-portrait .meta { display: flex; flex-direction: column; gap: 4px; }
.about-portrait .meta .name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.about-portrait .meta .role { font-size: 13px; color: var(--ink-500); font-family: var(--mono); }
.quote {
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3; letter-spacing: -0.02em;
  font-weight: 500; color: var(--ink-900); text-wrap: balance;
}
.quote::before { content: "“"; color: var(--green-700); margin-right: 4px; }
.quote::after { content: "”"; color: var(--green-700); margin-left: 4px; }
.timeline {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--ink-200);
  padding-left: 0;
}
.timeline .tl {
  display: grid; grid-template-columns: 120px 1fr; gap: 32px;
  padding: 22px 0 22px 26px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
}
.timeline .tl::before {
  content: ""; position: absolute; left: -5px; top: 30px;
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--green-800); border: 2px solid var(--bg);
}
.timeline .tl:last-child { border-bottom: 0; }
.timeline .tl .when { font-family: var(--mono); font-size: 13px; color: var(--ink-500); }
.timeline .tl h4 { font-size: 18px; margin-bottom: 6px; }
.timeline .tl p { color: var(--ink-500); }
@media (max-width: 640px) {
  .timeline .tl { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Page header (non-home pages) ---------- */
.page-head {
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--ink-200);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--bg) 100%);
}
.page-head.hero-v4 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head.hero-v4 .pattern-zone {
  top: 48px;
  height: 360px;
  width: min(900px, 92%);
}
.page-head.hero-v4 .container-narrow {
  position: relative;
  z-index: 3;
}
.page-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-head h1 { font-size: clamp(40px, 5.2vw, 64px); margin-bottom: 18px; }
.page-head p { max-width: 620px; margin: 0 auto; color: var(--ink-500); font-size: clamp(16px, 1.4vw, 19px); }

/* ---------- Phone mock ---------- */
.phone {
  width: 280px; aspect-ratio: 9 / 19;
  background: #0a0c0a; border-radius: 36px; padding: 8px;
  box-shadow: var(--shadow-xl);
  border: 1px solid #1a1d1a;
}
.phone .screen { width: 100%; height: 100%; border-radius: 28px; background: #fff; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.phone .status { display: flex; justify-content: space-between; padding: 14px 22px 8px; font-size: 11px; font-family: var(--mono); color: var(--ink-700); }
.phone-content { padding: 8px 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Misc ---------- */
.kbd {
  font-family: var(--mono); font-size: 11px;
  padding: 2px 6px; border-radius: 5px;
  background: var(--ink-50); border: 1px solid var(--ink-200); color: var(--ink-700);
}

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--mono); font-size: 11.5px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  border: 1px solid var(--green-100);
  display: inline-flex; gap: 6px; align-items: center;
}

/* fadeup */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none;} }
.fade-up { animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) both; }
.fade-up.d1 { animation-delay: .08s; }
.fade-up.d2 { animation-delay: .16s; }
.fade-up.d3 { animation-delay: .24s; }
.fade-up.d4 { animation-delay: .32s; }

/* =========================================================
   v2 — Premium refinements
   ========================================================= */

/* ---------- Section variants ---------- */
.section-tinted {
  background: linear-gradient(180deg, var(--bg) 0%, var(--green-50) 50%, var(--bg) 100%);
  position: relative;
}
.section-canvas {
  position: relative;
  overflow: hidden;
}
.section-canvas::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 0% 0%, rgba(178,219,184,.25), transparent 60%),
    radial-gradient(ellipse 500px 300px at 100% 100%, rgba(178,219,184,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.section-canvas > * { position: relative; z-index: 1; }

/* Subtle dot pattern overlay */
.dot-bg {
  position: relative;
}
.dot-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,62,24,.07) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.dot-bg > * { position: relative; z-index: 1; }

/* Soft horizontal stripe lines */
.stripe-bg {
  position: relative;
}
.stripe-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(15,62,24,.05) 100%);
  background-size: 100% 80px;
  pointer-events: none;
  z-index: 0;
}
.stripe-bg > * { position: relative; z-index: 1; }

/* Wave divider */
.wave {
  display: block;
  width: 100%;
  height: 80px;
  pointer-events: none;
}
.wave.flip { transform: scaleY(-1); }

/* Decorative line + corner accent */
.line-accent {
  position: relative;
}
.line-accent::after {
  content: ""; position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, transparent, var(--green-200));
  transform: translateX(-50%);
}

/* ---------- v2 Nav refinements ---------- */
.nav-cta .btn.primary {
  background: linear-gradient(180deg, #144a1f, var(--green-800));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 1px 2px rgba(15,62,24,.30),
    0 4px 14px -4px rgba(15,62,24,.35);
}
.nav-cta .btn.primary:hover { background: linear-gradient(180deg, #0f3e18, var(--green-900)); }

/* ---------- v2 Hero ---------- */
.hero-v2 {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(178,219,184,.20), transparent 60%),
    linear-gradient(180deg, #f4faf5 0%, var(--bg) 70%);
}
.hero-v4 {
  background:
    linear-gradient(180deg, #f4faf5 0%, var(--bg) 100%);
  isolation: isolate;
}
.hero-v2 .hero-mesh {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-v2 .hero-mesh svg {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 1400px; height: 100%;
  opacity: 0.5;
}

/* Hero badge pill (live counter) */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(10,20,12,.04);
}
.hero-pill .pulse {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green-700);
  position: relative;
}
.hero-pill .pulse::before {
  content: ""; position: absolute; inset: -3px;
  border-radius: 999px;
  background: var(--green-700);
  opacity: 0.3;
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-pill .tag-text {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-800);
  padding-right: 6px; border-right: 1px solid var(--ink-200);
}
.hero-pill .tag-body {
  color: var(--ink-700); font-weight: 500; font-size: 12.5px;
}

/* ---------- v2 CTA buttons ---------- */
.btn.primary {
  background: linear-gradient(180deg, #144a1f, var(--green-800));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 1px 2px rgba(15,62,24,.20),
    0 4px 14px -4px rgba(15,62,24,.30);
}
.btn.primary:hover {
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 1px 2px rgba(15,62,24,.25),
    0 6px 18px -4px rgba(15,62,24,.40);
}
.btn.tertiary {
  background: transparent; color: var(--green-800);
  border: 1px solid var(--green-200);
  font-weight: 500;
}
.btn.tertiary:hover { background: var(--green-50); border-color: var(--green-700); color: var(--green-900); }

/* ---------- Dashboard v2 — richer ---------- */
.dash-mock { box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15,62,24,.04); }

/* Glow halo behind dashboard */
.hero-shot { position: relative; }
.hero-shot::before {
  content: ""; position: absolute;
  inset: -40px -10px -20px -10px;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(178,219,184,.30), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* New KPI tile delta arrows */
.kpi .delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500;
  font-family: var(--mono);
  color: var(--green-700);
  margin-top: 4px;
}
.kpi .delta.dn { color: #c98a3f; }
.kpi .delta svg { width: 10px; height: 10px; }

/* Wider chart card */
.chart-card.lg { padding: 22px 24px 18px; }
.chart-card .chart-tabs {
  display: flex; gap: 4px;
  margin-top: 4px;
}
.chart-card .chart-tab {
  font-size: 11.5px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  color: var(--ink-500);
}
.chart-card .chart-tab.on { background: var(--ink-50); color: var(--ink-900); }

/* Donut chart card */
.donut-card {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: #fff;
  padding: 18px 20px;
}
.donut-wrap {
  position: relative;
  width: 140px; height: 140px;
  margin: 12px auto 16px;
}
.donut-wrap svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.donut-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
}
.donut-center .v { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.donut-center .l { font-size: 10.5px; color: var(--ink-500); font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.donut-legend { display: flex; flex-direction: column; gap: 7px; }
.donut-legend .li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--ink-700);
}
.donut-legend .sw { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }
.donut-legend .pct { margin-left: auto; font-family: var(--mono); color: var(--ink-500); font-size: 11.5px; }

/* Activity feed / leaderboard table-y */
.feed-card {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: #fff;
  padding: 16px 18px;
}
.feed-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.feed-head h5 { font-size: 13.5px; margin: 0; font-weight: 600; letter-spacing: -0.005em; }
.feed-head .more { font-size: 11.5px; color: var(--ink-500); font-family: var(--mono); }
.feed-row {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--ink-100);
  font-size: 12.5px;
}
.feed-row:first-of-type { border-top: 0; padding-top: 4px; }
.feed-row .avatar {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 600;
}
.feed-row .body .who { color: var(--ink-900); font-weight: 500; }
.feed-row .body .what { color: var(--ink-500); font-size: 11.5px; margin-top: 1px; }
.feed-row .when { font-family: var(--mono); font-size: 10.5px; color: var(--ink-400); }

/* Leaderboard */
.lb-row {
  display: grid;
  grid-template-columns: 18px 26px 1fr 60px 50px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--ink-100);
  font-size: 12.5px;
}
.lb-row:first-of-type { border-top: 0; padding-top: 4px; }
.lb-row .rank { font-family: var(--mono); color: var(--ink-400); font-size: 11px; }
.lb-row .avatar {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600;
}
.lb-row .name { color: var(--ink-900); font-weight: 500; }
.lb-row .reps { font-family: var(--mono); color: var(--ink-700); text-align: right; }
.lb-row .trend { font-family: var(--mono); font-size: 10.5px; color: var(--green-700); text-align: right; }
.lb-row .trend.dn { color: #c98a3f; }

/* Heat strip mini calendar */
.heat-grid {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 3px;
  margin-top: 10px;
}
.heat-grid > i {
  display: block;
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--ink-100);
}
.heat-grid > i.l1 { background: var(--green-100); }
.heat-grid > i.l2 { background: var(--green-200); }
.heat-grid > i.l3 { background: #6db576; }
.heat-grid > i.l4 { background: var(--green-700); }
.heat-grid > i.l5 { background: var(--green-800); }
.heat-labels {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--ink-400);
  margin-top: 8px;
}

/* Tabs row above chart */
.dash-tabs {
  display: flex; gap: 6px;
  border-bottom: 1px solid var(--ink-100);
  padding-bottom: 0;
  margin-bottom: 18px;
}
.dash-tab {
  font-size: 12.5px; font-weight: 500;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  color: var(--ink-500);
  margin-bottom: -1px;
}
.dash-tab.on { color: var(--green-800); border-bottom-color: var(--green-800); }

/* Dashboard 3-col bottom row */
.dash-bottom-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 1024px) { .dash-bottom-3 { grid-template-columns: 1fr 1fr; } .dash-bottom-3 > *:first-child { grid-column: 1 / -1; } }
@media (max-width: 720px) { .dash-bottom-3 { grid-template-columns: 1fr; } .dash-bottom-3 > *:first-child { grid-column: 1; } }

/* ---------- Section heading v2: with kicker line ---------- */
.section-head-v2 { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head-v2 .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.section-head-v2 .kicker::before,
.section-head-v2 .kicker::after {
  content: ""; width: 28px; height: 1px; background: var(--green-200);
}
.section-head-v2 .eyebrow { display: inline-block; }
.section-head-v2 h2 { margin-bottom: 16px; }
.section-head-v2 p { color: var(--ink-500); font-size: clamp(16px, 1.4vw, 19px); }

/* ---------- Refined feature card v2 ---------- */
.feat-card-v2 {
  position: relative;
  padding: 28px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: #fff;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .25s ease, box-shadow .2s ease;
  overflow: hidden;
  min-height: 280px;
}
.feat-card-v2::before {
  content: ""; position: absolute;
  top: 0; right: 0; width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(178,219,184,.18), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.feat-card-v2:hover {
  border-color: var(--green-200);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(15,62,24,.18);
}
.feat-card-v2:hover::before { opacity: 1; }
.feat-card-v2 .num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--ink-400);
  position: relative;
}
.feat-card-v2 .ico-tile {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--green-50), #fff);
  color: var(--green-800);
  display: grid; place-items: center;
  border: 1px solid var(--green-100);
  box-shadow: 0 1px 2px rgba(15,62,24,.06), inset 0 1px 0 rgba(255,255,255,.6);
  position: relative;
}
.feat-card-v2 .ico-tile svg { width: 22px; height: 22px; }
.feat-card-v2 h3 { font-size: 19px; letter-spacing: -0.015em; position: relative; }
.feat-card-v2 p { font-size: 14.5px; color: var(--ink-500); line-height: 1.55; position: relative; }
.feat-card-v2 .meta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--green-800);
  padding-top: 12px;
  position: relative;
}
.feat-card-v2 .meta::before {
  content: ""; width: 16px; height: 1px; background: var(--green-200);
}

/* Featured (large span) card */
.feat-card-v2.featured {
  grid-column: span 2;
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff;
  border-color: var(--green-800);
}
.feat-card-v2.featured h3 { color: #fff; }
.feat-card-v2.featured p { color: rgba(255,255,255,.7); }
.feat-card-v2.featured .ico-tile {
  background: rgba(178,219,184,.14);
  border-color: rgba(178,219,184,.3);
  color: var(--green-200);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.feat-card-v2.featured .num { color: rgba(178,219,184,.6); }
.feat-card-v2.featured .meta { color: var(--green-200); }
.feat-card-v2.featured .meta::before { background: rgba(178,219,184,.4); }
.feat-card-v2.featured::after {
  content: ""; position: absolute;
  bottom: 0; right: 0; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle at bottom right, rgba(178,219,184,.18), transparent 60%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .feat-card-v2.featured { grid-column: span 1; }
}

/* ---------- Pricing page ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s ease, transform .25s ease, box-shadow .2s ease;
}
.price-card:hover { border-color: var(--green-200); }
.price-card.featured {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
  border-color: var(--green-200);
  box-shadow: 0 20px 50px -20px rgba(15,62,24,.25);
  transform: translateY(-4px);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--green-800); color: #fff;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.price-card .ttl { font-size: 14px; font-weight: 600; color: var(--ink-700); letter-spacing: -0.005em; }
.price-card .desc { font-size: 13.5px; color: var(--ink-500); }
.price-row {
  display: flex; align-items: baseline; gap: 4px;
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--ink-100);
}
.price-row .amt {
  font-size: 48px; font-weight: 600; letter-spacing: -0.04em;
  line-height: 1; color: var(--ink-900);
}
.price-row .unit { font-size: 14px; color: var(--ink-500); }
.price-card.featured .amt { color: var(--green-900); }
.price-card.featured .price-row { border-bottom-color: var(--green-100); }
.price-card ul {
  padding: 0; margin: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-700);
}
.price-card ul li .ck {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  display: grid; place-items: center; margin-top: 2px;
  border: 1px solid var(--green-100);
}
.price-card ul li .ck svg { width: 10px; height: 10px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* Pricing toggle */
.bill-toggle {
  display: inline-flex;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 4px;
  margin: 0 auto 36px;
}
.bill-toggle .opt {
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .15s ease;
}
.bill-toggle .opt.on {
  background: var(--green-800); color: #fff;
  box-shadow: 0 1px 2px rgba(15,62,24,.20);
}
.bill-toggle .save {
  font-family: var(--mono); font-size: 10px;
  background: rgba(178,219,184,.3); color: var(--green-800);
  padding: 2px 6px; border-radius: 4px;
  margin-left: 6px;
}

/* Pricing comparison row */
.compare-table {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 22px;
  border-top: 1px solid var(--ink-100);
  font-size: 14px;
  align-items: center;
}
.compare-table .row:first-of-type { border-top: 0; }
.compare-table .row.head {
  background: var(--ink-50);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 11px 22px;
}
.compare-table .row.head > div { text-align: center; }
.compare-table .row.head > div:first-child { text-align: left; }
.compare-table .row > div:not(:first-child) { text-align: center; color: var(--ink-700); }
.compare-table .row .ck-cell svg { width: 14px; height: 14px; color: var(--green-800); display: inline-block; }
.compare-table .row.section-row {
  background: var(--ink-50);
  font-weight: 600;
  color: var(--ink-900);
}

/* ---------- About slogan card v2 ---------- */
.slogan-card {
  position: relative;
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.slogan-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(178,219,184,.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(178,219,184,.12), transparent 60%);
}
.slogan-card::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(178,219,184,.05) 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 80%);
  pointer-events: none;
}
.slogan-card-inner {
  position: relative;
  max-width: 760px; margin: 0 auto;
}
.slogan-card .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(178,219,184,.14);
  border: 1px solid rgba(178,219,184,.28);
  color: var(--green-200);
  margin-bottom: 22px;
}
.slogan-card .mark svg { width: 22px; height: 22px; }
.slogan-card h3 {
  font-size: clamp(28px, 3.6vw, 44px);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-wrap: balance;
}
.slogan-card .author {
  margin-top: 26px; padding-top: 26px;
  border-top: 1px solid rgba(178,219,184,.18);
  display: inline-flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
}

/* ---------- Trust strip refined ---------- */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  margin: 24px 0;
}
.trust-strip .item {
  padding: 22px 24px;
  border-right: 1px solid var(--ink-200);
  display: flex; flex-direction: column; gap: 4px;
}
.trust-strip .item:last-child { border-right: 0; }
.trust-strip .item .k { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); }
.trust-strip .item .v { font-size: 22px; font-weight: 600; letter-spacing: -0.025em; color: var(--green-800); }
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip .item { border-top: 1px solid var(--ink-200); }
  .trust-strip .item:nth-child(odd) { border-right: 1px solid var(--ink-200); }
  .trust-strip .item:nth-child(even) { border-right: 0; }
  .trust-strip .item:nth-child(-n+2) { border-top: 0; }
}

/* CTA pill row used on multiple pages */
.cta-pillrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.7);
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
}
.cta-pillrow .label { color: var(--ink-700); font-weight: 500; }
.cta-pillrow .btn { padding: 7px 14px; font-size: 13px; }


/* =========================================================
   v3 — Premium visual systems (aurora, mesh, ribbon, noise)
   ========================================================= */

/* Reusable noise overlay */
.noise-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Grid line backdrop */
.grid-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(15,62,24,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,62,24,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
}

/* Mesh gradient backdrop (layered radial gradients) */
.mesh-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(178,219,184,.55), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(15,62,24,.18), transparent 65%),
    radial-gradient(ellipse 55% 55% at 70% 80%, rgba(178,219,184,.40), transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(26,90,38,.20), transparent 65%);
  filter: blur(40px) saturate(120%);
}

/* Ribbon / wave bands using SVG */
.ribbon-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.7;
}
.ribbon-overlay svg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1600px; height: 900px;
  filter: blur(2px);
}

/* Conic glow accent */
.conic-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background: conic-gradient(from 200deg at 50% 50%,
    rgba(178,219,184,.0) 0deg,
    rgba(178,219,184,.45) 60deg,
    rgba(15,62,24,.15) 130deg,
    rgba(178,219,184,.0) 200deg,
    rgba(15,62,24,.20) 280deg,
    rgba(178,219,184,.0) 360deg);
  filter: blur(80px);
  opacity: 0.55;
}

/* ---------- Hero concept variants ---------- */

/* Default hides all decoration layers; concept classes show them */
.hero-v3 .hero-aurora,
.hero-v3 .hero-mesh,
.hero-v3 .hero-grid,
.hero-v3 .hero-ribbon,
.hero-v3 .hero-conic,
.hero-v3 .hero-noise { opacity: 0; transition: opacity .6s ease; }

.hero-v3.concept-aurora .hero-aurora { opacity: 1; }
.hero-v3.concept-aurora .hero-grid   { opacity: .85; }
.hero-v3.concept-aurora .hero-noise  { opacity: .35; }

.hero-v3.concept-mesh .hero-mesh    { opacity: 1; }
.hero-v3.concept-mesh .hero-noise   { opacity: .30; }

.hero-v3.concept-ribbon .hero-ribbon { opacity: 1; }
.hero-v3.concept-ribbon .hero-grid   { opacity: .6; }
.hero-v3.concept-ribbon .hero-noise  { opacity: .35; }

.hero-v3.concept-conic .hero-conic   { opacity: 1; }
.hero-v3.concept-conic .hero-grid    { opacity: .55; }
.hero-v3.concept-conic .hero-noise   { opacity: .35; }

/* Glow halo behind dashboard — concept-aware */
.hero-v3 .hero-shot::before {
  background: radial-gradient(ellipse 75% 55% at 50% 40%, rgba(178,219,184,.42), transparent 70%);
  inset: -60px -20px -20px -20px;
}

/* Floating chips around dashboard (visual flourish) */
.dash-frame {
  position: relative;
  padding: 0;
}
.dash-frame .float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 12px;
  color: var(--ink-700);
  font-weight: 500;
  box-shadow: 0 12px 30px -10px rgba(15,62,24,.18), 0 2px 6px rgba(0,0,0,.04);
  white-space: nowrap;
  z-index: 3;
  animation: chipFloat 6s ease-in-out infinite;
}
.dash-frame .float-chip .ico {
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  display: grid; place-items: center; flex-shrink: 0;
}
.dash-frame .float-chip .ico svg { width: 11px; height: 11px; }
.dash-frame .float-chip.tl { top: -22px; left: -10px; animation-delay: 0s; }
.dash-frame .float-chip.tr { top: 60px; right: -18px; animation-delay: -2s; }
.dash-frame .float-chip.bl { bottom: 110px; left: -28px; animation-delay: -4s; }
.dash-frame .float-chip strong { color: var(--ink-900); font-weight: 600; }
.dash-frame .float-chip .mono { font-family: var(--mono); font-size: 11px; color: var(--green-800); }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) { .dash-frame .float-chip { animation: none; } }
@media (max-width: 980px) { .dash-frame .float-chip { display: none; } }

/* Concept selector segmented control (hero) */
.hero-concept-bar {
  margin: 28px auto 0;
  display: inline-flex;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  box-shadow: 0 4px 14px -6px rgba(15,62,24,.10);
}
.hero-concept-bar .opt {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-500);
  font-family: var(--sans);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-concept-bar .opt:hover { color: var(--ink-900); }
.hero-concept-bar .opt.on {
  background: var(--green-800); color: #fff;
  box-shadow: 0 1px 2px rgba(15,62,24,.25);
}
.hero-concept-bar .opt .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green-200);
}
.hero-concept-bar .opt.on .dot { background: var(--green-200); }

/* ---------- New marquee strip ---------- */
.marquee {
  position: relative;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #fff);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  padding: 22px 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track .m-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-500);
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.marquee-track .m-item .swatch {
  width: 16px; height: 16px; border-radius: 4px; background: var(--green-800);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Bento section ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.bento .cell {
  position: relative;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 24px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s ease, transform .25s ease;
}
.bento .cell:hover { border-color: var(--green-200); transform: translateY(-2px); }
.bento .cell .eyebrow { font-size: 11px; }
.bento .cell h3 { font-size: 20px; }
.bento .cell p { font-size: 14px; color: var(--ink-500); }

.bento .c-wide { grid-column: span 4; }
.bento .c-mid  { grid-column: span 3; }
.bento .c-half { grid-column: span 2; }
.bento .c-tall { grid-row: span 2; }

.bento .cell.dark {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff; border-color: var(--green-800);
}
.bento .cell.dark h3 { color: #fff; }
.bento .cell.dark p { color: rgba(255,255,255,.7); }
.bento .cell.dark .eyebrow { color: var(--green-200); }

.bento .cell.glow::after {
  content: ""; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 0% 100%, rgba(178,219,184,.22), transparent 60%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento .c-wide { grid-column: span 4; }
  .bento .c-mid { grid-column: span 4; }
  .bento .c-half { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento .cell, .bento .c-wide, .bento .c-mid, .bento .c-half { grid-column: 1; grid-row: auto; min-height: 200px; }
}

/* ---------- Pricing page v2 — premium ---------- */

.pricing-hero {
  position: relative;
  padding: clamp(96px, 11vw, 140px) 0 clamp(36px, 5vw, 64px);
  background: linear-gradient(180deg, #f4faf5 0%, var(--bg) 100%);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.pricing-hero .container { position: relative; z-index: 1; }
.pricing-hero h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; letter-spacing: -0.035em; }
.pricing-hero p { max-width: 620px; margin: 0 auto; color: var(--ink-500); font-size: clamp(16px, 1.4vw, 19px); }

/* Pricing decoration */
.pricing-hero .hero-mesh,
.pricing-hero .hero-grid,
.pricing-hero .hero-noise { position: absolute; inset: 0; pointer-events: none; }

/* Pricing card variants */
.price-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .price-grid-v2 { grid-template-columns: 1fr; max-width: 480px; }
}

.price-card-v2 {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s ease, transform .25s ease, box-shadow .2s ease;
  overflow: hidden;
}
.price-card-v2:hover {
  border-color: var(--green-200);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(15,62,24,.18);
}
.price-card-v2 .plan-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.price-card-v2 .plan-name { font-size: 15px; font-weight: 600; color: var(--ink-900); letter-spacing: -0.01em; }
.price-card-v2 .plan-pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  border: 1px solid var(--green-100);
}
.price-card-v2 .desc { font-size: 13.5px; color: var(--ink-500); line-height: 1.5; min-height: 40px; }
.price-card-v2 .price-row-v2 {
  display: flex; align-items: baseline; gap: 6px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--ink-100);
  min-height: 76px;
}
.price-card-v2 .amt {
  font-size: 52px; font-weight: 600; letter-spacing: -0.04em;
  line-height: 1; color: var(--ink-900);
  font-family: var(--sans);
}
.price-card-v2 .cur { font-size: 26px; font-weight: 500; color: var(--ink-500); align-self: flex-start; margin-top: 4px; }
.price-card-v2 .unit { font-size: 13px; color: var(--ink-500); margin-left: 2px; }
.price-card-v2 .strike { font-size: 14px; color: var(--ink-400); text-decoration: line-through; margin-left: 6px; align-self: center; }
.price-card-v2 .feat-list {
  padding: 0; margin: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  flex: 1;
}
.price-card-v2 .feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-700);
}
.price-card-v2 .feat-list li .ck {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 999px;
  background: var(--green-50); color: var(--green-800);
  display: grid; place-items: center; margin-top: 2px;
  border: 1px solid var(--green-100);
}
.price-card-v2 .feat-list li .ck svg { width: 10px; height: 10px; }
.price-card-v2 .feat-list li .mute { color: var(--ink-400); }
.price-card-v2 .feat-list li b { color: var(--ink-900); font-weight: 600; }
.price-card-v2 .price-cta { width: 100%; justify-content: center; margin-top: 6px; }

/* Featured Team plan */
.price-card-v2.featured {
  background:
    linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
  border: 1px solid var(--green-200);
  box-shadow: 0 24px 60px -28px rgba(15,62,24,.30);
  transform: translateY(-6px);
  z-index: 2;
}
.price-card-v2.featured::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(178,219,184,.45), transparent 60%);
  pointer-events: none;
}
.price-card-v2.featured > * { position: relative; z-index: 1; }
.price-card-v2.featured .badge-popular {
  position: absolute; top: 18px; right: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-800); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}
.price-card-v2.featured .badge-popular .pulse {
  width: 6px; height: 6px; background: var(--green-200); border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(178,219,184,.6);
  animation: ppulse 2s infinite;
}
@keyframes ppulse {
  0% { box-shadow: 0 0 0 0 rgba(178,219,184,.6); }
  70% { box-shadow: 0 0 0 8px rgba(178,219,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(178,219,184,0); }
}

/* Enterprise dark variant */
.price-card-v2.enterprise {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  border-color: var(--green-800);
  color: #fff;
}
.price-card-v2.enterprise::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 100%, rgba(178,219,184,.22), transparent 60%);
  pointer-events: none;
}
.price-card-v2.enterprise > * { position: relative; z-index: 1; }
.price-card-v2.enterprise .plan-name { color: #fff; }
.price-card-v2.enterprise .plan-pill {
  background: rgba(178,219,184,.14); color: var(--green-200);
  border-color: rgba(178,219,184,.28);
}
.price-card-v2.enterprise .desc { color: rgba(255,255,255,.7); }
.price-card-v2.enterprise .amt { color: #fff; }
.price-card-v2.enterprise .cur, .price-card-v2.enterprise .unit { color: rgba(255,255,255,.6); }
.price-card-v2.enterprise .price-row-v2 { border-bottom-color: rgba(178,219,184,.22); }
.price-card-v2.enterprise .feat-list li { color: rgba(255,255,255,.85); }
.price-card-v2.enterprise .feat-list li .ck {
  background: rgba(178,219,184,.14);
  border-color: rgba(178,219,184,.28);
  color: var(--green-200);
}
.price-card-v2.enterprise .feat-list li b { color: #fff; }
.price-card-v2.enterprise .price-cta {
  background: #fff; color: var(--green-900);
}
.price-card-v2.enterprise .price-cta:hover { background: var(--green-50); }

/* Billing toggle v2 */
.bill-toggle-v2 {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 4px;
  margin: 28px auto 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px -6px rgba(15,62,24,.10);
}
.bill-toggle-v2 .opt {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-500);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; background: transparent;
  transition: background .2s ease, color .2s ease;
  font-family: var(--sans);
}
.bill-toggle-v2 .opt:hover { color: var(--ink-900); }
.bill-toggle-v2 .opt.on {
  background: var(--green-800); color: #fff;
  box-shadow: 0 1px 2px rgba(15,62,24,.30);
}
.bill-toggle-v2 .save-tag {
  font-family: var(--mono); font-size: 10px;
  background: rgba(178,219,184,.30); color: var(--green-800);
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.04em;
}
.bill-toggle-v2 .opt.on .save-tag { background: rgba(255,255,255,.20); color: var(--green-200); }

/* Comparison table v2 */
.compare-v2 {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-v2 .row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  padding: 14px 24px;
  font-size: 14px;
  align-items: center;
  border-top: 1px solid var(--ink-100);
  transition: background .15s ease;
}
.compare-v2 .row:hover:not(.head):not(.section-row) { background: var(--ink-50); }
.compare-v2 .row:first-of-type { border-top: 0; }
.compare-v2 .row.head {
  background: var(--ink-50);
  padding: 18px 24px;
  border-top: 0;
}
.compare-v2 .row.head .plan-h {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-900);
}
.compare-v2 .row.head .plan-h .sub {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 2px;
  font-weight: 500;
}
.compare-v2 .row.head .plan-h.featured { color: var(--green-800); }
.compare-v2 .row > div:not(:first-child) {
  text-align: center;
  color: var(--ink-700);
  font-size: 13.5px;
}
.compare-v2 .row > div:first-child { color: var(--ink-900); font-weight: 500; }
.compare-v2 .row > div:first-child .sub {
  display: block;
  font-size: 12px; color: var(--ink-500); font-weight: 400; margin-top: 1px;
}
.compare-v2 .row.section-row {
  background: var(--bg);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-800);
  padding: 14px 24px;
  font-weight: 500;
}
.compare-v2 .ck-y { color: var(--green-800); display: inline-grid; place-items: center; }
.compare-v2 .ck-y svg { width: 16px; height: 16px; }
.compare-v2 .ck-n { color: var(--ink-300); }
.compare-v2 .ck-n svg { width: 14px; height: 14px; }
.compare-v2 .col-featured { background: rgba(178,219,184,.06); }
.compare-v2 .row > .cell-featured { background: rgba(178,219,184,.06); position: relative; }

@media (max-width: 860px) {
  .compare-v2 .row { grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 12px 14px; font-size: 12.5px; }
  .compare-v2 .row.head .plan-h .sub { display: none; }
}

/* FAQ */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--ink-200);
}
.faq-list details {
  border-bottom: 1px solid var(--ink-200);
  padding: 22px 0;
}
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .ico {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-800);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
}
.faq-list summary .ico svg { width: 14px; height: 14px; transition: transform .25s ease; }
.faq-list details[open] summary .ico { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.faq-list details[open] summary .ico svg { transform: rotate(45deg); }
.faq-list .faq-body {
  margin-top: 16px;
  padding-right: 44px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}

/* Enterprise CTA banner */
.ent-cta {
  position: relative;
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.ent-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(178,219,184,.20), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(178,219,184,.10), transparent 60%);
}
.ent-cta::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(178,219,184,.06) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.ent-cta > * { position: relative; z-index: 1; }
.ent-cta h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); }
.ent-cta p { color: rgba(255,255,255,.7); margin-top: 14px; font-size: 16px; }
.ent-cta .hero-actions { justify-content: flex-start; margin-top: 28px; }

.ent-list {
  display: flex; flex-direction: column; gap: 14px;
}
.ent-list .ent-item {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,.9);
  font-size: 14.5px;
}
.ent-list .ent-item .ico {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(178,219,184,.14); border: 1px solid rgba(178,219,184,.28);
  color: var(--green-200); display: grid; place-items: center;
}
.ent-list .ent-item .ico svg { width: 13px; height: 13px; }
.ent-list .ent-item b { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }
.ent-list .ent-item span.k { color: rgba(255,255,255,.6); font-size: 13px; }

@media (max-width: 860px) {
  .ent-cta { grid-template-columns: 1fr; gap: 28px; }
}

/* Trust logos compact */
.trust-mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  opacity: 0.7;
  padding: 14px 0 0;
}
.trust-mini .lg {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
  text-align: center;
  display: flex; gap: 8px; align-items: center; justify-content: center;
}
.trust-mini .lg .swatch { width: 14px; height: 14px; border-radius: 3px; background: var(--ink-400); }
@media (max-width: 720px) { .trust-mini { grid-template-columns: repeat(3, 1fr); } }

/* Hero secondary stats inline */
.hero-stats {
  margin-top: 36px;
  display: flex; gap: 36px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.hero-stats .hs {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-500); font-size: 13px;
}
.hero-stats .hs .v {
  font-family: var(--mono); font-weight: 500;
  color: var(--green-800); font-size: 14px;
}
.hero-stats .hs .sep {
  width: 1px; height: 16px; background: var(--ink-200);
}

/* Tweaks panel custom */
.tweaks-panel-frame {
  position: fixed; right: 18px; bottom: 18px;
  z-index: 100;
}


/* =========================================================
   v8 — SMALL elegant ribbon patterns behind headline
   No heavy blur. Controlled, refined, premium.
   ========================================================= */

.hero-v4 .hero-grid { display: none !important; }

/* Shared base — very calm */
.hero-v4 {
  background: linear-gradient(180deg, #f3f8f4 0%, #fafaf7 60%, var(--bg) 100%);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.hero-v4 .ambient-glow {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% -8%, rgba(178,219,184,.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(178,219,184,.08), transparent 70%);
}

.hero-v4 .hero-inner { position: relative; z-index: 3; }

/* Vignette no longer needed for tex protection — ambient is gentle */
.hero-v4 .content-vignette { display: none; }

/* ============= ALL CONCEPTS — CONTAINED ZONE BEHIND HEADLINE =============
   A single positioned wrapper that sits behind the headline area only,
   ~ 900px wide, fades out at edges so patterns never spread into the
   rest of the hero or the dashboard. */
.hero-v4 .pattern-zone {
  position: absolute;
  left: 50%; top: 80px;
  transform: translateX(-50%);
  width: min(1100px, 92%);
  height: 540px;
  pointer-events: none;
  z-index: 1;
  /* Soft edge fade so the pattern blends out cleanly */
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 80%);
}
.pricing-hero.hero-v4 .pattern-zone {
  top: 60px;
  height: 420px;
  width: min(1000px, 92%);
}

/* Ribbon, arc, aurora, glow — disabled for now (stripes only) */
.hero-v4 .pat-ribbons,
.hero-v4 .pat-arc,
.hero-v4 .pat-aurora,
.hero-v4 .pat-glow { display: none !important; }

/* ============= RIBBONS — elegant small flowing bands ============= */
.hero-v4 .pat-ribbons { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-v4.concept-ribbon .pat-ribbons { opacity: 1; }
.hero-v4 .pat-ribbons svg { width: 100%; height: 100%; display: block; }

/* ============= STRIPES — fine diagonal stripe band ============= */
.hero-v4 .pat-stripes { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-v4.concept-stripes .pat-stripes { opacity: 1; }
.hero-v4 .pat-stripes::before {
  content: ""; position: absolute; inset: 8% 4%;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(15,62,24,0)     0px,
    rgba(15,62,24,0)    18px,
    rgba(15,62,24,.10) 18px,
    rgba(15,62,24,.10) 19px,
    rgba(15,62,24,0)   19px,
    rgba(15,62,24,0)   36px,
    rgba(178,219,184,.40) 36px,
    rgba(178,219,184,.40) 37px,
    rgba(178,219,184,0) 37px
  );
  border-radius: 18px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}

/* ============= ARC — elegant arched gradient ============= */
.hero-v4 .pat-arc { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-v4.concept-arc .pat-arc { opacity: 1; }
.hero-v4 .pat-arc svg { width: 100%; height: 100%; display: block; }

/* ============= AURORA — small soft color spots behind headline ============= */
.hero-v4 .pat-aurora { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-v4.concept-aurora .pat-aurora { opacity: 1; }
.hero-v4 .pat-aurora .spot {
  position: absolute; border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}
.hero-v4 .pat-aurora .spot.s1 {
  width: 280px; height: 280px; left: 10%; top: 10%;
  background: radial-gradient(circle, rgba(178,219,184,.85), transparent 65%);
  animation: spotDrift 18s ease-in-out infinite;
}
.hero-v4 .pat-aurora .spot.s2 {
  width: 240px; height: 240px; right: 12%; top: 5%;
  background: radial-gradient(circle, rgba(15,62,24,.50), transparent 65%);
  animation: spotDrift 22s ease-in-out -4s infinite;
}
.hero-v4 .pat-aurora .spot.s3 {
  width: 320px; height: 320px; left: 35%; bottom: 5%;
  background: radial-gradient(circle, rgba(109,181,118,.60), transparent 65%);
  animation: spotDrift 24s ease-in-out -8s infinite;
}
@keyframes spotDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px, 20px) scale(1.10); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4 .pat-aurora .spot { animation: none !important; }
}

/* ============= GLOW — single soft halo behind headline ============= */
.hero-v4 .pat-glow { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-v4.concept-glow .pat-glow { opacity: 1; }
.hero-v4 .pat-glow::before {
  content: ""; position: absolute;
  width: 720px; height: 480px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
    rgba(178,219,184,.80) 0%,
    rgba(178,219,184,.30) 35%,
    rgba(15,62,24,.10)   60%,
    rgba(178,219,184,0)  80%);
  animation: glowBreathe 14s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4 .pat-glow::before { animation: none !important; }
}

/* Ribbon path animation */
.hero-v4 .pat-ribbons .rb-path {
  transform-origin: center;
  animation: rbFlow 16s ease-in-out infinite;
}
.hero-v4 .pat-ribbons .rb-path.p2 { animation-duration: 20s; animation-delay: -3s; }
.hero-v4 .pat-ribbons .rb-path.p3 { animation-duration: 24s; animation-delay: -6s; }
@keyframes rbFlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4 .pat-ribbons .rb-path { animation: none !important; }
}

/* Film noise — very subtle */
.hero-v4 .hero-noise {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 4;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============= DASHBOARD FRAMING — premium ============= */
.hero-v4 .hero-shot { perspective: 2400px; }
.hero-v4 .hero-shot::before {
  content: "";
  position: absolute;
  inset: -80px -30px -30px -30px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(178,219,184,.45), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(15,62,24,.12), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-v4 .hero-shot .dash-mock {
  transform: perspective(2400px) rotateX(2deg) translateZ(0);
  box-shadow:
    0 60px 120px -40px rgba(10,40,18,.30),
    0 30px 60px -20px rgba(10,40,18,.20),
    0 8px 24px rgba(10,40,18,.08),
    0 0 0 1px rgba(15,62,24,.06);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.hero-v4 .hero-shot:hover .dash-mock {
  transform: perspective(2400px) rotateX(0deg) translateZ(0);
  box-shadow:
    0 70px 140px -40px rgba(10,40,18,.35),
    0 35px 70px -20px rgba(10,40,18,.22),
    0 8px 24px rgba(10,40,18,.08),
    0 0 0 1px rgba(15,62,24,.08);
}

.hero-v4 .dash-frame .float-chip {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 16px 40px -12px rgba(15,62,24,.22),
    0 4px 10px rgba(0,0,0,.05),
    inset 0 1px 0 rgba(255,255,255,.6);
}

/* Concept switcher */
.hero-concept-bar {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(15,62,24,.08);
  box-shadow:
    0 4px 14px -4px rgba(15,62,24,.10),
    0 1px 2px rgba(15,62,24,.05),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.hero-concept-bar .opt.on {
  background: linear-gradient(180deg, #144a1f, var(--green-800));
  box-shadow:
    0 2px 6px rgba(15,62,24,.30),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* Pricing cards refined */
.price-card-v2 {
  transition: border-color .3s ease, transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease, background .3s ease;
}
.price-card-v2:hover {
  border-color: var(--green-200);
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px -28px rgba(15,62,24,.25),
    0 6px 16px -8px rgba(15,62,24,.12),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.price-card-v2.featured {
  background: linear-gradient(180deg, #fff 0%, #f5fbf6 100%);
  border: 1px solid var(--green-200);
  box-shadow:
    0 30px 70px -30px rgba(15,62,24,.32),
    0 8px 20px -8px rgba(15,62,24,.14),
    inset 0 1px 0 rgba(255,255,255,.8);
}
.price-card-v2.featured::before {
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(178,219,184,.50), transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 100%, rgba(178,219,184,.20), transparent 60%);
}
.price-card-v2.featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 90px -30px rgba(15,62,24,.38),
    0 12px 24px -8px rgba(15,62,24,.18),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.price-card-v2.enterprise:hover {
  transform: translateY(-4px);
  border-color: var(--green-700);
  box-shadow:
    0 30px 70px -30px rgba(10,42,16,.55),
    0 8px 24px -8px rgba(10,42,16,.30);
}
