:root {
    --black: #050505;
    --charcoal: #111111;
    --dark-gray: #1b1b1b;
    --red: #c1121f;
    --red-dark: #8f0d17;
    --white: #ffffff;
    --muted: #c9c9c9;
    --border: rgba(255,255,255,0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5,5,5,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    z-index: 1002;
}

.logo-link img {
    width: 190px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
}

/* MOBILE NAV */

.nav-button {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
}

/* HERO */

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(193,18,31,0.24), transparent 35%),
        linear-gradient(135deg, #050505 0%, #101010 55%, #050505 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0;
}

.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.9rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
}

h1 span {
    color: var(--red);
}

.hero-text {
    color: var(--muted);
    font-size: 1.2rem;
    margin-bottom: 34px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}

.btn-secondary {
    border-color: var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--red);
}

.btn-link {
    color: var(--muted);
}

.trust-bar {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px;
}

.profile-img {
    width: 220px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 4px solid var(--red);
}

.hero-card h2 {
    text-align: center;
    margin-bottom: 12px;
}

.hero-card p {
    text-align: center;
    color: var(--muted);
}

/* GENERAL SECTIONS */

.section {
    padding: 92px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2,
.about-grid h2,
.email-box h2,
.support-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-heading p,
.about-grid p,
.email-box p,
.support-box p {
    color: var(--muted);
}

/* TOOL CARDS */

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.tool-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.tool-card.featured {
    border-color: rgba(193,18,31,0.7);
    background:
        linear-gradient(180deg, rgba(193,18,31,0.18), rgba(17,17,17,1));
}

.status {
    display: inline-flex;
    padding: 5px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 0.72rem;
    margin-bottom: 18px;
}

.status.live {
    background: rgba(193,18,31,0.34);
}

.tool-card h3 {
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.tool-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.tool-card .btn {
    margin-top: auto;
}

.dark-section {
    background: #080808;
}

/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.portrait {
    border-radius: 24px;
    border: 1px solid var(--border);
}

.about-grid p {
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    list-style: none;
    margin-top: 26px;
}

.check-list li {
    background: var(--charcoal);
    border-left: 4px solid var(--red);
    padding: 14px;
}

/* CREDENTIALS */

.credentials-section {
    background: #080808;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.credential-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
}

.credential-card h3 {
    margin-bottom: 22px;
}

.credential-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.credential-card li {
    color: var(--muted);
    padding-left: 18px;
    position: relative;
}

.credential-card li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    position: absolute;
    left: 0;
    top: 10px;
}

/* PHILOSOPHY */

.philosophy-section {
    background:
        linear-gradient(135deg, rgba(193,18,31,0.18), transparent 45%),
        var(--charcoal);
    text-align: center;
}

/* EMAIL */

.email-section {
    background: #080808;
}

.email-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 42px;
}

.signup-form {
    display: grid;
    gap: 14px;
}

.signup-form input {
    min-height: 50px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #050505;
    color: var(--white);
    padding: 0 16px;
}

.hidden-field {
    display: none;
}

.form-message.success {
    color: #8ef0a3;
}

.form-message.error {
    color: #ff8a8a;
}

/* SUPPORT */

.support-section {
    text-align: center;
}

.support-box {
    max-width: 780px;
    margin: 0 auto;
}

.support-box p {
    margin-bottom: 26px;
}

/* FOOTER */

.site-footer {
    background: #030303;
    border-top: 1px solid var(--border);
    padding: 38px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-inner img {
    width: 160px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--white);
}

.site-footer p {
    color: var(--muted);
}

/* COACHING NOTES */

.article-hero {
    background:
        radial-gradient(circle at top right, rgba(193,18,31,0.22), transparent 38%),
        linear-gradient(135deg, #050505 0%, #111 60%, #050505 100%);
    border-bottom: 1px solid var(--border);
    padding: 88px 0 72px;
}

.article-container {
    max-width: 860px;
}

.article-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.article-hero .hero-text {
    max-width: 860px;
    line-height: 1.85;
}

.coaching-notes-section {
    background: #080808;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.article-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193,18,31,0.7);
    box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.article-label {
    display: inline-block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.article-card h2 {
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.article-card h2 a {
    color: var(--white);
}

.article-card h2 a:hover {
    color: var(--red);
}

.article-card p {
    color: var(--muted);
    line-height: 1.75;
}

.read-more {
    margin-top: 24px;
    display: inline-flex;
    color: var(--red);
    font-weight: 700;
    transition: 0.2s ease;
}

.read-more:hover {
    color: var(--white);
    transform: translateX(3px);
}

/* ARTICLE PAGES */

.article-section {
    background: #080808;
    padding-top: 70px;
}

.article-section .article-container {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: clamp(28px, 5vw, 58px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
}

.article-section p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.article-section h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-top: 54px;
    margin-bottom: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.article-section ul,
.article-section ol {
    margin: 18px 0 30px 28px;
    padding-left: 20px;
}

.article-section li {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 10px;
    padding-left: 4px;
}

.article-section ul li::marker,
.article-section ol li::marker {
    color: var(--red);
}

.article-section strong {
    color: var(--white);
}

.article-cta {
    margin-top: 60px;
    padding: 34px;
    border-radius: 18px;
    border: 1px solid rgba(193,18,31,0.55);
    background:
        linear-gradient(135deg, rgba(193,18,31,0.18), rgba(255,255,255,0.03)),
        #101010;
}

.article-cta h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-cta p {
    max-width: 720px;
}

/* RELATED ARTICLES */

.related-articles-section {
    background: #050505;
    border-top: 1px solid var(--border);
}

.related-articles-section .section-heading {
    margin-bottom: 36px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .nav-button {
        display: block;
        margin-left: auto;
        z-index: 1002;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050505;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 1001;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 18px 24px;
        border-bottom: 1px solid var(--border);
    }

    .site-nav a:last-child {
        border-bottom: none;
    }

    .hero-grid,
    .about-grid,
    .email-box,
    .tool-grid,
    .two-col,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 56px 0;
    }

    .check-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .article-hero {
        padding: 64px 0 54px;
    }

    .article-section {
        padding-top: 44px;
    }

    .article-section .article-container {
        padding: 24px;
        border-radius: 16px;
    }

    .article-section p,
    .article-section li {
        font-size: 1rem;
    }

    .article-section ul,
    .article-section ol {
        margin-left: 20px;
        padding-left: 16px;
    }

    .article-cta {
        padding: 24px;
    }
}

@media (max-width: 560px) {

    .section {
        padding: 68px 0;
    }

    .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}