/* Main Stylesheet - Migrated from inline styles */
:root {
    /* Split Reality Color System */
    /* Chaos Side - Tension, Anxiety */
    --chaos-dark: #1a0a0a;
    --chaos-red: #8b2626;
    --chaos-red-glow: rgba(180, 50, 50, 0.4);
    --chaos-accent: #c94a4a;

    /* Peace Side - Resolution, Relief */
    --peace-dark: #0a1a14;
    --peace-green: #1a4a3a;
    --peace-green-glow: rgba(42, 125, 92, 0.4);
    --peace-accent: #4ecb71;
    --peace-gold: #d4a853;

    /* Neutral */
    --deep-night: #0a1628;
    --primary-blue: #1e3a5f;
    --accent-copper: #d4853a;
    --bg-cream: #faf8f5;
    --text-charcoal: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
}

* {
    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;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--peace-accent), #2a9d5c);
    color: white;
    box-shadow: 0 0 30px var(--peace-green-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px var(--peace-green-glow);
}

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

.btn-secondary {
    background-color: var(--accent-copper);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 133, 58, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 133, 58, 0.5);
    background-color: #e6954b;
}

/* ========== BRAND HEADER ========== */
.brand-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.brand-header .container {
    display: flex;
    justify-content: center;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== SPLIT REALITY HERO ========== */
.hero-split {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Left Side - Chaos */
.hero-chaos {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, var(--chaos-dark) 0%, #2a1212 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

.hero-chaos::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, var(--chaos-red-glow), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 38, 38, 0.2), transparent 40%);
    animation: chaosGlow 3s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.hero-split.playing .hero-chaos::before {
    animation-play-state: running;
}

.hero-chaos::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    opacity: 0.3;
    mix-blend-mode: overlay;
}

@keyframes chaosGlow {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Right Side - Peace */
.hero-peace {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, #0d2818 0%, var(--peace-dark) 100%);
    margin-left: -15%;
    z-index: 1;
}

.hero-peace::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 40%, var(--peace-green-glow), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(78, 203, 113, 0.1), transparent 40%);
    animation: peaceGlow 4s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.hero-split.playing .hero-peace::before {
    animation-play-state: running;
}

@keyframes peaceGlow {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Content Cards */
.reality-content {
    position: relative;
    z-index: 10;
    max-width: 400px;
    text-align: center;
}

.chaos-content {
    transform: translateX(20px);
}

.peace-content {
    transform: translateX(-20px);
}

.reality-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.chaos-label {
    background: rgba(201, 74, 74, 0.2);
    color: var(--chaos-accent);
    border: 1px solid rgba(201, 74, 74, 0.3);
}

.peace-label {
    background: rgba(78, 203, 113, 0.15);
    color: var(--peace-accent);
    border: 1px solid rgba(78, 203, 113, 0.3);
}

.reality-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.chaos-headline {
    color: var(--chaos-accent);
}

.peace-headline {
    color: var(--peace-accent);
}

.reality-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Animated Icons */
.reality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.chaos-icon {
    background: rgba(201, 74, 74, 0.15);
    position: relative;
    z-index: 1;
}

.chaos-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--chaos-red-glow);
    z-index: -1;
    animation: chaosPulse 1s ease-in-out infinite;
    will-change: transform, opacity;
    animation-play-state: paused;
}

.hero-split.playing .chaos-icon::after {
    animation-play-state: running;
}

.chaos-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--chaos-accent);
    stroke-width: 1.5;
    fill: none;
    animation: phoneShake 0.15s infinite;
    animation-play-state: paused;
}

.hero-split.playing .chaos-icon svg {
    animation-play-state: running;
}

@keyframes chaosPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes phoneShake {

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

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

.peace-icon {
    background: rgba(78, 203, 113, 0.15);
    position: relative;
    z-index: 1;
}

.peace-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--peace-green-glow);
    z-index: -1;
    animation: peacePulseScale 2s ease-in-out infinite;
    will-change: transform;
    animation-play-state: paused;
}

.hero-split.playing .peace-icon::after {
    animation-play-state: running;
}

.peace-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--peace-accent);
    stroke-width: 1.5;
    fill: none;
}

@keyframes peacePulseScale {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}



/* ========== TRANSITION SECTION ========== */
.transition-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            var(--chaos-dark) 0%,
            var(--deep-night) 50%,
            var(--peace-dark) 100%);
    text-align: center;
    position: relative;
}

.transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(26, 10, 10, 0.8), transparent);
}

.transition-question {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--chaos-accent), var(--text-light), var(--peace-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== CHOICE SECTION (UPDATED) ========== */
.choice {
    padding: 100px 0;
    background: var(--deep-night);
}

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

.choice-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    /* overflow: hidden; Removed to allow pseudo-element shadow to show */
    transition: transform 0.4s ease;
}

/* ⚡ Bolt Optimization: Use pseudo-element for shadow to avoid repaints */
.choice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--chaos-red-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    will-change: opacity;
}

.choice-card:hover::after {
    opacity: 1;
}

.choice-card:hover {
    transform: translateY(-5px);
}

.choice-answer {
    background: linear-gradient(135deg, rgba(139, 38, 38, 0.2), rgba(201, 74, 74, 0.1));
    border: 1px solid rgba(201, 74, 74, 0.3);
}

.choice-answer:hover {
    /* box-shadow handled by pseudo-element */
}

.choice-ignore {
    background: linear-gradient(135deg, rgba(139, 38, 38, 0.2), rgba(201, 74, 74, 0.1));
    border: 1px solid rgba(201, 74, 74, 0.3);
}

.choice-ignore:hover {
    /* box-shadow handled by pseudo-element */
}

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

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

.choice-vs {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

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

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

/* ========== THE RELEASE (UPDATED) ========== */
.release {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--deep-night), var(--peace-dark));
    position: relative;
    overflow: hidden;
}

.release::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--peace-green-glow), transparent 60%);
    opacity: 0.3;
}

.release .container {
    position: relative;
    z-index: 1;
}

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

.release-brand {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.release-brand strong {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
}

.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(--peace-accent);
    text-shadow: 0 0 30px var(--peace-green-glow);
}

/* ========== HOW IT WORKS (PEACE THEME) ========== */
.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;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* ⚡ Bolt Optimization: Use pseudo-element for shadow to avoid repaints */
.step-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: white; /* Fix: Match parent bg to hide inner shadow bleed */
    box-shadow: 0 10px 40px rgba(42, 125, 92, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    will-change: opacity;
    pointer-events: none; /* Fix: Prevent interaction interference */
}

.step-card:hover {
    transform: translateY(-5px);
    z-index: 2; /* Fix: Ensure hovered card stacks above siblings */
}

.step-card:hover::after {
    opacity: 1;
}

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

.icon-svg {
    width: 64px;
    height: 64px;
    stroke: var(--peace-accent);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px var(--peace-green-glow));
}

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

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

.ai-note {
    font-size: 0.95rem;
    color: var(--peace-accent);
    font-weight: 600;
    margin-top: 0.8rem;
    font-style: italic;
}

/* ========== AUDIO SAMPLE ========== */
.audio-sample {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--peace-dark), var(--deep-night));
}

/* ========== 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: 35px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* ⚡ Bolt Optimization: Use pseudo-element for shadow to avoid repaints */
.persona-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: white; /* Fix: Match parent bg to hide inner shadow bleed */
    box-shadow: 0 8px 30px rgba(42, 125, 92, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    will-change: opacity;
    pointer-events: none; /* Fix: Prevent interaction interference */
}

.persona-item:hover {
    transform: translateY(-3px);
    z-index: 2; /* Fix: Ensure hovered card stacks above siblings */
}

.persona-item:hover::after {
    opacity: 1;
}

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

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

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

/* ========== THE DIFFERENCE ========== */
.difference {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--peace-dark));
    text-align: center;
}

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

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

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-price {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-light);
    margin: 5px 0;
}

.comparison-item.highlight {
    background: rgba(78, 203, 113, 0.1);
    border: 2px solid var(--peace-accent);
    box-shadow: 0 0 50px rgba(78, 203, 113, 0.2);
    transform: scale(1.08);
    position: relative;
    padding: 40px 25px;
}

.comparison-item.highlight .comparison-title {
    color: var(--peace-accent);
}

.comparison-item.highlight .comparison-price {
    color: var(--text-light);
    font-size: 2.2rem;
}

.comparison-item.highlight p {
    color: white;
    font-weight: 600;
}

/* ========== 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(--peace-accent);
    font-style: normal;
    font-weight: 600;
}

/* ========== TRUST ========== */
.trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1f35, var(--peace-dark));
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(78, 203, 113, 0.05);
    border-color: rgba(78, 203, 113, 0.2);
}

.trust-check {
    color: var(--peace-accent);
    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);
}

/* 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(--peace-accent);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(78, 203, 113, 0.3);
    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;
}

/* ========== 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: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-top: 6px solid var(--peace-accent);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--peace-accent), #2a9d5c, var(--peace-accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    animation-play-state: paused;
}

.offer-box.playing::before {
    animation-play-state: running;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.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(--peace-accent);
    font-weight: bold;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

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

#offer-heading {
    scroll-margin-top: 60px;
}

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

.signup-form input:focus {
    outline: none;
    border-color: var(--peace-accent);
    box-shadow: 0 0 0 4px var(--peace-green-glow);
}

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

/* Validation Errors */
.signup-form input.error {
    border-color: var(--chaos-accent);
    background-color: rgba(201, 74, 74, 0.05);
}

.input-error-message {
    color: var(--chaos-accent);
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 15px;
    text-align: left;
    display: none;
    animation: fadeIn 0.3s ease;
}

.input-error-message.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

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

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.faq-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(78, 203, 113, 0.03);
    border-color: rgba(78, 203, 113, 0.15);
}

.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(--peace-accent);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--deep-night), var(--peace-dark));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, var(--peace-green-glow), transparent 70%);
    opacity: 0.4;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.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;
    background: linear-gradient(135deg, var(--text-light), var(--peace-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== 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);
    }
}

/* Scroll-driven transition effect */
.scroll-transition {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-chaos {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0% 100%);
        padding: 80px 30px;
    }

    .hero-peace {
        margin-left: 0;
        margin-top: -51px;
        padding: 100px 30px 80px;
    }

    .chaos-content,
    .peace-content {
        transform: none;
    }

    .hero-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .choice-grid {
        flex-direction: column;
        align-items: center;
    }

    .choice-vs {
        margin: 20px 0;
        width: 100%;
        justify-content: center;
        position: relative;
    }

    .choice-vs::before,
    .choice-vs::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 35%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .choice-vs::before {
        left: 0;
    }

    .choice-vs::after {
        right: 0;
    }

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

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

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-item.highlight {
        transform: scale(1.02);
    }
}

/* ========== FORM SUCCESS MESSAGE ========== */
.form-message {
    margin-top: 30px;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-message.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.success-card {
    background: linear-gradient(135deg, rgba(78, 203, 113, 0.15), rgba(42, 125, 92, 0.1));
    border: 2px solid var(--peace-accent);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--peace-green-glow);
}

.success-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--peace-green-glow), transparent 70%);
    opacity: 0.5;
    animation: successGlow 2s ease-in-out infinite;
}

@keyframes successGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--peace-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: successBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px var(--peace-green-glow);
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkmarkDraw 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--peace-accent);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-charcoal);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.success-submessage {
    font-size: 0.95rem;
    color: rgba(45, 45, 45, 0.7);
    margin-top: 10px;
    font-style: italic;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* ========== UTILITIES (Security Fixes) ========== */
.chaos-caption {
    color: var(--chaos-accent);
    font-style: italic;
    font-size: 0.95rem;
}

.peace-caption {
    color: var(--peace-accent);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-link {
    color: var(--peace-accent);
    text-decoration: none;
    margin-left: 10px;
}

/* Accessibility & Security Helper */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}