﻿:root {
    --bg: #0b0f17;
    --bg-alt: #0f1522;
    --surface: #141c2b;
    --surface-alt: #1a2334;
    --border: #243046;
    --text: #f4f7fb;
    --muted: #b4bfd1;
    --accent: #7df7c7;
    --accent-strong: #33d6a0;
    --accent-warm: #ffb86b;
    --shadow: 0 24px 60px rgba(4, 8, 16, 0.55);
    --heading-font: "Fraunces", "Space Grotesk", serif;
    --body-font: "Space Grotesk", "Open Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

body {
    background: radial-gradient(circle at 15% 10%, rgba(125, 247, 199, 0.12), transparent 35%),
                radial-gradient(circle at 85% 15%, rgba(255, 184, 107, 0.12), transparent 32%),
                var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    padding: 0 0 80px;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

body::before {
    top: -120px;
    right: -140px;
    background: rgba(125, 247, 199, 0.25);
}

body::after {
    bottom: -160px;
    left: -140px;
    background: rgba(255, 184, 107, 0.2);
}

main,
header,
footer {
    position: relative;
    z-index: 1;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.top-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    backdrop-filter: blur(18px);
    background: rgba(7, 10, 16, 0.92);
    z-index: 12;
    border-bottom: 1px solid rgba(36, 48, 70, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.4px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    box-shadow: 0 0 12px rgba(125, 247, 199, 0.6);
    display: inline-block;
}

.top-nav nav {
    display: flex;
    gap: 14px;
    align-items: center;
}

.top-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.top-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.top-nav .cta {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #041015;
    font-weight: 700;
    box-shadow: var(--shadow);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
    padding: 32px 0 72px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--muted);
    max-width: 640px;
    margin: 8px 0 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(125, 247, 199, 0.08);
    color: var(--accent);
    border: 1px solid rgba(125, 247, 199, 0.3);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 26px;
}

.actions a {
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.actions .primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #041015;
    box-shadow: var(--shadow);
}

.actions .secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.actions .ghost {
    border: 1px dashed rgba(255, 184, 107, 0.6);
    color: var(--text);
    background: rgba(255, 184, 107, 0.08);
}

.actions a:hover {
    transform: translateY(-2px);
}

.highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.highlight div {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.stat {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-card {
    background: linear-gradient(160deg, rgba(20, 28, 43, 0.96), rgba(12, 17, 30, 0.95));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -40% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(125, 247, 199, 0.25), transparent 70%);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

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

.pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(125, 247, 199, 0.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task .due {
    color: var(--accent-warm);
    font-weight: 600;
}

.task .soon {
    color: #88b4ff;
    font-weight: 600;
}

.task .tag {
    color: var(--accent);
    font-weight: 700;
}

.task.completed {
    opacity: 0.6;
}

.task .check {
    color: var(--accent);
    font-weight: 700;
}

.card-footer {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

.status {
    padding: 8px 0 64px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 6px 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.highlight-card {
    border-color: rgba(125, 247, 199, 0.4);
    background: linear-gradient(140deg, rgba(125, 247, 199, 0.12), rgba(20, 28, 43, 0.9));
}

.status-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.status-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.status-card li::before {
    content: "-";
    margin-right: 8px;
    color: var(--accent);
}

.features {
    padding: 12px 0 64px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 247, 199, 0.4);
}

.feature-card .icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.assurance {
    padding: 4px 0 64px;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.assurance-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(10, 17, 30, 0.95));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.assurance-card.accent {
    border-color: rgba(125, 247, 199, 0.4);
    background: linear-gradient(140deg, rgba(125, 247, 199, 0.12), rgba(10, 17, 30, 0.95));
}

.assurance-card h3 {
    margin-bottom: 10px;
}

.assurance-card ul {
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

.assurance-card li::before {
    content: "-";
    margin-right: 8px;
    color: var(--accent);
}

.cta-banner {
    margin: 10px 0 32px;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(120deg, rgba(125, 247, 199, 0.12), rgba(10, 17, 30, 0.96));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer {
    text-align: center;
    color: var(--muted);
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-up 0.7s ease forwards;
}

.reveal.delay-1 {
    animation-delay: 0.12s;
}

.reveal.delay-2 {
    animation-delay: 0.22s;
}

.reveal.delay-3 {
    animation-delay: 0.32s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-card {
        order: -1;
    }

    .cta-banner {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    body {
        padding: 0 18px 60px;
    }

    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .actions a {
        text-align: center;
    }
}
