/* ============================================
   ATHLETE PR — Premium Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0f1520;
    --bg-card: #131b2b;
    --bg-card-hover: #182035;
    --gold: #c9a84c;
    --gold-light: #dbb960;
    --gold-dark: #a8892e;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --text-primary: #f1f1f1;
    --text-secondary: #94a3b8;
    --text-muted: #5a6a82;
    --border: #1c2840;
    --border-light: #253352;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0f1a;
    border-color: var(--gold);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 20px 0;
}

.nav--scrolled {
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.nav__logo span {
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a:not(.btn) {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav__links a:not(.btn):hover {
    color: var(--gold);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--gold);
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 40px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__publications {
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.hero__pub-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero__pub-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.hero__pub-logos span {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.hero__pub-logos span:hover {
    opacity: 1;
    color: var(--text-secondary);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section--dark {
    background: var(--bg-secondary);
}

.section--dark::before,
.section--dark::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section--dark::before { top: 0; }
.section--dark::after { bottom: 0; }

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Coverage Gap --- */
.coverage-gap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.coverage-gap__content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.coverage-gap__highlight {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 19px !important;
    margin-top: 12px;
}

.coverage-gap__stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.stat-card__number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    color: var(--gold);
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Steps --- */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    flex: 1;
    max-width: 320px;
    padding: 0 24px;
}

.step-card__number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-card__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
    margin-top: 32px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card--featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}

.pricing-card--featured:hover {
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0f1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 24px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 32px;
}

.pricing-card__name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.pricing-card__currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
    margin-right: 4px;
}

.pricing-card__amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card--featured .pricing-card__amount {
    color: var(--gold);
}

.pricing-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.pricing-card__features li strong {
    color: var(--text-primary);
}

/* --- Writers / Publications --- */
.writers-pubs {
    text-align: center;
}

.writers-pubs__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.writers-pubs__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pub-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 40px;
    transition: all var(--transition);
}

.pub-card:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
}

.pub-card__name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.pub-card:hover .pub-card__name {
    color: var(--gold);
}

.pub-card--wide {
    flex-basis: 100%;
    max-width: 400px;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: var(--border-light);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
    user-select: none;
}

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

.faq-item__question::marker {
    display: none;
    content: '';
}

.faq-item__question:hover {
    color: var(--gold);
}

.faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-item__icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    padding: 0 28px 24px;
}

.faq-item__answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* --- CTA Section --- */
.section--cta {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        var(--bg-primary);
    border-top: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-content__subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer__brand p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer__links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .coverage-gap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
        z-index: 999;
    }

    .nav__links.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav__links a:not(.btn) {
        font-size: 22px;
        font-weight: 600;
    }

    .nav__hamburger {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .section__header {
        margin-bottom: 48px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__cta {
        margin-bottom: 48px;
    }

    .hero__pub-logos {
        gap: 20px;
    }

    .hero__pub-logos span {
        font-size: 13px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-card {
        max-width: 100%;
    }

    .step-card__connector {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, var(--border), var(--gold), var(--border));
        margin: 0;
    }

    .stat-card__number {
        font-size: 28px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card__amount {
        font-size: 52px;
    }

    .pub-card {
        padding: 20px 28px;
    }

    .footer__content {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .faq-item__question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-item__answer {
        padding: 0 20px 20px;
    }
}

/* --- Success Page Styles --- */
.success-page {
    min-height: 100vh;
    padding: 120px 0 80px;
}

.success-header {
    text-align: center;
    margin-bottom: 48px;
}

.success-header__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--gold);
}

.success-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.intake-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--gold);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .intake-form {
        padding: 28px 20px;
    }
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #4ade80;
}

.form-success h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

.hidden {
    display: none !important;
}
