:root {
    /* The Chattanooga Gatekeeper - Evocative Edition */
    --deep-night: #0a1628;
    --primary-blue: #1e3a5f;
    --accent-copper: #d4853a;
    --tension-red: #c94a4a;
    --relief-green: #2a7d5c;
    --relief-green-glow: rgba(42, 125, 92, 0.3);
    --bg-cream: #faf8f5;
    --text-charcoal: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-night);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--relief-green);
    color: white;
    box-shadow: 0 0 0 0 var(--relief-green-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--relief-green-glow);
}

.btn-large {
    font-size: 1.3rem;
    padding: 22px 50px;
}

/* ========== HERO - THE TENSION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center bottom, #1a2d4a 0%, var(--deep-night) 70%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/hero.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

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

.hero-setup {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Phone Ring Animation */
.phone-ring-visual {
    margin: 2rem auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-copper);
    animation: vibrate 0.15s infinite;
}

.phone-ring-visual::before,
.phone-ring-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--accent-copper);
    animation: ripple 1.5s infinite ease-out;
}

.phone-ring-visual::before {
    width: 100%;
    height: 100%;
}

.phone-ring-visual::after {
    width: 130%;
    height: 130%;
    animation-delay: 0.3s;
}

@keyframes vibrate {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-question {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-copper);
    margin-top: 2rem;
}

/* ========== THE CHOICE ========== */
.choice {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--deep-night), #0f1f35);
}

.choice-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.choice-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.choice-answer {
    background: rgba(201, 74, 74, 0.1);
    border: 1px solid rgba(201, 74, 74, 0.3);
}

.choice-ignore {
    background: rgba(201, 74, 74, 0.1);
    border: 1px solid rgba(201, 74, 74, 0.3);
}

.choice-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tension-red);
    margin-bottom: 1rem;
}

.choice-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.choice-vs {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.choice-conclusion {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 60px;
    font-family: 'Playfair Display', serif;
}

.choice-conclusion strong {
    color: var(--accent-copper);
}

/* ========== THE RELEASE ========== */
.release {
    padding: 120px 0;
    text-align: center;
    background: var(--deep-night);
}

.section-eyebrow {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--relief-green);
    margin-bottom: 1.5rem;
}

.release-headline {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--relief-green);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-cream);
    color: var(--text-charcoal);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
}

.step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-svg {
    width: 64px;
    height: 64px;
    stroke: var(--accent-copper);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.persona-emoji {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.persona-icon {
    width: 48px;
    height: 48px;
    stroke: var(--relief-green);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step-card p {
    color: #555;
    font-size: 1rem;
}

/* ========== PERSONAS ========== */
.personas {
    padding: 80px 0;
    background: var(--bg-cream);
    color: var(--text-charcoal);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.persona-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.persona-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.persona-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-charcoal);
}

/* ========== THE DIFFERENCE ========== */
.difference {
    padding: 120px 0;
    background: var(--primary-blue);
    text-align: center;
}

.difference-question {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.difference-answer {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent-copper);
    margin-bottom: 2rem;
}

.difference-content p:last-child {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== THE ORIGIN STORY ========== */
.origin {
    padding: 120px 0;
    background: var(--deep-night);
}

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

.origin-intro {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.origin-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    border-left: 4px solid var(--accent-copper);
    padding-left: 30px;
    text-align: left;
    margin: 0 0 2rem 0;
}

.origin-resolve {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.origin-resolve em {
    color: var(--relief-green);
    font-style: normal;
    font-weight: 600;
}

/* ========== TRUST ========== */
.trust {
    padding: 100px 0;
    background: #0f1f35;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trust-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-check {
    color: var(--relief-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.trust-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========== THE OFFER ========== */
.offer {
    padding: 120px 0;
    background: var(--bg-cream);
}

.offer-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-top: 6px solid var(--relief-green);
}

.offer-box h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-charcoal);
}

.offer-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.1rem;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--relief-green);
    font-weight: bold;
}

.signup-form input {
    width: 100%;
    padding: 16px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--relief-green);
}

.offer-scarcity {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--tension-red);
    font-weight: 600;
}

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
    background: var(--deep-night);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.faq-item a {
    color: var(--relief-green);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--deep-night), var(--primary-blue));
}

.final-setup {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    margin-bottom: 3rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--deep-night);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.6s;
}

.delay-2 {
    animation-delay: 1.4s;
}

.delay-3 {
    animation-delay: 2.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .choice-grid {
        flex-direction: column;
    }

    .choice-vs {
        margin: 10px 0;
    }

    .offer-box {
        padding: 40px 25px;
    }

    .origin-quote {
        padding-left: 20px;
    }
}

/* ========== FOUNDER PROFILE ========== */
.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

.founder-img-container {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--relief-green);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .founder-img-container {
        width: 240px;
        height: 240px;
    }
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}