:root {
    --bg: #0b1020;
    --surface: #101a36;
    --surface-2: #0f1832;
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);
    --muted-2: rgba(255, 255, 255, 0.58);
    --brand: #6ee7ff;
    --brand-2: #a78bfa;
    --accent: #34d399;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

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

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.6;
    color: var(--text);
    background: radial-gradient(1100px 700px at 20% -10%, rgba(110, 231, 255, 0.22), transparent 60%),
        radial-gradient(900px 600px at 80% 10%, rgba(167, 139, 250, 0.18), transparent 55%),
        var(--bg);
}

a {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11, 16, 32, 0.65);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-name {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
}

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

.nav-cta {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.18), rgba(167, 139, 250, 0.18));
    color: var(--text) !important;
}

.hero {
    padding: 64px 0 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: start;
}

.eyebrow {
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.85), rgba(167, 139, 250, 0.85));
    color: rgba(11, 16, 32, 0.95);
    padding: 0.85rem 1.1rem;
    text-decoration: none;
    border-radius: 14px;
    transition: transform 0.15s ease, filter 0.15s ease;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.btn-small {
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--brand);
}

.icon svg {
    width: 22px;
    height: 22px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-weight: 650;
}

.hero-card {
    position: relative;
    display: grid;
    gap: 12px;
}


.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 700;
}

.pill .icon {
    color: var(--accent);
}

.card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 26, 54, 0.9), rgba(15, 24, 50, 0.9));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tiny {
    font-size: 0.9rem;
}

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

.section {
    padding: 52px 0;
}

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

.section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.section-head-lined {
    padding-top: 26px;
    border-top: 1px solid var(--border);
    overflow: visible;
}

.section-head-lined::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.8), rgba(167, 139, 250, 0.8));
}

.section-peek {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    width: min(220px, 28vw);
    max-width: 240px;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}

.section-peek img {
    width: 100%;
    height: auto;
    display: block;
}

.section-head-lined h2,
.section-head-lined p {
    position: relative;
    z-index: 1;
}

.section-head h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.grid {
    display: grid;
    gap: 14px;
}

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

.card h3 {
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    color: var(--brand);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.panel {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.panel-title {
    margin-bottom: 10px;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 10px;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    font-weight: 650;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(52, 211, 153, 0.18);
    border: 1px solid rgba(52, 211, 153, 0.38);
}

.checklist li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 7px;
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

.checklist-muted li {
    color: var(--muted-2);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.profile-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: start;
}

.profile-photo {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
}

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

.cta-bar {
    margin-top: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.10), rgba(167, 139, 250, 0.10));
}

.faq {
    margin-top: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.faq h3 {
    margin-bottom: 10px;
}

.faq details {
    border-top: 1px solid var(--border);
    padding: 10px 0;
}

.faq details:first-of-type {
    border-top: none;
    padding-top: 0;
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    color: var(--muted);
}

.faq details[open] summary::after {
    content: "–";
}

.faq p {
    margin-top: 8px;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    background: rgba(11, 16, 32, 0.55);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .profile-card {
        grid-template-columns: 76px 1fr;
    }

    .profile-photo {
        width: 76px;
        height: 76px;
        border-radius: 16px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .section-peek {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn {
        transition: none;
    }
}
