/* =========================================
   STELLAR FITNESS — BRUTALIST PERSONAL
   ========================================= */

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gray: #666;
    --gray-light: #222;
    --accent: #fff;
    --font: 'Space Grotesk', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   NAV — Brutally simple
   ========================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wordmark {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
}

.nav-cta {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-cta:hover {
    color: var(--white);
}

/* =========================================
   HERO — Typography as the visual
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    max-width: 900px;
}

.tag {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero h2 em {
    color: var(--white);
    font-style: normal;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.subtext {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* =========================================
   ABOUT — Conversational
   ========================================= */
.about {
    padding: 6rem 0;
    border-top: 1px solid var(--gray-light);
}

.about h3,
.pricing h3,
.faq h3,
.contact h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--white);
    font-weight: 600;
}

.about-content em {
    font-style: italic;
}

/* =========================================
   PRICING — Clean and direct
   ========================================= */
.pricing {
    padding: 6rem 0;
    background: var(--gray-light);
}

.pricing-intro {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-card {
    background: var(--black);
    padding: 2.5rem;
    border: 1px solid #333;
}

.price-card.featured {
    border-color: var(--white);
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.savings {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-note {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* =========================================
   FAQ — Straightforward
   ========================================= */
.faq {
    padding: 6rem 0;
    border-top: 1px solid var(--gray-light);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-q {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-a {
    color: var(--gray);
    line-height: 1.7;
}

/* =========================================
   CONTACT — Personal
   ========================================= */
.contact {
    padding: 6rem 0;
    background: var(--gray-light);
}

.contact>.container>p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid #333;
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--white);
}

.contact-alt {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-alt a {
    color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-light);
}

footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 600px) {
    html {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 6rem;
    }

    .steps {
        gap: 2rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
    padding: 6rem 0;
    border-top: 1px solid var(--gray-light);
}

.how-it-works h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    min-width: 80px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* =========================================
   PRICING FEATURES LIST
   ========================================= */
.price-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.price-features li {
    padding: 0.5rem 0;
    color: #bbb;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.price-note a {
    color: var(--white);
}

.price-amount .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

/* =========================================
   FORM ENHANCEMENTS
   ========================================= */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Success/error states */
.form-success {
    background: #1a3a1a;
    border: 1px solid #2d5a2d;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.form-success p {
    color: #8fdf8f;
    margin: 0;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}