:root {
  --orange: #F58220;
  --orange-deep: #D85D08;
  --blue: #174A73;
  --blue-deep: #0D2F4B;
  --blue-soft: #EAF3F8;
  --ink: #20252B;
  --muted: #5A6872;
  --canvas: #F4F7F9;
  --line: #D8E2E8;
  --white: #FFF;
  --shadow: 0 22px 60px rgba(13, 47, 75, .11);
  --shadow-soft: 0 12px 30px rgba(13, 47, 75, .08);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: "Segoe UI", "Aptos", Arial, sans-serif; line-height: 1.55; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, dialog:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
img { display: block; max-width: 100%; }
h1, h2, p { margin-top: 0; }
h1, h2, h3, strong { letter-spacing: -.025em; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: -60px; left: 16px; padding: 11px 16px; color: var(--white); background: var(--blue-deep); border-radius: 0 0 10px 10px; transition: top .2s ease; }
.skip-link:focus { top: 0; }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255, 255, 255, .92); border-bottom: 1px solid rgba(216, 226, 232, .8); backdrop-filter: blur(18px); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 15px; min-width: 0; }
.brand img { width: 92px; height: auto; }
.brand-divider { width: 1px; height: 35px; background: var(--line); }
.brand-copy { display: grid; gap: 1px; color: var(--blue-deep); }
.brand-copy strong { font-size: 14px; font-weight: 750; }
.brand-copy small { color: var(--muted); font-size: 11px; letter-spacing: .01em; }
.main-nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 13px; font-weight: 650; }
.main-nav a { position: relative; transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }
.main-nav a:not(.nav-external)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.main-nav a:not(.nav-external):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-external { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); }
.nav-external span, .footer-link span { color: var(--orange); font-size: 16px; }
.menu-toggle { display: none; padding: 8px 12px; color: var(--blue); background: transparent; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--blue-deep); }
.hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 74% 35%, rgba(245, 130, 32, .25), transparent 22%), radial-gradient(circle at 35% 65%, rgba(52, 122, 165, .18), transparent 38%), linear-gradient(135deg, var(--blue-deep) 0%, #123E5F 58%, #174A73 100%); }
.hero::after { position: absolute; right: -7%; bottom: -33%; width: 54vw; height: 54vw; max-width: 690px; max-height: 690px; content: ""; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255, 255, 255, .02), 0 0 0 88px rgba(255, 255, 255, .02); }
.hero-orb { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; }
.hero-orb-one { top: 20%; right: 51%; width: 9px; height: 9px; background: var(--orange); box-shadow: 0 0 0 9px rgba(245, 130, 32, .15); }
.hero-orb-two { right: 7%; bottom: 18%; width: 13px; height: 13px; background: rgba(255, 255, 255, .45); box-shadow: 0 0 0 13px rgba(255, 255, 255, .08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(52px, 8vw, 120px); min-height: 620px; padding-top: 72px; padding-bottom: 86px; }
.hero-copy { max-width: 630px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: rgba(255, 255, 255, .7); }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(245, 130, 32, .16); }
.hero h1 { max-width: 610px; margin-bottom: 24px; font-size: clamp(50px, 6.3vw, 84px); font-weight: 800; line-height: .98; }
h1 em, .route-intro h2 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 530px; margin-bottom: 34px; color: rgba(255, 255, 255, .75); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 49px; padding: 0 21px; border-radius: 10px; font-size: 13px; font-weight: 800; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 10px 22px rgba(245, 130, 32, .22); }
.button-primary:hover { background: #FF903A; box-shadow: 0 14px 28px rgba(245, 130, 32, .3); }
.button-quiet { min-height: auto; padding-inline: 0; color: rgba(255, 255, 255, .8); background: transparent; }
.button-quiet:hover { color: var(--white); }
.hero-microcopy { display: flex; align-items: center; gap: 8px; margin-top: 34px; color: rgba(255, 255, 255, .48); font-size: 11px; }
.status-dot { width: 6px; height: 6px; background: #74D0A5; border-radius: 50%; box-shadow: 0 0 0 4px rgba(116, 208, 165, .12); }
.hero-panel { width: min(100%, 480px); justify-self: end; padding: 16px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .19); border-radius: 20px; box-shadow: 0 25px 70px rgba(0, 0, 0, .2); backdrop-filter: blur(14px); transform: rotate(1.2deg); }
.hero-panel-top, .hero-panel-footer { display: flex; justify-content: space-between; gap: 12px; color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero-panel-top { padding: 3px 6px 13px; }
.hero-panel-mark { color: var(--orange); font-size: 11px; letter-spacing: .04em; }
.hero-panel-image { position: relative; overflow: hidden; aspect-ratio: 1.16 / 1; border-radius: 14px; background: var(--blue); }
.hero-panel-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(13, 47, 75, .02) 38%, rgba(13, 47, 75, .66) 100%); }
.hero-panel-image img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.floating-label { position: absolute; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: var(--blue-deep); background: rgba(255, 255, 255, .91); border-radius: 8px; box-shadow: 0 6px 18px rgba(0, 0, 0, .16); font-size: 10px; font-weight: 800; }
.floating-label-top { top: 16px; left: 16px; }
.floating-label-bottom { right: 16px; bottom: 16px; color: var(--white); background: rgba(13, 47, 75, .86); }
.floating-label-bottom strong { color: var(--orange); font-size: 16px; }
.hero-panel-footer { padding: 13px 6px 2px; font-size: 9px; }
.hero-bottom-line { position: absolute; z-index: 3; right: 0; bottom: 22px; left: 0; display: flex; gap: 8px; width: min(1180px, calc(100% - 48px)); margin: auto; }
.hero-bottom-line span { width: 33px; height: 2px; background: rgba(255, 255, 255, .24); }
.hero-bottom-line span:first-child { width: 67px; background: var(--orange); }

.intro-strip { color: var(--blue-deep); background: var(--white); border-bottom: 1px solid var(--line); }
.intro-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; min-height: 104px; }
.intro-strip p { margin: 0; font-size: 15px; }
.intro-strip p strong { margin-right: 8px; font-weight: 800; }
.intro-stats { display: flex; align-items: center; gap: 37px; }
.intro-stats span { display: grid; gap: 1px; padding-left: 18px; border-left: 1px solid var(--line); }
.intro-stats strong { color: var(--orange); font-size: 24px; line-height: 1; }
.intro-stats small { color: var(--muted); font-size: 10px; }

.section { padding: 112px 0; }
.capsules-section { background: var(--canvas); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading h2, .support-copy h2 { max-width: 680px; margin-bottom: 0; color: var(--blue-deep); font-size: clamp(36px, 4.3vw, 59px); line-height: 1.02; }
.section-heading h2 span { color: var(--orange); }
.section-heading-note { max-width: 360px; margin-bottom: 5px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.capsule-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.search-box { display: flex; align-items: center; gap: 10px; width: min(320px, 100%); min-height: 45px; padding: 0 13px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 4px 10px rgba(13, 47, 75, .025); }
.search-box > span:first-child { color: var(--blue); font-size: 22px; line-height: 0; transform: translateY(-1px); }
.search-box input { width: 100%; min-width: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 12px; }
.search-box input::placeholder { color: #8D9AA2; }
.search-shortcut { padding: 2px 5px; color: #87939A; border: 1px solid var(--line); border-radius: 4px; font-size: 9px; white-space: nowrap; }
.filter-group { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-button { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 0 11px; color: var(--muted); background: transparent; border: 1px solid transparent; border-radius: 7px; font-size: 11px; font-weight: 700; transition: color .2s ease, background .2s ease, border .2s ease; }
.filter-button span { color: #91A0A9; font-size: 10px; }
.filter-button:hover { color: var(--blue); background: var(--white); border-color: var(--line); }
.filter-button.is-active { color: var(--blue-deep); background: var(--white); border-color: var(--line); box-shadow: 0 3px 10px rgba(13, 47, 75, .06); }
.filter-button.is-active span { color: var(--orange); }
.capsule-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.capsule-card { position: relative; display: flex; min-height: 408px; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid rgba(216, 226, 232, .8); border-radius: var(--radius); box-shadow: 0 5px 13px rgba(13, 47, 75, .025); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border .35s ease; }
.capsule-card--featured { grid-column: span 6; min-height: 490px; }
.capsule-card--small { grid-column: span 3; }
.capsule-card--medium { grid-column: span 4; }
.capsule-card:hover { border-color: rgba(245, 130, 32, .32); box-shadow: var(--shadow); transform: translateY(-8px); }
.card-media { position: relative; overflow: hidden; height: 175px; background: var(--blue-soft); }
.capsule-card--featured .card-media { height: 257px; }
.card-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(13, 47, 75, 0) 45%, rgba(13, 47, 75, .48) 100%); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.capsule-card:hover .card-media img { transform: scale(1.05); }
.card-code { position: absolute; z-index: 1; top: 15px; left: 16px; display: inline-flex; align-items: center; justify-content: center; width: 39px; height: 28px; color: var(--white); background: rgba(13, 47, 75, .8); border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(7px); }
.card-accent { position: absolute; z-index: 1; right: 16px; bottom: 15px; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(245, 130, 32, .18); }
.card-content { display: flex; flex: 1; flex-direction: column; padding: 22px 22px 20px; }
.card-kicker { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card-kicker .recent-badge { display: none; color: var(--orange-deep); letter-spacing: .02em; }
.capsule-card.is-recent .recent-badge { display: inline; }
.card-title { margin-bottom: 10px; color: var(--blue-deep); font-size: 22px; line-height: 1.12; }
.capsule-card--small .card-title { font-size: 18px; }
.card-description { display: -webkit-box; overflow: hidden; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.card-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }
.card-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.card-meta strong { color: var(--blue-deep); font-weight: 800; }
.card-meta span { width: 3px; height: 3px; background: #AEBAC1; border-radius: 50%; }
.card-button { display: inline-flex; align-items: center; gap: 7px; padding: 0; color: var(--blue); background: transparent; border: 0; font-size: 12px; font-weight: 800; transition: color .2s ease, gap .2s ease; }
.card-button:hover { gap: 11px; color: var(--orange-deep); }
.card-button span { color: var(--orange); font-size: 16px; }
.empty-state { margin: 34px 0 0; padding: 18px; color: var(--muted); background: var(--white); border: 1px dashed var(--line); border-radius: 12px; text-align: center; }
.results-label { min-height: 20px; margin: 18px 0 0; color: var(--muted); font-size: 11px; }

.route-section { padding-top: 0; background: var(--canvas); }
.route-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; overflow: hidden; padding: 70px 76px; color: var(--white); background: linear-gradient(125deg, var(--blue-deep), var(--blue) 86%); border-radius: 26px; box-shadow: var(--shadow); }
.route-card::after { position: absolute; right: -90px; bottom: -150px; width: 450px; height: 450px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,.03), 0 0 0 72px rgba(255,255,255,.02); }
.route-intro, .route-steps { position: relative; z-index: 1; }
.route-intro h2 { margin-bottom: 19px; font-size: clamp(37px, 4vw, 55px); line-height: 1.01; }
.route-intro > p:not(.eyebrow) { max-width: 390px; margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }
.button-small { min-height: 43px; padding-inline: 17px; font-size: 12px; }
.route-steps { display: flex; flex-direction: column; justify-content: center; }
.route-step { display: grid; grid-template-columns: 57px 1fr; gap: 18px; align-items: start; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: var(--orange); border: 1px solid rgba(245, 130, 32, .64); border-radius: 50%; font-size: 12px; font-weight: 800; }
.route-step strong { display: block; margin: 4px 0 4px; color: var(--white); font-size: 19px; }
.route-step p { max-width: 340px; margin: 0; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.55; }
.route-connector { width: 1px; height: 25px; margin: 7px 0 7px 26px; background: linear-gradient(var(--orange), rgba(245,130,32,.1)); }

.support-section { background: var(--white); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.support-copy h2 { margin-bottom: 22px; }
.support-copy > p:last-child { max-width: 460px; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.support-list { display: grid; gap: 0; }
.support-item { display: grid; grid-template-columns: 44px 1fr; gap: 17px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.support-item:first-child { padding-top: 0; }
.support-item:last-child { padding-bottom: 0; border-bottom: 0; }
.support-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--orange); background: var(--blue-soft); border-radius: 10px; font-size: 10px; font-weight: 850; }
.support-item strong { display: block; margin-bottom: 3px; color: var(--blue-deep); font-size: 16px; }
.support-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.site-footer { color: rgba(255, 255, 255, .7); background: var(--blue-deep); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 150px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 83px; filter: brightness(0) invert(1); }
.footer-brand > span { width: 1px; height: 35px; background: rgba(255, 255, 255, .2); }
.footer-brand p { margin: 0; color: var(--white); font-size: 12px; font-weight: 700; line-height: 1.45; }
.footer-note { margin: 0; font-size: 11px; line-height: 1.7; text-align: center; }
.footer-note small { color: rgba(255,255,255,.43); font-size: 10px; }
.license-link { display: inline-block; margin-top: 3px; color: rgba(255,255,255,.78); text-decoration: underline; text-decoration-color: rgba(245,130,32,.75); text-underline-offset: 3px; transition: color .2s ease, text-decoration-color .2s ease; }
.license-link:hover { color: var(--white); text-decoration-color: var(--orange); }
.footer-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 12px; font-weight: 750; }

.launch-note { display: flex; align-items: center; gap: 8px; margin: -12px 0 22px; color: var(--muted); font-size: 11px; }
.launch-note span { color: var(--orange); font-size: 16px; }
.popup-toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; max-width: min(430px, calc(100% - 48px)); padding: 13px 17px; color: var(--white); background: rgba(13, 47, 75, .96); border-left: 3px solid var(--orange); border-radius: 10px; box-shadow: 0 16px 40px rgba(13, 47, 75, .22); font-size: 12px; font-weight: 650; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.popup-toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }
.noscript-message { position: fixed; z-index: 99; inset: 20px; display: grid; place-items: center; padding: 30px; color: var(--blue-deep); background: var(--white); border: 3px solid var(--orange); border-radius: 16px; font-weight: 700; text-align: center; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 38px; min-height: 570px; }
  .hero h1 { font-size: clamp(48px, 8vw, 70px); }
  .hero-lead { font-size: 16px; }
  .capsule-card--featured { grid-column: span 7; }
  .capsule-card--small { grid-column: span 5; }
  .capsule-card--medium { grid-column: span 6; }
  .route-card { gap: 45px; padding: 55px 48px; }
  .support-grid { gap: 55px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 34px, 560px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 78px; }
  .brand-divider, .brand-copy small { display: none; }
  .brand-copy strong { font-size: 12px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 17px; left: 17px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 9px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 0 0 13px 13px; box-shadow: var(--shadow-soft); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 11px; }
  .main-nav a:not(.nav-external)::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; padding-bottom: 85px; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(47px, 14vw, 72px); }
  .hero-lead { max-width: none; font-size: 15px; }
  .hero-panel { width: min(100%, 420px); justify-self: start; transform: none; }
  .intro-strip-inner { display: block; padding-top: 25px; padding-bottom: 25px; }
  .intro-strip p { font-size: 13px; }
  .intro-stats { justify-content: space-between; margin-top: 22px; }
  .intro-stats span { flex: 1; }
  .intro-stats span:first-child { padding-left: 0; border-left: 0; }
  .section { padding: 74px 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading h2, .support-copy h2 { font-size: 41px; }
  .section-heading-note { margin-top: 20px; }
  .capsule-tools { display: block; }
  .search-box { width: 100%; margin-bottom: 14px; }
  .filter-group { justify-content: flex-start; }
  .capsule-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
  .capsule-card, .capsule-card--featured, .capsule-card--small, .capsule-card--medium { grid-column: span 1; min-height: 0; }
  .card-media, .capsule-card--featured .card-media { height: 204px; }
  .capsule-card--featured .card-title { font-size: 23px; }
  .route-card { grid-template-columns: 1fr; gap: 47px; padding: 43px 26px; border-radius: 20px; }
  .route-intro h2 { font-size: 42px; }
  .support-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 20px; padding-top: 32px; padding-bottom: 32px; }
  .footer-note { text-align: left; }
  .launch-note { align-items: flex-start; margin-top: -4px; line-height: 1.5; }
  .popup-toast { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
}

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