/* ==========================================================================
   Minneapolis Development — design system
   Committed dark design: near-black navy ground, one electric-blue accent
   drawn from the brand badge, oversized type, subtle motion.
   ========================================================================== */

:root {
  --bg: #070b12;
  --bg-2: #0b1220;
  --panel: #0f1726;
  --panel-2: #131e31;
  --line: rgba(148, 178, 215, .14);
  --line-strong: rgba(148, 178, 215, .28);
  --ink: #e9f1fa;
  --muted: #93a6bd;
  --dim: #7b90a8; /* 5.5:1 on --bg-2 — keep AA at small sizes */
  --accent: #4da3ff;
  --accent-2: #7cc0ff;
  --accent-deep: #1c5c94;
  --accent-ink: #081420;
  --danger: #ff8b8b;
  --ok: #7ce2a8;
  --radius: 18px;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--accent-deep); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--accent); color: var(--accent-ink);
  padding: .55rem 1rem; border-radius: 8px; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; text-decoration: none; }

.wrap { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(7, 11, 18, .78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.75rem;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  color: var(--ink); font-weight: 800; letter-spacing: .01em;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: auto; }
.brand-name { font-size: 1.06rem; white-space: nowrap; }
.brand-name em { font-style: normal; color: var(--accent-2); font-weight: 650; margin-left: .3rem; }

.site-nav ul { display: flex; gap: 1.3rem; list-style: none; padding: 0; }
.site-nav a {
  color: var(--muted); font-weight: 600; font-size: .95rem;
  padding: .4rem 0; position: relative;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent); transition: right .25s var(--ease);
}
.site-nav a:hover::after { right: 0; }
body.nav-websites [data-nav="websites"],
body.nav-software [data-nav="software"],
body.nav-mobile [data-nav="mobile"],
body.nav-ai [data-nav="ai"],
body.nav-pricing [data-nav="pricing"],
body.nav-work [data-nav="work"],
body.nav-about [data-nav="about"] { color: var(--ink); }
body.nav-websites .site-nav [data-nav="websites"]::after,
body.nav-software .site-nav [data-nav="software"]::after,
body.nav-mobile .site-nav [data-nav="mobile"]::after,
body.nav-ai .site-nav [data-nav="ai"]::after,
body.nav-pricing .site-nav [data-nav="pricing"]::after,
body.nav-work .site-nav [data-nav="work"]::after,
body.nav-about .site-nav [data-nav="about"]::after { right: 0; }

.menu-btn {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: 10px; padding: .6rem .7rem; cursor: pointer;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s;
}
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
body.menu-open .menu-icon { background: transparent; }
body.menu-open .menu-icon::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(9, 14, 23, .97);
}
.mobile-menu ul { list-style: none; padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem; display: grid; gap: .25rem; }
.mobile-menu a:not(.btn) {
  display: block; padding: .8rem .25rem; color: var(--ink);
  font-size: 1.15rem; font-weight: 650; border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { text-decoration: none; color: var(--accent-2); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }
body.menu-open .mobile-menu { display: block; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 750; font-size: 1rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 55%, #2f83e0);
  color: var(--accent-ink);
  box-shadow: 0 8px 28px rgba(45, 125, 220, .35);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(45, 125, 220, .5); }
.btn-ghost {
  border-color: var(--line-strong); color: var(--ink); background: rgba(148, 178, 215, .06);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(77, 163, 255, .1); }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1.08rem; border-radius: 14px; }
.header-cta { padding: .7rem 1.15rem; font-size: .95rem; }

/* --- Type -------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.display {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 1.04; font-weight: 800; letter-spacing: -.025em;
  /* no text-wrap:balance here: Chromium mis-balances around <br> and overflows */
}
h2.title {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.1; font-weight: 800; letter-spacing: -.02em;
  text-wrap: balance;
}
h3 { font-size: 1.28rem; font-weight: 750; letter-spacing: -.01em; }
.grad-text {
  background: linear-gradient(100deg, var(--accent-2) 10%, var(--accent) 45%, #9ad2ff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(1.12rem, 1.9vw, 1.32rem); color: var(--muted); max-width: 46ch; }
.section-head { max-width: 780px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head .lede { margin-top: 1rem; max-width: 60ch; }

/* --- Sections ---------------------------------------------------------- */
.section { padding-block: clamp(3.5rem, 9vw, 7rem); position: relative; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative; overflow: clip;
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(5rem, 12vw, 9rem);
  background:
    radial-gradient(52rem 30rem at 82% -12%, rgba(46, 122, 205, .26), transparent 62%),
    radial-gradient(40rem 26rem at -10% 34%, rgba(28, 92, 148, .22), transparent 60%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(148, 178, 215, .13) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 72%);
}
.hero .orb {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
  animation: drift 16s var(--ease) infinite alternate;
}
.orb-a { width: 420px; height: 420px; right: -6%; top: -18%; background: rgba(52, 130, 215, .28); }
.orb-b { width: 340px; height: 340px; left: -8%; bottom: -22%; background: rgba(24, 84, 140, .3); animation-delay: -8s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3%, 6%, 0) scale(1.12); }
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-copy { max-width: 780px; min-width: 0; }
.hero-badge { position: relative; justify-self: end; }
.hero-badge img {
  width: clamp(190px, 23vw, 330px); height: auto;
  filter: drop-shadow(0 24px 55px rgba(8, 34, 68, .65));
}
/* Soft halo so the badge sits in the hero's light rather than on top of it. */
.hero-badge::before {
  content: ""; position: absolute; inset: -14%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, .3), transparent 68%);
  filter: blur(30px);
}
.hero .lede { margin-top: 1.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }
.hero-kicker { margin-top: 2.8rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; color: var(--dim); font-size: .95rem; font-weight: 600; }
.hero-kicker span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-kicker span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-skyline {
  position: absolute; left: 0; right: 0; bottom: -2px; pointer-events: none;
  color: rgba(77, 163, 255, .1);
}
.hero-skyline svg { width: 100%; height: clamp(48px, 9vw, 110px); fill: currentColor; }

/* Inner-page hero */
.page-hero {
  position: relative; overflow: clip;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(46rem 24rem at 88% -20%, rgba(46, 122, 205, .22), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .display { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.page-hero .lede { margin-top: 1.25rem; }

/* --- Cards / grids ------------------------------------------------------ */
.grid-3 { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; overflow: clip;
  background: linear-gradient(175deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.8rem 1.8rem;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; }
.card:hover {
  transform: translateY(-5px); border-color: rgba(77, 163, 255, .45);
  box-shadow: 0 24px 60px rgba(15, 60, 120, .35);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: 1rem; }
.card-num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(124, 192, 255, .5);
  margin-bottom: 1.1rem;
}
.card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-weight: 700; color: var(--accent-2); }
.card-link::after { content: "→"; transition: transform .25s var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.tag {
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent-2); background: rgba(77, 163, 255, .1);
  border: 1px solid rgba(77, 163, 255, .25); border-radius: 999px;
  padding: .28rem .75rem;
}

/* --- Proof strip -------------------------------------------------------- */
.proof { border-block: 1px solid var(--line); background: var(--bg-2); }
.proof-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-block: 2.2rem;
}
.proof-item { display: grid; gap: .3rem; padding-left: 1.1rem; border-left: 2px solid var(--accent); }
.proof-item strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.proof-item span { color: var(--muted); font-size: .95rem; }

/* --- Work cards --------------------------------------------------------- */
.work-card { display: grid; gap: .4rem; }
.work-card .kicker { color: var(--accent-2); font-size: .84rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.work-card p { max-width: 52ch; }

/* --- Process steps ------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.4rem 1.3rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-weight: 800; font-size: 1rem; letter-spacing: .08em;
  color: var(--accent-2); margin-bottom: .7rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* --- Checklists / feature lists ----------------------------------------- */
.checklist { list-style: none; padding: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--muted); }
.checklist li strong { color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .32em;
  width: 1.05rem; height: 1.05rem; border-radius: 6px;
  background: rgba(77, 163, 255, .14); border: 1px solid rgba(77, 163, 255, .45);
}
.checklist li::after {
  content: ""; position: absolute; left: .3rem; top: .58em;
  width: .45rem; height: .26rem; border-left: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

/* --- Split layout ------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split > .sticky-label { position: sticky; top: calc(var(--header-h) + 2rem); }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: .9rem; max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); overflow: clip; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent-2); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative; overflow: clip; text-align: center;
  border: 1px solid rgba(77, 163, 255, .3); border-radius: 24px;
  padding: clamp(2.8rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(38rem 20rem at 50% 120%, rgba(46, 122, 205, .3), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
.cta-band h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; text-wrap: balance; }
.cta-band p { color: var(--muted); margin: 1rem auto 2rem; max-width: 52ch; }

/* --- Case studies ------------------------------------------------------- */
.case-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; color: var(--dim); font-size: .95rem; font-weight: 600; margin-top: 1.4rem; }
.case-block { border-left: 2px solid var(--accent); padding-left: 1.6rem; margin-block: 2.6rem; max-width: 760px; }
.case-block h2 { font-size: 1.05rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: .8rem; }
.case-block p + p { margin-top: .9rem; }
.case-block ul { margin-top: .9rem; }
.placeholder {
  display: inline-block; background: rgba(255, 200, 90, .12); border: 1px dashed rgba(255, 200, 90, .5);
  color: #ffd88a; border-radius: 8px; padding: .1rem .55rem; font-weight: 700; font-size: .92em;
}

/* --- Portrait ----------------------------------------------------------- */
.portrait-card {
  margin: 0; overflow: clip; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, var(--panel-2), var(--panel) 55%);
}
.portrait-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  border-bottom: 1px solid var(--line);
}
.portrait-card figcaption { padding: 1.2rem 1.4rem 1.4rem; display: grid; gap: .25rem; }
.portrait-card figcaption strong { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.portrait-card figcaption span { color: var(--muted); font-size: .95rem; }

/* --- Pricing ------------------------------------------------------------ */
.price-line { display: flex; align-items: baseline; gap: .4rem; margin: 1rem 0 .2rem; }
.price-from { font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.price-value { font-size: 2.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.price-per { color: var(--muted); font-weight: 650; }
.price-note { color: var(--dim); font-size: .88rem; margin-bottom: .9rem; }
.price-card .checklist { margin-top: 1rem; gap: .55rem; }
.price-card .checklist li { font-size: .95rem; }

/* --- Forms -------------------------------------------------------------- */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
/* align-content:start matters: .field is a grid item stretched to its row's height, and
   without it the auto rows share the leftover space - which pushed the control away from
   its label whenever the neighbouring field was taller (e.g. one has a hint, one doesn't). */
.field { display: grid; gap: .4rem; align-content: start; }
.field label { font-weight: 700; font-size: .95rem; }
.field .hint { color: var(--dim); font-size: .85rem; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: .8rem .95rem; color: var(--ink); width: 100%;
}
.field textarea { min-height: 9.5rem; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 1.15rem) 50%, calc(100% - .85rem) 50%; background-size: .3rem .3rem; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.field .error { color: var(--danger); font-size: .88rem; font-weight: 600; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .error { display: block; }
.form-note { color: var(--dim); font-size: .9rem; margin-top: 1rem; }
.form-status { display: none; margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 12px; font-weight: 650; }
.form-status.ok { display: block; background: rgba(124, 226, 168, .1); border: 1px solid rgba(124, 226, 168, .4); color: var(--ok); }
.form-status.err { display: block; background: rgba(255, 139, 139, .08); border: 1px solid rgba(255, 139, 139, .4); color: var(--danger); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Next steps --------------------------------------------------------- */
.next-steps { counter-reset: ns; display: grid; gap: 1.1rem; }
.next-steps li { list-style: none; position: relative; padding-left: 3rem; color: var(--muted); }
.next-steps li strong { color: var(--ink); display: block; }
.next-steps li::before {
  counter-increment: ns; content: counter(ns);
  position: absolute; left: 0; top: .1rem; width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center; font-weight: 800; color: var(--accent-2);
  border: 1px solid rgba(77, 163, 255, .4); border-radius: 50%; background: rgba(77, 163, 255, .08);
}

/* --- Footer ------------------------------------------------------------- */
.site-footer { margin-top: clamp(3rem, 8vw, 5rem); background: var(--bg-2); border-top: 1px solid var(--line); position: relative; }
.footer-skyline { color: rgba(77, 163, 255, .07); margin-top: -1px; }
.footer-skyline svg { width: 100%; height: clamp(40px, 7vw, 90px); fill: currentColor; transform: scaleY(-1); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem;
  padding-block: 3rem 2.5rem;
}
.footer-brand img { width: 72px; }
.footer-tag { color: var(--muted); margin-top: 1rem; font-size: .98rem; }
.site-footer h2 { font-size: .85rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer-nav a, .footer-contact a:not(.btn) { color: var(--muted); font-weight: 600; }
.footer-nav a:hover, .footer-contact a:not(.btn):hover { color: var(--accent-2); }
.footer-email { font-size: 1.05rem; }
.footer-area { color: var(--dim); font-size: .92rem; margin: .6rem 0 1.4rem; }
.footer-legal { border-top: 1px solid var(--line); padding-block: 1.3rem; color: var(--dim); font-size: .88rem; }

/* --- Reveal motion ------------------------------------------------------- */
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .site-nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 860px) {
  /* Badge leads on narrow screens - brand first, then the pitch. */
  .hero-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-badge { justify-self: start; order: -1; }
  .hero-badge img { width: clamp(112px, 26vw, 168px); }
}
@media (max-width: 700px) {
  .grid-3, .grid-2, .steps, .form-grid, .proof-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split > .sticky-label { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero .orb { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
