@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #f4f6f8;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --ink: #101820;
    --navy: #06233f;
    --blue: #005b96;
    --teal: #00838f;
    --red: #c9302c;
    --gold: #c28b2c;
    --muted: #5d6975;
    --line: rgba(16, 24, 32, 0.12);
    --shadow: 0 18px 50px rgba(16, 24, 32, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(16, 24, 32, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 32, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 75%);
    opacity: 0.65;
}

h1, h2, h3, h4, h5 {
    letter-spacing: -0.04em;
    font-weight: 800;
}

.site-shell { min-height: 100vh; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.utility-bar {
    background: linear-gradient(90deg, var(--navy), #0a355c);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.utility-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.brand-lockup,
.side-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--ink);
}

.brand-mark {
    position: relative;
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    border-radius: 0.9rem;
    background: linear-gradient(145deg, var(--navy), #123c65);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 26px rgba(6, 35, 63, 0.18);
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--red);
    transform: translate(0.95rem, -1rem);
}

.brand-copy strong,
.side-brand strong {
    display: block;
    font-size: 1.02rem;
}

.brand-copy small,
.side-brand small {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
}

.menu-button,
.nav-pill,
.mobile-link,
.hero-btn,
.submit-button,
.slider-arrow,
.side-link {
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-button {
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
}

.menu-button:hover { background: var(--red); }

.nav-pill {
    border-radius: 999px;
    padding: 0.75rem 1rem;
    color: var(--ink);
    font-weight: 700;
}

.nav-pill:hover,
.nav-pill.active {
    background: rgba(6, 35, 63, 0.08);
    color: var(--navy);
}

.mobile-link {
    display: block;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    color: var(--ink);
    font-weight: 700;
}

.mobile-link:hover {
    background: rgba(6, 35, 63, 0.06);
    color: var(--navy);
}

.hero-shell {
    position: relative;
    padding-top: 1rem;
}

.hero-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.hero-topline span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 24, 32, 0.1);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-grid {
    display: grid;
    gap: 1rem;
}

.hero-panel,
.hero-focus,
.page-hero-card,
.glass-panel,
.feature-panel,
.feature-card,
.band-card,
.metric-card,
.service-tile,
.market-tile {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 1.6rem;
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2742 100%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.3rem;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 35, 63, 0.06) 0%, rgba(6, 35, 63, 0.9) 82%);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    padding: 1.6rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(14px);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 800;
    color: #f6c56b;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 1rem;
    height: 1px;
    background: currentColor;
}

.hero-content h1,
.hero-content h2,
.page-hero-card h1 {
    margin-top: 0.9rem;
    font-size: clamp(2.35rem, 5vw, 5rem);
    line-height: 0.94;
}

.hero-content p {
    margin-top: 0.95rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-btn,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.92rem 1.35rem;
    font-weight: 800;
}

.hero-btn.primary,
.submit-button {
    background: var(--red);
    color: #fff;
}

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.hero-focus {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.hero-focus-card {
    padding: 1.3rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-focus-card.dark {
    background: linear-gradient(180deg, #0f1720 0%, #111318 100%);
    color: #fff;
}

.hero-stat {
    padding: 1rem 0;
    border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.hero-focus-card.dark .hero-stat {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.hero-stat:first-child { border-top: 0; padding-top: 0; }
.hero-stat span {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--red);
}
.hero-focus-card.dark .hero-stat span { color: #f6c56b; }
.hero-stat strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.15rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 35, 63, 0.54);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    transform: translateY(-50%);
}

.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slider-arrow:hover { background: var(--red); }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    gap: 0.45rem;
    transform: translateX(-50%);
}

.slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
}
.slider-dot.active {
    width: 2rem;
    background: linear-gradient(90deg, #f6c56b, var(--red));
}

.page-hero {
    padding-top: 1rem;
}

.page-hero-card,
.glass-panel,
.feature-panel,
.feature-card,
.band-card,
.metric-card,
.service-tile,
.market-tile {
    overflow: hidden;
    padding: 1.5rem;
}

.section-title {
    margin-top: 0.8rem;
    font-size: clamp(1.9rem, 3vw, 3.15rem);
    line-height: 0.98;
}

.section-title.light {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.section-copy {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.8;
}

.metric-grid,
.service-grid,
.market-grid,
.contact-stack,
.feature-strip,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.metric-card,
.service-tile,
.market-tile,
.feature-card {
    background: #fff;
}

.metric-card::before,
.service-tile::before,
.market-tile::before,
.feature-card::before {
    content: "";
    display: block;
    width: 3rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    margin-bottom: 1rem;
}

.metric-card span,
.market-tile span,
.feature-card span {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--blue);
}

.metric-card strong,
.market-tile strong,
.service-tile h3,
.feature-card h3,
.band-card h3 {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.15rem;
}

.metric-card p,
.service-tile p,
.market-tile span,
.feature-card p,
.band-card p {
    margin-top: 0.55rem;
    color: var(--muted);
    line-height: 1.75;
}

.feature-panel {
    background: linear-gradient(180deg, #0d1a2a 0%, #09131e 100%);
    color: #fff;
}

.feature-panel .section-kicker,
.feature-panel .section-copy,
.feature-panel .feature-list {
    color: rgba(255, 255, 255, 0.82);
}

.band-shell {
    background: linear-gradient(180deg, #06131e 0%, #081826 100%);
}

.band-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.band-shell .section-title.light {
    color: #ffffff;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.1rem;
}

.site-footer {
    background: #06131e;
    color: rgba(255, 255, 255, 0.82);
}

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

.footer-links {
    display: grid;
    gap: 0.6rem;
}

.footer-links a,
.footer-links span,
.site-footer p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.contact-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-form-grid label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink);
}

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(16, 24, 32, 0.12);
    padding: 0.92rem 1rem;
    background: #fff;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 91, 150, 0.12);
}

@media (min-width: 768px) {
    .hero-grid,
    .footer-grid,
    .contact-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.35fr 0.9fr;
        align-items: stretch;
    }

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

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

    .footer-grid {
        grid-template-columns: 1.5fr 0.8fr 0.8fr;
    }
}

@media (max-width: 639px) {
    .hero-panel { min-height: 38rem; }
    .hero-content { padding: 1.2rem; }
    .slider-arrow { width: 2.65rem; height: 2.65rem; font-size: 1.5rem; }
    .metric-grid { grid-template-columns: 1fr; }
}
