/* =============================================
   BLUEVERSE — Global Venture Platform
   ============================================= */

:root {
    --bg-primary: #070a10;
    --bg-elevated: #0c1018;
    --bg-card: #0f1420;
    --bg-card-hover: #141a2a;

    --text-heading: #f0ede5;
    --text-body: #ccc9c0;
    --text-muted: #636878;
    --text-faint: #2e3240;

    --accent: #3561e8;
    --accent-dim: rgba(53, 97, 232, 0.12);
    --accent-glow: rgba(53, 97, 232, 0.35);
    --gold: #a88744;
    --gold-dim: rgba(168, 135, 68, 0.15);

    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-label: 'Syne', 'Helvetica Neue', sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

    --max-w: 1180px;
    --pad-section: clamp(80px, 12vh, 160px);
    --pad-x: clamp(20px, 4vw, 48px);
}

/* ── Reset ─────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--bg-primary);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ── Film-grain overlay ────────────────────── */

.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.06;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ── Subtle background textures ──────────────── */

/* Dot grid on dark sections */
.section--dark {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 0 0;
}

/* Fine horizontal scan lines on hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 3px
    );
}

/* Radial vignette on all sections for depth */
.section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(53, 97, 232, 0.06) 0%,
        transparent 55%
    );
}

/* Diagonal crosshatch on investment & team cards */
.invest-card::before,
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 2px;
    opacity: 1;
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.025) 50%,
            rgba(255, 255, 255, 0.025) 75%,
            transparent 75%
        );
    background-size: 4px 4px;
}

.invest-card,
.team-card {
    position: relative;
    overflow: hidden;
}

/* =============================================
   Navigation
   ============================================= */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background-color 0.5s, border-color 0.5s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(7, 10, 16, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.28em;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .nav-logo-mark {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-heading);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 26px;
    height: 18px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-heading);
    position: absolute;
    left: 0;
    transition: transform 0.35s, opacity 0.35s;
}

.nav-toggle span:first-child { top: 3px; }
.nav-toggle span:last-child { bottom: 3px; }

.nav-toggle.active span:first-child {
    top: 8px;
    transform: rotate(45deg);
}

.nav-toggle.active span:last-child {
    bottom: 8px;
    transform: rotate(-45deg);
}

/* =============================================
   Hero
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 140%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(53, 97, 232, 0.045) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    padding: 0 24px;
}

.hero-label {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7.5vw, 92px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text-heading);
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}

.hero-body {
    max-width: 700px;
    margin: 0 auto;
}

.hero-body p {
    font-size: clamp(14.5px, 1.35vw, 16px);
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 14px;
    text-wrap: pretty;
}

.hero-regulatory {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 44px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-label);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--text-faint), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   Section Defaults
   ============================================= */

.section {
    padding: var(--pad-section) 0;
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.section--dark {
    background-color: var(--bg-elevated);
}

.section-label {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-heading);
    margin-bottom: 32px;
    max-width: 680px;
    letter-spacing: -0.015em;
}

.section-intro {
    font-size: clamp(14.5px, 1.35vw, 16px);
    line-height: 1.85;
    color: var(--text-body);
    max-width: 660px;
    margin-bottom: 14px;
}

.section-footnote {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 40px;
    font-style: italic;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    margin-top: 40px;
}

.section-col p {
    font-size: clamp(14px, 1.3vw, 15.5px);
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 14px;
}

.section-col p:last-child {
    margin-bottom: 0;
}

/* =============================================
   Corridor Map
   ============================================= */

.map-wrapper {
    width: 100%;
    margin: 48px 0 56px;
}

.map-scroll-hint {
    display: none;
}

.map-scroll {
    overflow: visible;
}

.map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

#corridorMap {
    width: 100%;
    height: auto;
    display: block;
}

/* Grid lines */
.map-grid {
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 0.5;
}

/* Connection lines */
.map-line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 0.7;
    opacity: 0.2;
    stroke-dasharray: 5 5;
    animation: flowDash 25s linear infinite;
}

@keyframes flowDash {
    to { stroke-dashoffset: -200; }
}

/* City nodes */
.map-node { cursor: pointer; }

.map-dot {
    fill: var(--accent);
    transition: r 0.3s ease;
}

.map-ring {
    fill: none;
    stroke: var(--accent);
    stroke-width: 0.5;
    opacity: 0;
    transition: opacity 0.35s, r 0.35s;
}

.map-pulse {
    fill: var(--accent);
    opacity: 0;
    animation: pulse 3.5s ease-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.35; }
    100% { r: 14; opacity: 0; }
}

.map-node:hover .map-dot { r: 5; }
.map-node:hover .map-ring { opacity: 0.45; r: 12; }

.map-label {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    fill: rgba(240, 237, 229, 0.75);
    text-transform: uppercase;
    transition: fill 0.3s;
    user-select: none;
    paint-order: stroke fill;
    stroke: rgba(7, 10, 16, 0.6);
    stroke-width: 3px;
    stroke-linejoin: round;
}

.map-node:hover .map-label {
    fill: var(--text-heading);
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(12, 16, 24, 0.94);
    border: 1px solid var(--border-hover);
    border-radius: 3px;
    padding: 18px 22px;
    max-width: 310px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 10;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.map-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip h4 {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.map-tooltip p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Region cards */
.corridor-regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.corridor-region {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.corridor-region h3 {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.corridor-region p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =============================================
   Investment Architecture
   ============================================= */

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.invest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: clamp(28px, 3.5vw, 44px);
    transition: border-color 0.4s, background 0.4s;
}

.invest-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.invest-track {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.invest-card h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.invest-card p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 12px;
}

.invest-card p:last-child { margin-bottom: 0; }

/* Permanent Fund — gold accent */
.invest-card--perm {
    border-color: var(--gold-dim);
}

.invest-card--perm .invest-track {
    color: var(--gold);
}

.invest-card--perm:hover {
    border-color: rgba(168, 135, 68, 0.28);
}

/* =============================================
   Thesis
   ============================================= */

.thesis-focus {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.thesis-list {
    margin-bottom: 20px;
}

.thesis-list li {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-body);
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.thesis-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 1px;
    background: var(--accent);
}

/* =============================================
   Technology Layers
   ============================================= */

.layers-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 40px;
}

.layer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background:
        linear-gradient(
            90deg,
            rgba(53, 97, 232, 0.06) 0%,
            transparent 40%
        ),
        var(--bg-card);
    border: 1px solid var(--border);
    transition: background 0.4s, border-color 0.4s;
}

.layer-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.layer-card[data-layer="application"] { border-left: 2px solid rgba(53, 97, 232, 0.6); }
.layer-card[data-layer="infrastructure"] { border-left: 2px solid rgba(53, 97, 232, 0.42); }
.layer-card[data-layer="protocol"] { border-left: 2px solid rgba(53, 97, 232, 0.28); }
.layer-card[data-layer="capital"] { border-left: 2px solid rgba(168, 135, 68, 0.45); }

.layer-name {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-heading);
    min-width: 180px;
    flex-shrink: 0;
}

.layer-items {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.layer-items span {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* =============================================
   Team
   ============================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.team-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: background 0.4s, border-color 0.4s;
}

.team-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.team-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(0.3);
    transition: filter 0.4s;
}

.team-card:hover .team-photo {
    filter: grayscale(0);
}

.team-card h3 {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.team-role {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.team-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-muted);
}

.team-linkedin {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    text-decoration: none;
    transition: color 0.2s;
}

.team-linkedin:hover {
    color: var(--accent);
}

/* =============================================
   Portfolio
   ============================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.portfolio-slot {
    position: relative;
    aspect-ratio: 2.2 / 1;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.4s, border-color 0.4s;
    overflow: hidden;
}

.portfolio-slot:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.portfolio-slot::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(53, 97, 232, 0.08) 0%,
        transparent 70%
    );
}

.portfolio-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
}

.portfolio-slot:hover .portfolio-logo {
    opacity: 0.8;
    transform: scale(1.04);
}

.portfolio-name {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-heading);
    position: relative;
    z-index: 1;
}

.portfolio-type {
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-body);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 12px 16px 24px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.portfolio-slot--partner {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.06);
}

/* =============================================
   Footer
   ============================================= */

.footer {
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    flex-shrink: 0;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 11.5px;
    line-height: 1.6;
    color: var(--text-faint);
    margin-bottom: 6px;
}

.footer-copy {
    margin-bottom: 0 !important;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--text-heading);
}

.footer-brand a {
    color: var(--accent);
    text-decoration: none;
}

.footer-brand a:hover {
    text-decoration: underline;
}

/* ── Skip Link ── */

.skip-link {
    position: absolute;
    left: -9999px;
    font-family: var(--font-label);
    font-size: 13px;
    text-decoration: none;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
}

/* =============================================
   Reveal Animations
   ============================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 920px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(7, 10, 16, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 20px var(--pad-x) 28px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }

    .section-grid,
    .invest-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .corridor-regions {
        grid-template-columns: 1fr 1fr;
    }

    .layer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

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

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer-legal { text-align: left; }

    /* Map: horizontally scrollable on mobile */
    .map-scroll-hint {
        display: block;
        font-family: var(--font-label);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-faint);
        text-align: right;
        padding: 0 var(--pad-x) 10px;
        max-width: 1100px;
        margin: 0 auto;
        animation: hintFade 3s ease-in-out infinite;
    }

    @keyframes hintFade {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 1; }
    }

    .map-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(53, 97, 232, 0.2) transparent;
    }

    .map-scroll::-webkit-scrollbar {
        height: 4px;
    }

    .map-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .map-scroll::-webkit-scrollbar-thumb {
        background: rgba(53, 97, 232, 0.25);
        border-radius: 2px;
    }

    .map-container {
        min-width: 800px;
        padding: 0 24px;
    }

}

@media (max-width: 600px) {
    .corridor-regions {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(32px, 9vw, 48px);
    }
}
