@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Mono:wght@400;500&family=Sora:wght@300;400;600;700&display=swap');

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

:root {
    --ink: #0f0f0f;
    --paper: #f5f2ed;
    --rust: #c0392b;
    --steel: #2c3e50;
    --muted: #6b6b6b;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--ink);
    color: var(--paper);
    overflow-x: hidden;
    line-height: 1.6;
}

.pg {
    min-height: 100vh;
}

/* News Ticker */
.stripe {
    background: var(--rust);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: tick 22s linear infinite;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.85;
}

@keyframes tick {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Navigation */
.main-nav {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid rgba(245, 242, 237, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand a {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--paper);
    text-decoration: none;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item a {
    color: var(--muted);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--paper);
}

.nav-item a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rust);
}

.nav-cta {
    display: none;
}

.cta-btn-small {
    background: var(--rust);
    color: #fff;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s, transform 0.1s;
    cursor: pointer;
}

.cta-btn-small:hover {
    opacity: 0.92;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--paper);
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.hero-left {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
}

.hero-kicker {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--rust);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-h {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    line-height: 1.05;
    color: var(--paper);
    margin-bottom: 18px;
}

.hero-h em {
    color: var(--rust);
    font-style: normal;
}

.hero-p {
    font-size: 13px;
    line-height: 1.75;
    color: #a0a0a0;
    max-width: 320px;
    margin-bottom: 32px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--paper);
    border: 0.5px solid rgba(245, 242, 237, 0.2);
    padding: 5px 12px;
    border-radius: 2px;
    text-transform: uppercase;
}

.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1) sepia(0.2);
}

.hero-right-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(245, 242, 237, 0.6);
    text-transform: uppercase;
}

/* Numbers Bar */
.numbers-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #1a1a1a;
    border-top: 0.5px solid #2a2a2a;
    border-bottom: 0.5px solid #2a2a2a;
}

.nb {
    padding: 24px 28px;
    border-right: 0.5px solid #2a2a2a;
}

.nb:last-child {
    border-right: none;
}

.nb-val {
    font-family: 'DM Serif Display', serif;
    font-size: 34px;
    color: var(--paper);
    line-height: 1;
}

.nb-val span {
    color: var(--rust);
    font-size: 22px;
    vertical-align: top;
    margin-left: 2px;
}

.nb-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #5a5a5a;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 72px 48px;
}

.s-dark {
    background: var(--ink);
}

.s-mid {
    background: #141414;
}

.s-paper {
    background: var(--paper);
}

.s-paper .pg-body {
    color: var(--ink);
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--rust);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sec-h {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--paper);
    line-height: 1.1;
    margin-bottom: 8px;
}

.sec-h-dark {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 8px;
}

.sec-sub {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 40px;
}

.sec-sub-dark {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 40px;
}

/* Cargo Grid */
.cargo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #2a2a2a;
}

.cargo-tile {
    background: var(--ink);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.cargo-tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) saturate(0.7);
    transition: filter 0.4s;
}

.cargo-tile:hover img {
    filter: brightness(0.7) saturate(0.9);
}

.cargo-tile.lit img {
    filter: brightness(0.75) saturate(1);
}

.cargo-body {
    padding: 20px 22px 22px;
}

.cargo-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--rust);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cargo-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--paper);
    margin-bottom: 8px;
}

.cargo-desc {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.65;
}

.cargo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.cargo-pill {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: var(--rust);
    border: 0.5px solid rgba(192, 57, 43, 0.35);
    padding: 3px 8px;
    border-radius: 1px;
    text-transform: uppercase;
}

.cargo-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.cargo-tile.open .cargo-detail {
    max-height: 200px;
}

/* Split Layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 340px;
}

.split-img {
    overflow: hidden;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) contrast(1.1);
}

.split-content {
    padding: 52px 48px;
    background: #141414;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}

.feature-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 0.5px solid #2a2a2a;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.feature-text {
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.65;
}

.feature-text strong {
    color: #d0d0d0;
    font-weight: 600;
}

/* Fleet Scroll */
.fleet-scroll {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    background: #1a1a1a;
    padding: 2px;
}

.fleet-scroll::-webkit-scrollbar {
    display: none;
}

.fleet-card {
    flex: 0 0 180px;
    background: var(--ink);
    overflow: hidden;
    cursor: default;
}

.fleet-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    filter: brightness(0.55) grayscale(0.3);
}

.fleet-body {
    padding: 14px 14px 16px;
}

.fleet-type {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fleet-name {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.fleet-cap {
    font-size: 11px;
    color: #555;
}

/* Routes */
.route-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #1f1f1f;
}

.route-col {
    background: #141414;
    padding: 32px 28px;
}

.route-col-head {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--rust);
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 0.5px solid #2a2a2a;
    padding-bottom: 12px;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 0.5px solid #1f1f1f;
}

.route-from {
    font-size: 13px;
    color: #d0d0d0;
    font-weight: 600;
}

.route-arr {
    color: var(--rust);
    font-size: 11px;
    margin: 0 8px;
}

.route-to {
    font-size: 13px;
    color: #d0d0d0;
    font-weight: 600;
}

.route-eta {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #555;
    letter-spacing: 0.5px;
}

/* How It Works */
.how-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.how-line {
    position: absolute;
    top: 22px;
    left: 15%;
    right: 15%;
    height: 0.5px;
    background: #2a2a2a;
}

.how-step {
    text-align: center;
    padding: 0 16px;
}

.how-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.how-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 6px;
}

.how-desc {
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 0;
}

.cov-card {
    background: #1a1a1a;
    border: 0.5px solid #252525;
    padding: 18px 20px;
    border-radius: 2px;
}

.cov-name {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.cov-detail {
    font-size: 11px;
    color: #5a5a5a;
    line-height: 1.6;
}

.cov-badge {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: var(--rust);
    border: 0.5px solid rgba(192, 57, 43, 0.3);
    padding: 2px 7px;
    border-radius: 1px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* CTA Band */
.cta-band {
    background: var(--rust);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta-btn {
    background: #fff;
    color: var(--rust);
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    opacity: 0.92;
}

.cta-btn:active {
    transform: scale(0.98);
}

/* Footer */
.main-footer {
    background: #0a0a0a;
    border-top: 0.5px solid #1a1a1a;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 48px 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--paper);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    font-size: 12px;
    color: #8a8a8a;
}

.contact-item strong {
    color: #d0d0d0;
    font-weight: 600;
}

.footer-col h4 {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--paper);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 0.5px solid #1a1a1a;
}

.footer-copyright p {
    font-size: 11px;
    color: #4a4a4a;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #6a6a6a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 48px 32px;
    }
    
    .hero-h {
        font-size: 42px;
    }
    
    .numbers-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cargo-grid {
        grid-template-columns: 1fr;
    }
    
    .split {
        grid-template-columns: 1fr;
    }
    
    .route-two {
        grid-template-columns: 1fr;
    }
    
    .how-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--ink);
        flex-direction: column;
        padding: 48px 32px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-left {
        padding: 32px 24px;
    }
    
    .hero-h {
        font-size: 36px;
    }
    
    .section {
        padding: 48px 24px;
    }
    
    .cta-band {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        padding: 48px 24px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .how-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-h {
        font-size: 28px;
    }
    
    .sec-h {
        font-size: 28px;
    }
    
    .cta-band {
        padding: 24px 16px;
    }
    
    .section {
        padding: 32px 16px;
    }
    
    .footer-content {
        padding: 32px 16px 24px;
    }
}
