:root {
    --navy-950: #071722;
    --navy-900: #0b1f2d;
    --navy-850: #102837;
    --navy-800: #163445;
    --blue-700: #1e617f;
    --blue-500: #4d8faa;
    --blue-300: #93b8ca;
    --blue-150: #d9e8ef;
    --page: #e9eff3;
    --page-2: #f4f7f9;
    --white: #ffffff;
    --ink: #10212e;
    --muted: #61717e;
    --line: rgba(29, 63, 82, .13);
    --glass-dark: rgba(23, 48, 64, .64);
    --glass-light: rgba(255, 255, 255, .72);
    --shadow: 0 24px 70px rgba(14, 39, 54, .13);
    --shadow-soft: 0 16px 42px rgba(12, 35, 49, .09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 17px;
    --radius-sm: 12px;
    --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { flex: 0 0 auto; }

.site-shell { min-height: 100vh; overflow: clip; }
.container { width: min(calc(100% - 56px), var(--container)); margin: 0 auto; }
.section-pad { padding: 92px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 23, 34, .87);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .13);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.header-inner {
    width: min(calc(100% - 48px), 1540px);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    overflow: hidden;
    background: #e7f1f5;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 8px 26px rgba(50, 126, 159, .24);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; color: #fff; line-height: 1.08; }
.brand-copy strong { font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.brand-copy small { margin-top: 6px; color: rgba(232, 243, 248, .65); font-size: 11px; font-weight: 500; letter-spacing: .02em; }

.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-dropdown { position: relative; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 13px;
    border: 0;
    border-radius: 11px;
    color: rgba(241, 248, 251, .82);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.active { background: rgba(255,255,255,.09); color: #fff; outline: none; }
.nav-caret { transform: translateY(-1px); opacity: .7; }
.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 278px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(11, 31, 45, .97);
    box-shadow: 0 24px 55px rgba(0,0,0,.24);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: .18s ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-panel::before { content: ""; position: absolute; height: 14px; left: 0; right: 0; top: -14px; }
.dropdown-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 12px;
    border-radius: 11px;
    color: rgba(238,247,251,.78);
    font-size: 13px;
    font-weight: 500;
    transition: .16s ease;
}
.dropdown-panel a:hover { background: rgba(255,255,255,.08); color: #fff; transform: translateX(2px); }
.member-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 11px;
    color: #fff;
    background: rgba(255,255,255,.065);
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}
.member-button:hover { background: #fff; color: var(--navy-900); transform: translateY(-1px); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { list-style: none; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-panel { position: absolute; right: 0; top: 56px; width: min(86vw, 360px); max-height: 78vh; overflow: auto; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(11,31,45,.98); box-shadow: 0 28px 60px rgba(0,0,0,.3); }
.mobile-panel > a, .mobile-group a { display: block; padding: 10px 12px; border-radius: 10px; color: rgba(241,248,251,.84); font-size: 14px; }
.mobile-panel a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-group { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-group span { display: block; padding: 6px 12px 4px; color: var(--blue-300); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mobile-group a { padding-left: 19px; }
.mobile-member { margin-top: 8px; background: rgba(255,255,255,.09); display: flex !important; align-items: center; gap: 8px; }

.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 75% 15%, rgba(73, 141, 170, .28), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(95, 146, 170, .18), transparent 34%),
        linear-gradient(135deg, #071722 0%, #0b2231 50%, #112e3f 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
}
.ambient { position: absolute; border-radius: 50%; filter: blur(12px); opacity: .6; pointer-events: none; }
.ambient-one { width: 280px; height: 280px; right: 14%; top: 18%; background: rgba(91,157,184,.16); }
.ambient-two { width: 220px; height: 220px; left: 9%; bottom: 9%; background: rgba(168,203,219,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); gap: 70px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(239,248,251,.86); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.hero h1 { margin: 25px 0 23px; max-width: 780px; font-size: clamp(58px, 6vw, 92px); line-height: .94; letter-spacing: -.055em; font-weight: 700; }
.hero h1 span { color: #aecbd9; }
.hero-copy > p { max-width: 690px; margin: 0; color: rgba(236,246,250,.72); font-size: 19px; line-height: 1.72; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 19px; border-radius: 12px; font-size: 14px; font-weight: 600; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-900); box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.btn-light:hover { box-shadow: 0 18px 34px rgba(0,0,0,.2); }
.btn-glass { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--navy-900); color: #fff; box-shadow: 0 12px 28px rgba(12,36,50,.15); }
.btn-dark:hover { background: var(--navy-800); }
.btn-outline-dark { border: 1px solid rgba(12,41,57,.18); background: rgba(255,255,255,.55); color: var(--navy-900); }
.hero-trust { display: flex; gap: 38px; margin-top: 42px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust div { display: grid; gap: 3px; }
.hero-trust strong { font-size: 13px; font-weight: 700; }
.hero-trust span { color: rgba(231,244,248,.55); font-size: 12px; }

.hero-visual { position: relative; min-height: 590px; }
.glass-panel { border: 1px solid rgba(255,255,255,.16); background: var(--glass-dark); box-shadow: 0 28px 80px rgba(0,0,0,.23); backdrop-filter: blur(24px) saturate(135%); -webkit-backdrop-filter: blur(24px) saturate(135%); }
.hero-logo-card { position: absolute; left: 4%; top: 4%; width: 335px; padding: 20px; border-radius: 24px; display: flex; align-items: center; gap: 17px; overflow: hidden; }
.hero-logo-card img { position: relative; z-index: 2; width: 88px; height: 88px; object-fit: cover; border-radius: 20px; box-shadow: 0 14px 32px rgba(0,0,0,.2); }
.hero-logo-card div { position: relative; z-index: 2; display: grid; gap: 5px; }
.hero-logo-card small { color: rgba(233,245,249,.55); font-size: 12px; }
.hero-logo-card strong { font-size: 24px; letter-spacing: -.03em; }
.hero-logo-halo { position: absolute; width: 180px; height: 180px; left: -50px; top: -55px; border-radius: 50%; background: rgba(101,164,190,.22); filter: blur(10px); }
.quick-card { position: absolute; right: 0; top: 110px; width: min(100%, 420px); border-radius: 26px; padding: 22px; }
.quick-head { display: flex; justify-content: space-between; align-items: baseline; padding: 2px 2px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.quick-head span { font-size: 16px; font-weight: 700; }
.quick-head small { color: rgba(231,244,248,.45); font-size: 11px; }
.quick-card > a { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 15px 3px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(244,249,251,.9); transition: .18s ease; }
.quick-card > a:last-child { border-bottom: 0; }
.quick-card > a:hover { color: #fff; transform: translateX(3px); }
.quick-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #d7e8ef; background: rgba(255,255,255,.09); }
.quick-card > a > span:nth-child(2) { display: grid; }
.quick-card strong { font-size: 13px; font-weight: 600; }
.quick-card small { margin-top: 2px; color: rgba(231,244,248,.5); font-size: 11px; }
.next-chip { position: absolute; left: 14%; bottom: 37px; max-width: 340px; padding: 14px 17px; border-radius: 18px; display: flex; gap: 12px; align-items: center; }
.chip-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.09); }
.next-chip > span:last-child { display: grid; }
.next-chip small { color: rgba(231,244,248,.45); font-size: 10px; }
.next-chip strong { font-size: 13px; font-weight: 600; }
.next-chip em { margin-top: 1px; color: #b8d2de; font-size: 11px; font-style: normal; }
.target-orbit { position: absolute; border: 1px solid rgba(185,218,230,.13); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; right: -80px; top: 10px; }
.orbit-two { width: 390px; height: 390px; right: -14px; top: 75px; }
.orbit-three { width: 220px; height: 220px; right: 70px; top: 158px; background: radial-gradient(circle, rgba(151,193,211,.08) 0 17%, transparent 18%); }

.feature-wrap { position: relative; z-index: 4; margin-top: -63px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.glass-light { border: 1px solid rgba(255,255,255,.72); background: var(--glass-light); box-shadow: var(--shadow-soft); backdrop-filter: blur(20px) saturate(125%); -webkit-backdrop-filter: blur(20px) saturate(125%); }
.feature-card { min-height: 180px; padding: 26px; border-radius: 22px; display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; color: var(--navy-800); background: rgba(146,184,201,.2); border: 1px solid rgba(66,113,135,.09); }
.feature-card h3 { margin: 3px 0 7px; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.content-section { background: linear-gradient(180deg, var(--page) 0%, var(--page-2) 100%); }
.two-column { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr); gap: 24px; align-items: stretch; }
.schedule-card, .about-card { border-radius: 27px; padding: 30px; }
.section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 22px; }
.eyebrow { display: block; margin-bottom: 7px; color: var(--blue-700); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.eyebrow.light { color: #a9cada; }
.section-head h2, .about-card h2, .section-title-row h2, .cta-copy h2 { margin: 0; font-size: clamp(29px, 3vw, 42px); line-height: 1.08; letter-spacing: -.035em; font-weight: 700; }
.section-head p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-size: 13px; font-weight: 700; white-space: nowrap; }
.text-link:hover { color: var(--navy-900); }
.event-list { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 64px 1fr 32px; gap: 18px; align-items: center; min-height: 112px; padding: 14px 3px; border-bottom: 1px solid var(--line); }
.event-date { width: 58px; height: 65px; display: grid; place-content: center; text-align: center; border-radius: 15px; background: rgba(218,231,238,.58); border: 1px solid rgba(34,77,98,.06); }
.event-date strong { font-size: 22px; line-height: 1; font-weight: 700; letter-spacing: -.04em; }
.event-date span { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.event-main { min-width: 0; }
.category { display: inline-flex; padding: 4px 7px; border-radius: 7px; font-size: 9px; line-height: 1; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.category.training { color: #2d6883; background: #e0edf3; }
.category.competition { color: #72573d; background: #eee7dd; }
.category.official { color: #42665b; background: #e1ece8; }
.category.general { color: #5b6270; background: #e8eaee; }
.event-main h3 { margin: 6px 0 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 16px; font-weight: 600; letter-spacing: -.015em; }
.event-main p { margin: 0; color: var(--muted); font-size: 12px; }
.event-arrow { color: #8ea0ab; transition: .18s ease; }
.event-row:hover .event-arrow { color: var(--navy-900); transform: translateX(3px); }
.event-empty { min-height: 210px; display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--muted); }
.event-empty > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: #e3edf2; color: var(--blue-700); }
.event-empty strong { display: block; color: var(--ink); }
.event-empty p { max-width: 520px; margin: 4px 0 0; font-size: 13px; }

.about-card { display: flex; flex-direction: column; justify-content: center; }
.about-card > p { margin: 17px 0 23px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.about-points { display: grid; gap: 4px; margin-bottom: 27px; }
.about-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.about-points > div > span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: rgba(142,181,199,.17); color: var(--blue-700); }
.about-points div div { display: grid; }
.about-points strong { font-size: 13px; font-weight: 600; }
.about-points small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.about-card .btn { align-self: flex-start; }

.range-section { position: relative; color: #fff; background: linear-gradient(135deg, #0a1d2a, #102d3e); }
.range-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(109,167,190,.17), transparent 28%); pointer-events: none; }
.section-title-row { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.section-title-row p { max-width: 430px; margin: 0; color: rgba(235,246,250,.58); font-size: 14px; }
.range-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.range-card { position: relative; min-height: 330px; overflow: hidden; padding: 30px; border-radius: 26px; border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: 0 24px 60px rgba(0,0,0,.16); transition: .22s ease; }
.range-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .7; background: radial-gradient(circle at 78% 25%, rgba(130,185,208,.22), transparent 31%); }
.range-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); }
.range-hagen::after { background: radial-gradient(circle at 78% 25%, rgba(179,205,217,.16), transparent 31%); }
.range-top, .range-card > div { position: relative; z-index: 2; }
.range-top { display: flex; justify-content: space-between; }
.range-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); }
.range-tag { height: fit-content; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(235,246,250,.68); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.range-card small { color: #9bc1d2; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.range-card h3 { margin: 3px 0 8px; font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.range-card p { max-width: 420px; margin: 0 0 17px; color: rgba(235,246,250,.6); font-size: 13px; }
.range-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; }
.range-watermark { position: absolute; right: 20px; bottom: -44px; color: rgba(255,255,255,.035); font-size: 180px; line-height: 1; font-weight: 700; letter-spacing: -.08em; }

.cta-section { background: var(--page-2); }
.cta-card { position: relative; min-height: 250px; overflow: hidden; border-radius: 29px; padding: 42px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 35px; align-items: center; }
.cta-copy { position: relative; z-index: 2; max-width: 760px; }
.cta-copy p { margin: 14px 0 0; max-width: 690px; color: var(--muted); font-size: 14px; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 10px; }
.cta-target { position: absolute; width: 320px; height: 320px; right: 18%; top: -72px; border: 1px solid rgba(74,124,146,.09); border-radius: 50%; }
.cta-target span { position: absolute; inset: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(74,124,146,.08); border-radius: 50%; }
.cta-target span:nth-child(1) { width: 220px; height: 220px; }
.cta-target span:nth-child(2) { width: 120px; height: 120px; }
.cta-target span:nth-child(3) { width: 40px; height: 40px; background: rgba(82,139,164,.06); }

.site-footer { color: rgba(235,246,250,.73); background: #071722; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 56px; padding: 55px 0 42px; }
.footer-brand p { max-width: 280px; margin: 20px 0 0; color: rgba(235,246,250,.45); font-size: 13px; }
.site-footer h3 { margin: 0 0 14px; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.site-footer > .container div:not(.footer-brand) > a { display: block; width: fit-content; margin: 8px 0; color: rgba(235,246,250,.58); font-size: 12px; transition: .18s ease; }
.site-footer > .container div:not(.footer-brand) > a:hover { color: #fff; transform: translateX(2px); }
.footer-bottom { min-height: 65px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(235,246,250,.35); font-size: 11px; }

@media (max-width: 1260px) {
    .desktop-nav { display: none; }
    .mobile-menu { display: block; }
    .member-button { margin-left: auto; }
    .mobile-menu { margin-left: 0; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 32px; }
    .hero h1 { font-size: clamp(54px, 6.4vw, 78px); }
    .quick-card { width: 390px; }
}

@media (max-width: 1020px) {
    .section-pad { padding: 72px 0; }
    .hero { min-height: auto; padding-top: 88px; padding-bottom: 130px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 760px; }
    .hero-visual { min-height: 535px; }
    .quick-card { right: 5%; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .two-column { grid-template-columns: 1fr; }
    .about-card { min-height: 450px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .header-inner { width: calc(100% - 24px); min-height: 72px; gap: 10px; }
    .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
    .brand-copy strong { font-size: 15px; }
    .brand-copy small { display: none; }
    .member-button { padding: 0 12px; }
    .member-button span { display: none; }
    .hero { padding-top: 64px; padding-bottom: 112px; }
    .hero h1 { margin-top: 20px; font-size: clamp(48px, 14vw, 68px); }
    .hero-copy > p { font-size: 16px; }
    .hero-trust { gap: 24px; }
    .hero-visual { min-height: 580px; margin-top: 10px; }
    .hero-logo-card { left: 0; width: min(88%, 330px); }
    .quick-card { right: 0; top: 150px; width: 92%; }
    .next-chip { left: 0; bottom: 15px; }
    .orbit-one { width: 440px; height: 440px; right: -210px; }
    .orbit-two { width: 310px; height: 310px; right: -130px; }
    .orbit-three { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .section-head, .section-title-row { align-items: flex-start; flex-direction: column; }
    .schedule-card, .about-card { padding: 22px; border-radius: 22px; }
    .event-row { grid-template-columns: 56px 1fr 20px; gap: 12px; }
    .event-date { width: 52px; height: 59px; }
    .event-main h3 { white-space: normal; }
    .event-main p { line-height: 1.5; }
    .range-grid { grid-template-columns: 1fr; }
    .range-card { min-height: 300px; }
    .cta-card { padding: 30px 24px; grid-template-columns: 1fr; }
    .cta-actions { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
    .section-pad { padding: 58px 0; }
    .hero h1 { font-size: clamp(44px, 13.5vw, 58px); }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-visual { min-height: 610px; }
    .hero-logo-card img { width: 72px; height: 72px; }
    .hero-logo-card strong { font-size: 21px; }
    .quick-card { width: 100%; padding: 17px; }
    .next-chip { max-width: 100%; }
    .section-head .text-link { margin-top: -4px; }
    .range-watermark { font-size: 135px; }
    .footer-grid { grid-template-columns: 1fr; }
}

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