@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&family=Sora:wght@600;700&display=swap');

:root {
  --canvas: #07111c;
  --canvas-2: #091725;
  --panel: #0d1c2a;
  --panel-raised: #12283a;
  --accent: #38c7f0;
  --accent-hover: #74dcf8;
  --accent-muted: rgba(56, 199, 240, .18);
  --line: rgba(150, 204, 229, .18);
  --line-strong: rgba(150, 204, 229, .38);
  --text-secondary: #a9bfce;
  --text-primary: #f3f8fb;
  --shadow: 0 28px 90px rgba(0, 0, 0, .32);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --tshadow: 0 1px 2px rgba(5, 9, 15, .95), 0 3px 12px rgba(5, 9, 15, .78), 0 10px 44px rgba(5, 9, 15, .8);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; background: var(--canvas); }
body { margin: 0; min-width: 320px; overflow-x: hidden; overflow-x: clip; color: var(--text-primary); background: var(--canvas); font-family: "DM Sans", sans-serif; line-height: 1.6; }
body::before { content: ""; position: fixed; inset: -25%; z-index: -2; pointer-events: none; background: radial-gradient(circle at 72% 16%, rgba(39, 151, 198, .12), transparent 31%), radial-gradient(circle at 18% 75%, rgba(33, 97, 138, .12), transparent 28%), linear-gradient(145deg, #07111c, #091725 48%, #07111c); animation: atmosphere 70s ease-in-out infinite alternate; }
body::after { content: ""; position: fixed; inset: 0; z-index: -1; opacity: .17; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"); }
@keyframes atmosphere { to { transform: translate3d(-3%, 2%, 0) scale(1.04); } }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, video, svg { display: block; max-width: 100%; }
::selection { color: #00141c; background: var(--accent-hover); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px; color: #00141c; background: var(--accent); border-radius: 8px; transform: translateY(-180%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { margin: 0 0 16px; color: var(--accent-hover); font: 500 .72rem/1.5 "IBM Plex Mono", monospace; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: "Sora", sans-serif; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(3.2rem, 7.8vw, 7.6rem); }
h2 { max-width: 15ch; font-size: clamp(2.35rem, 5vw, 5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); letter-spacing: -.025em; }
p { color: var(--text-secondary); }
.lede { max-width: 62ch; font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 600; line-height: 1; cursor: pointer; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #00131b; background: var(--accent); box-shadow: 0 12px 36px rgba(56, 199, 240, .22); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 16px 44px rgba(56, 199, 240, .3); }
.btn-secondary { color: var(--text-primary); background: rgba(6, 18, 28, .54); border-color: var(--line-strong); backdrop-filter: blur(12px); }
.btn-secondary:hover { border-color: var(--accent); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .9rem; }
.text-link { color: var(--accent-hover); font-weight: 600; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease); }
.site-header.scrolled { border-color: var(--line); background: rgba(7, 17, 28, .78); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Sora", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .07em; line-height: 1.15; text-transform: uppercase; }
.brand-mark { width: 46px; color: var(--accent); flex: 0 0 auto; }
.brand-mark .beam { transform-origin: 24px 24px; transition: transform .5s var(--ease); }
.brand:hover .beam { transform: rotate(-8deg); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
.nav-links > a:not(.btn) { color: var(--text-secondary); transition: color .25s var(--ease); }
.nav-links > a:not(.btn):hover { color: var(--text-primary); }
.menu-btn { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--text-primary); background: rgba(7, 17, 28, .6); }

.hero { position: relative; height: 400vh; }
.hero-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; isolation: isolate; background: #050c14; }
.hero-media, .poster, .hero-video, .hero-base-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.poster { background-color: #07111c; background-image: url('hero-ending.jpg'); background-position: center; background-size: cover; }
.hero-video { z-index: 1; object-fit: cover; opacity: 0; transform: translateZ(0); will-change: transform; transition: opacity .7s var(--ease-soft); }
.video-ready .hero-video { opacity: 1; }
.video-failed .hero-video { display: none; }
.hero-base-scrim { z-index: 2; pointer-events: none; background: radial-gradient(ellipse 105% 85% at 72% 46%, rgba(4, 10, 17, 0) 20%, rgba(4, 10, 17, .45) 68%, rgba(4, 10, 17, .84) 100%), linear-gradient(90deg, rgba(4, 10, 17, .84) 0%, rgba(4, 10, 17, .28) 48%, rgba(4, 10, 17, .12) 100%); }
.hero-grid { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, #000, transparent 72%); }
.hero-content { position: relative; z-index: 4; height: 100%; }
.band { --k: 1; position: absolute; top: 50%; left: 0; width: min(720px, 62vw); padding: 5vh 5vw 5vh max(20px, calc((100vw - 1180px)/2)); opacity: 0; text-shadow: var(--tshadow); transform: translateY(-50%); pointer-events: none; }
.band::before { content: ""; position: absolute; inset: -20% -10%; z-index: -1; pointer-events: none; opacity: calc(.25 + .75 * var(--k)); background: radial-gradient(ellipse 72% 68% at 35% 50%, rgba(5, 9, 15, .7) 0%, rgba(5, 9, 15, .43) 48%, rgba(5, 9, 15, 0) 78%); }
.band h1, .band h2 { max-width: 10ch; }
.band h2 { font-size: clamp(2.5rem, 5.8vw, 6rem); }
.band p { max-width: 54ch; color: #c6d8e4; font-size: clamp(1rem, 1.55vw, 1.2rem); }
.band .eyebrow { color: #a9edff; }
.band .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; pointer-events: auto; text-shadow: none; }
.band[data-enter="snap"] .band-inner { opacity: var(--k); transform: translateX(calc((1 - var(--k)) * -42px)); }
.band[data-enter="punch"] .band-inner { opacity: var(--k); transform: scale(calc(.9 + var(--k) * .1)); transform-origin: left center; }
.band[data-enter="drift"] .band-inner { opacity: var(--k); transform: translateY(calc((1 - var(--k)) * -36px)); }
.band[data-enter="settle"] .band-inner { opacity: var(--k); transform: translateY(calc((1 - var(--k)) * 34px)); }
.band-inner { transition: none; will-change: transform, opacity; }
.hero-status { position: absolute; right: 26px; bottom: 26px; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 8px 12px; color: var(--text-secondary); background: rgba(4, 10, 17, .58); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(12px); font: 500 .66rem/1 "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.ring { width: 26px; height: 26px; color: var(--accent); transform: rotate(-90deg); }
.ring circle { transition: stroke-dashoffset .15s linear; }
.scroll-cue { position: absolute; bottom: 27px; left: 50%; z-index: 5; color: #c9dce6; font: 500 .64rem/1 "IBM Plex Mono", monospace; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue::after { content: ""; display: block; width: 1px; height: 34px; margin: 10px auto 0; background: linear-gradient(var(--accent), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%, 100% { transform: scaleY(.25); transform-origin: top; opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

.section { position: relative; padding: clamp(90px, 12vw, 170px) 0; }
.section-tight { padding-block: 80px; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; margin-bottom: 64px; }
.section-head p { margin: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.orbit { position: absolute; width: 320px; aspect-ratio: 1; border: 1px solid var(--accent-muted); border-radius: 50%; pointer-events: none; opacity: .55; }
.orbit::before, .orbit::after { content: ""; position: absolute; border: 1px solid var(--accent-muted); border-radius: inherit; }
.orbit::before { inset: 18%; }
.orbit::after { inset: 36%; background: radial-gradient(circle, var(--accent) 0 2px, transparent 3px); }
.orbit-left { top: 20%; left: -220px; }
.orbit-right { right: -190px; bottom: 10%; }
.section.is-live .orbit { animation: orbit 18s linear infinite -4s; }
@keyframes orbit { to { transform: rotate(360deg); } }

.problem-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.statement-card, .metric-card, .offer-card, .step, .service-card, .package-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(18, 40, 58, .88), rgba(9, 24, 37, .88)); box-shadow: var(--shadow); }
.statement-card { min-height: 390px; padding: clamp(30px, 4vw, 54px); border-radius: 34px; }
.statement-card::after { content: ""; position: absolute; right: -70px; bottom: -110px; width: 260px; aspect-ratio: 1; background: radial-gradient(circle, rgba(56, 199, 240, .2), transparent 65%); }
.statement-card h2 { max-width: 10ch; }
.statement-card p { max-width: 46ch; }
.metric-card { display: flex; min-height: 390px; flex-direction: column; justify-content: space-between; padding: 32px; border-radius: 34px; }
.metric-card .number { color: var(--accent-hover); font-family: "Sora", sans-serif; font-size: clamp(2.7rem, 5vw, 4.7rem); letter-spacing: -.06em; }
.metric-card small { color: var(--text-secondary); font: 500 .7rem/1.5 "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }

.flagship { overflow: hidden; background: linear-gradient(180deg, rgba(9, 23, 37, .2), rgba(13, 37, 55, .82) 45%, rgba(7, 17, 28, .5)); }
.flagship-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(38px, 7vw, 90px); }
.flagship-copy { position: sticky; top: 130px; }
.flagship-copy .price-line { margin-top: 26px; color: var(--text-primary); font-family: "Sora", sans-serif; font-size: 1.1rem; }
.offer-stack { display: grid; gap: 18px; }
.offer-card { padding: 34px; border-radius: 30px; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.offer-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.offer-card.recommended { border-color: rgba(56, 199, 240, .48); background: linear-gradient(145deg, rgba(17, 58, 78, .96), rgba(9, 27, 41, .96)); }
.offer-top { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.offer-price { color: var(--text-primary); font-family: "Sora", sans-serif; font-size: 2.2rem; letter-spacing: -.05em; white-space: nowrap; }
.tag { display: inline-flex; padding: 7px 10px; color: var(--accent-hover); background: var(--accent-muted); border: 1px solid rgba(56, 199, 240, .28); border-radius: 999px; font: 500 .66rem/1 "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-secondary); }
.check-list li::before { content: ""; position: absolute; top: .56em; left: 0; width: 12px; height: 7px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); transform: rotate(-45deg); }
.offer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.care-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(7, 17, 28, .52); }
.care-note strong { font-family: "Sora", sans-serif; }
.care-note p { margin: 4px 0 0; font-size: .9rem; }

.time-tool { border-block: 1px solid var(--line); background: rgba(4, 13, 22, .45); }
.tool-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; margin-top: 54px; }
.tool-options { display: grid; gap: 10px; }
.tool-option { width: 100%; min-height: 68px; padding: 0 22px; border: 1px solid var(--line); border-radius: 18px; color: var(--text-secondary); background: rgba(12, 29, 44, .68); text-align: left; cursor: pointer; transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease); }
.tool-option:hover { color: var(--text-primary); transform: translateX(4px); }
.tool-option.active { color: var(--text-primary); border-color: var(--accent); background: rgba(25, 74, 96, .62); }
.tool-result { display: flex; min-height: 360px; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 60px); border: 1px solid rgba(56, 199, 240, .32); border-radius: 32px; background: radial-gradient(circle at 82% 18%, rgba(56, 199, 240, .17), transparent 35%), linear-gradient(145deg, #10283a, #091925); box-shadow: var(--shadow); }
.tool-result h3 { max-width: 16ch; font-size: clamp(2rem, 4vw, 4.2rem); }
.tool-result p { max-width: 54ch; font-size: 1.05rem; }
.result-label { color: var(--accent-hover); font: 500 .68rem/1 "IBM Plex Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step { min-height: 320px; padding: 34px; border-radius: 30px; counter-increment: steps; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 80px; color: var(--accent-hover); font: 500 .72rem/1 "IBM Plex Mono", monospace; }
.step p { margin-bottom: 0; }
.step-line { position: absolute; top: 76px; left: 34px; width: calc(100% - 68px); height: 1px; background: var(--line); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .2s; }
.step.in .step-line { transform: scaleX(1); }

.platform-frame { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: 38px; background: #07131f; box-shadow: var(--shadow); }
.platform-image { position: relative; min-height: 500px; background: url('hero-ending.jpg') center/cover; }
.platform-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 45%, #07131f 100%); }
.platform-copy { align-self: center; padding: clamp(35px, 6vw, 80px); }
.platform-copy h2 { max-width: 9ch; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.mini { padding: 16px; border: 1px solid var(--line); border-radius: 16px; color: var(--text-secondary); font-size: .9rem; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; color: var(--text-primary); font-weight: 600; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform .3s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 66ch; margin: 0; padding: 0 30px 26px 0; }

.cta-shell { position: relative; overflow: hidden; padding: clamp(54px, 8vw, 100px); border: 1px solid rgba(56, 199, 240, .34); border-radius: 42px; background: radial-gradient(circle at 85% 20%, rgba(56, 199, 240, .23), transparent 32%), linear-gradient(145deg, #12344a, #091925 62%); box-shadow: var(--shadow); }
.cta-shell::before { content: ""; position: absolute; right: -100px; bottom: -190px; width: 430px; aspect-ratio: 1; border: 1px solid rgba(56, 199, 240, .25); border-radius: 50%; box-shadow: inset 0 0 0 55px rgba(56, 199, 240, .025), inset 0 0 0 110px rgba(56, 199, 240, .025); }
.cta-shell h2 { max-width: 11ch; }
.cta-shell p { max-width: 55ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-line { margin-top: 30px; color: var(--text-secondary); font-size: .9rem; }
.contact-line a { color: var(--text-primary); }

.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: rgba(5, 13, 21, .72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col a { color: var(--text-secondary); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-top: 45px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-secondary); font-size: .82rem; }

.page-hero { padding: 170px 0 90px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(56, 199, 240, .12), transparent 32%); }
.page-hero h1 { max-width: 11ch; font-size: clamp(3.2rem, 7vw, 6.8rem); }
.page-hero .lede { max-width: 55ch; }
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.packages-section { padding: 100px 0; }
.category-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.category-head h2 { max-width: 13ch; font-size: clamp(2.2rem, 4.5vw, 4.4rem); }
.category-head p { max-width: 52ch; margin: 0; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-grid.two { grid-template-columns: repeat(2, 1fr); }
.package-card { display: flex; min-height: 100%; flex-direction: column; padding: 30px; border-radius: 26px; }
.package-card.featured { border-color: rgba(56, 199, 240, .5); background: linear-gradient(145deg, rgba(19, 66, 88, .95), rgba(9, 27, 41, .96)); }
.package-card .price { margin: 24px 0 4px; color: var(--text-primary); font-family: "Sora", sans-serif; font-size: 2rem; letter-spacing: -.05em; }
.package-card .price small { color: var(--text-secondary); font: 500 .85rem/1.3 "DM Sans", sans-serif; letter-spacing: 0; }
.package-card .was { color: var(--text-secondary); font-size: .82rem; text-decoration: line-through; }
.package-card p { font-size: .94rem; }
.package-card .check-list { margin-top: 16px; }
.package-card .card-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; padding-top: 20px; }
.fee-note { margin-top: 14px; color: #c6d8e4; font-size: .8rem; }
.custom-card { justify-content: space-between; min-height: 290px; }
.notice { margin-top: 28px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--text-secondary); background: rgba(10, 29, 43, .55); }
.anchor-nav { position: sticky; top: 78px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(7, 17, 28, .88); backdrop-filter: blur(16px); }
.anchor-nav .container { display: flex; gap: 24px; overflow-x: auto; padding-block: 15px; scrollbar-width: none; }
.anchor-nav .container::-webkit-scrollbar { display: none; }
.anchor-nav a { flex: 0 0 auto; color: var(--text-secondary); font-size: .85rem; }
.anchor-nav a:hover { color: var(--text-primary); }

/* Business capital page */
.capital-hero { position: relative; overflow: hidden; min-height: 780px; padding: 170px 0 110px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 28%, rgba(56, 199, 240, .18), transparent 31%), linear-gradient(145deg, #07111c 20%, #0b2232 70%, #07111c); }
.capital-hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(90deg, transparent, #000 62%, transparent); }
.capital-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.capital-hero-copy h1 { max-width: 9ch; font-size: clamp(3.8rem, 7.7vw, 7.4rem); }
.capital-hero-copy .lede { max-width: 48ch; }
.capital-hero-copy .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.capital-note { max-width: 62ch; margin-top: 22px; font-size: .82rem; }
.capital-visual { position: relative; min-height: 520px; }
.capital-orbit { position: absolute; inset: 6% 0 0 8%; width: 92%; aspect-ratio: 1; border: 1px solid rgba(56, 199, 240, .32); border-radius: 50%; box-shadow: inset 0 0 0 65px rgba(56, 199, 240, .025), inset 0 0 0 130px rgba(56, 199, 240, .025); animation: capitalPulse 5s ease-in-out infinite; }
.capital-orbit::before, .capital-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.capital-orbit::before { inset: 27%; border: 1px solid rgba(56, 199, 240, .42); }
.capital-orbit::after { top: 8%; left: 48%; width: 10px; height: 10px; background: var(--accent); box-shadow: 0 0 28px var(--accent); }
@keyframes capitalPulse { 50% { transform: scale(1.025) rotate(2deg); opacity: .8; } }
.capital-figure { position: absolute; top: 35%; left: 19%; width: 62%; padding: 38px; border: 1px solid rgba(56, 199, 240, .46); border-radius: 30px; background: linear-gradient(145deg, rgba(20, 67, 89, .96), rgba(7, 22, 34, .96)); box-shadow: 0 38px 90px rgba(0,0,0,.42); transform: rotate(-4deg); }
.capital-figure span { display: block; margin-bottom: 18px; color: var(--accent-hover); font: 500 .7rem/1 "IBM Plex Mono", monospace; letter-spacing: .18em; }
.capital-figure strong { display: block; max-width: 8ch; font-family: "Sora", sans-serif; font-size: clamp(2rem, 3.4vw, 3.7rem); line-height: 1.03; letter-spacing: -.05em; }
.capital-stat { position: absolute; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; min-width: 190px; padding: 15px 18px; border: 1px solid var(--line-strong); border-radius: 16px; color: var(--text-primary); background: rgba(7, 17, 28, .86); box-shadow: var(--shadow); backdrop-filter: blur(12px); font-size: .84rem; }
.capital-stat small { color: var(--accent); font: 500 .67rem/1 "IBM Plex Mono", monospace; }
.stat-one { top: 7%; right: 2%; }.stat-two { right: -2%; bottom: 19%; }.stat-three { bottom: 4%; left: 2%; }
.capital-intro { background: rgba(6, 17, 27, .55); }
.capital-options { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(5, 15, 24, .8), rgba(10, 30, 44, .72)); }
.capital-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.capital-card { display: flex; min-height: 390px; flex-direction: column; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(18, 40, 58, .9), rgba(9, 24, 37, .9)); box-shadow: var(--shadow); transition: transform .35s var(--ease), border-color .35s var(--ease); }
.capital-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.capital-card.featured { border-color: rgba(56, 199, 240, .5); background: radial-gradient(circle at 90% 10%, rgba(56, 199, 240, .19), transparent 35%), linear-gradient(145deg, rgba(19, 66, 88, .95), rgba(9, 27, 41, .96)); }
.capital-card h3 { margin-top: 25px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.capital-card h3, .capital-card strong { color: #ffffff; }
.capital-card > p { min-height: 112px; color: #e4f0f6; }
.capital-card .check-list { margin-top: auto; margin-bottom: 0; }
.capital-terms { display: grid; gap: 10px; margin: auto 0 24px; padding-top: 20px; border-top: 1px solid rgba(220, 240, 249, .28); color: #dcecf4; font-size: .84rem; }
.capital-terms strong { color: var(--text-primary); font-family: "Sora", sans-serif; font-size: 1.08rem; }
.capital-terms span { position: relative; padding-left: 18px; }
.capital-terms span::before { content: ""; position: absolute; top: .45em; left: 1px; width: 7px; height: 7px; border: 1px solid var(--accent); border-radius: 50%; }
.capital-range-note { max-width: 95ch; margin: 24px auto 0; color: #7892a2; font-size: .76rem; text-align: center; }
.business-credit-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(6, 20, 31, .84), rgba(10, 32, 46, .72)); }
.business-credit-shell { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 8vw, 100px); padding: clamp(38px, 6vw, 78px); border: 1px solid rgba(56, 199, 240, .34); border-radius: 38px; background: radial-gradient(circle at 12% 15%, rgba(56, 199, 240, .17), transparent 34%), #081b29; box-shadow: var(--shadow); }
.business-credit-shell h2 { max-width: 11ch; }
.credit-benefits { display: grid; gap: 12px; }
.credit-benefits > div { display: grid; grid-template-columns: 42px 1fr; gap: 7px 16px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(7, 17, 28, .52); }
.credit-benefits span { grid-row: 1 / 3; color: var(--accent); font: 500 .7rem/1.8 "IBM Plex Mono", monospace; }
.credit-benefits strong { font-family: "Sora", sans-serif; }
.credit-benefits strong { color: #ffffff; }
.credit-benefits p { margin: 0; color: #dcecf4; font-size: .88rem; }
.capital-use-section { overflow: hidden; }
.capital-use-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: clamp(48px, 8vw, 100px); }
.capital-use-grid > div:first-child { position: sticky; top: 130px; }
.use-list { display: grid; border-top: 1px solid var(--line); }
.use-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 8px 20px; padding: 28px 4px; border-bottom: 1px solid var(--line); }
.use-list span { grid-row: 1 / 3; color: var(--accent); font: 500 .7rem/1.8 "IBM Plex Mono", monospace; }
.use-list strong { color: #ffffff; font-family: "Sora", sans-serif; font-size: 1.25rem; }
.use-list p { margin: 0; color: #dcecf4; }
.readiness-section { border-block: 1px solid var(--line); background: rgba(5, 15, 24, .65); }
.readiness-shell { padding: clamp(35px, 6vw, 70px); border: 1px solid rgba(56, 199, 240, .32); border-radius: 34px; background: radial-gradient(circle at 90% 15%, rgba(56, 199, 240, .14), transparent 35%), #091b29; }
.readiness-shell h2 { max-width: 12ch; }
.readiness-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 42px; }
.readiness-grid div { display: grid; gap: 8px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7, 17, 28, .48); }
.readiness-grid strong { color: #ffffff; font-family: "Sora", sans-serif; font-size: .95rem; }
.readiness-grid span { color: #dcecf4; font-size: .82rem; }
.capital-stat span, .capital-figure strong { color: #ffffff; }
.business-credit-shell > div > p, .readiness-shell > div > p, .capital-cta > p { color: #dcecf4; }
.capital-steps .step h3 { color: #ffffff; }
.capital-steps .step p { color: #dcecf4; }
.capital-cta h2 { max-width: 12ch; }
.capital-disclosure { max-width: 100ch; margin: 24px auto 0; color: #7892a2; font-size: .74rem; line-height: 1.6; text-align: center; }
.nav-links a[aria-current="page"] { color: var(--text-primary); }

body.paused *, body.paused *::before, body.paused *::after { animation-play-state: paused !important; }

@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 72px; right: 20px; width: min(330px, calc(100vw - 40px)); padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(7, 17, 28, .96); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .menu-btn { display: inline-grid; place-items: center; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .statement-card { grid-column: 1 / -1; }
  .metric-card { min-height: 260px; }
  .flagship-layout, .faq-layout { grid-template-columns: 1fr; }
  .flagship-copy { position: static; }
  .tool-shell { grid-template-columns: 1fr; }
  .tool-options { grid-template-columns: repeat(2, 1fr); }
  .platform-frame { grid-template-columns: 1fr; }
  .platform-image { min-height: 400px; }
  .platform-image::after { background: linear-gradient(180deg, transparent 55%, #07131f 100%); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .capital-hero-grid, .capital-use-grid { grid-template-columns: 1fr; }
  .capital-visual { width: min(620px, 100%); margin-inline: auto; }
  .capital-card-grid { grid-template-columns: repeat(2, 1fr); }
  .capital-use-grid > div:first-child { position: static; }
  .readiness-grid { grid-template-columns: repeat(2, 1fr); }
  .business-credit-shell { grid-template-columns: 1fr; }
}

@media (max-width: 720px), (orientation: portrait) and (max-width: 1024px), (orientation: portrait) and (pointer: coarse) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }
  .brand { font-size: .7rem; }
  .brand-mark { width: 40px; }
  .hero { height: 100svh; min-height: 680px; }
  .hero-stage { position: relative; height: 100%; min-height: inherit; }
  .poster { background-image: url('hero-ending.jpg'); background-position: 60% center; }
  .hero-video, .ring, .hero-status, .scroll-cue, .hero-grid { display: none !important; }
  .hero-base-scrim { background: linear-gradient(180deg, rgba(4, 10, 17, .35), rgba(4, 10, 17, .88) 70%, #07111c 100%), linear-gradient(90deg, rgba(4, 10, 17, .55), transparent); }
  .band { display: none; }
  .band:first-of-type { display: block; top: auto; bottom: 5vh; width: 100%; padding: 30px 20px; opacity: 1 !important; transform: none; }
  .band:first-of-type::before { display: none; }
  .band:first-of-type .band-inner { opacity: 1 !important; transform: none !important; }
  .band h1 { max-width: 9ch; font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .band p { max-width: 34ch; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .problem-grid, .steps, .package-grid, .package-grid.two, .footer-grid { grid-template-columns: 1fr; }
  .statement-card { grid-column: auto; min-height: 340px; }
  .metric-card { min-height: 220px; }
  .offer-top, .care-note, .category-head, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .tool-options { grid-template-columns: 1fr; }
  .tool-result { min-height: 330px; }
  .platform-image { min-height: 330px; background-position: 62% center; }
  .mini-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 130px; }
  .anchor-nav { top: 70px; }
  .capital-hero { min-height: 0; padding: 130px 0 80px; }
  .capital-hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .capital-visual { min-height: 430px; }
  .capital-figure { top: 30%; left: 12%; width: 76%; padding: 28px; }
  .capital-stat { min-width: 0; padding: 12px 14px; font-size: .72rem; }
  .stat-one { right: 0; }.stat-two { right: 0; bottom: 18%; }.stat-three { left: 0; bottom: 2%; }
  .capital-card-grid, .readiness-grid { grid-template-columns: 1fr; }
  .capital-card { min-height: 0; }
  .capital-card > p { min-height: 0; }
  .capital-steps .step { min-height: 280px; }
}

@media (orientation: landscape) and (pointer: coarse) and (max-height: 560px) {
  .hero { height: 100svh; min-height: 520px; }
  .hero-stage { position: relative; height: 100%; }
  .hero-video, .ring, .hero-status, .scroll-cue { display: none !important; }
  .band { display: none; }
  .band:first-of-type { display: block; opacity: 1 !important; }
}

@media (max-height: 560px) { .scroll-cue, .hero-status { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .hero { height: 100svh; min-height: 680px; }
  .hero-stage { position: relative; height: 100%; }
  .hero-video, .ring, .hero-status, .scroll-cue { display: none !important; }
  .band { display: none; }
  .band:first-of-type { display: block; top: auto; bottom: 5vh; width: 100%; opacity: 1 !important; transform: none; }
  .band:first-of-type .band-inner, .reveal { opacity: 1 !important; transform: none !important; }
  .step-line { transform: scaleX(1) !important; }
}

@media (pointer: coarse) { .btn, .tool-option, summary { min-height: 48px; } }

/* Force accessible contrast on the Business Capital page, independent of the legacy site theme. */
.capital-hero h1,
.capital-hero h2,
.capital-hero h3,
.capital-hero ~ .section h1,
.capital-hero ~ .section h2,
.capital-hero ~ .section h3,
.capital-hero ~ .section strong,
.capital-hero ~ .section summary { color: #ffffff !important; }
.capital-hero .lede,
.capital-hero .capital-note,
.capital-hero ~ .section p,
.capital-hero ~ .section .lede,
.capital-hero ~ .section .capital-terms,
.capital-hero ~ .section .readiness-grid span { color: #e3f0f6 !important; }
.capital-hero .eyebrow,
.capital-hero ~ .section .eyebrow,
.capital-hero ~ .section .tag,
.capital-hero ~ .section .capital-terms span::before { color: #65d9ff !important; }
.capital-hero .capital-figure strong,
.capital-hero .capital-stat span { color: #ffffff !important; }

/* Light, premium brand refresh */
:root {
  --canvas: #ffffff;
  --canvas-2: #f4f9ff;
  --panel: #ffffff;
  --panel-raised: #ffffff;
  --accent: #1677e8;
  --accent-hover: #0b5fca;
  --accent-muted: rgba(22, 119, 232, .10);
  --line: #dce8f5;
  --line-strong: #b9d1ea;
  --text-primary: #10243e;
  --text-secondary: #52677f;
  --shadow: 0 20px 55px rgba(31, 77, 124, .10);
}

html, body { background: #fff; }
body { color: var(--text-primary); }
body::before { background: linear-gradient(180deg, #fff, #f7fbff); animation: none; }
body::after { display: none; }
.eyebrow { color: var(--accent); }
.brand { color: #10243e; letter-spacing: 0; text-transform: none; }
.brand-wordmark { display: grid; gap: 1px; padding-left: 13px; border-left: 4px solid var(--accent); font-family: "Sora", sans-serif; font-size: .86rem; line-height: 1.05; letter-spacing: -.02em; }
.brand-wordmark strong { color: #10243e; font-size: 1.08em; }
.brand-wordmark span { color: var(--accent); font-weight: 600; }
.site-header, .site-header.scrolled { border-color: var(--line); background: rgba(255, 255, 255, .95); box-shadow: 0 5px 24px rgba(25, 73, 119, .06); backdrop-filter: blur(18px); }
.nav-links > a:not(.btn) { color: #40556e; }
.nav-links > a:not(.btn):hover { color: var(--accent); }
.menu-btn { color: #10243e; background: #fff; border-color: var(--line-strong); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 12px 30px rgba(22, 119, 232, .20); }
.btn-primary:hover { color: #fff; background: var(--accent-hover); }
.btn-secondary { color: var(--accent); background: #fff; border-color: var(--line-strong); }
.btn-secondary:hover { color: var(--accent-hover); border-color: var(--accent); }

.hero { background: #061321; }
.hero .btn-secondary { color: #fff; background: rgba(7, 24, 40, .62); border-color: rgba(255, 255, 255, .5); }
.hero .btn-secondary:hover { border-color: #fff; }
.hero .band h1, .hero .band h2 { color: #fff; max-width: 12ch; }
.hero .band p { color: #e4edf5; }
.hero .band .eyebrow { color: #75c8ff; }
.hero-grid { opacity: .035; }

.section { padding-block: clamp(72px, 9vw, 120px); }
.flagship { background: linear-gradient(180deg, #f7fbff, #eef7ff); }
.statement-card, .metric-card, .offer-card, .step, .service-card, .package-card {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.offer-card.recommended, .package-card.featured { border-color: #9cc9f5; background: linear-gradient(145deg, #fff, #eef7ff); }
.flagship-copy .price-line, .offer-price, .package-card .price { color: var(--text-primary); }
.tag { color: var(--accent); background: var(--accent-muted); border-color: #b9d9f8; }
.care-note, .notice { color: var(--text-secondary); background: #fff; border-color: var(--line); }
.step::before { margin-bottom: 52px; color: var(--accent); }
.platform-frame { border-color: var(--line); background: #fff; box-shadow: var(--shadow); }
.platform-image::after { background: linear-gradient(90deg, transparent 60%, #fff 100%); }
.mini { color: var(--text-secondary); background: #f7fbff; border-color: var(--line); }
.faq-list, details { border-color: var(--line); }
summary { color: var(--text-primary); }
.cta-shell { border-color: #6eaff0; background: linear-gradient(135deg, #0b62c6, #1688ed); box-shadow: 0 22px 60px rgba(17, 105, 198, .20); }
.cta-shell h2, .cta-shell .eyebrow, .cta-shell p, .cta-shell .contact-line, .cta-shell .contact-line a { color: #fff; }
.cta-shell .btn-primary { color: #0b5fca; background: #fff; }
.cta-shell .btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.65); }
.site-footer { color: var(--text-primary); background: #f3f8fd; border-color: var(--line); }
.footer-col a, .footer-bottom { color: var(--text-secondary); }
.footer-col a:hover { color: var(--accent); }
.page-hero { background: linear-gradient(135deg, #f8fbff, #eaf5ff); border-color: var(--line); }
.anchor-nav { background: rgba(255,255,255,.94); border-color: var(--line); }
.anchor-nav a { color: var(--text-secondary); }
.anchor-nav a:hover { color: var(--accent); }
.packages-section:nth-of-type(even) { background: #f7fbff; }
.fee-note { color: var(--text-secondary); }

@media (max-width: 980px) {
  .nav-links { color: var(--text-primary); background: #fff; border-color: var(--line); }
  .hero { height: 100svh; min-height: 720px; }
  .hero-stage { position: relative; height: 100%; min-height: inherit; }
  .hero-video, .ring, .hero-status, .scroll-cue, .hero-grid { display: none !important; }
  .hero-base-scrim { background: linear-gradient(180deg, rgba(3, 12, 22, .12) 15%, rgba(3, 12, 22, .82) 66%, #061321 100%); }
  .band { display: none; }
  .band:first-of-type { display: block; top: auto; bottom: 3vh; width: 100%; padding: 34px max(20px, calc((100vw - 760px)/2)); opacity: 1 !important; transform: none; }
  .band:first-of-type::before { display: none; }
  .band:first-of-type .band-inner { opacity: 1 !important; transform: none !important; }
  .band h1 { max-width: 12ch; font-size: clamp(2.8rem, 8vw, 4.4rem); }
  .band p { max-width: 34ch; font-size: 1.05rem; }
  .platform-image::after { background: linear-gradient(180deg, transparent 65%, #fff 100%); }
}

@media (max-width: 560px) {
  .hero { min-height: 680px; }
  .band:first-of-type { bottom: 2vh; padding-inline: 20px; }
  .band h1 { font-size: clamp(2.35rem, 11.5vw, 3.35rem); }
  .band .actions, .offer-actions, .cta-actions { display: grid; width: 100%; }
  .band .btn, .offer-actions .btn, .cta-actions .btn { width: 100%; }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .offer-card { padding: 25px; }
}

/* Stable hero: one message, no scroll-driven text transitions */
.hero { height: auto; min-height: 720px; }
.hero-stage { position: relative; top: auto; height: min(860px, 100svh); min-height: 720px; }
.hero-video { opacity: 1; }
.hero-content { display: flex; height: 100%; align-items: center; padding-top: 78px; }
.hero-static-copy { position: relative; z-index: 5; width: min(620px, 58vw); text-shadow: var(--tshadow); }
.hero-static-copy h1 { max-width: none; color: #fff; font-size: clamp(3.7rem, 6.5vw, 6.4rem); line-height: .96; }
.hero-static-copy > p:not(.eyebrow) { max-width: 34ch; margin: 24px 0 0; color: #e4edf5; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-static-copy .eyebrow { color: #75c8ff; }
.hero-static-copy .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; text-shadow: none; }

@media (max-width: 980px) {
  .hero { min-height: 680px; }
  .hero-stage { height: min(780px, 100svh); min-height: 680px; }
  .hero-video { display: block !important; object-position: 62% center; }
  .hero-content { align-items: flex-end; padding: 110px 0 58px; }
  .hero-static-copy { width: min(620px, 82vw); }
  .hero-static-copy h1 { font-size: clamp(3.1rem, 9vw, 5rem); }
}

@media (max-width: 560px) {
  .hero-stage { height: 720px; }
  .hero-content { padding: 100px 0 38px; }
  .hero-static-copy { width: 100%; }
  .hero-static-copy h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-static-copy > p:not(.eyebrow) { max-width: 28ch; }
  .hero-static-copy .actions { display: grid; width: 100%; }
  .hero-static-copy .btn { width: 100%; }
}

/* Branded product and checkout bridge pages */
.offer-page main { padding-top: 78px; }
.offer-hero { padding: clamp(70px, 9vw, 120px) 0; background: radial-gradient(circle at 90% 5%, #dcebff, transparent 35%), linear-gradient(180deg, #fff, #f6faff); }
.offer-back { display: inline-block; margin-bottom: 42px; color: var(--accent); font-weight: 600; }
.offer-layout { display: grid; grid-template-columns: 1.15fr .85fr; align-items: start; gap: clamp(38px, 7vw, 90px); }
.offer-details { padding-top: 24px; }
.offer-details h1, .offer-missing h1 { max-width: 12ch; font-size: clamp(3rem, 6.3vw, 6.2rem); }
.offer-lede { max-width: 55ch; margin: 28px 0 0; color: var(--text-secondary); font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.offer-benefits { max-width: 620px; margin-top: 36px; }
.offer-benefits li { color: var(--text-primary); font-size: 1.02rem; }
.checkout-card { position: sticky; top: 118px; padding: clamp(30px, 4vw, 46px); border: 1px solid #bfd8f1; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.checkout-label { margin: 0 0 14px; color: var(--accent); font: 500 .7rem/1.4 "IBM Plex Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.checkout-card h2 { max-width: 15ch; font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.checkout-price { margin-top: 34px; color: var(--text-primary); font-family: "Sora", sans-serif; font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; letter-spacing: -.06em; line-height: 1; }
.checkout-note { min-height: 26px; margin: 12px 0 28px; color: var(--text-secondary); font-size: .92rem; }
.checkout-button { width: 100%; min-height: 58px; }
.embedded-checkout { width: 100%; margin-top: 10px; overflow: hidden; border-radius: 14px; background: #fff; }
.embedded-checkout iframe { display: block; width: 100%; min-height: 720px; }
.secure-note { margin: 16px 0 25px; color: var(--text-secondary); font-size: .8rem; text-align: center; }
.checkout-card .text-link { display: block; text-align: center; }
.offer-assurance { padding: 38px 0; border-block: 1px solid var(--line); background: #fff; }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.assurance-grid div { display: grid; gap: 4px; }
.assurance-grid strong { color: var(--text-primary); font-family: "Sora", sans-serif; }
.assurance-grid span { color: var(--text-secondary); font-size: .9rem; }
.offer-missing { min-height: 500px; }
.offer-missing .btn { margin-top: 30px; }

@media (max-width: 820px) {
  .offer-layout { grid-template-columns: 1fr; }
  .checkout-card { position: static; }
  .assurance-grid { grid-template-columns: 1fr; }
  .offer-details h1, .offer-missing h1 { max-width: 14ch; font-size: clamp(2.7rem, 10vw, 4.6rem); }
}

/* Legal pages */
.legal-main { padding-top: 78px; }
.legal-hero { padding: clamp(64px, 8vw, 100px) 0 46px; background: linear-gradient(135deg, #f8fbff, #eaf5ff); border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-top: 12px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.legal-effective { margin-top: 18px; color: var(--text-secondary); }
.legal-content { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: clamp(54px, 7vw, 90px) 0; }
.legal-content > p { font-size: 1.05rem; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.5vw, 1.8rem); letter-spacing: -.025em; }
.legal-content p { color: var(--text-secondary); }
