/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-100: #e8e8e8;
    --gray-200: #d1d1d1;
    --gray-400: #888888;
    --gray-600: #555555;
    --gray-800: #222222;
    --gray-900: #111111;
    --accent: #ffffff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 60px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 24px 40px;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 20rem);
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0.05em;
}

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

.hero-logo {
    height: 300px;
    width: auto;
    margin: 0 auto 8px;
    display: block;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--gray-400);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.95rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


/* ===== MANIFESTO ===== */
.manifesto {
    padding: 140px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    position: sticky;
    top: 120px;
}

.manifesto-text {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.manifesto-text strong {
    color: var(--white);
    font-weight: 600;
}

.manifesto-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.signature-line {
    width: 40px;
    height: 1px;
    background: var(--gray-600);
}

.manifesto-signature span {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 140px 0;
    background: var(--gray-900);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-weight: 300;
}

.step-arrow {
    color: var(--gray-600);
    padding-top: 80px;
    flex-shrink: 0;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 140px 0;
}

.story-card {
    background: var(--gray-900);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.story-visual {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 500px;
}

.story-tee-img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
}

.tee-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.tee-shape {
    width: 200px;
    height: 240px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tee-shape::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--gray-900);
    border-radius: 0 0 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
}

.tee-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1.1;
}

.countdown-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-600);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.story-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.story-text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-quote {
    margin-top: 20px;
    padding-left: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    position: absolute;
    top: -8px;
    left: -8px;
}

.story-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-200);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== WHY SUBSCRIBE ===== */
.why-subscribe {
    padding: 140px 0;
    background: var(--gray-900);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.benefit {
    background: var(--gray-900);
    padding: 40px;
    transition: background 0.3s ease;
}

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

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gray-400);
}

.benefit h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.benefit p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 140px 0;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.timeline-day {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    min-width: 80px;
    text-align: right;
    padding-top: 2px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-800);
    border: 2px solid var(--gray-600);
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.timeline-item.active .timeline-day {
    color: var(--white);
}

.timeline-item.active .timeline-dot {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.timeline-item.urgent .timeline-day {
    color: var(--gray-400);
}

.timeline-item.urgent .timeline-dot {
    background: var(--gray-400);
    border-color: var(--gray-400);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== SUBSCRIBE ===== */
.subscribe-section {
    padding: 140px 0;
    background: var(--gray-900);
}

.subscribe-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.subscribe-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.subscribe-text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--gray-600);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.subscribe-form .btn {
    margin-top: 8px;
    border-radius: 12px;
    padding: 18px 36px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 8px;
}

/* Email Preview */
.subscribe-visual {
    display: flex;
    justify-content: center;
}

.email-preview {
    width: 320px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.email-header {
    display: flex;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.email-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.email-dot.red { background: #ff5f57; }
.email-dot.yellow { background: #ffbd2e; }
.email-dot.green { background: #28c840; }

.email-body {
    padding: 24px;
}

.email-from {
    font-size: 0.7rem;
    color: var(--gray-600);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.email-subject {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.email-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.email-preview-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 24px;
}

.email-tee-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mini-tee {
    width: 80px;
    height: 96px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-tee span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
}

.mini-tee-img {
    width: 120px;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

.email-cta-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== ANTICIPATION ===== */
.anticipation {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.anticipation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.big-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.anticipation-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    font-weight: 300;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 180px 0;
    text-align: center;
}

.final-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.final-title .typed-text {
    color: var(--gray-400);
}

.final-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .manifesto-title {
        position: static;
    }

    .story-card-inner {
        grid-template-columns: 1fr;
    }

    .story-visual {
        min-height: 300px;
    }

    .subscribe-card {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .subscribe-visual {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .anticipation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .email-preview {
        width: 280px;
        transform: rotate(0deg);
    }

    .story-content,
    .story-visual {
        padding: 40px 24px;
    }

    .benefit {
        padding: 32px 24px;
    }

    .subscribe-title {
        font-size: 3rem;
    }

    .final-title {
        font-size: 3rem;
    }
}

/* ===== SUCCESS STATE ===== */
.form-success {
    text-align: center;
    padding: 40px 0;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 300;
}
