
:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --black-3: #111114;
  --white: #ffffff;
  --paper: #f7f5f1;
  --paper-2: #efede8;
  --muted: #b8b4ad;
  --muted-dark: #5b5752;
  --orange: #ff7300;
  --orange-2: #ff9a3d;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(0,0,0,0.12);
  --glass: rgba(255,255,255,0.065);
  --glass-2: rgba(255,255,255,0.10);
  --shadow: 0 32px 90px rgba(0,0,0,0.36);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,115,0,.13), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,.06), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  opacity: .9;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .08;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 890px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: absolute; left: 18px; top: -60px; background: var(--orange); color: #111; padding: 12px 16px; border-radius: 999px; z-index: 100; font-weight: 800; transition: .2s; }
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(5,5,5,.68);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(5,5,5,.88); box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-icon {
  width: 48px; height: 48px; border-radius: 16px; position: relative;
  display: grid; place-items: center; background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,115,0,.09), 0 18px 50px rgba(255,115,0,.14);
  overflow: hidden;
}
.brand-icon::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(circle, rgba(255,115,0,.32), transparent 55%); transform: translate(24%, -18%); }
.brand-m { position: relative; font-weight: 900; font-size: 1.35rem; letter-spacing: -.08em; color: #fff; }
.brand-triangle { position: absolute; bottom: 10px; width: 13px; height: 10px; clip-path: polygon(50% 0,100% 100%,0 100%); background: var(--orange); }
.brand-spark { position: absolute; right: 9px; top: 8px; width: 12px; height: 12px; background: var(--orange); clip-path: polygon(50% 0,62% 36%,100% 50%,62% 64%,50% 100%,38% 64%,0 50%,38% 36%); }
.brand-copy { display: grid; line-height: 1.05; text-transform: uppercase; letter-spacing: .16em; }
.brand-copy strong { font-size: .9rem; font-weight: 900; color: #fff; }
.brand-copy em { font-size: .72rem; font-style: normal; color: var(--orange); font-weight: 800; letter-spacing: .32em; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; font-weight: 700; }
.primary-nav a { transition: .2s var(--ease); }
.primary-nav a:hover, .primary-nav a.active { color: #fff; }
.nav-cta { background: var(--orange); color: #111 !important; padding: 12px 18px; border-radius: 999px; box-shadow: 0 16px 40px rgba(255,115,0,.23); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); border-radius: 16px; }
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; transition: .2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-2)); }

.section { padding: clamp(76px, 10vw, 132px) 0; position: relative; }
.section-light { background: var(--paper); color: #111; }
.section-light::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(255,115,0,.12), transparent 26%); pointer-events: none; }
.section-light > .container { position: relative; }
.section-bleed { position: relative; overflow: hidden; }
.hero { min-height: calc(100vh - 88px); display: grid; align-items: center; padding: clamp(72px, 8vw, 118px) 0 80px; }
.hero-noise { position: absolute; inset: 0; background-image: url('assets/brand-pattern.svg'); opacity: .23; mix-blend-mode: screen; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.orb-one { width: 480px; height: 480px; background: rgba(255,115,0,.25); right: -140px; top: 70px; }
.orb-two { width: 420px; height: 420px; background: rgba(255,255,255,.055); left: -190px; bottom: -170px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(44px, 7vw, 90px); align-items: center; }
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; font-weight: 900; margin-bottom: 18px; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.055em; }
h1 { font-size: clamp(3.25rem, 7.4vw, 7.8rem); margin-bottom: 26px; }
h1 span, h2 span { color: var(--orange); }
.hero-lead { max-width: 660px; color: rgba(255,255,255,.72); font-size: clamp(1.04rem, 1.4vw, 1.22rem); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.centered { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; padding: 14px 22px; border: 1px solid rgba(255,255,255,.14); text-transform: uppercase; letter-spacing: .10em; font-size: .78rem; font-weight: 900; transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease); }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #111; box-shadow: 0 18px 52px rgba(255,115,0,.30); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 70px rgba(255,115,0,.42); }
.btn-ghost { background: rgba(255,255,255,.055); color: #fff; }
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(255,115,0,.62); color: var(--orange); }
.btn-dark { background: #111; border-color: #111; color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.btn.full { width: 100%; }
.mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; max-width: 650px; }
.mini-proof div { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); }
.mini-proof strong { display: block; color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .12em; }
.mini-proof span { color: rgba(255,255,255,.58); font-size: .82rem; }
.logo-showcase { position: relative; min-height: 455px; border-radius: var(--radius-xl); background: linear-gradient(145deg, #fff, #f3f0e9); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; padding: 42px; box-shadow: var(--shadow); transform: perspective(1000px) rotateY(-6deg) rotateX(4deg); }
.logo-showcase::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(0,0,0,.07); border-radius: 24px; pointer-events: none; }
.logo-showcase img { width: 100%; filter: drop-shadow(0 16px 24px rgba(0,0,0,.14)); }
.corner { position: absolute; width: 32px; height: 32px; border-color: var(--orange); opacity: .9; }
.corner-tl { left: 28px; top: 28px; border-left: 2px solid; border-top: 2px solid; }
.corner-tr { right: 28px; top: 28px; border-right: 2px solid; border-top: 2px solid; }
.corner-bl { left: 28px; bottom: 28px; border-left: 2px solid; border-bottom: 2px solid; }
.corner-br { right: 28px; bottom: 28px; border-right: 2px solid; border-bottom: 2px solid; }
.floating-card { position: absolute; width: 240px; padding: 16px; border-radius: 18px; background: rgba(10,10,10,.82); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.floating-card small { color: rgba(255,255,255,.62); }
.dot { width: 9px; height: 9px; border-radius: 99px; background: var(--orange); display: inline-block; margin-right: 8px; box-shadow: 0 0 20px var(--orange); }
.card-one { left: -12px; bottom: 48px; }
.card-two { right: -8px; top: 54px; }
.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 30px; height: 52px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; display: grid; justify-content: center; padding-top: 10px; }
.scroll-cue span { width: 4px; height: 8px; background: var(--orange); border-radius: 99px; animation: scrollCue 1.7s infinite; }
@keyframes scrollCue { 0%,100%{transform:translateY(0);opacity:.3} 50%{transform:translateY(15px);opacity:1} }

.promo-band { background: var(--orange); color: #111; position: relative; z-index: 2; }
.promo-inner { display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 32px; align-items: center; padding: 34px 0; }
.promo-inner .eyebrow { color: #111; opacity: .72; margin-bottom: 6px; }
.promo-inner h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); }
.promo-inner p { color: rgba(0,0,0,.72); font-weight: 600; }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .page-hero h1, .cta-card h2 { font-size: clamp(2.45rem, 5.5vw, 5rem); margin-bottom: 18px; }
.section-heading p, .page-hero p, .large-copy { color: var(--muted); font-size: clamp(1.02rem, 1.3vw, 1.16rem); }
.section-light .section-heading p, .section-light .large-copy, .section-light .muted { color: var(--muted-dark); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-grid.compact { grid-template-columns: repeat(3, 1fr); }
.service-card { min-height: 255px; padding: 28px; background: #fff; color: #111; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); box-shadow: 0 18px 45px rgba(0,0,0,.08); transition: .28s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(255,115,0,.14), transparent 30%); opacity: 0; transition: .28s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,.14); }
.service-card:hover::before { opacity: 1; }
.service-card h3, .service-card p, .service-card span { position: relative; }
.service-num { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 14px; background: #111; color: var(--orange); font-weight: 900; margin-bottom: 50px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--muted-dark); }

.dark-split { background: linear-gradient(180deg, var(--black), #080808); }
.split-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(38px, 7vw, 90px); }
.align-center { align-items: center; }
.sticky-copy { position: sticky; top: 132px; align-self: start; }
.sticky-copy h2, .case-content h2, .contact-info h2 { font-size: clamp(2.3rem, 4.8vw, 4.4rem); margin-bottom: 22px; }
.sticky-copy p:not(.eyebrow), .case-content p, .contact-info p { color: rgba(255,255,255,.68); margin-bottom: 24px; }
.process-stack { display: grid; gap: 18px; }
.process-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); transition: .28s var(--ease); }
.process-card:hover { transform: translateX(8px); border-color: rgba(255,115,0,.45); }
.process-card span { color: var(--orange); font-weight: 900; letter-spacing: .16em; }
.process-card h3 { margin: 10px 0; font-size: 1.45rem; }
.process-card p { color: rgba(255,255,255,.66); }
.portfolio-preview { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 34px 100px rgba(0,0,0,.22); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.tag-row span { border-radius: 999px; padding: 9px 12px; background: rgba(255,115,0,.12); color: #111; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.case-content .tag-row span { color: #111; }
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 900; }

.cta-section { background: radial-gradient(circle at 50% 0, rgba(255,115,0,.22), transparent 36%); }
.cta-card { text-align: center; padding: clamp(44px, 7vw, 86px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.cta-card p:not(.eyebrow) { max-width: 720px; margin: 0 auto 30px; color: rgba(255,255,255,.70); }

.page-hero { padding: clamp(86px, 12vw, 148px) 0 clamp(56px, 8vw, 92px); background: radial-gradient(circle at 82% 16%, rgba(255,115,0,.22), transparent 28%); border-bottom: 1px solid rgba(255,255,255,.08); }
.page-hero p { max-width: 740px; }
.story-card { border-radius: var(--radius-xl); background: #fff; padding: clamp(28px, 5vw, 56px); box-shadow: 0 34px 90px rgba(0,0,0,.14); border: 1px solid var(--line-dark); }
.audience-grid, .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card, .value { padding: 28px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); transition: .28s var(--ease); }
.audience-card:hover, .value:hover { transform: translateY(-7px); border-color: rgba(255,115,0,.45); }
.audience-card h3, .value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.audience-card p, .value p { color: rgba(255,255,255,.65); }
.value { background: #fff; color: #111; border-color: var(--line-dark); }
.value span { color: var(--orange); font-weight: 900; letter-spacing: .18em; }
.value p { color: var(--muted-dark); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-xl); padding: 30px; box-shadow: 0 22px 70px rgba(0,0,0,.09); display: grid; gap: 20px; transition: .28s var(--ease); }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 34px 90px rgba(0,0,0,.14); }
.pricing-card.featured { background: #111; color: #fff; border-color: rgba(255,115,0,.36); box-shadow: 0 28px 90px rgba(255,115,0,.20); }
.pricing-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 900; }
.pricing-top span { color: var(--orange); }
.pricing-card h2 { font-size: clamp(2.7rem, 4.2vw, 4rem); color: var(--orange); }
.pricing-card ul { list-style: none; display: grid; gap: 12px; color: var(--muted-dark); }
.pricing-card.featured ul, .pricing-card.featured .muted { color: rgba(255,255,255,.68); }
.pricing-card li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 10px; }
.table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); }
.compare-table { width: 100%; min-width: 780px; border-collapse: collapse; background: rgba(255,255,255,.045); }
.compare-table th, .compare-table td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.09); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table th { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.compare-table td:not(:first-child) { color: var(--orange); font-weight: 900; }
.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.12); }
.faq-item { width: 100%; background: transparent; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; text-align: left; font-weight: 800; font-size: 1.05rem; }
.faq-item em { color: var(--orange); font-style: normal; font-size: 1.5rem; }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s var(--ease); }
.faq-panel > p { overflow: hidden; color: rgba(255,255,255,.66); }
.faq-panel.open { grid-template-rows: 1fr; padding-bottom: 18px; }

.case-study { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.case-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,.18); }
.case-content p { color: var(--muted-dark); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 6vw, 76px); align-items: start; }
.contact-info p { color: var(--muted-dark); }
.contact-card { margin-top: 22px; padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-dark); box-shadow: 0 18px 50px rgba(0,0,0,.08); }
.contact-card h3 { margin-bottom: 14px; }
.contact-card p { margin-bottom: 10px; }
.dark-note { background: #111; color: #fff; }
.dark-note .check-list li { color: rgba(255,255,255,.72); }
.quote-form { background: #111; color: #fff; padding: clamp(26px, 4vw, 42px); border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; color: rgba(255,255,255,.74); font-size: .86rem; font-weight: 700; letter-spacing: .04em; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.065); color: #fff; padding: 15px 16px; outline: none; transition: .2s var(--ease); }
input:focus, select:focus, textarea:focus { border-color: rgba(255,115,0,.7); box-shadow: 0 0 0 4px rgba(255,115,0,.12); }
select option { color: #111; }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: rgba(255,255,255,.54); font-size: .86rem; }

.footer { padding: 72px 0 30px; border-top: 1px solid rgba(255,255,255,.09); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 34px; }
.footer h3 { font-size: .86rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px; color: #fff; }
.footer p, .footer li { color: rgba(255,255,255,.58); }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a:hover { color: var(--orange); }
.footer-brand p { margin-top: 18px; max-width: 360px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); margin-top: 48px; padding-top: 24px; }
.cursor-glow { position: fixed; width: 360px; height: 360px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(255,115,0,.15), transparent 62%); transform: translate(-50%,-50%); z-index: 0; opacity: 0; transition: opacity .2s; mix-blend-mode: screen; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1060px) {
  .service-grid, .service-grid.compact, .audience-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .split-grid, .case-study, .contact-grid, .faq-wrap { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .logo-showcase { transform: none; min-height: 360px; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 78px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 78px; left: 20px; right: 20px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,8,8,.96); backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 12px; box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 15px 16px; border-radius: 16px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { min-height: auto; padding-top: 62px; }
  .mini-proof, .promo-inner, .form-row { grid-template-columns: 1fr; }
  .promo-inner { text-align: left; }
  .floating-card { position: static; width: auto; margin-top: 14px; }
  .scroll-cue, .cursor-glow { display: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .service-grid, .service-grid.compact, .audience-grid, .values-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .logo-showcase { min-height: 270px; padding: 24px; }
  .section { padding: 72px 0; }
  .footer-bottom { flex-direction: column; }
  .brand-copy { display: none; }
}

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