:root {
    --bg-color: #050505;
    --text-color: #ECECEC;
    --text-muted: #888888;
    --accent-blue: #3B82F6;
    --accent-green: #00FF41;
    --accent-red: #FF3B30;
    --border-color: #333333;
    --font-heading: 'Inter Tight', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --spacing-unit: 1.5rem;
}

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

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

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

/* Header */
.header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.logo {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 6rem;
}

.hero__headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero__subhead {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.hero__visual {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-content {
    text-align: center;
    width: 100%;
}

.visual-script {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding: 0 2rem;
    line-height: 1.4;
}

.visual-timer {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color);
}

.visual-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    opacity: 0;
    display: none;
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-red);
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.1s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--text-color);
    color: var(--bg-color);
}

.btn--large {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    width: 100%;
}

.btn__text {
    margin-right: 0.5rem;
}

.btn__price {
    opacity: 0.6;
}

.hero__meta {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sections */
section {
    margin-bottom: 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-family: var(--font-mono);
    color: var(--text-muted);
}

/* Grid/Cards */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.card__quote {
    font-family: var(--font-heading); /* Or serif for contrast? heading looks fine */
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.card__meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: auto;
}

.status-indicator {
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    text-align: center;
    padding: 0.5rem;
    border-radius: 4px;
}

.status--fail {
    background: rgba(255, 59, 48, 0.1);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.status--success {
    background: rgba(0, 255, 65, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

/* Features */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-row--reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-desc {
    color: var(--text-muted);
}

.feature-visual {
    flex: 1;
    background: #111;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Feature UI Placeholders */
.timer-ui {
    width: 80%;
}
.timer-bar {
    height: 4px;
    background: #333;
    margin-bottom: 10px;
    width: 100%;
}
.timer-progress {
    height: 100%;
    width: 95%;
    background: var(--accent-red);
}
.timer-text {
    font-family: var(--font-mono);
    color: var(--accent-red);
    text-align: right;
}

.window-ui {
    width: 80%;
    height: 60%;
    position: relative;
    border: 1px solid #333;
    background: #000;
}
.camera-lens {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.prompter-strip {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
    opacity: 0.9;
}

.workflow-steps {
    display: flex;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.arrow { color: var(--border-color); }
.step { border-bottom: 1px solid var(--accent-green); color: var(--text-color); }

/* Pricing */
.pricing {
    text-align: center;
}

.pricing-timeline {
    margin: 4rem 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 2rem;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-node {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 1;
    width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.node--past {
    opacity: 0.5;
}

.node--active {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.2);
    transform: scale(1.1);
}

.node-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.node-price {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
}

.node-status {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-red);
}

.node--past .node-status {
    color: var(--text-muted);
    text-decoration: line-through;
}

.node--future {
    opacity: 0.6;
    border-style: dashed;
}

.node--future .node-status {
    color: var(--text-muted);
}

/* Deadline Badge (injected by JS) */
.deadline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* FAQ */
.faq {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

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

.faq-q {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-a {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        margin-bottom: 2rem;
    }

    .hero {
        margin-bottom: 4rem;
    }

    .hero__headline {
        font-size: 2rem;
    }

    .hero__subhead {
        font-size: 0.95rem;
    }

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

    .feature-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .feature-row--reverse {
        flex-direction: column;
    }

    .feature-visual {
        width: 100%;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .pricing-timeline {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        padding: 0;
    }

    .timeline-track {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .timeline-node {
        width: 100%;
        max-width: 200px;
    }

    .btn--large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    section {
        margin-bottom: 4rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .logo {
        font-size: 0.75rem;
    }

    .hero {
        margin-bottom: 3rem;
    }

    .hero__headline {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero__subhead {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .visual-script {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .visual-timer {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .btn--large {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }

    .hero__meta {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .card {
        padding: 1.25rem;
    }

    .card__title {
        font-size: 0.95rem;
    }

    .card__quote {
        font-size: 0.95rem;
    }

    .card__meta {
        font-size: 0.7rem;
    }

    .status-indicator {
        font-size: 0.7rem;
        padding: 0.4rem;
    }

    .feature-row {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .feature-visual {
        aspect-ratio: 16/10;
    }

    .prompter-strip {
        font-size: 0.65rem;
    }

    .workflow-steps {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .pricing-timeline {
        margin: 2rem 0;
        gap: 1rem;
    }

    .timeline-node {
        padding: 0.75rem;
        max-width: 160px;
    }

    .node-label {
        font-size: 0.7rem;
    }

    .node-price {
        font-size: 1.25rem;
    }

    .node-status {
        font-size: 0.6rem;
    }

    .pricing-note {
        font-size: 0.8rem !important;
        padding: 0 0.5rem;
    }

    .faq {
        padding-top: 2rem;
    }

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

    .faq-q {
        font-size: 0.9rem;
    }

    .faq-a {
        font-size: 0.8rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-brand {
        font-size: 0.75rem;
    }

    .footer-copy {
        font-size: 0.75rem;
    }

    .deadline-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    section {
        margin-bottom: 3rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero__headline {
        font-size: 1.25rem;
    }

    .hero__subhead {
        font-size: 0.8rem;
    }

    .visual-timer {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn--large {
        padding: 0.8rem 1.25rem;
    }

    .card {
        padding: 1rem;
    }

    .card__quote {
        font-size: 0.85rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .timeline-node {
        padding: 0.6rem;
        max-width: 140px;
    }

    .node-price {
        font-size: 1.1rem;
    }

    .faq-q {
        font-size: 0.85rem;
    }

    .faq-a {
        font-size: 0.75rem;
    }
}
