:root {
    --ink: #03121c;
    --ink-soft: #0f2735;
    --mint: #6fffe1;
    --amber: #ffb703;
    --sand: #f5e6d3;
    --stone: #97a6b1;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Unbounded", sans-serif;
    background: radial-gradient(circle at top left, #052433, #020b11 55%);
    color: #f5f7fa;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(111, 255, 225, 0.06), rgba(255, 183, 3, 0.05));
    pointer-events: none;
    z-index: -2;
}

.texture {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'%3E%3Cpath d='M0 70h140M70 0v140'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: -1;
}

main {
    width: min(1100px, 92%);
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem min(5vw, 60px) 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.logo {
    font-family: "Unbounded", "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.tagline {
    font-size: 0.85rem;
    color: var(--stone);
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav a {
    color: #f5f7fa;
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: background 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--mint);
}

.cta-link {
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-cta {
    background: linear-gradient(120deg, var(--amber), var(--mint));
    color: #03121c;
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.section h1,
.section h2 {
    font-family: "Unbounded", "Space Grotesk", sans-serif;
    margin-top: 0;
    margin-bottom: 1rem;
}

.section h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(111, 255, 225, 0.15);
    border-radius: 999px;
    color: var(--mint);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 1.4rem;
}

.hero-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--mint);
}

.promo-grid,
.facility-grid,
.events-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 1.4rem;
    background: rgba(7, 32, 44, 0.65);
}

.card h3 {
    margin-top: 0;
    color: var(--amber);
}

.divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.2rem 0;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline li {
    padding: 1rem 0 1rem 1.5rem;
    position: relative;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 1.3rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
}

.process-grid .step-number,
.events-grid .percent {
    font-size: 2rem;
    font-weight: 600;
    color: var(--mint);
}

.process-grid p,
.events-grid p {
    margin: 0.4rem 0 0;
    color: var(--sand);
}

.stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1 1 200px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
}

.stat-card span {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--amber);
}

.cta-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(111, 255, 225, 0.2));
}

.cta-panel a {
    align-self: flex-start;
    background: #03121c;
    color: var(--mint);
    text-decoration: none;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

form.cta-panel label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    gap: 0.35rem;
}

form.cta-panel input,
form.cta-panel textarea {
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: "Space Grotesk", sans-serif;
    background: rgba(3, 18, 28, 0.55);
    color: #f5f7fa;
}

form.cta-panel textarea {
    resize: vertical;
    min-height: 130px;
}

form.cta-panel button {
    align-self: flex-start;
    border: none;
    border-radius: 999px;
    background: #03121c;
    color: var(--mint);
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

form.cta-panel button:hover {
    opacity: 0.8;
}

.membership-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-steps li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
}

.membership-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem min(5vw, 60px) 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
    color: var(--mint);
    text-decoration: none;
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero-cta {
        justify-self: center;
    }

    .stats {
        flex-direction: column;
    }
}
