:root {
    --green: #2ECC71;
    --green-dark: #27AE60;
    --charcoal: #2C3E50;
    --charcoal-light: #34495E;
    --white: #FAFAFA;
    --gold: #F39C12;
    --blue: #3498DB;
    --black: #1a1a2e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
}

.nav-brand .g2g { color: var(--green); }

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

body.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* SHARED SECTIONS */
.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(160deg, var(--black) 0%, #1a2a1a 40%, var(--charcoal) 70%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M0 100h60l10-10h20l10 10h100' stroke='%232ECC71' stroke-width='0.8' fill='none'/%3E%3Cpath d='M100 0v60l10 10v20l-10 10v100' stroke='%232ECC71' stroke-width='0.8' fill='none'/%3E%3Cpath d='M0 50h30l10-10h20' stroke='%232ECC71' stroke-width='0.5' fill='none'/%3E%3Cpath d='M150 0v30l-10 10v20' stroke='%232ECC71' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='60' cy='100' r='2.5' fill='%232ECC71'/%3E%3Ccircle cx='100' cy='60' r='2.5' fill='%232ECC71'/%3E%3Ccircle cx='100' cy='100' r='3' fill='none' stroke='%232ECC71' stroke-width='0.8'/%3E%3Ccircle cx='150' cy='50' r='2' fill='%232ECC71'/%3E%3Ccircle cx='60' cy='50' r='1.5' fill='%232ECC71'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mask-image: radial-gradient(ellipse at 75% 65%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 75% 65%, black 20%, transparent 65%);
    pointer-events: none;
}

.page-hero .page-electrons {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mask-image: radial-gradient(ellipse at 75% 65%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 75% 65%, black 20%, transparent 65%);
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* HERO (home) */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.brand-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero h1 .g2g { color: var(--green); }
.hero h1 .with {
    font-size: 0.4em;
    color: rgba(255,255,255,0.4);
    display: block;
    letter-spacing: 0.2em;
    margin: 0.5rem 0;
}

.tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin: 1.5rem 0;
    font-weight: 400;
}

.tagline em {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.pillars {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.pillar {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    position: relative;
}

.pillar::after {
    content: '·';
    position: absolute;
    right: -1.1rem;
    color: var(--green);
}

.pillar:last-child::after { display: none; }

/* BUTTONS */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    background: transparent;
}

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

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

/* CONTENT SECTIONS */
.content-section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

/* STATS */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--green);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

/* SCRIPTURE */
.scripture {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.scripture blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    padding: 0 2rem;
}

.scripture cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* YOUTUBE */
.youtube-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255,0,0,0.03), transparent);
}

.youtube-inner { max-width: 800px; margin: 0 auto; }

.youtube-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.youtube-section .subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.youtube-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.youtube-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: #FF0000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.youtube-subscribe:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.youtube-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--green);
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.social-link .handle {
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

/* SIGNUP */
.signup {
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.signup h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.signup p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.signup-form {
    display: flex;
    gap: 0.5rem;
}

.signup-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.signup-form input::placeholder { color: rgba(255,255,255,0.3); }
.signup-form input:focus { outline: none; border-color: var(--green); }

.signup-form button {
    padding: 0.8rem 1.5rem;
    background: var(--green);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover { background: var(--green-dark); }

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(46, 204, 113, 0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--black);
}

.timeline-date {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 0.3rem;
}

.timeline-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* DATA TABLE */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.data-table th {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--green);
}

.data-table td { color: rgba(255,255,255,0.7); }
.data-table tr:hover td { color: var(--white); }

/* PLACEHOLDER */
.placeholder-box {
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.placeholder-box p {
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(243, 156, 18, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold);
}

.highlight-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* CONTACT FORM */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--green); }

/* FOOTER */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .footer-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

footer .footer-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-nav a:hover { color: var(--green); }

footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

footer .verse {
    color: var(--gold);
    font-style: italic;
}

/* GREEN GLOW SECTION */
.glow-section {
    background: linear-gradient(180deg, transparent, rgba(46, 204, 113, 0.03), transparent);
}

/* JOURNEY COUNTER */
.journey-counter {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.journey-card {
    max-width: 700px;
    width: 100%;
    background: rgba(46, 204, 113, 0.03);
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(46, 204, 113, 0.08), inset 0 0 40px rgba(46, 204, 113, 0.02);
}

.journey-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), transparent 50%, rgba(243, 156, 18, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
}

.journey-day {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.4);
}

.journey-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

.journey-milestones {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.milestone:hover {
    background: rgba(255,255,255,0.03);
}

.milestone-day {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    min-width: 60px;
    white-space: nowrap;
}

.milestone-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
}

.milestone.achieved .milestone-text {
    color: rgba(255,255,255,0.75);
}

.milestone.upcoming {
    opacity: 0.6;
}

.milestone.upcoming .milestone-day {
    color: var(--gold);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(243, 156, 18, 0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.journey-day { animation: countUp 0.8s ease-out; }

/* HEADSHOT PLACEHOLDER */
.headshot-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(46,204,113,0.3);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* STICKY MOBILE CTA */
.mobile-cta-sticky {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: var(--green);
        color: #fff;
        text-align: center;
        padding: 0.9rem 1rem;
        font-family: 'Oswald', sans-serif;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    body.nav-open .nav-links { display: flex; }

    .hamburger { display: flex; }

    .hero h1 { font-size: 2rem; }
    .hero-top { flex-direction: column; text-align: center; }
    .hero-headshot { width: 100px; height: 100px; margin: 0 auto 1.5rem; }
    .cta-group { justify-content: center; }

    .pathways { flex-direction: column; padding: 2rem 1rem; gap: 1.5rem; }
    .pathway-card { max-width: 100%; }

    .pillars { flex-direction: column; gap: 0.8rem; }
    .pillar::after { display: none; }

    .signup-form { flex-direction: column; }
    .social-links { flex-direction: column; align-items: center; }
    .youtube-stats { flex-direction: column; gap: 0.5rem; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* HERO HEADSHOT */
.hero-top {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.hero-headshot {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    flex-shrink: 0;
}
.hero-text { flex: 1; }
.gray-word { color: #888; }
.green-word { color: var(--green); }

/* GOLD CTA */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-gold:hover { background: #e67e22; transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* PATHWAYS */
.pathways {
    display: flex;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}
.pathway-card {
    flex: 1;
    max-width: 320px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.pathway-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}
.pathway-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pathway-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--green);
}
.pathway-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* SELL YOUR BUSINESS SECTION */
.sell-your-business ul {
    list-style: none;
    padding: 0;
}
.sell-your-business li {
    padding-left: 1.5rem;
    position: relative;
}
.sell-your-business li::before {
    content: '✓';
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* DISPATCHES */
.dispatch-entry {
    border-left: 3px solid var(--green);
    padding-left: 2rem;
    margin-bottom: 3rem;
}
.dispatch-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.dispatch-number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.dispatch-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.dispatch-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 3px;
    color: var(--green);
}
.dispatch-entry h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.dispatch-entry p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 700px;
}

/* TOOLKIT */
.toolkit-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.toolkit-item:last-child { border-bottom: none; }
.toolkit-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.toolkit-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    max-width: 700px;
}
.toolkit-use {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5) !important;
}

/* GREEN MACHINE — PROOF GRID */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
}
@media (max-width: 600px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(46,204,113,0.2);
    border-radius: 8px;
    background: rgba(46,204,113,0.03);
}
.proof-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.proof-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* GREEN MACHINE — PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
    align-items: start;
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(46,204,113,0.3); }
.pricing-featured {
    border-color: var(--green);
    background: rgba(46,204,113,0.05);
    transform: scale(1.03);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}
.pricing-tier {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.pricing-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.pricing-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pricing-features li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.pricing-cta {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(46,204,113,0.4);
    border-radius: 6px;
    color: var(--green);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.pricing-cta:hover {
    background: rgba(46,204,113,0.1);
    border-color: var(--green);
}
.pricing-cta-featured {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    font-weight: 700;
}
.pricing-cta-featured:hover {
    background: var(--green-dark);
}

/* GREEN MACHINE — STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
}
.step { text-align: center; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* GREEN MACHINE — FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.faq-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* Electron animations */
.electron {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
    opacity: 0.7;
}
.electron.e1 { top: 30%; animation: electronH1 6s linear infinite; }
.electron.e2 { top: 60%; animation: electronH2 8s linear 2s infinite; }
.electron.e3 { left: 40%; animation: electronV1 7s linear 1s infinite; }
.electron.e4 { top: 45%; animation: electronH3 9s linear 4s infinite; }
.electron.e5 { left: 70%; animation: electronV2 6.5s linear 3s infinite; }

@keyframes electronH1 {
    0% { left: -10px; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { left: 100%; opacity: 0; }
}
@keyframes electronH2 {
    0% { left: 100%; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { left: -10px; opacity: 0; }
}
@keyframes electronV1 {
    0% { top: -10px; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}
@keyframes electronH3 {
    0% { left: -10px; opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { left: 100%; opacity: 0; }
}
@keyframes electronV2 {
    0% { top: 100%; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: -10px; opacity: 0; }
}
