@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* =========================
   RESET / BASE
   ========================= */
:root {
    --color-page-bg: #07111f;
    --color-page-bg-soft: #10243d;
    --color-overlay: linear-gradient(180deg, rgba(5, 11, 20, 0.82), rgba(8, 18, 34, 0.9));
    --color-surface: rgba(8, 19, 35, 0.72);
    --color-surface-strong: rgba(7, 17, 31, 0.94);
    --color-surface-elevated: rgba(15, 30, 52, 0.82);
    --color-text: #f6fbff;
    --color-text-muted: rgba(228, 239, 248, 0.78);
    --color-text-soft: rgba(198, 215, 232, 0.64);
    --color-accent: #7fe0ff;
    --color-accent-strong: #39b7ff;
    --color-gold: #f2c572;
    --color-border: rgba(162, 207, 243, 0.12);
    --color-border-strong: rgba(162, 207, 243, 0.24);
    --color-button-start: #0f7ff7;
    --color-button-end: #2dc2ff;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.35);
    --page-background-image: none;
    --site-width: 1200px;
    --radius-lg: 26px;
    --radius-md: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-page-bg);
    background-image:
        radial-gradient(circle at top left, rgba(44, 133, 255, 0.14), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(127, 224, 255, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(5, 11, 20, 0.6), rgba(5, 11, 20, 0.72)),
        var(--page-background-image);
    background-size: auto, auto, auto, cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: 110px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 151, 255, 0.18), transparent 70%);
    filter: blur(8px);
}

body::after {
    right: -90px;
    bottom: 80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 197, 114, 0.12), transparent 72%);
    filter: blur(10px);
}

body.js-ready {
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: 14px;
    left: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(7, 17, 31, 0.96);
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
    z-index: 2000;
}

.skip-link:focus {
    transform: translateY(0);
}

/* =========================
   GLOBAL OVERLAY
   ========================= */
.overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: var(--color-overlay);
    display: flex;
    flex-direction: column;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    width: min(calc(100% - 32px), 1320px);
    margin: 18px auto 0;
    padding: 18px 26px;
    background: rgba(7, 17, 31, 0.74);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 14px;
    z-index: 1000;
}

.header-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    max-height: 62px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.24));
    transform-origin: center;
    animation: floatLogo 6.4s ease-in-out infinite;
}

.brand-wordmark {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.26rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: rgba(236, 246, 255, 0.94);
    white-space: nowrap;
    text-shadow: none;
}

.brand-wordmark-base,
.brand-wordmark-shine {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.brand-wordmark-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.brand-wordmark-base .brand-wordmark-text,
.brand-wordmark-base .brand-wordmark-mark {
    color: rgba(231, 239, 247, 0.96);
}

.brand-wordmark-text,
.brand-wordmark-mark {
    position: relative;
    display: inline-block;
}

.brand-wordmark-shine .brand-wordmark-text,
.brand-wordmark-shine .brand-wordmark-mark {
    position: relative;
    display: inline-block;
    background-image:
        linear-gradient(
            104deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 34%,
            rgba(109, 217, 255, 0.72) 40%,
            rgba(181, 239, 255, 0.96) 45%,
            rgba(255, 255, 255, 1) 48.4%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 1) 51.6%,
            rgba(181, 239, 255, 0.96) 55%,
            rgba(109, 217, 255, 0.72) 60%,
            rgba(255, 255, 255, 0) 66%,
            rgba(255, 255, 255, 0) 100%
        );
    background-size: 132% 100%;
    background-position: -165% 0;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: brandWordmarkSweep 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
    filter: drop-shadow(0 0 6px rgba(189, 242, 255, 0.65));
}

.brand-wordmark-mark {
    font-size: 0.62em;
    top: -0.45em;
    letter-spacing: 0;
}

@keyframes brandWordmarkSweep {
    0%,
    18% {
        background-position: -165% 0;
        opacity: 0;
    }

    24% {
        opacity: 1;
    }

    48% {
        background-position: 165% 0;
        opacity: 1;
    }

    58%,
    100% {
        background-position: 165% 0;
        opacity: 0;
    }
}

/* =========================
   NAVIGATION
   ========================= */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 11px 15px;
    min-height: 44px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.main-nav > ul > li > a:hover {
    background: rgba(127, 224, 255, 0.08);
    color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(127, 224, 255, 0.12);
}

.main-nav > ul > li.is-active > a {
    color: var(--color-accent);
    background: rgba(127, 224, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(127, 224, 255, 0.16);
}

.main-nav > ul > li > a:focus-visible,
.main-nav .submenu a:focus-visible,
.menu-toggle:focus-visible,
.submenu-toggle:focus-visible,
.section-button:focus-visible,
.footer-social-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.main-nav > ul > li.has-submenu > a::after {
    content: " ▾";
    font-size: 0.8em;
    line-height: 1;
}

/* =========================
   SUBMENU / DROPDOWN
   ========================= */
.main-nav li.has-submenu {
    position: relative;
}

.main-nav li.has-submenu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.main-nav .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: var(--color-surface-strong);
    border: 1px solid var(--color-border-strong);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    z-index: 999;
}

.main-nav .submenu li {
    display: block;
    width: 100%;
}

.main-nav .submenu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.main-nav .submenu a:hover {
    background: rgba(127, 224, 255, 0.08);
    color: var(--color-accent);
    padding-left: 20px;
}

.main-nav li.has-submenu:hover > .submenu,
.main-nav li.has-submenu:focus-within > .submenu {
    display: block;
}

/* =========================
   MOBILE MENU TOGGLE
   ========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.submenu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px;
}

.submenu-toggle span {
    pointer-events: none;
}

/* =========================
   HERO SECTIONS
   ========================= */
.hero,
.hero-small,
.discover-hero {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.hero::before,
.hero-small::before,
.discover-hero::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 50%;
    width: min(740px, 82vw);
    height: 320px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 168, 255, 0.16), rgba(60, 168, 255, 0.02) 55%, transparent 74%);
    filter: blur(10px);
    z-index: -1;
}

.hero {
    padding-top: 110px;
    padding-bottom: 80px;
}

.hero-small {
    padding-top: 84px;
    padding-bottom: 56px;
}

.discover-hero {
    padding-top: 90px;
    padding-bottom: 56px;
}

.hero-logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.34));
    animation: floatLogo 6.4s ease-in-out infinite;
}

.hero h1,
.hero-small h1,
.discover-hero h1 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: clamp(2.7rem, 6vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--color-text);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero-small h1,
.discover-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.hero p,
.hero-small p,
.discover-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.78;
    color: var(--color-text-muted);
}

.page-home .hero p {
    font-size: 1.16rem;
    max-width: 700px;
}

.hero-title-text {
    display: inline-block;
}

.hero-brand-wordmark {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    line-height: 0.92;
    white-space: nowrap;
    text-shadow: none;
}

.page-home .hero .hero-brand-wordmark .brand-wordmark-base,
.page-home .hero .hero-brand-wordmark .brand-wordmark-shine {
    gap: 3px;
}

.page-home .hero .hero-brand-wordmark .brand-wordmark-mark {
    font-size: 0.44em;
    top: -0.52em;
}

/* =========================
   MAIN CONTENT WRAPPER
   ========================= */
.main-content {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 20px 72px;
    flex: 1;
}

.content-shell {
    display: grid;
    grid-template-columns: 320px minmax(0, 1.45fr) 320px;
    gap: 26px;
    align-items: start;
}

.content-primary {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.widget-stack {
    display: grid;
    gap: 20px;
}

.utility-widget {
    position: relative;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(16, 33, 56, 0.84), rgba(7, 17, 31, 0.9)),
        radial-gradient(circle at top right, rgba(127, 224, 255, 0.14), transparent 30%);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.utility-widget::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.12), transparent 72%);
    pointer-events: none;
}

.utility-widget h2 {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.4rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.widget-copy {
    position: relative;
    z-index: 1;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 14px;
}

.radio-player {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.radio-player-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.radio-pulse {
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    min-width: 34px;
    height: 26px;
}

.radio-pulse span {
    width: 6px;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-button-end), var(--color-button-start));
    opacity: 0.35;
    transform-origin: bottom;
}

.radio-player[data-state="playing"] .radio-pulse span:nth-child(1) {
    animation: equalizer 0.95s ease-in-out infinite;
}

.radio-player[data-state="playing"] .radio-pulse span:nth-child(2) {
    animation: equalizer 0.8s ease-in-out infinite 0.1s;
}

.radio-player[data-state="playing"] .radio-pulse span:nth-child(3) {
    animation: equalizer 1.05s ease-in-out infinite 0.2s;
}

.radio-player-copy {
    display: grid;
    gap: 4px;
}

.radio-player-copy strong {
    color: var(--color-text);
    font-size: 0.98rem;
}

.radio-player-copy span {
    color: var(--color-text-soft);
    font-size: 0.84rem;
}

.radio-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    width: 100%;
}

.radio-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
    font-weight: 700;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.radio-icon-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.radio-player[data-state="loading"] .radio-icon-button,
.radio-player[data-state="error"] .radio-icon-button {
    opacity: 0.92;
}

.radio-toggle {
    background: transparent;
}

.radio-toggle:hover {
    filter: brightness(1.08);
}

.radio-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.radio-icon-pause,
.radio-player[data-state="playing"] .radio-icon-play,
.radio-player[data-muted="false"] .radio-icon-mute {
    display: none;
}

.radio-player[data-state="playing"] .radio-icon-pause,
.radio-player[data-muted="true"] .radio-icon-mute {
    display: block;
}

.radio-player[data-muted="true"] .radio-icon-volume {
    display: none;
}

.radio-volume-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.radio-volume-toggle {
    background: transparent;
}

.radio-volume-toggle:hover {
    filter: brightness(1.08);
}

.radio-volume-panel {
    position: absolute;
    right: 50%;
    bottom: calc(100% + 14px);
    transform: translateX(50%);
    width: 170px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(8, 18, 34, 0.96);
    border: 1px solid rgba(127, 224, 255, 0.14);
    box-shadow: 0 18px 40px rgba(3, 8, 18, 0.55);
    backdrop-filter: blur(16px);
    z-index: 15;
}

.radio-volume-label {
    display: block;
    color: var(--color-text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.radio-volume-slider {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(78, 172, 255, 0.96), rgba(127, 224, 255, 0.96));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: -5px;
    background: radial-gradient(circle, #dff8ff 0%, #8fd8ff 48%, #3ea9ff 100%);
    border: 1px solid rgba(227, 248, 255, 0.8);
    box-shadow:
        0 0 0 3px rgba(62, 169, 255, 0.16),
        0 0 16px rgba(62, 169, 255, 0.55);
}

.radio-volume-slider::-moz-range-track {
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(78, 172, 255, 0.96), rgba(127, 224, 255, 0.96));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.radio-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(227, 248, 255, 0.8);
    border-radius: 50%;
    background: radial-gradient(circle, #dff8ff 0%, #8fd8ff 48%, #3ea9ff 100%);
    box-shadow:
        0 0 0 3px rgba(62, 169, 255, 0.16),
        0 0 16px rgba(62, 169, 255, 0.55);
}

.radio-volume-slider:focus-visible {
    outline: none;
}

.radio-volume-slider:focus-visible::-webkit-slider-thumb {
    box-shadow:
        0 0 0 4px rgba(62, 169, 255, 0.2),
        0 0 18px rgba(62, 169, 255, 0.7);
}

.radio-volume-slider:focus-visible::-moz-range-thumb {
    box-shadow:
        0 0 0 4px rgba(62, 169, 255, 0.2),
        0 0 18px rgba(62, 169, 255, 0.7);
}

.radio-actions .radio-icon {
    width: 39px;
    height: 39px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.slt-clock {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(127, 224, 255, 0.12);
}

.slt-time {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--color-accent);
}

.slt-meta {
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.visitor-summary {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.visitor-summary-card {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(127, 224, 255, 0.1);
}

.visitor-summary-card strong {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    color: var(--color-text);
}

.visitor-summary-card span {
    color: var(--color-text-soft);
    font-size: 0.82rem;
}

.country-table {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.country-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(127, 224, 255, 0.08);
}

.country-meta {
    display: grid;
    gap: 4px;
}

.country-meta strong {
    color: var(--color-text);
    font-size: 0.98rem;
}

.country-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.country-flag-image {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

.country-meta span {
    color: var(--color-text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.country-value {
    color: var(--color-accent);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.widget-copy-tight {
    margin-top: -2px;
    margin-bottom: 16px;
}

.destination-widget-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.destination-widget-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(127, 224, 255, 0.08);
}

.destination-widget-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.destination-widget-body {
    padding: 14px 14px 16px;
}

.destination-widget-body h3 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.08rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.destination-widget-description {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.destination-widget-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-button-start), var(--color-button-end));
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(127, 224, 255, 0.16);
    box-shadow: 0 10px 24px rgba(15, 127, 247, 0.22);
}

.destination-widget-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 127, 247, 0.28);
}

/* =========================
   INFO / INTRO BOXES
   ========================= */
.info-box,
.intro-box,
.cta-box,
.highlight-card {
    background: linear-gradient(180deg, rgba(14, 28, 47, 0.76), rgba(8, 18, 34, 0.76));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.info-box,
.intro-box,
.cta-box {
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.info-box::before,
.intro-box::before,
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.12), transparent 72%);
    pointer-events: none;
}

.info-box h2,
.intro-box h2,
.cta-box h2 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    margin-bottom: 14px;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.info-box h3,
.intro-box h3,
.cta-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.info-box p,
.intro-box p,
.cta-box p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.section-subtitle {
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-content {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1.04rem;
}

.section-content a {
    color: var(--color-accent);
}

.intro-box + .intro-box,
.info-box + .info-box {
    margin-top: 26px;
}

.section-heading {
    max-width: 880px;
    margin: 0 0 24px;
}

.section-heading.compact {
    max-width: 760px;
}

.section-kicker {
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.section-heading p:last-child {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* =========================
   HIGHLIGHTS SECTION
   ========================= */
.highlights-section {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto 54px;
    padding: 0 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    text-align: left;
    background:
        linear-gradient(160deg, rgba(18, 41, 72, 0.92), rgba(8, 18, 34, 0.82)),
        linear-gradient(180deg, rgba(14, 24, 42, 0.82), rgba(10, 18, 32, 0.72));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.highlight-card::after {
    content: "";
    position: absolute;
    top: -32px;
    right: -24px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.18), transparent 70%);
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 224, 255, 0.28);
    box-shadow: var(--shadow-strong);
}

.highlight-value {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.highlight-title {
    position: relative;
    z-index: 1;
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--color-text);
    font-weight: 700;
}

.highlight-subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--color-text-soft);
}

/* =========================
   HOME STRATEGIC SECTIONS
   ========================= */
.home-command-strip,
.home-signal-board,
.home-destinations,
.home-pillars,
.home-timeline {
    margin-bottom: 34px;
}

.home-command-strip {
    position: relative;
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(127, 224, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(12, 24, 42, 0.88), rgba(7, 17, 31, 0.84));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.home-command-strip::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 183, 255, 0.18), transparent 68%);
}

.command-center-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 1;
}

.command-center-card,
.signal-card,
.destination-card,
.pillar-card,
.timeline-item {
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
}

.command-center-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 170px;
    padding: 22px;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.command-center-card:hover,
.destination-card:hover {
    transform: translateY(-4px);
    border-color: rgba(127, 224, 255, 0.28);
    box-shadow: var(--shadow-soft);
}

.command-label,
.signal-label,
.timeline-phase,
.destination-eyebrow {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
}

.command-value {
    color: var(--color-text);
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.command-action {
    margin-top: auto;
    color: var(--color-accent);
    font-weight: 600;
}

.signal-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.signal-card,
.pillar-card {
    padding: 24px;
}

.signal-card h3,
.destination-card h3,
.pillar-card h3,
.timeline-body h3 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.35rem;
    line-height: 1.08;
    margin: 10px 0 12px;
    letter-spacing: -0.03em;
}

.signal-card p:last-child,
.destination-card p,
.pillar-card p,
.timeline-body p {
    color: var(--color-text-muted);
    line-height: 1.75;
}

.destination-grid,
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.destination-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
}

.text-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.timeline-list {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 22px;
    align-items: start;
    padding: 22px 24px;
}

.timeline-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(127, 224, 255, 0.08);
    border: 1px solid rgba(127, 224, 255, 0.14);
}

/* =========================
   CTA SECTION
   ========================= */
.cta-section {
    width: 100vw;
    max-width: 100vw;
    margin-top: 46px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 50px 60px;
    background:
        linear-gradient(135deg, rgba(8, 18, 34, 0.95), rgba(11, 34, 60, 0.9)),
        radial-gradient(circle at top right, rgba(127, 224, 255, 0.12), transparent 30%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: auto auto -90px -50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 197, 114, 0.14), transparent 70%);
}

.cta-section h2 {
    max-width: 1000px;
    margin: 0 auto 12px;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

.cta-section p {
    max-width: 880px;
    margin: 0 auto 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.cta-buttons {
    max-width: 1000px;
    margin: 12px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================
   BUTTONS
   ========================= */
.section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    margin: 8px 10px 0 0;
    background: linear-gradient(135deg, var(--color-button-start), var(--color-button-end));
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.97rem;
    border-radius: 999px;
    border: 1px solid rgba(127, 224, 255, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 14px 30px rgba(15, 127, 247, 0.26);
}

.section-button:hover {
    transform: translateY(-2px);
    opacity: 0.98;
    box-shadow: 0 18px 36px rgba(15, 127, 247, 0.34);
}

.section-button.secondary {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border: 1px solid var(--color-border-strong);
}

.section-button.secondary:hover {
    border-color: rgba(127, 224, 255, 0.24);
    background: rgba(127, 224, 255, 0.06);
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.section-actions .section-button {
    margin: 0;
}

/* =========================
   GENERIC CONTENT SPACING
   ========================= */
section {
    margin-bottom: 30px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    margin-top: 70px;
    padding: 32px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(4, 9, 18, 0.2), rgba(4, 9, 18, 0.68));
    backdrop-filter: blur(8px);
}

.footer-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    text-align: center;
}

.footer-copy {
    margin: 0 0 10px 0;
    font-size: 0.96rem;
    color: var(--color-text);
    opacity: 0.92;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.83rem;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.footer-navigation {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    opacity: 0.9;
}

.footer-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px 24px;
}

.footer-nav-group {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-nav-heading {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(235, 243, 251, 0.72);
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-nav-heading:hover {
    color: rgba(127, 224, 255, 0.82);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.footer-nav-list a {
    color: rgba(235, 243, 251, 0.52);
    text-decoration: none;
    font-size: 0.84rem;
    line-height: 1.45;
}

.footer-nav-list a:hover {
    color: rgba(127, 224, 255, 0.76);
}

/* =========================
   FOOTER SOCIAL LINKS
   ========================= */
.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px) scale(1.04);
    opacity: 1;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

.footer-social-text {
    font-size: 0.82rem;
    color: var(--color-text);
    font-weight: 700;
}

/* =========================
   LEGAL PAGE CONTENT
   ========================= */
.full-width {
    width: 100%;
}

.legal-content {
    line-height: 1.9;
    font-size: 1.02rem;
    color: rgba(235, 243, 251, 0.88);
    white-space: normal;
    word-break: break-word;
}

.legal-content strong {
    color: var(--color-text);
}

.legal-content p + p {
    margin-top: 14px;
}

.page-legal .intro-box,
.page-legal .cta-section {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   FORMS
   ========================= */
input,
textarea,
select,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    outline: none;
}

select {
    color-scheme: dark;
}

select option {
    color: #e7eef7;
    background: #142235;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    cursor: pointer;
}

/* =========================
   LINKS
   ========================= */
a {
    color: inherit;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--color-accent);
}

/* =========================
   MOTION
   ========================= */
.site-header,
.hero,
.hero-small,
.highlights-section,
.intro-box,
.cta-section,
.footer {
    animation: fadeRise 0.8s ease both;
}

.hero-small,
.highlights-section {
    animation-delay: 0.08s;
}

.intro-box:nth-of-type(2) {
    animation-delay: 0.1s;
}

.intro-box:nth-of-type(3) {
    animation-delay: 0.16s;
}

.highlight-card:nth-child(1) {
    animation: fadeRise 0.75s ease 0.08s both;
}

.highlight-card:nth-child(2) {
    animation: fadeRise 0.75s ease 0.14s both;
}

.highlight-card:nth-child(3) {
    animation: fadeRise 0.75s ease 0.2s both;
}

.highlight-card:nth-child(4) {
    animation: fadeRise 0.75s ease 0.26s both;
}

.sell-highlights-section {
    margin-top: 10px;
}

.sell-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sell-highlight-card {
    min-height: 100%;
}

.sell-highlight-card .highlight-value {
    margin-bottom: 12px;
}

.sell-highlight-card .highlight-title {
    margin-bottom: 14px;
}

.sell-form-box {
    margin-top: 26px;
}

.sell-offer-form {
    margin-top: 22px;
}

.sell-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 10px;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.96rem;
}

.form-field textarea {
    min-height: 180px;
    resize: vertical;
}

.field-help {
    color: var(--color-text-soft);
    font-size: 0.87rem;
    line-height: 1.6;
}

.checkbox-field {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text);
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: var(--color-accent-strong);
}

.field-error {
    color: #ffb6c8;
    font-size: 0.88rem;
    line-height: 1.55;
}

input[type="file"] {
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
}

input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-button-start), var(--color-button-end));
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.form-feedback {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
}

.form-feedback.is-success {
    border-color: rgba(127, 224, 255, 0.22);
    background: rgba(56, 189, 248, 0.08);
}

.form-feedback.is-error {
    border-color: rgba(255, 112, 152, 0.24);
    background: rgba(255, 112, 152, 0.08);
}

.form-legal-note {
    margin-top: 16px;
    color: var(--color-text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes equalizer {
    0%,
    100% {
        transform: scaleY(0.35);
        opacity: 0.45;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================
   RESPONSIVE - 1100px
   ========================= */
@media (max-width: 1100px) {
    .skip-link {
        top: 10px;
        left: 10px;
    }

    .site-header {
        width: min(calc(100% - 24px), 1320px);
        border-radius: 26px;
        top: 10px;
        padding: 16px 20px;
    }

    .header-inner {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 10px;
        background: rgba(7, 17, 31, 0.95);
        border: 1px solid var(--color-border);
        border-radius: 24px;
        padding: 16px 18px;
        z-index: 1001;
    }

    .main-nav.nav-open {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav > ul > li {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 6px 0;
    }

    .main-nav li.has-submenu::after {
        display: none;
    }

    .main-nav > ul > li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        width: auto;
        flex: 1;
        padding: 12px 0;
    }

    .main-nav > ul > li.is-active > a {
        box-shadow: none;
    }

    .main-nav ul li.has-submenu > a::after {
        content: "";
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav .submenu {
        display: none;
        position: static;
        width: 100%;
        min-width: unset;
        margin: 2px 0 10px;
        padding: 8px 0 0 12px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .main-nav .submenu li {
        width: 100%;
    }

    .main-nav .submenu li a {
        padding: 10px 0;
        font-size: 0.93rem;
        white-space: normal;
    }

    .main-nav li.submenu-open > .submenu {
        display: block;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sell-highlights-grid,
    .sell-form-grid {
        grid-template-columns: 1fr;
    }

    .content-shell {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .command-center-grid,
    .signal-board-grid,
    .destination-grid,
    .pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-section {
        padding: 42px 28px;
    }
}

/* =========================
   RESPONSIVE - 900px
   ========================= */
@media (max-width: 900px) {
    .hero,
    .hero-small,
    .discover-hero {
        padding-top: 74px;
        padding-bottom: 46px;
    }

    .hero p,
    .hero-small p,
    .discover-hero p {
        font-size: 1rem;
    }

    .info-box,
    .intro-box,
    .cta-box,
    .highlight-card {
        padding: 24px;
    }

    .home-command-strip,
    .signal-card,
    .destination-card,
    .pillar-card,
    .timeline-item,
    .utility-widget {
        padding: 22px;
    }

    .main-content {
        padding-bottom: 60px;
    }
}

/* =========================
   RESPONSIVE - 700px
   ========================= */
@media (max-width: 700px) {
    body::before,
    body::after {
        display: none;
    }

    .site-header {
        width: min(calc(100% - 16px), 1320px);
        margin-top: 12px;
        padding: 14px 16px;
    }

    .header-inner {
        gap: 14px;
    }

    .brand-logo {
        max-height: 44px;
    }

    .brand-link {
        gap: 10px;
    }

    .brand-wordmark {
        font-size: 1.02rem;
    }

    .main-nav {
        padding: 12px 14px;
    }

    .hero::before,
    .hero-small::before,
    .discover-hero::before {
        width: 88vw;
        height: 220px;
        top: 26px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .command-center-grid,
    .signal-board-grid,
    .destination-grid,
    .pillar-grid,
    .visitor-summary {
        grid-template-columns: 1fr;
    }

    .info-box h2,
    .intro-box h2,
    .cta-box h2 {
        font-size: 1.38rem;
    }

    .section-heading h2 {
        font-size: 1.85rem;
    }

    .info-box,
    .intro-box,
    .cta-box,
    .highlight-card {
        padding: 20px;
        border-radius: 20px;
    }

    .home-command-strip,
    .signal-card,
    .destination-card,
    .pillar-card,
    .timeline-item,
    .utility-widget {
        padding: 20px;
        border-radius: 20px;
    }

    .cta-section {
        padding: 34px 18px;
    }

    .section-button {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .footer {
        padding: 24px 16px 32px;
    }

    .footer-copy {
        font-size: 0.88rem;
    }

    .footer-disclaimer p {
        font-size: 0.76rem;
    }

    .footer-navigation {
        margin-top: 14px;
        padding-top: 14px;
        text-align: center;
    }

    .footer-navigation-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-nav-group {
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-logo {
        animation: none;
    }

    .brand-wordmark-text,
    .brand-wordmark-mark {
        animation: none;
        background-position: 0 0, -190% 0;
    }
}
