:root {
    --bg: #05070c;
    --bg-alt: #0b111b;
    --bg-card: rgba(11, 15, 22, 0.8);
    --text: #f2f6ff;
    --text-dim: #98a4ba;
    --accent: #6ee7ff;
    --accent-2: #7bffb6;
    --accent-3: #ffb347;
    --stroke: rgba(132, 148, 178, 0.18);
    --glow: rgba(110, 231, 255, 0.25);
    --shadow: rgba(0, 0, 0, 0.45);
    --mono: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    --sans: "SF Pro Display", "SF Pro Text", -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: #05070c;
}

body {
    font-family: var(--sans);
    background: radial-gradient(circle at 15% 20%, #101a2a 0%, var(--bg) 55%, #030407 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(110, 231, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(123, 255, 182, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(255, 179, 71, 0.1) 0%, transparent 40%);
    z-index: -2;
    animation: drift 16s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 100% 8px;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

@keyframes drift {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 0.7;
    }
}

.bg-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-orbs span:nth-child(1) {
    width: 320px;
    height: 320px;
    background: rgba(110, 231, 255, 0.35);
    top: 10%;
    left: -5%;
}

.bg-orbs span:nth-child(2) {
    width: 400px;
    height: 400px;
    background: rgba(123, 255, 182, 0.3);
    top: 30%;
    right: -10%;
}

.bg-orbs span:nth-child(3) {
    width: 280px;
    height: 280px;
    background: rgba(255, 179, 71, 0.25);
    bottom: 10%;
    left: 20%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(6, 9, 12, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke);
    z-index: 100;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.9rem;
    background: rgba(110, 231, 255, 0.12);
    border-color: rgba(110, 231, 255, 0.4);
    color: var(--text);
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #001015;
    box-shadow: 0 10px 30px rgba(110, 231, 255, 0.35);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid rgba(245, 247, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero {
    padding: 170px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
    padding-bottom: 20px;
}

.hero-copy {
    max-width: 560px;
    text-align: left;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--mono);
}

.hero-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-note {
    color: rgba(152, 164, 186, 0.85);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 16px;
    min-width: 160px;
    border-radius: 14px;
    background: rgba(12, 16, 24, 0.72);
    border: 1px solid rgba(110, 231, 255, 0.18);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-2);
}

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

.hero-status {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--mono);
    font-size: 0.85rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 12px var(--accent-2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
}

.hero-visual {
    display: grid;
    gap: 24px;
    align-items: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.floating-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(12, 15, 22, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 360px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid rgba(110, 231, 255, 0.3);
    color: var(--accent);
    font-family: var(--mono);
}

.ticker {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(6, 9, 12, 0.7), rgba(6, 9, 12, 0.9));
    margin-top: 30px;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.ticker-track {
    display: flex;
    gap: 40px;
    padding: 14px 0;
    animation: marquee 24s linear infinite;
    font-family: var(--mono);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(152, 164, 186, 0.8);
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section {
    padding: 92px 0;
}

.section-alt {
    background: rgba(6, 9, 13, 0.35);
}

@supports (content-visibility: auto) {
    .section,
    .footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 800px;
    }
}

.section-heading {
    text-align: left;
    max-width: 720px;
    margin: 0 0 50px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 28px rgba(110, 231, 255, 0.18);
}

.section-heading p {
    color: var(--text-dim);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(10, 14, 20, 0.75);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(132, 148, 178, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.6), transparent);
    opacity: 0.5;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 231, 255, 0.35);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.75rem;
    color: var(--accent);
    font-family: var(--mono);
}

.timeline {
    display: grid;
    gap: 18px;
    position: relative;
    padding-left: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
    background: rgba(12, 16, 22, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 1.2rem;
}

.protocol-callout {
    margin-top: 40px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(110, 231, 255, 0.08), rgba(123, 255, 182, 0.08));
    border: 1px solid rgba(110, 231, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.announcement {
    background: rgba(10, 14, 20, 0.8);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.announcement::after,
.pricing-card::after,
.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.5), transparent);
    opacity: 0.5;
}

.announcement-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(120deg, var(--accent), var(--accent-3));
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #001015;
}

.announcement-meta {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.announcement-body ul {
    display: grid;
    gap: 12px;
    padding-left: 20px;
    color: var(--text-dim);
}

.announcement-tags {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--accent);
    font-family: var(--mono);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-card {
    padding: 28px;
    border-radius: 18px;
    background: rgba(10, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover,
.contact-card:hover,
.announcement:hover {
    border-color: rgba(110, 231, 255, 0.35);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
    transform: translateY(-4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-family: var(--mono);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-note {
    margin-top: 18px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.faq-grid {
    display: grid;
    gap: 14px;
    max-width: 800px;
    margin: 0;
}

.faq-item {
    background: rgba(10, 14, 20, 0.8);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    margin-top: 12px;
    color: var(--text-dim);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-card {
    padding: 26px;
    border-radius: 20px;
    background: rgba(10, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(110, 231, 255, 0.22);
    border: 1px solid rgba(110, 231, 255, 0.6);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--accent);
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(110, 231, 255, 0.2), 0 0 18px rgba(110, 231, 255, 0.2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) contrast(1.05);
}

.contact-line {
    margin-bottom: 18px;
    color: var(--text-dim);
}

.footer {
    padding: 40px 0 60px;
    text-align: left;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
}

.footer-meta {
    font-family: var(--mono);
    font-size: 0.85rem;
    margin-top: 8px;
}


@media (max-width: 920px) {
    .nav-links {
        display: none;
    }
    .nav-content {
        justify-content: space-between;
    }
    .section-heading {
        text-align: center;
        margin: 0 auto 40px;
    }
    .faq-grid {
        margin: 0 auto;
    }
    .footer {
        text-align: center;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 130px;
    }
    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }
    .hero-visual {
        justify-items: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        width: 100%;
    }
    .ticker-track {
        font-size: 0.65rem;
    }
    .hero-stats {
        flex-direction: column;
    }
    .stat-card {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
