:root {
    --bg: #080a10;
    --bg-soft: #0f1320;
    --card: rgba(255, 255, 255, 0.04);
    --stroke: rgba(255, 255, 255, 0.1);
    --text: #f5f7ff;
    --muted: #a9b0c6;
    --brand: #ff6b00;
    --brand-2: #ff9e2c;
    --ok: #34d399;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: radial-gradient(1200px 700px at 20% -10%, rgba(255, 107, 0, 0.15), transparent 55%), var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.bg-orb {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.25;
}

.orb-1 {
    top: -8rem;
    right: -8rem;
    background: #ff6b00;
}

.orb-2 {
    bottom: -10rem;
    left: -10rem;
    background: #4568ff;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6vw;
    background: rgba(8, 10, 16, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stroke);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.15rem;
}

.brand i {
    color: var(--brand);
    font-size: 1.35rem;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.menu a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: var(--text);
}

.cta-mini {
    color: var(--text) !important;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

.section {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 5.5rem 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    min-height: calc(100vh - 76px);
}

.eyebrow {
    display: inline-flex;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffd0a8;
    background: rgba(255, 107, 0, 0.14);
    border: 1px solid rgba(255, 107, 0, 0.35);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 span {
    color: var(--brand-2);
}

.lead {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0.8rem;
    border: 1px solid transparent;
    padding: 0.75rem 1.15rem;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--brand), #ff8f2e);
    color: #111;
    box-shadow: 0 10px 22px rgba(255, 107, 0, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--stroke);
    color: var(--text);
}

.coming-soon {
    cursor: default;
}

.hero-bullets {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.hero-bullets li {
    color: #ccd3e8;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-bullets i {
    color: var(--ok);
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--stroke);
    border-radius: 1.2rem;
    padding: 1.25rem;
}

.live-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #b8ffd8;
    background: rgba(21, 169, 97, 0.15);
    border: 1px solid rgba(21, 169, 97, 0.35);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
}

.dot {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: #32db8a;
}

.hero-card h3 {
    margin: 0.25rem 0;
}

.hero-card p {
    color: var(--muted);
}

.mini-stats {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mini-stats article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--stroke);
    border-radius: 0.8rem;
    padding: 0.7rem;
}

.mini-stats strong {
    display: block;
    font-size: 1.1rem;
}

.mini-stats span {
    color: var(--muted);
    font-size: 0.77rem;
}

.mock-map {
    margin-top: 1rem;
    height: 170px;
    border-radius: 1rem;
    border: 1px solid var(--stroke);
    background: linear-gradient(160deg, #121a2d, #0b101d);
    position: relative;
    overflow: hidden;
}

.mock-map .path {
    position: absolute;
    inset: 20% 15%;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: 2rem;
}

.pin {
    position: absolute;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    background: #6ea8ff;
    box-shadow: 0 0 0 4px rgba(110, 168, 255, 0.18);
}

.pin-a { top: 28%; left: 24%; }
.pin-b { top: 65%; left: 65%; }
.pin-c { top: 42%; left: 48%; }
.pin.sos {
    background: #ff4f4f;
    box-shadow: 0 0 0 4px rgba(255, 79, 79, 0.2);
}

.section-head {
    margin-bottom: 1.8rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 0.45rem;
}

.section-head p {
    color: var(--muted);
}

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

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

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

.card,
.feature {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 1rem;
    padding: 1.1rem;
}

.card i,
.feature i {
    color: var(--brand-2);
    font-size: 1.25rem;
}

.card h3,
.feature h3 {
    margin: 0.6rem 0 0.35rem;
    font-size: 1.15rem;
}

.card p,
.feature p {
    color: var(--muted);
}

.alt {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.timeline {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.timeline li {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
}

.timeline h3 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.timeline p {
    color: var(--muted);
}

.footer {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.footer-cta {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 1rem;
    padding: 1.3rem;
}

.footer-cta p {
    color: #d7dbe9;
}

.footer-bottom {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    color: var(--muted);
}

.muted {
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 960px) {
    .menu a:not(.cta-mini) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2.4rem;
    }

    .grid.three,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
