/* =========================================================
   AidEcho - marketing site
   Warm editorial system built on the real product brand:
   cream paper, deep teal-green, avocado accent, Bricolage type.
   ========================================================= */

:root {
  /* surfaces */
  --paper:    #F6F4EE;   /* page */
  --paper-2:  #EFEBE1;   /* alt bands */
  --card:     #FFFFFF;
  --card-2:   #FBFAF6;

  /* ink */
  --ink:      #0e2019;   /* headings, deep forest */
  --ink-2:    #223b32;   /* strong body */
  --body:     #47584f;   /* paragraphs */
  --muted:    #77857c;   /* labels, meta */

  /* brand */
  --teal:     #0d9488;   /* primary */
  --teal-700: #0a7a70;
  --teal-800: #0b5f58;
  --teal-900: #0c463f;
  --lime:     #c6f135;   /* energy accent (from mascot) */
  --lime-ink: #46560f;

  /* pastel tints (from product cards) */
  --mint:   #E6F3EC;
  --sky:    #E8F0FB;
  --peach:  #FBEDE3;
  --butter: #F6EFD6;
  --lav:    #EEE9FB;

  /* lines */
  --line:    #E1DCD0;
  --line-2:  #D3CDBE;
  --ink-line: #cfd8d2;

  /* type */
  --f-head: "Bricolage Grotesque", "DM Sans", sans-serif;
  --f-body: "DM Sans", system-ui, sans-serif;
  --f-mono: "DM Mono", ui-monospace, monospace;

  /* rhythm */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 24px;
  --radius-sm: 16px;

  --shadow-sm: 0 1px 2px rgba(14,32,25,.04), 0 3px 10px rgba(14,32,25,.045);
  --shadow-md: 0 2px 6px rgba(14,32,25,.04), 0 12px 26px rgba(14,32,25,.06), 0 26px 52px rgba(14,32,25,.05);
  --shadow-lg: 0 4px 14px rgba(14,32,25,.05), 0 22px 48px rgba(14,32,25,.09), 0 46px 92px rgba(12,70,63,.09);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- decorative layers ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--teal); z-index: 190; pointer-events: none;
  transform: translate(-100px, -100px); transition: transform .12s var(--ease), width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: multiply; opacity: 0;
}
.cursor-dot.is-hot { background: rgba(198,241,53,.35); border-color: var(--lime-ink); width: 46px; height: 46px; }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 210;
  background: linear-gradient(90deg, var(--teal), var(--lime)); border-radius: 0 3px 3px 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-weight: 600; letter-spacing: -0.01em; border-radius: 999px;
  padding: 12px 20px; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--teal-800); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 8px 22px rgba(11,95,88,.28);
}
.btn--primary:hover { background: var(--teal-900); box-shadow: 0 10px 30px rgba(11,95,88,.36); transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--teal-800); color: var(--teal-800); background: rgba(13,148,136,.05); transform: translateY(-2px); }

.link-quiet { color: var(--ink-2); font-weight: 600; font-size: 15px; padding: 8px 4px; position: relative; }
.link-quiet::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 4px; height: 1.5px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.link-quiet:hover::after { transform: scaleX(1); }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-800); background: rgba(13,148,136,.08);
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(13,148,136,.16);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(13,148,136,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(13,148,136,.45);} 70%{ box-shadow: 0 0 0 9px rgba(13,148,136,0);} 100%{ box-shadow: 0 0 0 0 rgba(13,148,136,0);} }

.section-index {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4.3vw, 3.5rem); max-width: 18ch; letter-spacing: -0.032em; }
.section-head { margin-bottom: clamp(48px, 7vw, 88px); }
.section-head--center { text-align: center; }
.section-head--center .section-title { margin-inline: auto; }
.section-head--split { display: grid; grid-template-columns: 1.4fr .9fr; gap: 40px; align-items: end; }
.section-head--split .section-title { max-width: 22ch; }
.section-head__aside { color: var(--body); font-size: 1.05rem; max-width: 34ch; }
.lede { font-size: 1.12rem; color: var(--body); max-width: 52ch; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s, padding .3s;
  padding: 14px 0; border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(246,244,238,.82); backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(14,32,25,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { border-radius: 8px; }
.brand__word { font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--ink); }
.nav__links { display: flex; gap: 6px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 999px; transition: background .2s, color .2s; }
.nav__links a:hover { background: rgba(13,148,136,.08); color: var(--teal-800); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line-2); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px var(--gutter) 22px;
  background: rgba(246,244,238,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav__mobile a { padding: 13px 8px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.nav__mobile .btn { margin-top: 10px; border-bottom: none; }
.nav.is-open .nav__mobile { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(120px, 16vh, 180px) 0 40px; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.hero__blob--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(198,241,53,.5), transparent 68%); top: -140px; right: -80px; }
.hero__blob--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(59,240,192,.4), transparent 66%); bottom: -160px; left: -120px; }

.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__title { font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.0; letter-spacing: -0.032em; margin: 20px 0; }
.hero__title .l { display: block; overflow: hidden; }
.hero__title .w { display: inline-block; }
.hero__title .mark { position: relative; color: var(--ink); }
.hero__title .mark::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .28em; z-index: -1;
  background: var(--lime); border-radius: 4px; transform: rotate(-1.2deg) scaleX(0); transform-origin: left;
  animation: underline 1s var(--ease) forwards; animation-delay: 1.1s;
}
@keyframes underline { to { transform: rotate(-1.2deg) scaleX(1); } }

.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--body); max-width: 46ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__ticks li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.hero__ticks svg { color: var(--teal); }

/* hero chat demo */
.hero__demo { position: relative; }
.chat {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg); transition: transform .5s var(--ease);
}
.hero__demo:hover .chat { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); background: var(--card-2); }
.chat__ava { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.chat__id strong { display: block; font-family: var(--f-head); color: var(--ink); font-size: 1rem; }
.chat__status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.chat__status i { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.chat__body { padding: 20px 18px; height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; scrollbar-width: none; }
.chat__body::-webkit-scrollbar { display: none; }
.bubble { max-width: 84%; padding: 12px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; opacity: 0; transform: translateY(10px); animation: bubbleIn .4s var(--ease) forwards; }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }
.bubble--user { align-self: flex-end; background: var(--teal-800); color: #fff; border-bottom-right-radius: 5px; }
.bubble--bot { align-self: flex-start; background: var(--paper-2); color: var(--ink-2); border-bottom-left-radius: 5px; }
.bubble--bot .src { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-family: var(--f-mono); font-size: 11px; color: var(--teal-800); background: rgba(13,148,136,.1); padding: 4px 8px; border-radius: 8px; }
.typing { display: inline-flex; gap: 4px; align-self: flex-start; background: var(--paper-2); padding: 14px 16px; border-radius: 16px; border-bottom-left-radius: 5px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{ opacity: .3; transform: translateY(0);} 30%{ opacity: 1; transform: translateY(-3px);} }
.chat__input { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--card-2); }
.chat__ph { flex: 1; color: var(--muted); font-size: 14px; }
.chat__ph .caret { display: inline-block; width: 2px; height: 15px; background: var(--teal); margin-left: 1px; vertical-align: -2px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.chat__send { width: 38px; height: 38px; border-radius: 11px; background: var(--teal-800); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.hero__widgetbtn {
  position: absolute; right: -6px; bottom: -26px; width: 58px; height: 58px; border-radius: 18px;
  background: var(--lime); display: grid; place-items: center; box-shadow: var(--shadow-md);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-8px); } }

/* marquee */
.marquee { margin-top: clamp(56px, 8vw, 96px); border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; position: relative; z-index: 2; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 26s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--f-head); font-weight: 600; font-size: 1.25rem; color: var(--ink); opacity: .55; }
.marquee__track i { color: var(--teal); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   DEFINITION
   ========================================================= */
.def { padding: clamp(64px, 9vw, 120px) 0; }
.def__lead { font-family: var(--f-head); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.22; letter-spacing: -0.02em; color: var(--ink-2); max-width: 24ch; }
.def__lead strong { color: var(--ink); font-weight: 700; }
.def__inner { border-top: 1px solid var(--line); padding-top: 40px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { padding: clamp(40px, 7vw, 90px) 0; }
.steps { display: flex; flex-direction: column; gap: clamp(40px, 7vw, 96px); }
.step { display: grid; grid-template-columns: 64px 1fr 1.25fr; gap: clamp(20px, 4vw, 56px); align-items: center; }
.step:nth-child(even) { grid-template-columns: 1.25fr 1fr 64px; }
.step:nth-child(even) .step__num { order: 3; }
.step:nth-child(even) .step__text { order: 2; }
.step:nth-child(even) .step__shot { order: 1; }
.step__num { font-family: var(--f-mono); font-size: 1.1rem; color: var(--teal-800); font-weight: 500; padding-top: 6px; position: relative; align-self: stretch; }
/* faint full-height track between steps */
.step__num::before { content: ""; position: absolute; left: 8px; top: 44px; bottom: -52px; width: 2px; background: transparent; border-radius: 2px; }
.step:last-child .step__num::before { display: none; }
/* teal-to-lime fill that tracks scroll position through the steps */
.step__num::after { content: ""; position: absolute; left: 8px; top: 44px; width: 2px; height: calc((100% + 8px) * var(--line-fill, 0)); background: linear-gradient(180deg, var(--teal), var(--lime)); border-radius: 2px; transition: height .12s linear; }
/* fallback before JS runs / if scroll never fires: grow on reveal */
.step.in .step__num::after { height: calc((100% + 8px) * var(--line-fill, 1)); }
.step:last-child .step__num::after { display: none; }
.step__text h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.step__text p { font-size: 1.08rem; max-width: 40ch; }
.step__shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--card); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.step__shot img { width: 100%; height: auto; display: block; }

/* =========================================================
   GROUNDED
   ========================================================= */
.grounded { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper-2); border-block: 1px solid var(--line); position: relative; }
.grounded__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.grounded__copy .section-title { max-width: 16ch; margin-bottom: 20px; }
.checklist { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { position: relative; padding-left: 0; font-size: 1.02rem; color: var(--body); }
.checklist li span { display: inline-block; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-800); background: rgba(13,148,136,.1); padding: 3px 9px; border-radius: 7px; margin-right: 10px; vertical-align: 1px; }

.mini-chat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-md); }
.mini-chat__q { align-self: flex-end; background: var(--teal-800); color: #fff; padding: 12px 16px; border-radius: 16px; border-bottom-right-radius: 5px; font-size: 15px; width: fit-content; margin-left: auto; margin-bottom: 16px; }
.mini-chat__a { display: flex; gap: 12px; }
.mini-chat__a img { width: 32px; height: 32px; border-radius: 10px; background: var(--ink); flex-shrink: 0; }
.mini-chat__a p { background: var(--paper-2); color: var(--ink-2); padding: 12px 16px; border-radius: 16px; border-bottom-left-radius: 5px; font-size: 15px; }
.cite { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-family: var(--f-mono); font-size: 12px; color: var(--teal-800); background: rgba(13,148,136,.1); padding: 6px 10px; border-radius: 9px; transition: background .2s; }
.cite:hover { background: rgba(13,148,136,.18); }

/* =========================================================
   INSIGHTS / SHOWCASE
   ========================================================= */
.insights { padding: clamp(72px, 10vw, 130px) 0; }
.showcase { position: relative; margin-top: 20px; }
.browser { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--card); }
.browser__bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: var(--card-2); border-bottom: 1px solid var(--line); }
.browser__dots { display: inline-flex; gap: 7px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.browser__dots i:first-child { background: #ff8b7b; } .browser__dots i:nth-child(2){ background: #ffd479; } .browser__dots i:nth-child(3){ background: #7bdba0; }
.browser__url { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); background: var(--paper); padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); }
.browser img { width: 100%; height: auto; display: block; }

.floaty { position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 2px; z-index: 3; }
.floaty strong { font-family: var(--f-head); font-size: 1.7rem; color: var(--teal-800); line-height: 1; }
.floaty span { font-size: 12px; color: var(--muted); }
.floaty--a { left: -22px; top: 30%; animation: bob 5s ease-in-out infinite; }
.floaty--b { right: -22px; bottom: 22%; animation: bob 5.6s ease-in-out infinite .5s; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(48px, 7vw, 84px); border-top: 1px solid var(--line); padding-top: 44px; }
.stat strong { display: block; font-family: var(--f-head); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: 14px; color: var(--body); max-width: 20ch; }

/* =========================================================
   BENTO
   ========================================================= */
.bento-sec { padding: clamp(48px, 7vw, 90px) 0 clamp(72px, 10vw, 130px); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cell { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cell h3 { font-size: 1.35rem; margin-bottom: 10px; }
.cell p { font-size: 1rem; color: var(--body); }
.cell--wide { grid-column: span 2; display: flex; gap: 26px; align-items: center; justify-content: space-between; }
.cell--wide .cell__body { flex: 1; }
.tint-mint { background: var(--mint); } .tint-sky { background: var(--sky); } .tint-peach { background: var(--peach); } .tint-butter { background: var(--butter); } .tint-lav { background: var(--lav); }
.tint-mint, .tint-sky, .tint-peach, .tint-butter, .tint-lav { border-color: transparent; }

.voice-pills { display: flex; flex-direction: column; gap: 10px; }
.voice-pills span { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.voice-pills span:nth-child(2){ margin-left: 26px; } .voice-pills span:nth-child(3){ margin-left: 12px; }

.snippet { margin-top: 18px; display: flex; align-items: center; gap: 10px; background: var(--ink); border-radius: 12px; padding: 12px 12px 12px 16px; }
.snippet code { font-family: var(--f-mono); font-size: 12.5px; color: #d7f9ef; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.snippet__copy { background: var(--lime); color: var(--ink); font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 8px; flex-shrink: 0; transition: transform .2s, background .2s; }
.snippet__copy:hover { transform: translateY(-1px); }
.snippet__copy.is-done { background: #7bdba0; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { padding: clamp(72px, 10vw, 130px) 0; background: var(--paper-2); border-block: 1px solid var(--line); }
.toggle { position: relative; display: inline-flex; margin-top: 28px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 5px; box-shadow: var(--shadow-sm); }
.toggle__opt { position: relative; z-index: 2; padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.toggle__opt.is-active { color: var(--ink); }
.toggle__opt em { font-style: normal; font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-800); background: rgba(13,148,136,.12); padding: 2px 7px; border-radius: 6px; }
.toggle__thumb { position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px); width: 96px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; transition: transform .3s var(--ease), width .3s var(--ease); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: start; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: var(--teal-800); box-shadow: var(--shadow-md); transform: scale(1.03); }
.plan--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan__tag { position: absolute; top: -12px; left: 28px; background: var(--teal-800); color: #fff; font-size: 11px; font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .08em; padding: 5px 12px; border-radius: 999px; }
.plan__name { font-size: 1.3rem; margin-bottom: 12px; }
.plan__price { display: flex; align-items: baseline; gap: 2px; color: var(--ink); margin-bottom: 6px; }
.plan__cur { font-family: var(--f-head); font-size: 1.5rem; font-weight: 600; }
.plan__amt { font-family: var(--f-head); font-size: 3.2rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan__per { font-size: 1rem; color: var(--muted); }
.plan__note { font-size: 14.5px; color: var(--body); margin-bottom: 22px; min-height: 42px; }
.plan__feats { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink-2); }
.plan__feats li::before { content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%; background: rgba(13,148,136,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 4.5 6.5 11 3.5 8' fill='none' stroke='%230b5f58' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(72px, 10vw, 130px) 0; }
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq .section-head { position: sticky; top: 100px; margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 24px 0; font-family: var(--f-head); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.qa summary::-webkit-details-marker { display: none; }
.qa__i { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.qa__i::before, .qa__i::after { content: ""; position: absolute; background: var(--teal-800); border-radius: 2px; transition: transform .3s var(--ease); }
.qa__i::before { top: 8px; left: 0; width: 18px; height: 2px; }
.qa__i::after { left: 8px; top: 0; width: 2px; height: 18px; }
.qa[open] .qa__i::after { transform: rotate(90deg) scaleX(0); }
.qa p { padding: 0 40px 26px 0; color: var(--body); font-size: 1.04rem; max-width: 58ch; animation: faqIn .4s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; padding: clamp(80px, 12vw, 150px) 0; text-align: center; overflow: hidden; background: var(--ink); }
.cta__blob { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(500px 320px at 50% -10%, rgba(198,241,53,.28), transparent 60%),
  radial-gradient(600px 400px at 80% 120%, rgba(59,240,192,.22), transparent 60%),
  radial-gradient(600px 400px at 10% 110%, rgba(13,148,136,.28), transparent 60%);
}
.cta__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta__mascot { width: 72px; height: 72px; margin-bottom: 22px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.4)); animation: bob 4s ease-in-out infinite; }
.cta__title { color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
.cta__sub { color: rgba(255,255,255,.72); font-size: 1.15rem; max-width: 42ch; margin: 20px auto 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.cta__fine { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 20px; font-family: var(--f-mono); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 80px) 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer__brand p { margin-top: 16px; color: var(--body); font-size: 15px; max-width: 34ch; }
.footer__col h4 { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.footer__col a { display: block; padding: 6px 0; color: var(--ink-2); font-size: 15px; transition: color .2s; }
.footer__col a:hover { color: var(--teal-800); }
.footer__base { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: var(--muted); }
.footer__made { font-family: var(--f-mono); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal.in { opacity: 1; transform: none; }
/* hero words rise on load */
.hero__title .l .w { transform: translateY(110%); transition: transform .8s var(--ease); transition-delay: calc(var(--wd, 0) * 60ms + 200ms); display: inline-block; }
.hero__title .l.in .w { transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .section-head--split { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__demo { max-width: 460px; }
  .chat { transform: none; }
  .grounded__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq .section-head { position: static; }
  .floaty--a { left: 4px; } .floaty--b { right: 4px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .step, .step:nth-child(even) { grid-template-columns: 1fr; gap: 18px; }
  .step__num, .step:nth-child(even) .step__num { order: 0; }
  .step__text, .step:nth-child(even) .step__text { order: 0; }
  .step__shot, .step:nth-child(even) .step__shot { order: 0; }
  .step__num::before, .step__num::after { display: none; }
  .bento { grid-template-columns: 1fr; }
  .cell--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; } .plan--featured:hover { transform: translateY(-4px); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
  .footer__base { flex-direction: column; gap: 10px; text-align: center; }
  .floaty { display: none; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .def__lead { font-size: 1.5rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .l .w { transform: none; }
  .hero__title .mark::after { transform: rotate(-1.2deg) scaleX(1); }
  .marquee__track { animation: none; }
  .cursor-dot { display: none; }
  .chat { transform: none; }
  .roll__track, .rollbig__track { transition: none !important; }
}

/* =========================================================
   V2 ADDITIONS
   ========================================================= */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* hero rolling line */
.hero__lead { font-family: var(--f-head); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--ink); letter-spacing: -0.02em; display: flex; align-items: baseline; gap: .4em; flex-wrap: wrap; margin-bottom: 14px; }
.roll { display: inline-block; height: 1.15em; overflow: hidden; position: relative; vertical-align: bottom; }
.roll__track { display: flex; flex-direction: column; transition: transform .6s var(--ease); }
.roll b { display: block; height: 1.15em; line-height: 1.15em; color: var(--teal-800); white-space: nowrap; font-weight: 700; }
.roll::after { content: ""; position: absolute; left: 0; bottom: .04em; width: 100%; height: .16em; background: var(--lime); border-radius: 3px; opacity: .9; }
/* headline-size rolling word (colored, no underline; the payoff carries the lime mark) */
.roll--hero { height: 1em; vertical-align: bottom; overflow: hidden; transition: width .5s var(--ease); }
.roll--hero .roll__track { align-items: flex-start; }
.roll--hero .roll__track b { height: 1em; line-height: 1em; color: var(--teal-800); }
.roll--hero::after { display: none; }
/* standalone hero roll line: give descenders (Shopify, shop, WordPress) room */
.hero__title .l--roll { line-height: 1.18; overflow: hidden; }
.hero__title .l--roll .roll--hero { height: 1.16em; }
.hero__title .l--roll .roll--hero .roll__track b { height: 1.16em; line-height: 1.16em; }

/* generic feature section */
.feature { padding: clamp(80px, 11vw, 148px) 0; }
.feature--alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.feature__split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.feature__split--rev .feature__body { order: 2; }
.feature__body .section-title { max-width: 16ch; margin-bottom: 18px; }
.feat-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.feat-list li { position: relative; padding-left: 38px; font-size: .98rem; color: var(--body); line-height: 1.5; }
.feat-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 8px; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 4.5 6.5 11 3.5 8' fill='none' stroke='%230b5f58' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.feat-list li b { display: block; color: var(--ink); font-family: var(--f-head); font-weight: 700; font-size: 1.06rem; margin: 0 0 3px; }
@media (max-width: 620px) { .feat-list { grid-template-columns: 1fr; gap: 18px; } }

/* layered screenshots */
.stack { position: relative; padding: 20px 24px 44px 0; }
.stack .browser { border-radius: 16px; box-shadow: var(--shadow-lg); }
.stack__back { transform: rotate(-2.5deg); opacity: .95; }
.stack__front { position: absolute; right: -8px; bottom: 0; width: 78%; transform: rotate(1.5deg); }

/* dark feature band (Desk) */
.feature--dark { background: var(--ink); color: #fff; }
.feature--dark .section-title.on-dark { color: #fff; }
.on-dark-2 { color: rgba(255,255,255,.66); }
.section-index--light { color: rgba(255,255,255,.5); }
.browser--dark { border-color: rgba(255,255,255,.1); }
.browser--dark .browser__bar { background: #12241d; border-color: rgba(255,255,255,.08); }
.browser--dark .browser__url { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }

/* assignment strategy chips */
.strat { margin-top: clamp(40px, 6vw, 64px); }
.strat__label { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.strat__chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.strat__chips li { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px 18px; font-size: 14.5px; color: rgba(255,255,255,.72); transition: border-color .25s, background .25s, transform .25s; }
.strat__chips li:hover { border-color: rgba(198,241,53,.5); background: rgba(198,241,53,.06); transform: translateY(-3px); }
.strat__chips li b { display: block; color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 3px; }

/* industries rolling band */
.industries { background: var(--ink); color: #fff; padding: clamp(72px, 10vw, 120px) 0; text-align: center; overflow: hidden; position: relative; }
.industries__inner { position: relative; z-index: 2; }
.industries__title { font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -0.03em; color: #fff; display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 14px; }
.rollbig { display: block; height: 1.1em; overflow: hidden; position: relative; }
.rollbig__track { display: flex; flex-direction: column; transition: transform .7s var(--ease); }
.rollbig b { display: block; height: 1.1em; line-height: 1.1em; color: var(--lime); font-weight: 800; }
.industries__sub { color: rgba(255,255,255,.62); font-size: 1.1rem; max-width: 46ch; margin: 26px auto 0; }

@media (max-width: 1080px) {
  .feature__split { grid-template-columns: 1fr; gap: 44px; }
  .feature__split--rev .feature__body { order: 0; }
  .stack__front { position: relative; right: 0; width: 88%; margin-top: -30px; margin-left: auto; }
  .strat__chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .strat__chips { grid-template-columns: 1fr; }
  .feat-list li b { display: block; margin-bottom: 2px; }
  .hero__lead { font-size: 1.25rem; }
}

/* =========================================================
   V3 ADDITIONS - dropdown nav, capabilities, inner pages
   ========================================================= */

/* dropdown nav */
.hasmenu { position: relative; }
.navlink { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; font-family: var(--f-body); }
.navlink svg { transition: transform .25s var(--ease); }
.hasmenu:hover .navlink, .hasmenu:focus-within .navlink { background: rgba(13,148,136,.08); color: var(--teal-800); }
.hasmenu:hover .navlink svg, .hasmenu:focus-within .navlink svg { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 120;
}
.menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.hasmenu:hover .menu, .hasmenu:focus-within .menu, .hasmenu.is-open .menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hasmenu.is-open .navlink svg { transform: rotate(180deg); }
.menu a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-size: 14.5px; font-weight: 600; transition: background .15s; }
.menu a small { font-weight: 400; font-size: 12.5px; color: var(--muted); font-family: var(--f-body); }
.menu a:hover { background: var(--mint); color: var(--teal-800); }
.menu--grid { display: grid; grid-template-columns: 1fr 1fr; min-width: 380px; }
.menu--grid .menu__all { grid-column: span 2; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 12px; color: var(--teal-800); }

/* capabilities - "more than support" */
.caps { padding: clamp(64px, 9vw, 110px) 0; }
.caps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.cap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cap__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; color: var(--teal-800); }
.cap h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cap p { font-size: .95rem; color: var(--body); }
.cap--a .cap__ic { background: var(--mint); } .cap--b .cap__ic { background: var(--sky); } .cap--c .cap__ic { background: var(--peach); } .cap--d .cap__ic { background: var(--lav); }

/* rephrase / suggest mock */
.assist { margin-top: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px; box-shadow: var(--shadow-sm); max-width: 460px; }
.assist__row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.assist__chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--teal-800); background: var(--mint); border: 1px solid rgba(13,148,136,.2); padding: 7px 12px; border-radius: 999px; }
.assist__chip svg { color: var(--teal-800); }
.assist__box { background: var(--paper-2); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-size: 14px; color: var(--ink-2); }
.assist__box b { color: var(--teal-800); }

/* inner page hero */
.page-hero { padding: clamp(120px, 15vh, 180px) 0 clamp(48px, 7vw, 80px); position: relative; overflow: hidden; }
.page-hero .hero__blob--1 { width: 460px; height: 460px; top: -160px; right: -60px; }
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.035em; margin: 18px 0; line-height: 1.0; }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body); max-width: 52ch; }
.page-hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.crumb { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.crumb a:hover { color: var(--teal-800); }

/* features page grid */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard__k { font-family: var(--f-mono); font-size: 12px; color: var(--teal-800); background: var(--mint); display: inline-block; padding: 4px 10px; border-radius: 8px; margin-bottom: 14px; letter-spacing: .04em; }
.fcard h3 { font-size: 1.25rem; margin-bottom: 8px; }
.fcard p { font-size: .96rem; color: var(--body); }
.fcard--wide { grid-column: span 2; }
.fgroup { margin-top: clamp(48px, 7vw, 80px); }
.fgroup__h { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

/* industries index */
.indcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.indcard { position: relative; display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.indcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-700); }
.indcard__ic { font-size: 30px; margin-bottom: 16px; display: block; }
.indcard h3 { font-size: 1.3rem; margin-bottom: 8px; }
.indcard p { font-size: .95rem; color: var(--body); }
.indcard__go { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 12.5px; color: var(--teal-800); }
.indcard:hover .indcard__go svg { transform: translateX(4px); }
.indcard__go svg { transition: transform .25s var(--ease); }

/* industry page bits */
.ind-emoji { font-size: 46px; display: block; margin-bottom: 14px; }
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.pain { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.pain h4 { font-family: var(--f-head); font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.pain p { font-size: .92rem; color: var(--body); }
.uses { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.uses li { position: relative; padding-left: 30px; font-size: 1.05rem; color: var(--ink-2); }
.uses li::before { content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: rgba(13,148,136,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 4.5 6.5 11 3.5 8' fill='none' stroke='%230b5f58' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* reusable soft CTA band */
.band { background: var(--paper-2); border-block: 1px solid var(--line); }

@media (max-width: 1080px) {
  .caps__grid { grid-template-columns: repeat(2, 1fr); }
  .fgrid, .indcards { grid-template-columns: repeat(2, 1fr); }
  .fcard--wide { grid-column: span 2; }
  .pains { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .menu, .menu--grid { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 0; min-width: 0; display: block; }
}
@media (max-width: 620px) {
  .caps__grid, .fgrid, .indcards { grid-template-columns: 1fr; }
  .fcard--wide { grid-column: span 1; }
}

/* =========================================================
   V4 - cuts, tools, security, testimonials, logos, pricing page
   ========================================================= */

/* platform logo strip */
.logos { padding: clamp(40px, 6vw, 64px) 0; }
.logos__label { text-align: center; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logos__row .lg { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); opacity: .58; letter-spacing: -0.02em; transition: opacity .25s; }
.logos__row .lg:hover { opacity: 1; }
.logos__row .lg svg { width: 24px; height: 24px; }

/* industry page hero, two-column (fills the empty space) */
.page-hero--split .page-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.page-hero--split .page-hero__inner { max-width: none; }
@media (max-width: 980px) { .page-hero--split .page-hero__grid { grid-template-columns: 1fr; gap: 44px; } .page-hero--split .hero__demo { max-width: 460px; } }

/* small UI "cuts" (feature mockups) */
.cut { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 16px; }
.cut__t { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.cut__t i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* rows: statuses / dependencies */
.crow { display: flex; align-items: center; gap: 11px; padding: 10px 12px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; font-size: 13.5px; color: var(--ink-2); font-weight: 500; }
.crow__grip { display: grid; grid-template-columns: repeat(2, 3px); gap: 3px; opacity: .4; }
.crow__grip span { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.crow__bar { width: 3px; height: 16px; border-radius: 3px; background: var(--teal); }
.crow--orange .crow__bar { background: var(--orange); } .crow--ink .crow__bar { background: var(--ink); } .crow--blue .crow__bar { background: var(--blue); } .crow--lime .crow__bar { background: var(--lime-ink); } .crow--purple .crow__bar { background: var(--purple); }
.crow__meta { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--muted); }
.cadd { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px dashed var(--line-2); border-radius: 10px; font-size: 13px; color: var(--dim); font-weight: 600; }

/* saved replies */
.chip-list { display: flex; flex-direction: column; gap: 7px; }
.chip-line { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; font-size: 13px; color: var(--ink-2); }
.chip-line .slash { font-family: var(--f-mono); font-size: 12px; color: var(--teal-800); background: var(--mint); padding: 2px 7px; border-radius: 6px; flex-shrink: 0; }

/* SLA / timing ring */
.sla { display: flex; align-items: center; gap: 16px; }
.sla__ring { width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(var(--teal) 0 78%, var(--line) 78% 100%); display: grid; place-items: center; }
.sla__ring span { width: 52px; height: 52px; border-radius: 50%; background: var(--card); display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.sla__list { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.sla__list b { color: var(--ink); } .sla__list .ok { color: var(--teal-800); font-family: var(--f-mono); font-size: 12px; }

/* dependencies connector */
.deps { position: relative; }
.deps .crow { margin-left: 22px; position: relative; }
.deps .crow::before { content: ""; position: absolute; left: -14px; top: -8px; width: 14px; height: calc(50% + 8px); border-left: 1.5px solid var(--line-2); border-bottom: 1.5px solid var(--line-2); border-bottom-left-radius: 8px; }
.deps .crow:first-child { margin-left: 0; } .deps .crow:first-child::before { display: none; }

/* roles / permission toggles */
.perm { display: flex; align-items: center; justify-content: space-between; padding: 9px 2px; font-size: 13.5px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.perm:last-child { border-bottom: none; }
.tgl { width: 34px; height: 20px; border-radius: 999px; background: var(--line-2); position: relative; flex-shrink: 0; transition: background .2s; }
.tgl::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.tgl.on { background: var(--teal-800); } .tgl.on::after { transform: translateX(14px); }

/* audit log lines */
.audit { font-family: var(--f-mono); font-size: 11.5px; color: var(--body); display: flex; flex-direction: column; gap: 7px; }
.audit div { display: flex; gap: 8px; }
.audit time { color: var(--muted); flex-shrink: 0; }
.audit b { color: var(--teal-800); font-weight: 500; }

/* PII reveal */
.pii { display: flex; align-items: center; gap: 10px; padding: 11px 13px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px; font-size: 13.5px; }
.pii svg { color: var(--teal-800); }
.pii .mask { font-family: var(--f-mono); letter-spacing: 2px; color: var(--muted); }
.pii .btn-mini { margin-left: auto; font-size: 11px; font-family: var(--f-mono); color: var(--teal-800); background: var(--mint); padding: 4px 9px; border-radius: 7px; }

/* routing mini diagram */
.route { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.route__src { width: 42px; height: 42px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; }
.route__src img { width: 26px; height: 26px; }
.route__ppl { display: flex; flex-direction: column; gap: 8px; }
.route__p { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); position: relative; padding-left: 26px; }
.route__p::before { content: ""; position: absolute; left: 0; top: 50%; width: 20px; height: 1.5px; background: var(--line-2); }
.route__p.on::before { background: var(--lime-ink); }
.route__av { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 11px; }

/* tools / security grid (title+desc over a cut) */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool { background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tool > .cut { margin-bottom: 18px; box-shadow: none; background: var(--card); }
.tool h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tool p { font-size: .92rem; color: var(--body); }
@media (max-width: 980px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tools-grid { grid-template-columns: 1fr; } }

/* testimonials */
.tst { padding: clamp(64px, 9vw, 120px) 0; }
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.quote__stars { color: var(--lime-ink); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1.02rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.quote__by { margin-top: 20px; display: flex; align-items: center; gap: 11px; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 15px; letter-spacing: .02em; text-shadow: 0 1px 2px rgba(0,0,0,.28); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.quote__by b { display: block; color: var(--ink); font-size: 14px; }
.quote__by span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 980px) { .tst__grid { grid-template-columns: 1fr; } }

/* pricing comparison table */
.ptable { margin-top: clamp(48px, 7vw, 80px); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.ptable__scroll { overflow-x: auto; }
.ptable table { width: 100%; border-collapse: collapse; min-width: 640px; }
.ptable th, .ptable td { text-align: center; padding: 15px 18px; font-size: 14px; border-bottom: 1px solid var(--line); }
.ptable th:first-child, .ptable td:first-child { text-align: left; color: var(--ink-2); font-weight: 500; }
.ptable thead th { font-family: var(--f-head); font-size: 1.05rem; color: var(--ink); background: var(--paper-2); }
.ptable thead th small { display: block; font-family: var(--f-mono); font-weight: 400; font-size: 11px; color: var(--muted); margin-top: 2px; }
.ptable td .yes { color: var(--teal-800); font-weight: 700; }
.ptable td .no { color: var(--line-2); }
.ptable tbody tr:hover { background: var(--card-2); }
.ptable .grp td { background: var(--paper-2); font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: left; }

@media (max-width: 620px) {
  .logos__row { gap: 14px 26px; }
  .logos__row .lg { font-size: 1.05rem; }
}

/* =========================================================
   V5 - use-case pages, changelog, industry subtitle
   ========================================================= */
.page-hero__tag { font-family: var(--f-head); font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.45rem); color: var(--teal-800); margin: 4px 0 14px; letter-spacing: -0.01em; }

/* keyword definition callout (GEO-friendly answer block) */
.kwdef { background: var(--mint); border: 1px solid rgba(13,148,136,.2); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); margin: 0 auto; max-width: 900px; }
.kwdef p { font-family: var(--f-head); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.35; color: var(--ink-2); letter-spacing: -0.01em; }
.kwdef p b { color: var(--ink); font-weight: 700; }

/* changelog timeline */
.clog { max-width: 760px; }
.clog__item { position: relative; padding: 0 0 clamp(28px, 4vw, 44px) 30px; border-left: 2px solid var(--line); }
.clog__item:last-child { border-left-color: transparent; }
.clog__item::before { content: ""; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--teal-800); border: 3px solid var(--paper); }
.clog__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.clog__date { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); }
.clog__tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 7px; }
.clog__tag.new { color: var(--teal-800); background: var(--mint); }
.clog__tag.improved { color: #2563eb; background: var(--sky); }
.clog__tag.fixed { color: #b45309; background: var(--peach); }
.clog__item h3 { font-size: 1.3rem; margin-bottom: 10px; }
.clog__item ul { display: flex; flex-direction: column; gap: 9px; }
.clog__item li { position: relative; padding-left: 22px; font-size: 1rem; color: var(--body); }
.clog__item li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }

/* =========================================================
   BLOG - index cards + article prose
   ========================================================= */
.postmeta { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.postmeta b { color: var(--teal-800); font-weight: 500; }

.bloggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blogcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.blogcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blogcard .cat { align-self: flex-start; font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-800); background: var(--mint); padding: 4px 10px; border-radius: 7px; margin-bottom: 16px; }
.blogcard h3 { font-size: 1.24rem; line-height: 1.15; margin-bottom: 10px; }
.blogcard p { font-size: .96rem; color: var(--body); flex: 1; margin-bottom: 18px; }
.blogcard .readmore { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 12.5px; color: var(--teal-800); }
.blogcard:hover .readmore svg { transform: translateX(4px); }
.blogcard .readmore svg { transition: transform .25s var(--ease); }
.blogcard--wide { grid-column: 1 / -1; background: var(--ink); color: #fff; padding: 34px 36px; }
.blogcard--wide h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 22ch; }
.blogcard--wide p { color: rgba(255,255,255,.72); max-width: 62ch; font-size: 1.02rem; }
.blogcard--wide .cat { background: rgba(198,241,53,.16); color: var(--lime); }
.blogcard--wide .readmore { color: var(--lime); }
@media (max-width: 980px) { .bloggrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .bloggrid { grid-template-columns: 1fr; } }

/* article prose */
.post__hero { max-width: 760px; }
.post__excerpt { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--body); margin-top: 16px; line-height: 1.5; }
.prose { max-width: 720px; margin: 0 auto; padding-top: 8px; }
.prose > p:first-child { font-size: 1.18rem; color: var(--ink-2); }
.prose p { font-size: 1.075rem; line-height: 1.75; color: var(--ink-2); margin-bottom: 22px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 44px 0 16px; }
.prose h3 { font-size: 1.28rem; margin: 32px 0 12px; }
.prose ul { margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; }
.prose li { position: relative; padding-left: 30px; font-size: 1.06rem; line-height: 1.6; color: var(--body); }
.prose li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 4.5 6.5 11 3.5 8' fill='none' stroke='%230b5f58' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.prose a { color: var(--teal-800); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--teal-900); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose .callout { background: var(--mint); border: 1px solid rgba(13,148,136,.2); border-radius: 14px; padding: 20px 22px; margin: 0 0 24px; font-size: 1.05rem; color: var(--ink-2); }
.prose .callout b { color: var(--ink); }

/* =========================================================
   FREE TOOLS - calculator
   ========================================================= */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.calc__panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); }
.calc__field { margin-bottom: 22px; }
.calc__field:last-child { margin-bottom: 0; }
.calc__field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; color: var(--ink); font-size: 14.5px; margin-bottom: 10px; }
.calc__field label b { color: var(--teal-800); font-family: var(--f-mono); font-size: 15px; }
.calc__field input[type=range] { width: 100%; accent-color: var(--teal-800); height: 6px; }
.calc__result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative; overflow: hidden; }
.calc__result .cta__blob { position: absolute; inset: 0; z-index: 0; }
.calc__result > * { position: relative; z-index: 1; }
.calc__reslabel { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.calc__big { font-family: var(--f-head); font-weight: 700; font-size: clamp(2.6rem, 5.5vw, 3.8rem); color: var(--lime); line-height: 1; letter-spacing: -0.03em; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.13); padding-top: 13px; font-size: 15px; }
.calc__row span { color: rgba(255,255,255,.68); } .calc__row b { color: #fff; font-family: var(--f-head); font-size: 1.15rem; }
.calc__note { font-size: 12.5px; color: var(--muted); margin-top: 16px; font-family: var(--f-mono); line-height: 1.6; }
.calc__peace { margin-top: 6px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.13); font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--lime); }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } }

/* =========================================================
   V6 - futuristic layered hero "screen" (features + more)
   ========================================================= */
.page-hero--fx { padding-bottom: clamp(60px, 8vw, 110px); }
.page-hero--fx .page-hero__grid { grid-template-columns: 1fr 1.06fr; }
.fx { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.fx__glow { position: absolute; inset: -12%; z-index: 0; pointer-events: none; filter: blur(44px);
  background:
    radial-gradient(38% 40% at 28% 30%, rgba(59,240,192,.42), transparent 70%),
    radial-gradient(44% 46% at 78% 72%, rgba(198,241,53,.34), transparent 70%),
    radial-gradient(42% 42% at 62% 42%, rgba(13,148,136,.28), transparent 70%); }
.fx__main { position: relative; z-index: 2; width: 100%; max-width: 560px; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: perspective(1600px) rotateY(-9deg) rotateX(5deg); transition: transform .6s var(--ease); }
.fx:hover .fx__main { transform: perspective(1600px) rotateY(-4deg) rotateX(2deg); }
.fx__main .browser { border: none; box-shadow: none; border-radius: 18px; }
.fx__main .browser img { display: block; width: 100%; height: auto; }
.fx__float { position: absolute; z-index: 3; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7); box-shadow: 0 14px 44px rgba(14,32,25,.18); }
.fx__float .cut { background: transparent; border: none; box-shadow: none; padding: 13px 15px; }
.fx__float--a { top: 4%; left: -7%; width: 244px; animation: bob 5s ease-in-out infinite; }
.fx__float--b { bottom: 3%; right: -8%; width: 252px; animation: bob 5.8s ease-in-out .4s infinite; }
.fx__spark { position: absolute; z-index: 4; top: 18%; right: 9%; width: 14px; height: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px 5px rgba(198,241,53,.7); animation: bob 4s ease-in-out infinite; }
.fx__ring { position: absolute; z-index: 1; inset: 0; margin: auto; width: 118%; height: 118%; border-radius: 50%; border: 1px dashed rgba(13,148,136,.18); animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) {
  .page-hero--fx { overflow: hidden; }
  .page-hero--fx .page-hero__grid { grid-template-columns: 1fr; }
  .fx { min-height: 0; margin-top: 12px; overflow: hidden; border-radius: 18px; }
  .fx__main { transform: none; max-width: 100%; width: 100%; margin-inline: auto; }
  .fx__float--a { top: -14px; left: -6px; width: 200px; }
  .fx__float--b { bottom: -14px; right: -6px; width: 210px; }
  .fx__ring { display: none; }
}
@media (max-width: 620px) { .fx__float, .fx__spark { display: none; } }
@media (prefers-reduced-motion: reduce) { .fx__ring { animation: none; } }

/* =========================================================
   V7 - rich mega menus, coming-soon badge, mobile CTAs
   ========================================================= */
/* mega menu */
.menu--mega { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 10px; }
.menu--mega a { display: flex; flex-direction: row; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; }
.menu--mega a:hover { background: var(--mint); }
.mi__ic { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: var(--mint); display: grid; place-items: center; font-size: 18px; line-height: 1; transition: background .15s; }
.menu--mega a:hover .mi__ic { background: #fff; }
.mi__tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mi__tx b { font-size: 14px; font-weight: 600; color: var(--ink); }
.mi__tx small { font-size: 12px; font-weight: 400; color: var(--muted); font-family: var(--f-body); }
.menu--mega .menu__all { grid-column: 1 / -1; justify-content: center; gap: 4px; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 13px; color: var(--teal-800); font-weight: 600; font-size: 13px; }
.menu--mega .menu__all:hover { background: transparent; color: var(--teal-900); }
@media (max-width: 1100px) { .menu--mega { min-width: 440px; } }

/* coming-soon badge on feature cards */
.fcard { position: relative; }
.badge-soon { position: absolute; top: 16px; right: 16px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--lime-ink); background: rgba(198,241,53,.22); border: 1px solid rgba(70,86,15,.25); padding: 3px 9px; border-radius: 999px; }
.fcard--soon h3 { padding-right: 96px; }

/* standardized mobile CTAs (consistent gap, full-width stack) */
@media (max-width: 560px) {
  .hero__cta, .page-hero__cta, .cta__actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero__cta .btn, .page-hero__cta .btn, .cta__actions .btn { width: 100%; }
  .hero__cta .magnetic, .page-hero__cta .magnetic { transform: none !important; }
}
