/* ===== Tulsa Aerial — shared design system ===== */
:root {
  --bg: #05080e; --bg-2: #090e16; --panel: #0e1521; --panel-line: #1d2c40; --line: #15202e;
  --text: #eef3f9; --muted: #7e90a8; --soft: #c0cddd;
  --cyan: #45c8ff; --cyan-2: #8be4ff; --cyan-deep: #1786c9; --rec: #ff5436; --amber: #f0a830; --gold: #f5b943;
  --radius: 16px; --maxw: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body::after { content: ''; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
h1, h2, h3, h4 { font-family: 'Inter Tight', 'Inter', sans-serif; letter-spacing: -0.025em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--cyan-2); }
.mono { font-family: 'Geist Mono', monospace; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: 'Geist Mono', monospace; font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.eyebrow::before { content: '//'; color: var(--cyan); opacity: .7; }
@keyframes blink { 50% { opacity: 0.25; } }

/* ===== NAV ===== */
nav { position: sticky; top: 0; z-index: 1000; background: rgba(5,8,14,0.8); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.nav-links > a:hover { color: var(--text); }
.nav-drop { position: relative; }
.nav-drop-btn { background: none; border: none; color: var(--muted); font-family: 'Inter'; font-size: 14.5px; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 0; }
.nav-drop-btn::after { content: ''; width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.nav-drop:hover .nav-drop-btn, .nav-drop-btn:hover { color: var(--text); }
.nav-drop:hover .nav-drop-btn::after { transform: rotate(225deg) translateY(-2px); }
.nav-drop-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 210px; background: rgba(11,17,28,0.97); backdrop-filter: blur(14px); border: 1px solid var(--panel-line); border-radius: 14px; padding: 8px; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; box-shadow: 0 20px 44px rgba(0,0,0,0.5); }
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-drop-menu a { padding: 11px 14px; border-radius: 9px; font-size: 14.5px; color: var(--soft); }
.nav-drop-menu a:hover { background: rgba(69,200,255,0.1); color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 11px; font-weight: 600; font-size: 15px; transition: transform .16s ease, box-shadow .16s ease; cursor: pointer; border: none; font-family: 'Inter'; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: #03121e; box-shadow: 0 8px 28px rgba(69,200,255,0.26); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(69,200,255,0.42); }
.btn-ghost { border: 1px solid var(--panel-line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--cyan); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: .25s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 22px; background: rgba(5,8,14,0.98); border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 13px 0; font-size: 16px; color: var(--soft); border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-menu .btn { margin-top: 14px; border-bottom: none; }
@media (max-width: 940px) { .nav-links { display: none; } .nav-right .btn { display: none; } .hamburger { display: flex; } .mobile-menu.show { display: flex; } }

/* ===== SECTIONS ===== */
section { padding: 92px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(29px, 4.2vw, 44px); font-weight: 700; }
.section-head p { color: var(--muted); font-size: 17.5px; margin-top: 16px; }
.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding: 84px 0 80px; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(1000px 560px at 84% -10%, rgba(69,200,255,0.22), transparent 56%), radial-gradient(620px 420px at 4% 110%, rgba(23,134,201,0.12), transparent 60%); }
.grid-lines { position: absolute; inset: 0; pointer-events: none; opacity: 0.06; background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(1000px 700px at 70% 10%, #000 0%, transparent 78%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 66px); font-weight: 800; text-wrap: balance; }
.hero .hero-copy { max-width: 640px; }
.hero h1.tight { max-width: 12ch; }
.hero p.lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--soft); margin: 24px 0 32px; max-width: 560px; text-wrap: pretty; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-single { position: relative; max-width: 820px; }
.trust-bar { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.trust-item svg { color: var(--cyan); flex-shrink: 0; }
.viewport { position: relative; aspect-ratio: 4 / 3.4; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #0c1828, #0a1320 60%, #0e1d30), var(--panel); border: 1px solid var(--panel-line); }
.vp-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vp-scan { position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(69,200,255,0.05)); pointer-events: none; z-index: 2; }
.vp-corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--cyan); opacity: .85; }
.vp-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.vp-corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.vp-corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.vp-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.vp-rec { position: absolute; top: 18px; left: 50px; display: flex; align-items: center; gap: 7px; font-family: 'Geist Mono'; font-size: 11px; color: var(--rec); letter-spacing: 0.1em; }
.vp-rec .d { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); animation: blink 1.4s infinite; }
.vp-meta { position: absolute; bottom: 18px; left: 50px; right: 50px; display: flex; justify-content: space-between; font-family: 'Geist Mono'; font-size: 10.5px; color: var(--cyan-2); letter-spacing: 0.08em; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .viewport { max-width: 520px; } }

/* ===== STAKES ===== */
.stakes { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.stakes .copy h2 { font-size: clamp(28px, 4vw, 42px); }
.stakes .copy p { color: var(--soft); font-size: 17px; margin-top: 18px; }
.stake-list { display: flex; flex-direction: column; gap: 14px; }
.stake { display: flex; gap: 16px; align-items: flex-start; background: var(--panel); border: 1px solid var(--panel-line); border-radius: 14px; padding: 20px 22px; transition: border-color .18s ease, transform .18s ease; }
.stake:hover { border-color: var(--cyan); transform: translateX(4px); }
.stake-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(69,200,255,0.1); color: var(--cyan-2); display: grid; place-items: center; flex-shrink: 0; }
.stake h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.stake p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .stakes { grid-template-columns: 1fr; gap: 36px; } }

/* ===== FINDER / CARD GRID ===== */
.finder-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.finder { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 28px 24px; transition: transform .18s ease, border-color .18s ease; display: flex; flex-direction: column; }
.finder:hover { transform: translateY(-5px); border-color: var(--cyan); }
.finder-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(69,200,255,0.1); color: var(--cyan-2); margin-bottom: 18px; }
.finder h3 { font-size: 19px; margin-bottom: 9px; }
.finder p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 20px; }
.finder-rec { font-family: 'Geist Mono'; font-size: 11.5px; color: var(--muted); margin-bottom: 14px; letter-spacing: .03em; }
.finder-rec b { color: var(--cyan-2); font-weight: 500; }
.finder a.jump { font-size: 14.5px; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s; }
.finder a.jump:hover { gap: 10px; }
@media (max-width: 900px) { .finder-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .finder-grid { grid-template-columns: 1fr; } }

/* ===== BACKED / REVIEWS ===== */
.backed-box { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; background: var(--panel); border: 1px solid var(--panel-line); border-radius: 20px; padding: 44px; }
.backed-copy h2 { font-size: clamp(26px, 3.6vw, 38px); }
.backed-copy p { color: var(--soft); font-size: 16.5px; margin-top: 14px; }
.backed-link { display: inline-block; margin-top: 20px; color: var(--cyan); font-weight: 600; font-size: 15px; }
.backed-link:hover { color: var(--cyan-2); }
.backed-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { background: var(--bg-2); border: 1px solid var(--panel-line); border-radius: 14px; padding: 24px 14px; text-align: center; }
.stat .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.stat .snum { font-family: 'Inter Tight'; font-weight: 800; font-size: 34px; letter-spacing: -0.02em; margin: 7px 0 3px; }
.stat .slabel { font-family: 'Geist Mono'; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.quotes-label { font-family: 'Geist Mono'; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 36px 0 16px; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote-card { background: var(--panel); border: 1px solid var(--panel-line); border-radius: 16px; padding: 26px 26px 22px; display: flex; flex-direction: column; }
.quote-card .qstars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 13px; }
.quote-card p { color: var(--soft); font-size: 15.5px; line-height: 1.65; flex: 1; }
.quote-card .qby { margin-top: 16px; font-family: 'Geist Mono'; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 820px) { .backed-box { grid-template-columns: 1fr; gap: 30px; padding: 32px; } }
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .backed-stats { grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.fair { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; text-align: center; background: linear-gradient(135deg, rgba(69,200,255,0.1), rgba(23,134,201,0.05)); border: 1px solid var(--cyan-deep); border-radius: 16px; padding: 22px 28px; margin-bottom: 46px; }
.fair svg { color: var(--cyan-2); flex-shrink: 0; }
.fair p { font-size: 15.5px; color: var(--soft); margin: 0; }
.fair b { color: var(--text); font-weight: 600; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: transform .18s ease, border-color .18s ease; }
.pkg:hover { transform: translateY(-4px); border-color: var(--cyan); }
.pkg.featured { border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), 0 22px 56px rgba(69,200,255,0.15); }
.pkg-flag { position: absolute; top: -12px; left: 26px; background: var(--cyan); color: #03121e; font-family: 'Geist Mono'; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.pkg-name { font-size: 20px; font-weight: 600; font-family: 'Inter Tight'; }
.pkg-price { font-size: 42px; font-weight: 700; font-family: 'Inter Tight'; margin: 14px 0 4px; letter-spacing: -0.03em; }
.pkg-price small { font-size: 15px; color: var(--muted); font-weight: 500; letter-spacing: 0; font-family: 'Geist Mono'; }
.pkg-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; min-height: 40px; }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.pkg li { display: flex; gap: 11px; font-size: 14.5px; color: var(--soft); }
.pkg li svg { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.pkg .btn { width: 100%; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.re-custom { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 24px; padding: 26px 30px; border-radius: 16px; background: linear-gradient(135deg, rgba(69,200,255,0.1), rgba(23,134,201,0.05)); border: 1px solid var(--cyan-deep); }
.re-custom h4 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.re-custom p { font-size: 14.5px; color: var(--muted); max-width: 560px; margin: 0; }
.re-custom .btn { white-space: nowrap; }
@media (max-width: 640px) { .re-custom { flex-direction: column; align-items: flex-start; } }
.sub-title { font-size: 22px; font-weight: 600; margin: 64px 0 8px; }
.sub-desc { color: var(--muted); font-size: 15.5px; margin-bottom: 30px; max-width: 620px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec { background: var(--panel); border: 1px solid var(--panel-line); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; transition: border-color .18s ease, transform .18s ease; }
.spec:hover { border-color: var(--cyan); transform: translateY(-3px); }
.spec h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.spec .price { font-family: 'Inter Tight'; font-size: 27px; font-weight: 700; color: var(--text); margin: 6px 0 10px; }
.spec .price small { font-size: 13px; color: var(--muted); font-weight: 500; font-family: 'Geist Mono'; }
.spec p { font-size: 13.5px; color: var(--muted); flex: 1; }
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .spec-grid { grid-template-columns: 1fr; } }
.note { font-size: 13px; color: var(--muted); margin-top: 34px; max-width: 760px; line-height: 1.7; }
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.addon { display: flex; justify-content: space-between; align-items: center; gap: 14px; background: var(--panel); border: 1px solid var(--panel-line); border-radius: 12px; padding: 17px 20px; transition: border-color .15s ease; }
.addon:hover { border-color: var(--cyan); }
.addon span:first-child { font-size: 14.5px; font-weight: 500; color: var(--soft); }
.addon span:last-child { font-weight: 700; color: var(--cyan-2); font-family: 'Geist Mono'; white-space: nowrap; }
@media (max-width: 800px) { .addon-grid { grid-template-columns: 1fr; } }

/* ===== PROCESS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 18px; }
.step-num { font-family: 'Geist Mono'; font-size: 14px; font-weight: 700; color: #03121e; background: var(--cyan); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; } }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: 'Inter'; font-size: 17px; font-weight: 600; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q span.plus { color: var(--cyan); font-size: 26px; font-weight: 300; transition: transform .25s ease; line-height: 1; }
.faq-q.open span.plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); font-size: 15px; }
.faq-a div { padding-bottom: 24px; max-width: 700px; }

/* ===== PROSE (capabilities / industry / legal copy) ===== */
.doc { max-width: 820px; margin: 0 auto; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 8px 0 14px; }
.prose h3 { font-size: 19px; margin: 28px 0 8px; }
.prose p { color: var(--soft); font-size: 16px; margin-bottom: 14px; }
.prose ul { color: var(--soft); font-size: 16px; margin: 0 0 16px 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--cyan-2); }

/* ===== feature cards (capabilities) ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 28px 24px; }
.feat-ic { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: rgba(69,200,255,0.1); color: var(--cyan-2); margin-bottom: 16px; }
.feat h3 { font-size: 18px; margin-bottom: 9px; }
.feat p { font-size: 14.5px; color: var(--muted); }
.feat ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.feat li { display: flex; gap: 9px; font-size: 13.5px; color: var(--soft); }
.feat li svg { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ===== video embed ===== */
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--panel-line); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== include-list (industry deliverables) ===== */
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.incl li { display: flex; gap: 11px; font-size: 15.5px; color: var(--soft); list-style: none; }
.incl li svg { color: var(--cyan); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 620px) { .incl { grid-template-columns: 1fr; } }

/* ===== LEAD FORM ===== */
.lead-form { max-width: 640px; margin: 0 auto; text-align: left; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { background: rgba(5,8,14,0.6); border: 1px solid var(--panel-line); border-radius: 10px; padding: 13px 14px; color: var(--text); font-family: 'Inter'; font-size: 15px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease; appearance: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #4a5e78; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(69,200,255,0.15); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2345c8ff' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.field select option { background: #0b111c; color: var(--text); }
.lead-form .btn { width: 100%; margin-top: 6px; padding: 15px; font-size: 16px; }
.lead-foot { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--muted); margin-top: 18px; letter-spacing: 0.03em; }
.lead-foot a { color: var(--cyan-2); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-success { display: none; padding: 36px 20px; text-align: center; }
.form-success.show { display: block; }
.form-success .chk { width: 56px; height: 56px; border-radius: 50%; background: rgba(69,200,255,0.12); border: 1px solid var(--cyan); display: grid; place-items: center; margin: 0 auto 18px; color: var(--cyan-2); }
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 16px; margin: 0 auto; max-width: 460px; }
@media (max-width: 560px) { .lead-row { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta-box { background: linear-gradient(135deg, #0c1d33, #081523); border: 1px solid var(--panel-line); border-radius: 22px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(680px 340px at 50% -30%, rgba(69,200,255,0.24), transparent 70%); }
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(30px, 4.2vw, 46px); }
.cta-box p { color: var(--soft); font-size: 17.5px; margin: 18px auto 32px; max-width: 540px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--line); padding: 44px 0 100px; color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; align-items: center; }
.foot-inner a { color: var(--cyan-2); }
footer a:hover { color: var(--text); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; padding: 12px 16px; background: rgba(5,8,14,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); align-items: center; justify-content: space-between; gap: 12px; }
.sticky-cta .from { font-size: 12px; color: var(--muted); font-family: 'Geist Mono'; }
.sticky-cta .from b { display: block; color: var(--text); font-family: 'Inter Tight'; font-size: 17px; }
.sticky-cta .btn { flex: 1; max-width: 60%; }
@media (max-width: 940px) { .sticky-cta { display: flex; } footer { padding-bottom: 110px; } }

/* ===== CONSENT ===== */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; display: none; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 22px; background: rgba(7,11,18,0.93); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.consent.show { display: flex; }
.consent p { font-size: 13.5px; color: var(--soft); margin: 0; max-width: 720px; }
.consent p a { color: var(--cyan-2); }
.consent-btns { display: flex; gap: 10px; }
.c-accept { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: #03121e; border: none; border-radius: 9px; padding: 10px 20px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: 'Inter'; }
.c-decline { background: transparent; color: var(--soft); border: 1px solid var(--panel-line); border-radius: 9px; padding: 10px 18px; font-size: 14px; cursor: pointer; font-family: 'Inter'; }

/* ===== page header (interior pages) ===== */
.page-head { padding: 64px 0 8px; position: relative; }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; max-width: 16ch; text-wrap: balance; }
.page-head p { color: var(--soft); font-size: 18px; margin-top: 18px; max-width: 620px; }

/* location pages */
.loc-nearby { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.loc-nearby a { color: var(--cyan-2); font-size: 15px; }
