/* Swift Space Solutions — Design System */
:root {
  --navy: #1A3A5C;
  --navy-deep: #122A43;
  --navy-ink: #0B1C2E;
  --navy-soft: #2B4E72;
  --navy-line: rgba(255,255,255,0.12);
  --gold: #C9A227;
  --gold-soft: #E0BE4E;
  --gold-deep: #A8841A;
  --paper: #F7F4EE;
  --paper-2: #EFEAE0;
  --bone: #E7E2D5;
  --ink: #0B1C2E;
  --ink-2: #334A66;
  --ink-3: #5B7088;
  --hair: #D8D3C6;
  --gold-alpha: 1;
  --gold-use: color-mix(in oklab, var(--gold) calc(var(--gold-alpha) * 100%), var(--navy) calc((1 - var(--gold-alpha)) * 20%));
  --serif: "DM Serif Display", "Times New Roman", Georgia, serif;
  --sans: "Outfit", -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-lg: 0 24px 60px rgba(11,28,46,0.18);
  --shadow-md: 0 10px 30px rgba(11,28,46,0.08);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; margin: 0; color: var(--navy-ink); }
h1 { font-size: clamp(44px, 6vw, 84px); }
h2 { font-size: clamp(34px, 4.5vw, 60px); }
h3 { font-size: clamp(22px, 2vw, 30px); }
h4 { font-size: 20px; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-use); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold-use); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-use); }

.lede { font-family: var(--sans); font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 58ch; }
.lede.on-dark { color: rgba(255,255,255,0.72); }

.rule { height: 1px; background: var(--hair); border: 0; margin: 0; }
.rule-gold { height: 2px; background: var(--gold-use); width: 56px; border: 0; margin: 0 0 28px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: 0.01em; padding: 14px 22px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; transition: all .2s ease; line-height: 1; }
.btn-primary { background: var(--gold-use); color: var(--navy-ink); border-color: var(--gold-use); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: white; }
.btn-navy { background: var(--navy-ink); color: white; border-color: var(--navy-ink); }
.btn-navy:hover { background: var(--navy); border-color: var(--navy); }
.btn-ghost-dark { background: transparent; color: white; border-color: rgba(255,255,255,0.35); }
.btn-ghost-dark:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-ghost { background: transparent; color: var(--navy-ink); border-color: var(--navy-ink); }
.btn-ghost:hover { background: var(--navy-ink); color: white; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Sections */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }
.section-dark { background: var(--navy-ink); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
.section-paper { background: var(--paper); }
.section-bone { background: var(--bone); }
.section-white { background: #fff; }

/* Navigation */
.nav { position: sticky; top: 0; z-index: 100; background: var(--navy-ink); color: white; border-bottom: 1px solid var(--navy-line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 400; letter-spacing: 0.02em; }
.nav-links a { color: rgba(255,255,255,0.75); position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold-use); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .phone { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; text-decoration: none; transition: color .2s; }
.nav-cta .phone b { color: white; font-weight: 500; transition: color .2s; }
.nav-cta .phone:hover b { color: var(--gold-use); }
.nav-cta .nav-portal { font-size: 13px; color: rgba(255,255,255,0.78); letter-spacing: 0.02em; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; transition: color .2s, border-color .2s, background .2s; white-space: nowrap; }
.nav-cta .nav-portal:hover { color: white; border-color: var(--gold-use); background: rgba(201,162,39,0.08); }
.nav-cta .nav-portal .arrow { font-size: 11px; margin-left: 2px; opacity: 0.75; }
.nav-toggle { display: none; background: transparent; border: 0; color: white; cursor: pointer; padding: 8px; }
.nav-mobile { display: none; background: var(--navy-ink); border-top: 1px solid var(--navy-line); padding: 16px 32px 24px; }
.nav-mobile a { display: block; color: rgba(255,255,255,0.8); padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--navy-line); }
.nav-mobile a:last-of-type { border: 0; }
.nav.open .nav-mobile { display: block; }
@media (max-width: 1100px) {
  .nav-cta .phone { display: none; }
}
@media (max-width: 980px) {
  .nav-cta .nav-portal { display: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .phone, .nav-cta .nav-portal, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
}

/* Footer */
.footer { background: var(--navy-ink); color: rgba(255,255,255,0.7); padding: 80px 0 40px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer h5 { color: white; font-family: var(--sans); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 18px; }
.footer a { color: rgba(255,255,255,0.7); display: block; padding: 6px 0; }
.footer a:hover { color: white; }
.footer-logo img { height: 44px; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid var(--navy-line); padding-top: 28px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }
@media (max-width: 700px) { .footer-bottom { flex-direction: column; gap: 12px; } }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.stats-strip.on-dark { border-color: var(--navy-line); }
.stat { padding: 40px 28px; border-right: 1px solid var(--hair); }
.on-dark .stat { border-right-color: var(--navy-line); }
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--serif); font-size: clamp(40px, 4vw, 56px); line-height: 1; color: var(--navy-ink); letter-spacing: -0.02em; }
.on-dark .stat-num { color: white; }
.stat-num .accent { color: var(--gold-use); }
.stat-label { margin-top: 10px; font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em; }
.on-dark .stat-label { color: rgba(255,255,255,0.55); }
@media (max-width: 800px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
}

/* Page header */
.page-header { background: var(--navy-ink); color: white; padding: 100px 0 120px; position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 140%; background: radial-gradient(ellipse at center, rgba(201,162,39,0.18), transparent 60%); pointer-events: none; }
.page-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-use), transparent); opacity: 0.4; }
.page-header h1 { color: white; max-width: 16ch; }
.page-header .lede { color: rgba(255,255,255,0.7); margin-top: 24px; }
.page-header-meta { display: flex; gap: 24px; margin-bottom: 40px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.page-header-meta span { display: flex; align-items: center; gap: 10px; }
.page-header-meta span::before { content: ""; width: 6px; height: 6px; background: var(--gold-use); border-radius: 50%; }
.page-header-actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Hero (home) */
.hero { background: var(--navy-ink); color: white; padding: 100px 0 140px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(201,162,39,0.22), transparent 60%); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-use), transparent); opacity: 0.4; }
.hero-inner { position: relative; text-align: center; max-width: 960px; margin: 0 auto; }
.hero h1 { color: white; font-size: clamp(48px, 7vw, 96px); text-wrap: balance; margin-bottom: 24px; }
.hero h1 .accent { color: var(--gold-use); display: inline-block; }
.hero .eyebrow { justify-content: center; margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.72); margin: 0 auto 38px; font-size: 20px; max-width: 58ch; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line); }
.hero-stats .stat { padding: 30px 20px; border-right: 1px solid var(--navy-line); text-align: center; }
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .stat-num { color: white; }
.hero-stats .stat-num .accent { color: var(--gold-use); }
.hero-stats .stat-label { color: rgba(255,255,255,0.55); }

/* Marquee */
.marquee-strip { background: var(--navy-deep); color: rgba(255,255,255,0.7); border-top: 1px solid var(--navy-line); border-bottom: 1px solid var(--navy-line); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 64px; animation: marquee 50s linear infinite; white-space: nowrap; }
.marquee-item { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.marquee-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-use); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Card */
.card { background: white; border: 1px solid var(--hair); border-radius: var(--radius); padding: 36px 32px; transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--navy-ink); }
.card-dark { background: var(--navy-deep); border-color: var(--navy-line); color: rgba(255,255,255,0.75); }
.card-dark h3 { color: white; }

/* Section head */
.sec-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; gap: 20px; } }
.sec-head h2 { max-width: 16ch; }
.sec-head .lede { color: var(--ink-2); }
.sec-head.center { grid-template-columns: 1fr; text-align: center; }
.sec-head.center h2 { margin: 0 auto; }
.sec-head.center .lede { margin: 18px auto 0; }

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Value cards (bento-ish) */
.value-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: minmax(220px, auto); gap: 20px; }
.value-grid .value-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr 1fr; } .value-grid .value-card:nth-child(5), .value-grid .value-card:nth-child(1) { grid-column: span 2; } }
@media (max-width: 620px) { .value-grid { grid-template-columns: 1fr; } .value-grid .value-card { grid-column: span 1 !important; } }
.value-card { background: white; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; }
.value-card:hover { border-color: var(--navy-ink); transform: translateY(-2px); }
.value-card .icon { width: 44px; height: 44px; border-radius: 8px; background: var(--paper-2); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-card h3 { margin-bottom: 10px; font-size: 24px; }
.value-card p { color: var(--ink-2); margin: 0; }
.value-card .num { position: absolute; top: 20px; right: 24px; font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--paper-2); }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 10px; bottom: 10px; width: 1px; background: var(--hair); }
.timeline-step { position: relative; padding-bottom: 44px; }
.timeline-step::before { content: ""; position: absolute; left: -34px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--paper); border: 2px solid var(--gold-use); display: flex; align-items: center; justify-content: center; }
.timeline-step.on-dark::before { background: var(--navy-ink); }
.timeline-step .step-num { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 6px; }
.timeline-step h3 { margin-bottom: 8px; font-size: 22px; }
.timeline-step p { color: var(--ink-2); margin: 0; max-width: 64ch; }
.timeline-step:last-child { padding-bottom: 0; }

/* Pricing card (large) */
.pricing-card { position: relative; background: white; border: 2px solid var(--gold-use); border-radius: var(--radius-lg); padding: 56px 48px; max-width: 780px; margin: 0 auto; box-shadow: var(--shadow-lg); overflow: hidden; }
.pricing-card .pop { position: absolute; top: 0; right: 0; background: var(--gold-use); color: var(--navy-ink); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 10px 18px; border-bottom-left-radius: var(--radius-lg); }
.pricing-price { text-align: center; margin-bottom: 40px; }
.pricing-price .label { color: var(--ink-3); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.pricing-price .num { font-family: var(--serif); font-size: clamp(64px, 8vw, 96px); color: var(--navy-ink); line-height: 1; display: inline-flex; align-items: baseline; gap: 10px; margin-top: 12px; }
.pricing-price .num small { font-family: var(--sans); font-size: 18px; color: var(--ink-3); font-weight: 400; }
.pricing-price .sub { margin-top: 12px; color: var(--ink-2); }
.pricing-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin-bottom: 36px; }
@media (max-width: 720px) { .pricing-list { grid-template-columns: 1fr; } .pricing-card { padding: 40px 28px; } }
.pricing-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; color: var(--ink); }
.pricing-list .check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(201,162,39,0.15); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.pricing-note { background: var(--navy-ink); color: white; border-radius: 8px; padding: 22px 24px; margin-bottom: 28px; }
.pricing-note .kicker { color: var(--gold-use); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-note p { font-family: var(--serif); font-size: 20px; line-height: 1.25; margin: 0; }
.pricing-card .btn-primary { width: 100%; justify-content: center; padding: 18px; }
.pricing-finetext { color: var(--ink-3); font-size: 13px; text-align: center; margin-top: 14px; }

/* ROI calculator */
.roi { background: white; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .roi { grid-template-columns: 1fr; padding: 28px; } }
.roi-controls label { display: block; font-size: 12px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; margin: 22px 0 10px; }
.roi-controls label:first-child { margin-top: 0; }
.roi-controls input[type="range"] { width: 100%; accent-color: var(--gold-use); }
.roi-controls .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-2); }
.roi-controls .row b { font-family: var(--serif); font-size: 20px; color: var(--navy-ink); }
.roi-result { background: var(--navy-ink); color: white; padding: 32px; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; }
.roi-result::before { content: ""; position: absolute; top: -40%; left: -20%; width: 140%; height: 140%; background: radial-gradient(ellipse at 20% 20%, rgba(201,162,39,0.25), transparent 60%); pointer-events: none; }
.roi-result .kicker { position: relative; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-use); margin-bottom: 16px; }
.roi-result .big { position: relative; font-family: var(--serif); font-size: clamp(44px, 5.5vw, 72px); line-height: 1; color: white; }
.roi-result .big .accent { color: var(--gold-use); }
.roi-result .sub { position: relative; margin-top: 14px; color: rgba(255,255,255,0.7); }
.roi-result .grid-2 { margin-top: 28px; text-align: center; }
.roi-result .mini { position: relative; padding: 14px; border: 1px solid var(--navy-line); border-radius: 8px; }
.roi-result .mini b { display: block; font-family: var(--serif); font-size: 26px; color: white; margin-bottom: 4px; }
.roi-result .mini span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--hair); border-radius: var(--radius-lg); overflow: hidden; }
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--hair); font-size: 15px; vertical-align: middle; }
.compare thead th { background: var(--paper-2); font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); }
.compare thead th.member { background: var(--navy-ink); color: white; }
.compare thead th.member .price { display: block; color: var(--gold-use); font-family: var(--serif); font-size: 22px; letter-spacing: 0; text-transform: none; margin-top: 4px; }
.compare tbody td:first-child { font-weight: 500; }
.compare tbody td.member { background: rgba(201,162,39,0.06); font-weight: 500; color: var(--navy-ink); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare-wrap { overflow-x: auto; }

/* Gallery */
.collections { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--hair); border-radius: 999px; background: white; cursor: pointer; font-size: 13px; color: var(--ink-2); transition: all .15s; font-family: var(--sans); }
.chip:hover { border-color: var(--navy-ink); color: var(--navy-ink); }
.chip.on { background: var(--navy-ink); color: white; border-color: var(--navy-ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.gallery-tile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bone); cursor: pointer; border: 1px solid var(--hair); aspect-ratio: 4/5; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile .meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px; background: linear-gradient(180deg, transparent 0%, rgba(11,28,46,0.85) 100%); color: white; }
.gallery-tile .meta .col { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-use); margin-bottom: 4px; }
.gallery-tile .meta h4 { font-family: var(--serif); font-size: 18px; color: white; margin: 0; }

/* Lightbox */
.lb { position: fixed; inset: 0; background: rgba(11,28,46,0.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lb.open { display: flex; }
.lb-stage { position: relative; max-width: 1200px; width: 100%; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lb-img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lb-info { color: white; text-align: center; }
.lb-info .col { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-use); margin-bottom: 4px; }
.lb-info h4 { font-family: var(--serif); color: white; font-size: 24px; margin: 0 0 10px; }
.lb-desc { max-width: 560px; margin: 0 auto 10px; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.lb-desc:empty { display: none; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: white; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); border-color: white; }
.lb-close { top: -56px; right: 0; }
.lb-prev { left: -72px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -72px; top: 50%; transform: translateY(-50%); }
.lb-counter { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.16em; }
@media (max-width: 900px) { .lb-prev, .lb-next { top: auto; bottom: -72px; transform: none; } .lb-prev { left: calc(50% - 56px); } .lb-next { right: calc(50% - 56px); } .lb-close { top: 8px; right: 8px; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--serif); font-size: 22px; color: var(--navy-ink); font-weight: 400; }
.faq-q .plus { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--hair); display: inline-flex; align-items: center; justify-content: center; color: var(--navy-ink); flex-shrink: 0; transition: all .2s; }
.faq-item.open .plus { background: var(--navy-ink); color: white; border-color: var(--navy-ink); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 28px; color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 72ch; }
.faq-item.open .faq-a { display: block; }

/* Territory / map */
.territory { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .territory { grid-template-columns: 1fr; } }
.territory-svg { background: transparent; width: 100%; height: auto; max-width: 640px; margin: 0 auto; display: block; }
.territory-svg .state { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.25); stroke-width: 1; transition: fill .25s; }
.territory-svg .state.active { fill: rgba(201,162,39,0.18); stroke: var(--gold-use); stroke-width: 1.2; }
.territory-svg .label { font-family: var(--sans); font-size: 13px; fill: rgba(255,255,255,0.85); text-anchor: middle; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.territory-svg .label-small { font-size: 10px; fill: rgba(255,255,255,0.55); }
.territory-svg .pin { fill: rgba(255,255,255,0.78); }
.territory-svg .pin-ring { fill: none; stroke: var(--gold-use); stroke-width: 1; opacity: 0.5; }
.territory-svg .pin-label { font-family: var(--sans); font-size: 11px; fill: rgba(255,255,255,0.75); text-anchor: start; font-weight: 400; letter-spacing: 0.04em; }
.territory-svg .pin-home { fill: var(--gold-use); stroke: rgba(0,0,0,0.4); stroke-width: 0.5; }
.territory-svg .pin-label-home { font-size: 12px; fill: white; font-weight: 600; letter-spacing: 0.06em; }
.territory-svg .pin-capital { fill: var(--gold-use); stroke: rgba(0,0,0,0.35); stroke-width: 0.4; stroke-linejoin: round; }
.territory-svg .pin-capital-ring { fill: rgba(201,162,39,0.16); stroke: rgba(201,162,39,0.55); stroke-width: 0.6; }
.territory-svg .pin-label-capital { font-size: 11.5px; fill: white; font-weight: 600; letter-spacing: 0.05em; }
.territory-svg .pin-capital-tag { fill: var(--gold-use); font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.territory-list { list-style: none; padding: 0; margin: 0; }
.territory-list li { padding: 14px 0; border-bottom: 1px solid var(--navy-line); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.85); font-size: 15px; }
.territory-list li:last-child { border-bottom: 0; }
.territory-list li b { color: var(--gold-use); font-family: var(--serif); font-weight: 400; font-size: 18px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: white; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.testi-card .quote { font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--navy-ink); margin-bottom: 24px; }
.testi-card .quote-mark { position: absolute; top: 22px; right: 28px; font-family: var(--serif); font-size: 100px; line-height: 1; color: rgba(201,162,39,0.18); }
.testi-card .author { font-weight: 500; color: var(--navy-ink); }
.testi-card .role { font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* Form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form .full { grid-column: span 2; }
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } .form .full { grid-column: span 1; } }
.form label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; font-weight: 500; }
.form input, .form select, .form textarea { width: 100%; padding: 14px 16px; background: white; border: 1px solid var(--hair); border-radius: var(--radius); font: inherit; color: var(--navy-ink); transition: border-color .2s; font-family: var(--sans); }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold-use); outline: none; }
.form textarea { resize: vertical; min-height: 120px; }
.form .required::after { content: " *"; color: var(--gold-deep); }

/* Designer plan cards */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }
.plan { background: white; border: 1px solid var(--hair); border-radius: var(--radius-lg); padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.plan.highlight { border: 2px solid var(--gold-use); box-shadow: var(--shadow-md); }
.plan.highlight::before { content: attr(data-badge); position: absolute; top: -14px; left: 36px; background: var(--gold-use); color: var(--navy-ink); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.plan .plan-name { font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin: 0; font-weight: 600; }
.plan .plan-price { font-family: var(--serif); font-size: 56px; color: var(--navy-ink); line-height: 1; display: inline-flex; align-items: baseline; gap: 8px; }
.plan .plan-price small { font-family: var(--sans); font-size: 16px; color: var(--ink-3); font-weight: 400; }
.plan h3 { font-size: 24px; }
.plan .best { font-size: 14px; color: var(--ink-2); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan ul li { display: flex; gap: 10px; color: var(--ink); font-size: 15px; }
.plan ul li::before { content: "✓"; color: var(--gold-deep); font-weight: 600; flex-shrink: 0; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Milestones */
.milestones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); }
@media (max-width: 800px) { .milestones { grid-template-columns: 1fr; } }
.milestone { padding: 36px 32px; border-right: 1px solid var(--hair); }
.milestone:last-child { border-right: 0; }
@media (max-width: 800px) { .milestone { border-right: 0; border-bottom: 1px solid var(--hair); } .milestone:last-child { border-bottom: 0; } }
.milestone .year { font-family: var(--serif); font-size: 40px; color: var(--gold-use); line-height: 1; }
.milestone h3 { margin: 14px 0 10px; font-size: 22px; }
.milestone p { color: var(--ink-2); margin: 0; }

/* Product categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } }
.cat { background: white; border: 1px solid var(--hair); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.cat .status { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
.cat .status.on { background: rgba(201,162,39,0.18); color: var(--gold-deep); }
.cat .status.soon { background: rgba(43,78,114,0.12); color: var(--navy); }
.cat .status.roadmap { background: var(--paper-2); color: var(--ink-3); }
.cat h3 { font-size: 22px; }
.cat p { color: var(--ink-2); margin: 0; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--hair); }
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { padding: 36px 32px; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.svc:nth-child(2n) { border-right: 0; }
@media (max-width: 800px) { .svc { border-right: 0; } }
.svc .num { font-family: var(--mono); font-size: 11px; color: var(--gold-deep); letter-spacing: 0.16em; margin-bottom: 8px; }
.svc h3 { font-size: 24px; margin-bottom: 10px; }
.svc p { color: var(--ink-2); margin: 0; }

/* Principles */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .principles { grid-template-columns: 1fr; } }
.principle { background: white; border: 1px solid var(--hair); border-radius: var(--radius); padding: 32px; }
.principle .num { font-family: var(--serif); font-size: 32px; color: var(--gold-use); line-height: 1; margin-bottom: 12px; display: block; }
.principle h3 { margin-bottom: 10px; font-size: 22px; }
.principle p { margin: 0; color: var(--ink-2); }

/* Utility */
.u-gold { background: linear-gradient(180deg, transparent 62%, var(--gold-use) 62%, var(--gold-use) 82%, transparent 82%); padding: 0 2px; }
.u-center { text-align: center; }
.u-mt-24 { margin-top: 24px; }
.u-mt-40 { margin-top: 40px; }
.u-narrow { max-width: 720px; margin: 0 auto; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold-use); outline-offset: 2px; }

/* Fade-in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE OPTIMIZATION PASS — additive, ordered by viewport width
   ============================================================ */

/* Prevent iOS auto-zoom on focus: form fields must be ≥16px */
.form input, .form select, .form textarea { font-size: 16px; }

/* Compare table: keep enough width for legibility, let wrapper scroll */
.compare { min-width: 720px; }
.compare-wrap { -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }

/* Reduce motion respect — pause marquee + skip reveal */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Tablet & below (≤900px) ─── */
@media (max-width: 900px) {
  .hero { padding: 72px 0 96px; }
  .page-header { padding: 72px 0 88px; }
  .hero h1 { font-size: clamp(40px, 8.5vw, 72px); margin-bottom: 20px; }
  .hero .lede { font-size: 18px; margin-bottom: 32px; }
  .hero-stats { margin-top: 48px; }
  .page-header h1 { max-width: none; }

  .sec-head h2 { max-width: none; }

  .nav-mobile { padding: 12px 20px 20px; }
  .nav-mobile a { padding: 16px 0; font-size: 16px; }

  .faq-q { font-size: 19px; padding: 24px 0; gap: 14px; }
  .faq-q .plus { width: 32px; height: 32px; }

  .value-card .num { font-size: 36px; opacity: 0.7; }

  .testi-card .quote-mark { font-size: 72px; top: 16px; right: 22px; }

  .marquee-track { animation-duration: 60s; gap: 48px; }
  .marquee-item { font-size: 12px; letter-spacing: 0.14em; }
}

/* ─── Phone (≤620px) ─── */
@media (max-width: 620px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .page-header { padding: 56px 0 72px; }

  .hero h1 { font-size: clamp(36px, 9vw, 56px); line-height: 1.08; margin-bottom: 18px; }
  .hero .eyebrow { margin-bottom: 18px; font-size: 11px; letter-spacing: 0.16em; }
  .hero .lede { font-size: 17px; margin-bottom: 28px; }

  .hero-stats { grid-template-columns: 1fr; margin-top: 40px; }
  .hero-stats .stat { padding: 22px 16px; border-right: 0; border-bottom: 1px solid var(--navy-line); }
  .hero-stats .stat:last-child { border-bottom: 0; }
  .hero-stats .stat-num { font-size: 36px; }
  .hero-stats .stat-label { margin-top: 6px; font-size: 12px; }

  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-header-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .page-header-actions .btn { width: 100%; justify-content: center; }

  .stats-strip { grid-template-columns: 1fr; }
  .stat { padding: 28px 20px; border-right: 0 !important; border-bottom: 1px solid var(--hair); }
  .stats-strip.on-dark .stat { border-bottom-color: var(--navy-line); }
  .stats-strip .stat:last-child { border-bottom: 0; }

  .card { padding: 28px 22px; }
  .value-card { padding: 26px 22px; }
  .testi-card { padding: 28px 24px; }
  .principle { padding: 26px 22px; }
  .cat { padding: 26px 22px; }
  .svc { padding: 28px 20px; }
  .milestone { padding: 28px 20px; }
  .plan { padding: 32px 24px; }

  .pricing-card { padding: 36px 22px; }
  .pricing-price .num { font-size: clamp(56px, 14vw, 80px); }

  .sec-head { margin-bottom: 36px; }

  .btn { min-height: 44px; padding: 12px 18px; }
  .btn-lg { min-height: 52px; padding: 16px 22px; font-size: 15px; }

  .nav-inner { height: 64px; }
  .nav-logo img { height: 30px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 56px 0 32px; }
}

/* ─── Tiny phone (≤380px) — iPhone SE class ─── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .lede { font-size: 16px; }
  .pricing-price .num { font-size: 52px; }
  .testi-card .quote { font-size: 18px; }
  .plan .plan-price { font-size: 44px; }
  .milestone .year { font-size: 32px; }
}
