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

:root {
    --bg: #07111f;
    --bg-elevated: rgba(12, 23, 38, 0.82);
    --bg-panel: rgba(10, 21, 35, 0.9);
    --bg-soft: rgba(255, 255, 255, 0.04);
    --stroke: rgba(186, 214, 255, 0.14);
    --stroke-strong: rgba(125, 211, 252, 0.35);
    --text: #ecf6ff;
    --text-soft: #b7c8da;
    --text-muted: #87a0b8;
    --cyan: #7dd3fc;
    --blue: #60a5fa;
    --teal: #5eead4;
    --gold: #fbbf24;
    --green: #86efac;
    --red: #fca5a5;
    --shadow: 0 24px 60px rgba(1, 7, 18, 0.45);
    --radius: 22px;
    --radius-sm: 14px;
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(94, 234, 212, 0.12), transparent 24%),
        linear-gradient(180deg, #08121f 0%, #07111f 48%, #081520 100%);
    color: var(--text);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
    opacity: 0.35;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.9rem, 7vw, 5.4rem);
    margin-bottom: 1.1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    margin-bottom: 0.8rem;
}

p,
li,
td,
th {
    color: var(--text-soft);
}

a {
    color: var(--cyan);
}

img {
    display: block;
    max-width: 100%;
}

.container {
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 0 1.5rem;
}

.skip-link {
    left: 1rem;
    position: absolute;
    top: -3rem;
    z-index: 999;
    background: white;
    color: #04111d;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.7rem 0;
}

.topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
}

header {
    background: rgba(6, 17, 31, 0.8);
    border-bottom: 1px solid var(--stroke);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    align-items: center;
    color: var(--text);
    display: inline-flex;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo-mark {
    align-items: center;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.26), rgba(96, 165, 250, 0.18));
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: inline-flex;
    font-size: 1rem;
    height: 2.2rem;
    justify-content: center;
    width: 2.2rem;
}

.nav-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.nav-links a {
    border-radius: 999px;
    color: var(--text-soft);
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    transform: translateY(-1px);
}

.nav-links a.nav-accent {
    background: rgba(125, 211, 252, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.16);
    color: var(--cyan);
}

main {
    min-height: 60vh;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.038));
    border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.pt-header {
    padding-top: 7rem;
}

.eyebrow {
    align-items: center;
    color: var(--teal);
    display: inline-flex;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 0.55rem;
    letter-spacing: 0.14em;
    margin-bottom: 1.15rem;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--teal), transparent);
}

.hero-shell {
    padding: 4.5rem 0 2.5rem;
}

.hero-grid {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.95fr);
}

.hero-copy {
    max-width: 780px;
}

.hero-copy .lead {
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    margin-bottom: 1.5rem;
    max-width: 62ch;
}

.lead {
    color: var(--text-soft);
    max-width: 64ch;
}

.hero-actions,
.chip-row,
.cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-actions {
    margin-top: 1.6rem;
}

.hero-aside,
.glass-panel,
.premium-card,
.feature-card,
.info-card,
.faq-card,
.sidebar-card,
.page-link-card {
    background: linear-gradient(180deg, rgba(13, 26, 43, 0.92), rgba(8, 18, 31, 0.96));
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-aside,
.info-card,
.feature-card,
.faq-card,
.sidebar-card,
.page-link-card {
    padding: 1.4rem;
}

.hero-aside {
    position: relative;
    overflow: hidden;
}

.hero-visual {
    margin: 0 0 1rem;
}

.hero-visual img {
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.hero-visual figcaption {
    color: rgba(191, 219, 254, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: 0.7rem;
}

.hero-aside::after,
.glass-panel::after,
.premium-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -60% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 70%);
    pointer-events: none;
}

.stat-strip,
.feature-grid,
.info-grid,
.faq-grid,
.card-grid,
.pages-nav,
.region-card-grid {
    display: grid;
    gap: 1rem;
}

.stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.stat-value {
    color: var(--text);
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-grid,
.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card h3,
.info-card h3,
.faq-card h3,
.sidebar-card h3,
.page-link-card .pl-text {
    margin-bottom: 0.45rem;
}

.muted,
.section-sub,
.pl-sub,
.small {
    color: var(--text-muted);
}

.section-heading {
    margin-bottom: 0.75rem;
}

.section-intro {
    margin-bottom: 1.5rem;
    max-width: 68ch;
}

.chip {
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    color: var(--text);
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.42rem 0.8rem;
}

.tag {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.72rem;
    text-transform: uppercase;
}

.public,
.free {
    background: rgba(134, 239, 172, 0.12);
    border: 1px solid rgba(134, 239, 172, 0.16);
    color: var(--green);
}

.private,
.closed {
    background: rgba(252, 165, 165, 0.1);
    border: 1px solid rgba(252, 165, 165, 0.16);
    color: var(--red);
}

.paid,
.seasonal {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.16);
    color: var(--gold);
}

.cta-btn,
.glass-btn,
.crosslink-btn {
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 0.55rem;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.9rem 1.25rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-btn {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.22);
    color: #04111d;
}

.glass-btn,
.crosslink-btn {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.cta-btn:hover,
.glass-btn:hover,
.crosslink-btn:hover {
    transform: translateY(-2px);
}

.content-grid,
.ramp-content-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
}

.table-wrap {
    background: rgba(6, 15, 26, 0.92);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.seo-table {
    border-collapse: collapse;
    width: 100%;
}

.seo-table th,
.seo-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1rem 0.95rem;
    text-align: left;
    vertical-align: top;
}

.seo-table thead th {
    background: rgba(125, 211, 252, 0.08);
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.seo-table tbody tr:hover {
    background: rgba(125, 211, 252, 0.06);
}

.seo-table strong {
    color: var(--text);
    font-weight: 700;
}

.table-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.9rem;
}

.checklist {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin-top: 1rem;
}

.checklist li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0.9rem 1rem 0.9rem 3rem;
    position: relative;
}

.checklist li::before {
    color: var(--teal);
    content: "✓";
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    left: 1rem;
    position: absolute;
    top: 0.92rem;
}

.breadcrumb {
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.92rem;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.breadcrumb a {
    color: var(--text-soft);
    text-decoration: none;
}

.hero-shell--compact {
    padding-top: 3.25rem;
}

.hero-shell--compact h1 {
    font-size: clamp(2.35rem, 6vw, 4.2rem);
}

.meta-stack {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

.meta-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.8rem;
}

.meta-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.meta-label {
    color: var(--text-muted);
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.22rem;
    text-transform: uppercase;
}

.compliance-cta,
.crosslink-bar {
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 25, 41, 0.95), rgba(7, 17, 31, 0.98));
    border: 1px solid var(--stroke);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1.4fr) auto;
    overflow: hidden;
    padding: 1.6rem;
    position: relative;
}

.compliance-cta::before,
.crosslink-bar::before {
    content: "";
    position: absolute;
    inset: -30% auto auto 65%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.14), transparent 72%);
}

.crosslink-bar p,
.compliance-cta p,
.sidebar-card p,
.page-link-card .pl-sub {
    margin-bottom: 0;
}

.reg-cite {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.65rem;
}

.pages-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.page-link-card {
    align-items: flex-start;
    color: inherit;
    display: flex;
    gap: 1rem;
    min-height: 100%;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-link-card:hover {
    border-color: var(--stroke-strong);
    transform: translateY(-3px);
}

.pl-icon {
    align-items: center;
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 14px;
    display: inline-flex;
    font-size: 1.15rem;
    height: 2.8rem;
    justify-content: center;
    min-width: 2.8rem;
}

.pl-text {
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.footer-copy,
footer a,
footer p {
    color: var(--text-muted);
}

footer {
    border-top: 1px solid var(--stroke);
    padding: 4.5rem 0 2.5rem;
}

.footer-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.4fr 1fr 1fr;
    margin-bottom: 2rem;
}

.footer-inner a {
    text-decoration: none;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
    padding-top: 1.3rem;
    text-align: center;
}

.status-indicator {
    align-items: center;
    display: inline-flex;
    gap: 0.65rem;
}

.status-indicator .pulse {
    animation: pulse 2s infinite;
    background: #22c55e;
    border-radius: 999px;
    height: 10px;
    width: 10px;
}

.status-indicator.unverified .pulse,
.status-indicator.seasonal .pulse {
    background: var(--gold);
}

.status-indicator.closed .pulse {
    background: #ef4444;
}

.map-link {
    margin-top: 1rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.62); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1080px) {
    .hero-grid,
    .content-grid,
    .ramp-content-layout,
    .compliance-cta,
    .crosslink-bar,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .stat-strip,
    .feature-grid,
    .card-grid,
    .info-grid,
    .faq-grid,
    .region-card-grid,
    .pages-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    body {
        font-size: 17px;
    }

    .container {
        padding: 0 1rem;
    }

    .topbar {
        display: none;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        overflow-x: auto;
        padding-bottom: 0.3rem;
        width: 100%;
    }

    .hero-shell {
        padding-top: 2.8rem;
    }

    .stat-strip,
    .feature-grid,
    .card-grid,
    .info-grid,
    .faq-grid,
    .region-card-grid,
    .pages-nav {
        grid-template-columns: 1fr;
    }

    .seo-table {
        min-width: 700px;
    }

    .table-wrap {
        overflow-x: auto;
    }
}
