/* ==========================================================================
Empowered Rank — v0.2 · Dark-first premium
Core: navy. Accent: amber (action only). Surfaces: elevation, not colour.
========================================================================== */

:root {
/* Base surfaces — elevation is created with lightness, never hue shift */
--bg: #050B14;
--surface-1: #0A1424;
--surface-2: #0F1E33;
--surface-3: #14263F;

/* Navy brand ramp */
--navy-700: #143156;
--navy-600: #1D4270;
--navy-500: #2C6BB8; /* glow / gradient stop */
--navy-400: #4A7AB0;

/* Text */
--text: #EDF3FB;
--text-2: #A7BBD4;
--text-3: #7B93B2;

/* Action */
--amber: #F5A524;
--amber-hi: #FFC15E;
--amber-dim: rgba(245,165,36,.13);

/* Lines */
--hairline: rgba(255,255,255,.08);
--hairline-hi: rgba(255,255,255,.16);

--container: 1160px;
--radius: 14px;
--radius-lg: 20px;
--radius-sm: 8px;
--section-y: 128px;

--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font);
font-size: 17px;
line-height: 1.7;
color: var(--text-2);
background: var(--bg);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { color: var(--text); margin: 0 0 .5em; line-height: 1.1; }
h1 { font-size: clamp(40px, 6.4vw, 76px); font-weight: 700; letter-spacing: -.038em; }
h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 700; letter-spacing: -.03em; }
h3 { font-size: 21px; font-weight: 600; letter-spacing: -.018em; line-height: 1.3; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--text); text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--amber); }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .55em; }
strong { color: var(--text); font-weight: 600; }

::selection { background: var(--amber); color: #05101F; }

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

/* ------------------------------------------------------------- layout -- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: var(--section-y) 0; }
.section--raised { background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,0)); }
.section--tight { padding: 88px 0; }
.prose { max-width: 66ch; }
.center { text-align: center; }
.center .prose { margin-left: auto; margin-right: auto; }

/* Hairline divider between major bands */
.section + .section::before {
content: "";
position: absolute; inset: 0 auto auto 0;
width: 100%; height: 1px;
background: linear-gradient(90deg, transparent, var(--hairline) 18%, var(--hairline) 82%, transparent);
}

/* Ambient glow — drop into any section for a spotlit feel */
.glow {
position: absolute;
pointer-events: none;
border-radius: 50%;
filter: blur(90px);
opacity: .5;
z-index: 0;
}
.glow--navy { background: radial-gradient(circle, var(--navy-500), transparent 68%); }
.glow--amber { background: radial-gradient(circle, var(--amber), transparent 68%); opacity: .13; }
.section > .container { position: relative; z-index: 1; }

/* Faint technical grid, faded at the edges */
.gridlines {
position: absolute; inset: 0;
pointer-events: none; z-index: 0;
background-image:
linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
background-size: 72px 72px;
-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
}

/* --------------------------------------------------------- typography -- */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 12.5px;
font-weight: 600;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--amber);
margin-bottom: 22px;
}
.eyebrow::before {
content: "";
width: 22px; height: 1px;
background: linear-gradient(90deg, transparent, var(--amber));
flex: 0 0 auto;
}

.lead {
font-size: clamp(18px, 2.1vw, 21px);
line-height: 1.6;
letter-spacing: -.012em;
color: var(--text-2);
}

/* Amber gradient on one word of a headline — use once per page, max */
.hl {
background: linear-gradient(96deg, var(--amber-hi), var(--amber));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.small { font-size: 14px; line-height: 1.6; color: var(--text-3); }

/* ------------------------------------------------------------ buttons -- */
.btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
font-family: inherit;
font-size: 15px;
font-weight: 600;
letter-spacing: -.008em;
line-height: 1;
padding: 17px 30px;
border-radius: var(--radius-sm);
border: 1px solid transparent;
cursor: pointer;
text-decoration: none;
white-space: nowrap;
transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn--primary {
background: linear-gradient(180deg, var(--amber-hi), var(--amber));
color: #06101E;
box-shadow: 0 0 0 1px rgba(245,165,36,.5), 0 8px 26px -8px rgba(245,165,36,.55);
}
.btn--primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 0 1px rgba(255,193,94,.7), 0 14px 40px -10px rgba(245,165,36,.7);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
background: rgba(255,255,255,.03);
color: var(--text);
border-color: var(--hairline-hi);
backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn--sm { padding: 11px 19px; font-size: 14px; }

.cta-note { margin-top: 18px; font-size: 14px; color: var(--text-3); }

.arrow-link {
display: inline-flex; align-items: center; gap: 9px;
font-weight: 600; font-size: 15.5px; color: var(--text);
text-decoration: none;
border-bottom: 1px solid var(--hairline-hi);
padding-bottom: 3px;
transition: gap .18s ease, border-color .18s ease, color .18s ease;
}
.arrow-link:hover { gap: 14px; color: var(--amber); border-color: var(--amber); }

/* ---------------------------------------------------------------- nav -- */
.nav {
position: sticky; top: 0; z-index: 100;
background: rgba(5,11,20,.72);
backdrop-filter: saturate(160%) blur(16px);
border-bottom: 1px solid transparent;
transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck {
border-bottom-color: var(--hairline);
background: rgba(5,11,20,.9);
}
.nav__inner {
display: flex; align-items: center; justify-content: space-between;
gap: 24px; height: 74px;
}
.logo {
display: inline-flex; align-items: center; gap: 11px;
font-weight: 700; font-size: 17px; letter-spacing: -.025em;
color: var(--text); text-decoration: none;
}
.logo__mark {
width: 30px; height: 30px; border-radius: 8px;
background: linear-gradient(145deg, var(--navy-500), var(--navy-600));
box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 4px 14px -4px rgba(44,107,184,.7);
display: grid; place-items: center;
color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: -.02em;
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
position: relative;
font-size: 15px; font-weight: 500;
color: var(--text-2); text-decoration: none;
transition: color .18s ease;
}
.nav__links a::after {
content: ""; position: absolute; left: 0; bottom: -7px;
width: 100%; height: 1px; background: var(--amber);
transform: scaleX(0); transform-origin: left;
transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 26px; }

/* -------------------------------------------------------- nav dropdown -- */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(6px);
min-width: 248px;
background: var(--surface-2);
border: 1px solid var(--hairline-hi);
border-radius: var(--radius);
padding: 10px;
margin-top: 14px;
opacity: 0; visibility: hidden; pointer-events: none;
transition: opacity .18s ease, transform .18s ease, visibility .18s;
box-shadow: 0 26px 60px -20px rgba(0,0,0,.85);
backdrop-filter: blur(14px);
z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
opacity: 1; visibility: visible; pointer-events: auto;
transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
display: block; padding: 11px 14px; border-radius: 8px;
font-size: 14.5px; font-weight: 500; color: var(--text-2);
text-decoration: none; white-space: nowrap;
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a[aria-current="page"] { background: rgba(255,255,255,.06); color: var(--text); }

/* ---------------------------------------------------------------- hero -- */
.hero { padding: 152px 0 132px; overflow: hidden; }
.hero__inner { max-width: 900px; }
.hero h1 { margin-bottom: 28px; }
.hero .lead { margin-bottom: 40px; max-width: 60ch; }
.hero .glow--navy { width: 780px; height: 620px; top: -270px; left: 50%; transform: translateX(-56%); }
.hero .glow--amber { width: 460px; height: 380px; top: 40px; right: -160px; }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero__qualifier {
margin-top: 46px; padding-top: 26px;
border-top: 1px solid var(--hairline);
font-size: 15px; color: var(--text-3); max-width: 60ch;
}

.page-head { padding: 122px 0 96px; overflow: hidden; }
.page-head__inner { max-width: 820px; }
.page-head .glow--navy { width: 700px; height: 520px; top: -260px; left: 46%; transform: translateX(-50%); }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 0; padding: 0; list-style: none; }
.pills li {
margin: 0; font-size: 13.5px; font-weight: 600; color: var(--text);
background: rgba(255,255,255,.045);
border: 1px solid var(--hairline);
border-radius: 999px; padding: 9px 18px;
backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------- grid -- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* -------------------------------------------------------- glass cards -- */
.card {
position: relative;
background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
border: 1px solid var(--hairline);
border-radius: var(--radius);
padding: 32px;
backdrop-filter: blur(10px);
overflow: hidden;
transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s ease, box-shadow .28s ease;
}
/* top-edge light catch */
.card::before {
content: "";
position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}
.card:hover {
transform: translateY(-4px);
border-color: var(--hairline-hi);
box-shadow: 0 22px 50px -22px rgba(0,0,0,.85);
}
.card h3, .card h4 { margin-bottom: 11px; }
.card p:last-child { margin-bottom: 0; }
.card--flat:hover { transform: none; box-shadow: none; border-color: var(--hairline); }

.card__num {
display: inline-grid; place-items: center;
width: 38px; height: 38px; border-radius: 10px;
background: rgba(245,165,36,.11);
border: 1px solid rgba(245,165,36,.28);
color: var(--amber);
font-size: 14px; font-weight: 700;
font-variant-numeric: tabular-nums;
margin-bottom: 22px;
}

/* offer cards */
.card--offer { display: flex; flex-direction: column; }
.card--offer.is-featured {
border-color: rgba(245,165,36,.34);
box-shadow: 0 0 0 1px rgba(245,165,36,.1), 0 26px 60px -30px rgba(245,165,36,.35);
}
.card__tag {
position: absolute; top: 18px; right: 18px;
font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
color: var(--amber); background: var(--amber-dim);
border: 1px solid rgba(245,165,36,.3);
border-radius: 999px; padding: 5px 11px;
}
.card__price {
font-size: 26px; font-weight: 700; letter-spacing: -.03em;
color: var(--text); margin: 0 0 4px;
font-variant-numeric: tabular-nums;
}
.card__term { font-size: 13.5px; color: var(--text-3); margin-bottom: 24px; }
.card__list { list-style: none; padding: 0; margin: 0; }
.card__list li {
position: relative; padding-left: 26px;
font-size: 15.5px; margin-bottom: 11px; color: var(--text-2);
}
.card__list li::before {
content: ""; position: absolute; left: 0; top: 10px;
width: 6px; height: 6px; border-radius: 50%;
background: var(--amber); box-shadow: 0 0 8px rgba(245,165,36,.8);
}

/* -------------------------------------------------------------- stats -- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
padding: 34px 30px;
border: 1px solid var(--hairline);
border-radius: var(--radius);
background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
backdrop-filter: blur(10px);
}
.stat__num {
font-size: clamp(40px, 5.4vw, 58px);
font-weight: 700; letter-spacing: -.04em; line-height: 1;
background: linear-gradient(180deg, #fff, var(--amber));
-webkit-background-clip: text; background-clip: text; color: transparent;
font-variant-numeric: tabular-nums;
margin-bottom: 14px;
}
.stat__label {
font-size: 12.5px; font-weight: 600;
letter-spacing: .1em; text-transform: uppercase;
color: var(--text-3);
}

/* ------------------------------------------------------ scope columns -- */
.scope { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.scope__col {
border: 1px solid var(--hairline);
border-radius: var(--radius);
padding: 34px;
background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
backdrop-filter: blur(10px);
}
.scope__col--out { background: rgba(255,255,255,.012); }
.scope__title {
display: flex; align-items: center; gap: 12px;
font-size: 18px; font-weight: 600; color: var(--text);
margin-bottom: 24px;
}
.tick, .cross {
display: inline-grid; place-items: center;
width: 26px; height: 26px; border-radius: 50%;
font-size: 13px; font-weight: 700; flex: 0 0 auto;
}
.tick { background: var(--amber); color: #06101E; box-shadow: 0 0 14px rgba(245,165,36,.5); }
.cross { background: rgba(255,255,255,.07); color: var(--text-3); border: 1px solid var(--hairline); }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
position: relative; padding-left: 30px;
margin-bottom: 13px; font-size: 15.5px; color: var(--text-2);
}
.checklist li::before {
content: "✓"; position: absolute; left: 0; top: -1px;
color: var(--amber); font-weight: 700; font-size: 14px;
}
.checklist--muted li::before { content: "—"; color: var(--text-3); }

/* ---------------------------------------------------------- case study -- */
.case {
position: relative;
border: 1px solid var(--hairline);
border-radius: var(--radius-lg);
background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
backdrop-filter: blur(10px);
padding: 48px;
margin-bottom: 24px;
overflow: hidden;
}
.case::before {
content: "";
position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}
.case__meta {
display: inline-flex; align-items: center; gap: 10px;
font-size: 12.5px; font-weight: 600; letter-spacing: .1em;
text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
}
.case__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 30px; }
.case__stats {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
margin-top: 36px;
}
.case__stats .stat { padding: 26px 24px; background: rgba(255,255,255,.03); }
.case__stats .stat__num { font-size: clamp(32px, 3.6vw, 42px); }

.takeaway {
margin-top: 34px;
padding: 26px 30px;
border-radius: var(--radius);
background: var(--amber-dim);
border: 1px solid rgba(245,165,36,.22);
}
.takeaway h4 { color: var(--amber); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.takeaway p { color: var(--text); font-size: 16.5px; margin: 0; }

.quote {
margin: 34px 0 0; padding: 30px 34px;
border-radius: var(--radius);
background: rgba(255,255,255,.035);
border-left: 2px solid var(--amber);
}
.quote p { font-size: 18.5px; color: var(--text); line-height: 1.6; letter-spacing: -.012em; }
.quote footer { margin-top: 16px; font-size: 14px; color: var(--text-3); }

/* ---------------------------------------------------------------- faq -- */
.faq { max-width: 840px; border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
list-style: none; cursor: pointer;
padding: 26px 46px 26px 0;
font-size: 18px; font-weight: 600; color: var(--text);
position: relative;
transition: color .18s ease;
}
.faq summary:hover { color: var(--amber); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
content: ""; position: absolute; right: 8px; top: 50%;
width: 13px; height: 13px; margin-top: -6px;
background:
linear-gradient(var(--amber),var(--amber)) center/13px 1.5px no-repeat,
linear-gradient(var(--amber),var(--amber)) center/1.5px 13px no-repeat;
transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div { padding: 0 46px 28px 0; max-width: 68ch; }

/* ----------------------------------------------------------- scheduler -- */
.scheduler {
position: relative;
border: 1px solid var(--hairline-hi);
border-radius: var(--radius-lg);
background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
padding: 10px;
box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
max-width: 900px; margin: 0 auto;
backdrop-filter: blur(12px);
}
.scheduler__embed {
min-height: 720px; width: 100%; border: 0;
border-radius: 12px; display: block; background: #fff;
}
.scheduler__fallback { text-align: center; margin-top: 30px; font-size: 15px; color: var(--text-3); }

/* --------------------------------------------------------------- bio -- */
.bio { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; }
.bio__portrait {
width: 100%; aspect-ratio: 1;
border-radius: var(--radius-lg);
object-fit: cover;
background: var(--surface-2);
border: 1px solid var(--hairline);
box-shadow: 0 30px 70px -34px rgba(0,0,0,.9);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding: 0; list-style: none; }
.chips li {
margin: 0; font-size: 12.5px; font-weight: 600; color: var(--text-2);
background: rgba(255,255,255,.045);
border: 1px solid var(--hairline);
border-radius: 999px; padding: 7px 14px;
}

/* --------------------------------------------------------------- misc -- */
.callout {
border: 1px solid var(--hairline);
border-left: 2px solid var(--amber);
border-radius: var(--radius);
background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
padding: 32px 36px;
backdrop-filter: blur(10px);
}
.note {
border: 1px dashed rgba(245,165,36,.4);
border-radius: var(--radius);
background: var(--amber-dim);
padding: 26px 30px;
}

/* ------------------------------------------------------------- footer -- */
.footer {
position: relative;
border-top: 1px solid var(--hairline);
padding: 84px 0 44px;
background: linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.footer__top {
display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 52px;
padding-bottom: 52px; border-bottom: 1px solid var(--hairline);
}
.footer__tagline { margin-top: 18px; font-size: 15px; color: var(--text-3); max-width: 34ch; }
.footer__col h4 {
font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
color: var(--text-3); margin-bottom: 18px; font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 11px; }
.footer__col a { color: var(--text-2); text-decoration: none; font-size: 15px; transition: color .18s ease; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom {
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
padding-top: 30px; font-size: 13.5px; color: var(--text-3);
}

/* ------------------------------------------------ footer differentiator -- */
.footer__differentiator {
padding: 30px 0;
border-bottom: 1px solid var(--hairline);
max-width: 760px;
}
.footer__differentiator h4 {
font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
color: var(--amber); margin-bottom: 10px; font-weight: 700;
}
.footer__differentiator p { font-size: 14.5px; color: var(--text-3); margin: 0; }

/* ------------------------------------------------------------ motion -- */
[data-reveal] {
opacity: 0;
transform: translateY(18px);
transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
transition-delay: var(--d, 0ms);
will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------- responsive -- */
@media (max-width: 980px) {
:root { --section-y: 88px; }
.grid--3 { grid-template-columns: repeat(2, 1fr); }
.case__grid { grid-template-columns: 1fr; gap: 28px; }
.case { padding: 36px; }
.bio { grid-template-columns: 1fr; gap: 34px; }
.bio__portrait { max-width: 280px; }
.footer__top { grid-template-columns: 1fr 1fr; gap: 38px; }
}

@media (max-width: 700px) {
:root { --section-y: 72px; }
body { font-size: 16px; }
.hero { padding: 88px 0 72px; }
.page-head { padding: 76px 0 60px; }
.grid--2, .grid--3 { grid-template-columns: 1fr; }
.scope { grid-template-columns: 1fr; }
.stats, .case__stats { grid-template-columns: 1fr; gap: 16px; }
.nav__links { display: none; }
.nav__inner { height: 66px; }
.card, .scope__col { padding: 26px; }
.case { padding: 26px; }
.btn { width: 100%; }
.nav .btn, .hero__actions .btn { width: auto; }
.hero__actions .btn { flex: 1 1 auto; }
.footer__top { grid-template-columns: 1fr; gap: 34px; }
.section-head { margin-bottom: 40px; }
.gridlines { background-size: 48px 48px; }
.glow { filter: blur(70px); }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { animation: none !important; transition: none !important; }
[data-reveal] { opacity: 1 !important; transform: none !important; }
}
