:root {
    --bg-main: #050509;
    --bg-card: #111119;
    --accent: #f2c200;
    --accent-soft: rgba(242, 194, 0, 0.12);
    --text-main: #f5f5f5;
    --text-muted: #a3a3a3;
    --border-subtle: #262632;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #161621 0, #050509 50%, #020208 100%);
    color: var(--text-main);
    min-height: 100vh;
}

/* Layout wrappers */

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
}

/* Header / Nav */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.75), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-main);
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffffff 0, #f2f2f2 15%, #ffeb99 35%, #f2c200 60%, #8a6200 100%);
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(242, 194, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    width: 130%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fffbe6, transparent);
    position: absolute;
    top: 40%;
    opacity: 0.6;
    transform: rotate(-22deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.35);
}

.nav-link:hover {
    border-color: rgba(242, 194, 0, 0.8);
}

.nav-link-primary {
    background: linear-gradient(135deg, #f2c200, #ffdd55);
    color: #1a1300;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 18px rgba(242, 194, 0, 0.5);
}

/* Cards / Shared */

.card {
    background: linear-gradient(145deg, var(--bg-card), #080811);
    border-radius: 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top left, var(--accent-soft) 0, transparent 50%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03) 0, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.card-inner {
    position: relative;
    z-index: 1;
}

/* Hero */

.hero {
    margin-top: 1.5rem;
}

.hero-inner {
    padding: 2.6rem 2.1rem 2.1rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(242, 194, 0, 0.4);
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.accent-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, border-color 0.08s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #f2c200, #ffdd55);
    color: #1a1300;
    border-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 22px rgba(242, 194, 0, 0.6);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-main);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
    border-color: rgba(242, 194, 0, 0.6);
}

/* Hero meta */

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.hero-meta-item .meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.hero-meta-item .meta-value {
    font-size: 0.9rem;
}

/* Features */

.features {
    margin-top: 2.5rem;
}

.features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.section-lead {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.feature-card {
    background: rgba(5, 5, 12, 0.85);
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1.3rem;
    font-size: 0.9rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-main);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.feature-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.feature-card-muted {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 12, 0.65);
}

.feature-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA strip */

.cta-strip {
    margin-top: 2.5rem;
}

.cta-inner {
    padding: 1.6rem 1.8rem;
}

.cta-inner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cta-inner-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.cta-inner-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 420px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Footer */

.site-footer {
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.site-footer span {
    color: var(--accent);
}

/* Responsive */

@media (max-width: 900px) {
    .page-wrapper {
        padding-inline: 1rem;
    }

    .site-header-inner {
        padding-inline: 1rem;
    }

    .hero-inner {
        padding-inline: 1.6rem;
    }

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

    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-inner {
        padding: 1.8rem 1.4rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }
}
