:root {
    --bg-color: #050505;
    --text-color: #f5f5f5;
    --accent-red: #d73a49;
    --accent-yellow: #ffea00;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    --spacing: 1.5rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Typographic Foundation --- */

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    margin-bottom: 1rem;
    color: var(--accent-red);
}

h2 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-top: 4rem;
    margin-bottom: 2rem;
    border-left: 10px solid var(--accent-yellow);
    padding-left: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

p {
    font-size: 1.125rem;
    max-width: 65ch;
    margin-bottom: 1.5rem;
}

strong {
    color: var(--accent-yellow);
    font-family: var(--font-mono);
}

/* --- Layout --- */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

section {
    padding: 4rem 0;
}

/* --- Signature Element: The "2" --- */

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

.big-two {
    position: absolute;
    right: -5%;
    bottom: -5%;
    font-size: 60vh;
    font-weight: 900;
    color: rgba(215, 58, 73, 0.1);
    line-height: 0.7;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* --- Decorative Elements: Warning Tape --- */

.tape {
    background: var(--accent-yellow);
    color: #000;
    font-family: var(--font-mono);
    font-weight: 800;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.05);
    margin: 2rem 0;
    display: flex;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.tape-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Lists & Boxes --- */

ul {
    list-style: none;
    margin-bottom: 2rem;
}

ul li {
    padding: 1rem;
    border-bottom: 1px solid #333;
    position: relative;
}

ul li::before {
    content: "!";
    color: var(--accent-red);
    font-family: var(--font-mono);
    font-weight: bold;
    margin-right: 1rem;
}

.strategy-box {
    background: #111;
    border: 2px solid var(--accent-red);
    padding: 2rem;
    margin: 2rem 0;
}

.strategy-item {
    margin-bottom: 2rem;
}

.strategy-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    display: block;
    margin-bottom: 0.5rem;
}

blockquote {
    background: var(--accent-red);
    color: #fff;
    padding: 2rem;
    font-style: italic;
    font-weight: bold;
    margin: 2rem 0;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -1rem;
    left: 0.5rem;
    opacity: 0.3;
}

/* --- FAQ & Buttons --- */

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-q {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.btn-container {
    margin-top: 4rem;
    text-align: center;
}

.btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: #000;
    text-decoration: none;
    padding: 1.5rem 3rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 var(--accent-red);
}

/* --- Responsive --- */

@media (max-width: 768px) {
    h1 { font-size: 4rem; }
    .big-two { font-size: 40vh; }
    section { padding: 2rem 0; }
}
