﻿
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Syne:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
    --magenta: #ad1082;
    --magenta-bright: #d4169e;
    --magenta-glow: rgba(173,16,130,0.4);
    --teal: #0eb5b5;
    --teal-dim: rgba(14,181,181,0.15);
    --green-btn: #2ea44f;
    --dark: #080810;
    --dark2: #0e0e1a;
    --dark3: #131326;
    --card: rgba(20,20,36,0.85);
    --border: rgba(173,16,130,0.25);
    --border-teal: rgba(14,181,181,0.2);
    --text: #e8e8f4;
    --muted: #8888aa;
    --white: #ffffff;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Verdana', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, .nav-logo, .hero h1, .cs-heading, .cd-num, .cs-progress-pct, .nav-avatar {
    font-family: 'Orbitron', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 999;
    }

    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background-image: linear-gradient(rgba(173,16,130,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(173,16,130,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
    }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(8,8,16,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

    nav .nav-cta {
        justify-self: end;
    }

    nav li.nav-links {
        display: list-item;
    }

        nav li.nav-links a {
            display: inline;
        }

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-dot {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 10px var(--magenta-bright);
}

    .nav-logo-dot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal);
            /*color: var(--magenta-bright);*/
        }

.menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .menu > li {
        position: relative;
    }

    .menu a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .menu a:hover,
        .menu a:focus {
            /*color: var(--teal);*/
            color: var(--magenta-bright);
        }

.submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 180px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 200;
}

/* Account avatar dropdown on the right edge of the avatar */
.nav-account-dropdown {
    position: relative;
}

.nav-account-dropdown > .submenu {
    left: auto;
    right: 0;
    top: calc(100% + 6px);
}

/* Make account submenu links white and remove underline */
.nav-account-dropdown .submenu li a {
    color: var(--white);
    text-decoration: none;
}

/* Keep hover styling consistent */
.nav-account-dropdown .submenu li a:hover,
.nav-account-dropdown .submenu li a:focus {
    background: var(--dark3);
    color: var(--teal);
}

    .submenu li a {
        display: block;
        padding: 8px 16px;
        font-size: 0.80rem;
        color: var(--muted);
        white-space: nowrap;
        transition: background .2s, color .2s;
    }

        .submenu li a:hover,
        .submenu li a:focus {
            background: var(--dark3);
            color: var(--teal);
        }

.dropdown:hover > .submenu,
.dropdown:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, box-shadow 0.2s;
}

    .nav-cta:hover {
        background: var(--magenta-bright);
        box-shadow: 0 0 20px var(--magenta-glow);
    }

/* Avatar image inside nav-avatar button */
.nav-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Avatar that appears after login */
    .nav-avatar {
        width: 38px;
        height: 38px;
        background: var(--magenta); 
        color: var(--white);
        font-family: var(--font-head);
        font-weight: 900;
        font-size: 1rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        cursor: pointer;
        user-select: none;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        justify-self: end;
        -webkit-appearance: none;
        appearance: none;
        outline: none;
        border: none;
    }

    .nav-avatar:hover {
        background: var(--magenta-bright);
        transform: translateY(-1px);
    }

    /* Magenta glow for avatar image to match left logo styling */
    .nav-avatar {
        box-shadow: 0 0 8px var(--magenta-bright), 0 0 22px var(--magenta-glow);
    }

    .nav-avatar:hover {
        box-shadow: 0 0 12px var(--magenta-bright), 0 0 28px var(--magenta-glow);
    }

    /* Ensure the image itself has rounded corners and subtle glow */
    .nav-avatar-img {
        border-radius: 6px;
        box-shadow: 0 0 6px rgba(212,22,158,0.6), 0 0 18px rgba(173,16,130,0.28);
    }

    .nav-avatar:focus,
    .nav-avatar:focus-visible {
        outline: none;
        box-shadow: none;
    }

    .nav-avatar::-moz-focus-inner {
        border: 0;
    }

.coming-soon-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(173,16,130,0.18) 0%, transparent 70%);
    filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -100px;
    background: radial-gradient(circle, rgba(14,181,181,0.12) 0%, transparent 70%);
    filter: blur(30px);
    animation: orbFloat 12s ease-in-out infinite reverse;
}

.orb3 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -50px;
    background: radial-gradient(circle, rgba(173,16,130,0.1) 0%, transparent 70%);
    filter: blur(20px);
    animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-30px) translateX(-50%);
    }
}

.orb2, .orb3 {
    animation-name: orbFloat2;
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(173,16,130,0.12);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 18px;
    font-family: var(--font-mono);
    font-size: 2.00rem;
    color: var(--magenta-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeDown 0.8s ease both;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--magenta-bright);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--magenta-bright);
        animation: pulse 1.5s ease infinite;
    }

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    animation: fadeUp 0.9s ease 0.1s both;
}

    .hero h1 .acc {
        color: var(--white);
    }

    .hero h1 .gpt {
        color: var(--magenta-bright);
        text-shadow: 0 0 40px var(--magenta-glow), 0 0 80px rgba(173,16,130,0.2);
    }

.hero-tagline {
    font-family: Verdana;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.9s ease 0.2s both;
}

.hero p {
    max-width: 620px;
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 auto 48px;
    animation: fadeUp 0.9s ease 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Heading */
.cs-heading {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.9s ease 0.2s both;
}

    .cs-heading span {
        color: var(--magenta-bright);
        text-shadow: 0 0 40px var(--magenta-glow), 0 0 80px rgba(173,16,130,0.2);
    }

.cs-sub {
    font-family: var(--font-mono);
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
    color: var(--teal);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease 0.3s both;
}

.cs-desc {
    max-width: 580px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    animation: fadeUp 0.9s ease 0.35s both;
}

.cs-countdown {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp 0.9s ease 0.4s both;
}

.cd-unit {
    min-width: 100px;
    padding: 20px 28px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
}

    .cd-unit:first-child {
        border-radius: 8px 0 0 8px;
    }

    .cd-unit:last-child {
        border-radius: 0 8px 8px 0;
        border-left: none;
    }

    .cd-unit + .cd-unit {
        border-left: none;
    }

    .cd-unit::after {
        content: ':';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-60%);
        font-family: var(--font-head);
        font-size: 1.6rem;
        color: var(--border);
        z-index: 2;
    }

    .cd-unit:last-child::after {
        display: none;
    }

.cd-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.04em;
    min-width: 2ch;
    display: inline-block;
}

    .cd-num.tick {
        animation: tickFlip 0.35s ease;
    }

@keyframes tickFlip {
    0% {
        opacity: 0.4;
        transform: translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cd-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 6px;
}

.cs-progress-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 56px;
    animation: fadeUp 0.9s ease 0.45s both;
}

.cs-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cs-progress-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cs-progress-pct {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--magenta-bright);
}

.cs-progress-track {
    height: 6px;
    background: var(--dark3);
    border-radius: 100px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.cs-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--magenta), var(--magenta-bright), var(--teal));
    border-radius: 100px;
    transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--magenta-glow);
}

.cs-status-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp 0.9s ease 0.55s both;
}

.cs-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cs-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .cs-chip-dot.green {
        background: #2ea44f;
        box-shadow: 0 0 6px #2ea44f;
    }

    .cs-chip-dot.amber {
        background: #e8a020;
        box-shadow: 0 0 6px #e8a020;
    }

    .cs-chip-dot.magenta {
        background: var(--magenta-bright);
        box-shadow: 0 0 6px var(--magenta-bright);
    }

.cs-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
    animation: fadeUp 0.9s ease 0.6s both;
}

    .cs-back:hover {
        color: var(--teal);
    }

    .cs-back svg {
        transition: transform 0.2s;
    }

    .cs-back:hover svg {
        transform: translateX(-3px);
    }

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: 1200px;
    margin: 0 auto;
}


/* For Index */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.4s both;
}

.btn-primary {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--magenta-bright);
        box-shadow: 0 0 30px var(--magenta-glow), 0 8px 20px rgba(0,0,0,0.4);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: transparent;
    color: var(--teal);
    border: 1px solid var(--border-teal);
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary:hover {
        background: var(--teal-dim);
        border-color: var(--teal);
        transform: translateY(-2px);
    }

.stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(14,14,26,0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    max-width: 220px;
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

    .stat-num span {
        color: var(--magenta-bright);
    }

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--magenta-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-label::before {
        content: '';
        height: 1px;
        width: 40px;
        background: var(--magenta-bright);
    }

.section-label2 {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--magenta-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-label2::before {
        content: '';
        height: 1px;
        width: 40px;
        background: var(--magenta-bright);
    }

    .section-label2::after {
        content: '';
        height: 1px;
        width: 40px;
        background: var(--magenta-bright);
    }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 64px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

    .feature-row::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--magenta), var(--teal));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .feature-row:hover {
        border-color: rgba(173,16,130,0.5);
        box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(173,16,130,0.08);
    }

        .feature-row:hover::before {
            opacity: 1;
        }

    .feature-row .row-text {
        order: 1;
    }

    .feature-row .row-img {
        order: 2;
    }

    .feature-row.reverse .row-text {
        order: 2;
    }

    .feature-row.reverse .row-img {
        order: 1;
    }

.row-text {
    padding: 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-img {
    background: var(--dark3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
    min-height: 380px;
}

.feature-row.reverse .row-img {
    border-left: none;
    border-right: 1px solid var(--border);
}

.row-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
    transition: transform 0.4s ease;
}

.feature-row:hover .row-img img {
    transform: scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.2;
}

.card-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
}

.card-tag {
    display: inline-block;
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--teal-dim);
    border: 1px solid rgba(14,181,181,0.2);
    padding: 5px 14px;
    border-radius: 3px;
}

@media (max-width: 860px) {
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
    }

        .feature-row .row-text, .feature-row .row-img,
        .feature-row.reverse .row-text, .feature-row.reverse .row-img {
            order: unset;
        }

        .feature-row .row-img, .feature-row.reverse .row-img {
            border-left: none;
            border-right: none;
            border-top: 1px solid var(--border);
            min-height: 260px;
        }

    .row-text {
        padding: 36px 28px;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
    counter-reset: step;
}

    .steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
    }

.step {
    padding: 0 24px;
    text-align: center;
    counter-increment: step;
    position: relative;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--magenta-bright);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.signup-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

    .signup-section::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(173,16,130,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.signup-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

    .signup-inner .section-title {
        margin-bottom: 12px;
    }

    .signup-inner p {
        color: var(--muted);
        font-size: 1rem;
        margin-bottom: 40px;
    }

.signup-form-2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

    .signup-form-2 input {
        flex: 1;
        min-width: 200px;
        background: var(--dark3);
        border: 1px solid var(--border);
        border-radius: 4px;
        outline: none;
        padding: 14px 18px;
        color: var(--text);
        font-family: var(--font-body);
        font-size: 0.95rem;
        transition: border-color 0.2s;
    }

        .signup-form-2 input:focus {
            border-color: var(--magenta-bright);
        }

        .signup-form-2 input::placeholder {
            color: var(--muted);
        }

    .signup-form-2 button {
        background: var(--magenta);
        color: var(--white);
        border: none;
        padding: 14px 32px;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.95rem;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.2s;
        letter-spacing: 0.04em;
    }

        .signup-form-2 button:hover {
            background: var(--magenta-bright);
            box-shadow: 0 0 20px var(--magenta-glow);
        }

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(46, 164, 79, 0.15);
    border: 1px solid rgba(46, 164, 79, 0.3);
    color: #4cae4c;
}

.signup-disclaimer {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 14px;
    opacity: 0.7;
}

.quote-block {
    background: var(--dark3);
    border-left: 3px solid var(--magenta);
    padding: 32px 40px;
    border-radius: 0 8px 8px 0;
    margin-top: 60px;
    position: relative;
}

    .quote-block::before {
        content: '"';
        font-family: Georgia, serif;
        font-size: 6rem;
        color: var(--magenta);
        opacity: 0.2;
        position: absolute;
        top: -10px;
        left: 20px;
        line-height: 1;
    }

.quote-text {
    font-size: 1.15rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.quote-author {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px 24px;
    background: var(--dark);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

    .footer-logo span {
        color: var(--magenta-bright);
    }

.footer-note {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}

    .footer-note a {
        color: #FFFFFF;
        text-decoration: none;
        transition: border-color 0.2s;
    }

.heart {
    filter: hue-rotate(-45deg) saturate(3.0) brightness(1.25);
    font-size: 1.25rem;
    color: var(--magenta-bright);
    vertical-align: -4px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.circuit-line {
    position: absolute;
    background: var(--magenta);
    opacity: 0.08;
}

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu {
        display: none;
    }

    .steps {
        gap: 40px;
    }

        .steps::before {
            display: none;
        }

    .stat-item {
        min-width: 120px;
    }

    .cd-unit {
        min-width: 72px;
        padding: 16px 18px;
    }

    .cd-num {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .cs-icon-wrap {
        width: 110px;
        height: 110px;
    }

    .cs-icon-inner svg {
        width: 44px;
        height: 44px;
    }
}
