/* ============================================================
   Future Makers for Agencies — Shared Stylesheet
   Modern AI-SaaS aesthetic (clean, light, signal/data-driven)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #0b0c14;
  --ink: #0b0c14;
  --ink-soft: #565a6e;
  --ink-faint: #8a8ea3;
  --line: #e7e8f0;
  --accent: #4338ec;
  --accent-soft: #eeecfe;
  --accent-dark: #2f22c7;
  --signal: #17c964;
  --signal-soft: #e6faee;
  --warn: #ff6a55;
  --radius: 20px;
  --radius-sm: 12px;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', monospace;
  --shadow: 0 1px 2px rgba(11,12,20,0.04), 0 12px 32px -12px rgba(11,12,20,0.12);
  --shadow-lg: 0 20px 60px -20px rgba(11,12,20,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  75%, 100% { transform: scale(2.6); opacity: 0; }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 18px) scale(1.06); }
}
@keyframes noise-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(16px, -12px) scale(1.04); opacity: 0.75; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.eyebrow .dot { position: relative; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.eyebrow .dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--signal);
  animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}

/* ---------- Nav ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.scrolled { border-color: var(--line); background: rgba(255,255,255,0.9); }
header.scrolled nav { padding: 12px 32px; }
nav {
  max-width: 1180px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .3s ease;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.logo .mark { width: 26px; height: 26px; flex-shrink: 0; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.92rem; font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -20px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-links a.nav-cta.active::after { display: none; }
.nav-cta {
  border: none; padding: 11px 20px !important; border-radius: 999px;
  background: var(--ink); color: #fff !important;
  font-weight: 600 !important; transition: all .25s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--ink); line-height: 1; z-index: 120; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-size: 1.6rem; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 10px 0;
}
.mobile-menu a.menu-demo {
  font-size: 1rem; border-radius: 999px;
  background: var(--ink); color: #fff; padding: 14px 32px; margin-top: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-size: 0.96rem; font-weight: 600;
  padding: 14px 28px; border-radius: 999px;
  transition: all .25s ease; cursor: pointer; border: none;
  background: var(--ink); color: #fff;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-faint); transform: translateY(-1px); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.dark-bg .btn-ghost { border-color: rgba(255,255,255,0.2); color: #fff; }
.dark-bg .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 168px 0 80px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, var(--accent-soft), transparent 60%);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1.4rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.2rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.soft { background: var(--bg-soft); }
.dark-bg { background: var(--bg-dark); color: #fff; }
.dark-bg h2, .dark-bg h3, .dark-bg h1 { color: #fff; }
.dark-bg .eyebrow { background: rgba(124,107,255,0.18); color: #b9adff; }
.dark-bg p { color: #b7b9c9; }
.dark-bg .section-head p { color: #9497ac; }

/* ---------- Hero (home) ---------- */
.hero { padding: 160px 0 90px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; margin-left: -450px;
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 70%);
  z-index: -1;
  animation: drift 14s ease-in-out infinite;
}
.hero::after, .page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='26'%20height='46'%3E%3Crect%20x='2'%20y='18'%20width='3'%20height='14'%20rx='1.5'%20fill='%234338ec'%20fill-opacity='0.55'/%3E%3Crect%20x='11'%20y='6'%20width='3'%20height='26'%20rx='1.5'%20fill='%234338ec'%20fill-opacity='0.32'/%3E%3Crect%20x='20'%20y='24'%20width='3'%20height='10'%20rx='1.5'%20fill='%234338ec'%20fill-opacity='0.45'/%3E%3C/svg%3E");
  background-size: 26px 46px;
  -webkit-mask-image:
    radial-gradient(ellipse 9% 8% at 10% 22%, #000 0%, transparent 100%),
    radial-gradient(ellipse 8% 7% at 42% 10%, #000 0%, transparent 100%),
    radial-gradient(ellipse 13% 11% at 80% 20%, #000 0%, transparent 100%),
    radial-gradient(ellipse 7% 9% at 62% 52%, #000 0%, transparent 100%),
    radial-gradient(ellipse 9% 8% at 92% 48%, #000 0%, transparent 100%),
    radial-gradient(ellipse 8% 7% at 22% 68%, #000 0%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 9% 8% at 10% 22%, #000 0%, transparent 100%),
    radial-gradient(ellipse 8% 7% at 42% 10%, #000 0%, transparent 100%),
    radial-gradient(ellipse 13% 11% at 80% 20%, #000 0%, transparent 100%),
    radial-gradient(ellipse 7% 9% at 62% 52%, #000 0%, transparent 100%),
    radial-gradient(ellipse 9% 8% at 92% 48%, #000 0%, transparent 100%),
    radial-gradient(ellipse 8% 7% at 22% 68%, #000 0%, transparent 100%);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  animation: noise-drift 11s ease-in-out infinite;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.03em; margin-bottom: 1.6rem; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent), #7c6bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 2.6rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 36px; align-items: center; color: var(--ink-faint); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* Dashboard mock */
.dash-mock {
  max-width: 920px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff;
}
.dash-mock .chrome { display: flex; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.dash-mock .chrome span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.dash-mock .body { display: grid; grid-template-columns: 200px 1fr; min-height: 340px; }
.dash-mock .side { border-right: 1px solid var(--line); padding: 22px 16px; }
.dash-mock .side .item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 4px; }
.dash-mock .side .item.on { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.dash-mock .side .item .ico { width: 8px; height: 8px; border-radius: 3px; background: currentColor; opacity: 0.5; }
.dash-mock .main { padding: 26px 28px; }
.dash-mock .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.dash-mock .row .co { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.92rem; }
.dash-mock .row .avatar { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), #7c6bff); }
.dash-mock .row .tag { font-family: var(--mono); font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; background: var(--signal-soft); color: #0a8a45; }
.dash-mock .row .tag.hot { background: #ffece9; color: #d6402a; }
.dash-mock .row .score { font-family: var(--mono); font-weight: 600; color: var(--ink-soft); font-size: 0.86rem; }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-bar div { padding: 40px 24px; text-align: center; border-right: 1px solid var(--line); }
.stats-bar div:last-child { border-right: none; }
.stats-bar .num { font-family: var(--sans); font-variant-numeric: tabular-nums; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--ink); display: block; margin-bottom: 6px; }
.stats-bar .lbl { color: var(--ink-soft); font-size: 0.9rem; }
.dark-bg.stats-bar-wrap { border-color: rgba(255,255,255,0.1); }
.dark-bg .stats-bar { border-color: rgba(255,255,255,0.1); }
.dark-bg .stats-bar div { border-color: rgba(255,255,255,0.1); }
.dark-bg .stats-bar .num { color: #fff; }
.dark-bg .stats-bar .lbl { color: #9497ac; }

/* Cards grid (generic 3col) */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink-faint); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin-bottom: 20px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Signal list */
.signals-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.signal-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.signal-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.signal-item .pulse {
  position: relative;
  min-width: 10px; height: 10px; border-radius: 50%; background: var(--signal); margin-top: 6px;
  box-shadow: 0 0 0 4px var(--signal-soft);
}
.signal-item .pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--signal);
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
.dash-mock .row { transition: background .2s ease, transform .2s ease; }
.dash-mock .row:hover { background: var(--bg-soft); transform: translateX(2px); }
.signal-item h4 { font-size: 1rem; margin-bottom: 4px; }
.signal-item p { color: var(--ink-soft); font-size: 0.9rem; }

/* Steps (how it works) */
.steps { max-width: 820px; margin: 0 auto; }
.step { display: flex; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step .step-n {
  font-family: var(--sans); font-variant-numeric: tabular-nums; font-weight: 700; font-size: 1.1rem; color: var(--accent);
  min-width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .eyebrow { margin-bottom: 1.2rem; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.4rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }
.split-visual { border-radius: var(--radius); overflow: hidden; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.testimonial p.quote { font-size: 1.08rem; margin-bottom: 20px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #7c6bff); }
.testimonial .name { font-weight: 600; font-size: 0.92rem; }
.testimonial .role { color: var(--ink-faint); font-size: 0.85rem; }

/* Case studies */
.case-studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-study { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.case-study .tag { display: inline-block; font-family: var(--mono); font-size: 0.72rem; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; }
.case-study h3 { font-size: 1.1rem; margin-bottom: 10px; }
.case-study p { color: var(--ink-soft); font-size: 0.92rem; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; font-weight: 600; font-size: 1.05rem; background: none; border: none;
  width: 100%; text-align: left; color: var(--ink); font-family: var(--sans);
}
.faq-q .plus { font-size: 1.4rem; color: var(--accent); transition: transform .25s ease; min-width: 20px; text-align: center; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { color: var(--ink-soft); padding-bottom: 24px; max-width: 700px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 1.4rem; max-width: 780px; margin-inline: auto; }
.cta-band p { color: var(--ink-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.4rem; }
.dark-bg.cta-band p { color: #9497ac; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-grid .eyebrow { margin-bottom: 1.2rem; }
.contact-grid h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1.4rem; }
.contact-grid > div > p { color: var(--ink-soft); margin-bottom: 1.8rem; }
.contact-detail { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-detail .k { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.3rem; font-weight: 600; }
.contact-detail .v { color: var(--ink); }
.contact-detail a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
form.card { padding: 32px; }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
form input, form textarea, form select {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; transition: border-color .2s ease;
}
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--accent); background: #fff; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form button { width: 100%; margin-top: 6px; justify-content: center; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 1rem; text-align: center; }

/* Engine feature rows */
.feature-rows { max-width: 900px; margin: 0 auto; }
.feature-row { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: none; }
.feature-row .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.feature-row h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature-row p { color: var(--ink-soft); font-size: 0.95rem; }

/* Compliance badge strip */
.badge-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.badge-strip span {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px;
  font-size: 0.85rem; color: var(--ink-soft); background: #fff;
}
.badge-strip span::before { content: '✓'; color: var(--signal); font-weight: 700; }

/* Footer */
footer { background: var(--bg-dark); color: #b7b9c9; padding: 70px 0 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
footer .logo { color: #fff; }
.footer-tag { max-width: 320px; font-size: 0.92rem; margin-top: 1rem; color: #8a8ea3; }
.footer-cols { display: flex; gap: 64px; }
.footer-cols h4 { font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: #6a6e85; margin-bottom: 1.2rem; }
.footer-cols a { display: block; color: #b7b9c9; text-decoration: none; font-size: 0.92rem; margin-bottom: 0.75rem; transition: color .2s ease; }
.footer-cols a:hover { color: #fff; }
.footer-bot { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: #6a6e85; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* Staggered group reveal — each direct child fades/slides in with an incremental delay */
.stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .07s; }
.stagger > *:nth-child(3) { transition-delay: .14s; }
.stagger > *:nth-child(4) { transition-delay: .21s; }
.stagger > *:nth-child(5) { transition-delay: .28s; }
.stagger > *:nth-child(6) { transition-delay: .35s; }
.stagger > *:nth-child(7) { transition-delay: .42s; }
.stagger > *:nth-child(8) { transition-delay: .49s; }
.stagger > *:nth-child(9) { transition-delay: .56s; }
.stagger > *:nth-child(10) { transition-delay: .63s; }

/* Arrow micro-interaction on "See X →" links */
.btn-ghost .arrow { display: inline-block; transition: transform .25s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cards3 { grid-template-columns: 1fr; }
  .signals-list { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .case-studies { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar div:nth-child(2) { border-right: none; }
  .dash-mock .body { grid-template-columns: 1fr; }
  .dash-mock .side { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  form .row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 40px; flex-wrap: wrap; }
  section { padding: 70px 0; }
  .hero { padding: 140px 0 70px; }
  .page-hero { padding: 130px 0 60px; }
  .wrap { padding: 0 22px; }
  .feature-row { grid-template-columns: 1fr; }
}
