/* --- Global Styles & Variables --- */
:root {
    --background-color: #0a0a0a;
    --text-color: #e0e0e0;
    --primary-neon: #00ff9b;
    --secondary-neon: #ff00ff;
    --accent-neon: #00ffff;
    --font-main: 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.7;
    text-shadow: 0 0 2px rgba(0, 255, 155, 0.2);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography & Headings --- */
h1, h2, h3 {
    font-weight: 700;
    color: var(--primary-neon);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--primary-neon), 0 0 10px var(--primary-neon), 0 0 15px rgba(0, 255, 155, 0.5);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--secondary-neon);
    text-shadow: 0 0 5px var(--secondary-neon), 0 0 10px var(--secondary-neon), 0 0 15px rgba(255, 0, 255, 0.5);
}

h3 {
    font-size: 1.5rem;
    color: var(--accent-neon);
    text-shadow: 0 0 5px var(--accent-neon), 0 0 10px var(--accent-neon), 0 0 15px rgba(0, 255, 255, 0.5);
}

/* --- Header & Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    background: radial-gradient(circle, rgba(0, 255, 155, 0.05) 0%, rgba(0,0,0,0) 70%);
}

.manifesto pre {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-neon);
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    white-space: pre-wrap;
    font-family: var(--font-main);
    color: var(--text-color);
    text-shadow: none;
}

.manifesto .subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.manifesto h3 {
    text-align: center;
    margin-bottom: 20px;
}

.manifesto blockquote {
    border-left: 3px solid var(--primary-neon);
    padding-left: 20px;
    margin: 30px auto;
    font-size: 1.2rem;
    font-style: italic;
    max-width: 700px;
}

.manifesto code {
    color: #a7a7a7; /* Softer color for comments */
}

/* --- CTA Button --- */
.cta-button {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon), inset 0 0 10px var(--primary-neon);
}

.cta-button:hover {
    background-color: var(--primary-neon);
    color: var(--background-color);
    box-shadow: 0 0 20px var(--primary-neon), 0 0 30px var(--primary-neon);
    text-shadow: none;
}

/* --- Sections --- */
section {
    padding: 80px 0;
    border-bottom: 1px dashed rgba(0, 255, 155, 0.2);
}

/* --- Masters Section --- */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.master {
    background: rgba(0, 255, 155, 0.05);
    padding: 25px;
    border: 1px solid var(--primary-neon);
    border-radius: 5px;
}

.master h3 {
    color: var(--text-color);
}

.master-card blockquote {
    font-style: italic;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-neon);
    padding-left: 15px;
}

/* --- Protocol Section --- */
.protocol-log .log-entry {
    background-color: rgba(255, 0, 255, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary-neon);
    border-radius: 0 5px 5px 0;
}

.protocol-log h4 {
    color: var(--secondary-neon);
    text-shadow: none;
    margin-bottom: 10px;
}

.protocol-log p {
    line-height: 1.6;
}

.protocol-log strong {
    color: var(--text-color);
}

/* --- Transformation Section --- */
.transformation-list-new ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.transformation-list-new li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 2px solid var(--primary-neon);
}

.transformation-list-new .check {
    color: var(--primary-neon);
    margin-right: 10px;
    font-weight: bold;
}

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-neon);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--secondary-neon);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

.pricing-card h3 {
    color: var(--primary-neon);
}

.pricing-card.featured h3 {
    color: var(--secondary-neon);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.pricing-card ul li strong {
    color: var(--secondary-neon);
}

/* --- Beta Access Section --- */
.beta-access {
    text-align: center;
}

.beta-access h3 {
    margin-top: 20px;
}

.beta-access .cta-button {
    margin-top: 30px;
}

.final-cta {
    padding: 20px 40px;
    font-size: 1.5rem;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 0.9rem;
}

/* --- Animations & Effects --- */
.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: var(--primary-neon); }
}

.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    overflow: hidden;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-neon);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-neon), 2px 2px var(--primary-neon);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(10% 0 80% 0); }
    20% { clip-path: inset(50% 0 20% 0); }
    40% { clip-path: inset(25% 0 60% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(40% 0 45% 0); }
    100% { clip-path: inset(70% 0 15% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(85% 0 5% 0); }
    20% { clip-path: inset(15% 0 70% 0); }
    40% { clip-path: inset(60% 0 30% 0); }
    60% { clip-path: inset(30% 0 50% 0); }
    80% { clip-path: inset(75% 0 10% 0); }
    100% { clip-path: inset(45% 0 40% 0); }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .masters-grid {
        grid-template-columns: 1fr;
    }
    .transformation-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .transformation-grid .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
