/* Fluid Simulation Background */
.fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Courier New', monospace;
}

.terminal {
    width: 90%;
    max-width: 500px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.terminal-header {
    background: #1a1a1a;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-title {
    color: #00ff7f;
    font-size: 14px;
    font-weight: bold;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27ca3f; }

.terminal-body {
    padding: 20px;
    background: #000;
    min-height: 150px;
}

.terminal-line {
    color: #00ff7f;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.prompt {
    color: #00ffff;
    margin-right: 8px;
}

.command {
    color: #00ff7f;
    margin-right: 4px;
}

.cursor {
    color: #00ff7f;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.loading-progress {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff7f, #00ffff);
    width: 0%;
    transition: width 0.3s ease;
}

.loading-text {
    color: #888;
    font-size: 14px;
    text-align: center;
}

/* Fineprint AI Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0D0D0D;
    --secondary-bg: #1A1A1A;
    --accent-green: #00FF7F;
    --accent-cyan: #00FFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --border-color: #333;
    --gradient-primary: linear-gradient(135deg, #00FF7F 0%, #00FFFF 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.matrix-char {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    color: var(--accent-green);
    animation: matrixFall 3s linear infinite;
}

.matrix-char:nth-child(1) { left: 10%; animation-delay: 0s; }
.matrix-char:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.matrix-char:nth-child(3) { left: 50%; animation-delay: 1s; }
.matrix-char:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.matrix-char:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes matrixFall {
    0% { top: -20px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--primary-bg) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-demo {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.demo-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.1);
}

.transparency-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border: 3px solid;
}

.grade-a .score-circle {
    background: rgba(0, 255, 127, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.grade-c .score-circle {
    background: rgba(255, 165, 0, 0.1);
    border-color: #FFA500;
    color: #FFA500;
}

.score-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.score-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Radar Scanner */
.radar-scanner, .radar-large {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.radar-large {
    width: 120px;
    height: 120px;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    background: var(--gradient-primary);
    transform-origin: 0 0;
    animation: radarSweep 2s linear infinite;
}

@keyframes radarSweep {
    0% { transform: translate(-50%, 0) rotate(0deg); }
    100% { transform: translate(-50%, 0) rotate(360deg); }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.install-btn, .demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

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

.demo-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.install-btn:hover, .demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.3);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 127, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
}

.demo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
}

.step.active {
    background: var(--gradient-dark);
    border-color: var(--accent-green);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0, 255, 127, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.demo-visual {
    position: relative;
    height: 400px;
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.demo-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.demo-screen.active {
    opacity: 1;
}

.auto-detect-banner {
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-icon {
    font-size: 2rem;
}

.banner-text strong {
    display: block;
    margin-bottom: 0.5rem;
}

.scan-btn-demo {
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.scanning-demo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.scanning-demo h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.results-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.red-flags-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.red-flag {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid #FF4500;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Waitlist Page Styles */
.waitlist-hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
}

.waitlist-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.waitlist-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(0, 255, 127, 0.8)); }
}

.waitlist-form-large {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 3rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input-large {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem 2rem;
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.email-input-large:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

.waitlist-btn-large {
    padding: 1.5rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    animation: buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 127, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 127, 0.6); }
}

.waitlist-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.waitlist-btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 127, 0.5);
    animation-play-state: paused;
}

.pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.pro-feature {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: floatFeature 4s ease-in-out infinite;
}

.pro-feature:nth-child(1) { animation-delay: 0s; }
.pro-feature:nth-child(2) { animation-delay: 0.5s; }
.pro-feature:nth-child(3) { animation-delay: 1s; }
.pro-feature:nth-child(4) { animation-delay: 1.5s; }
.pro-feature:nth-child(5) { animation-delay: 2s; }
.pro-feature:nth-child(6) { animation-delay: 2.5s; }

@keyframes floatFeature {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pro-feature:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.3);
    animation-play-state: paused;
}

.pro-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pro-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pro-feature p {
    color: var(--text-secondary);
}

.waitlist-benefits {
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.waitlist-benefits h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 127, 0.05);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 12px;
    animation: slideInBenefit 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.benefit:nth-child(1) { animation-delay: 0.2s; }
.benefit:nth-child(2) { animation-delay: 0.4s; }
.benefit:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInBenefit {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-check {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.waitlist-card {
    text-align: center;
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 255, 127, 0.1);
}

.waitlist-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.waitlist-btn {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.3);
}

.waitlist-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.waitlist-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-check {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Install Section */
.install-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.install-card {
    text-align: center;
    background: var(--gradient-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 255, 127, 0.1);
}

.install-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.install-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.install-btn-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 3rem;
    background: var(--gradient-primary);
    color: var(--primary-bg);
    border: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 3rem;
}

.install-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.4);
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: normal;
}

.install-message {
    text-align: center;
    margin-top: 1rem;
}

.install-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .demo-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .install-btn, .demo-btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .demo-visual {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .install-card {
        padding: 2rem 1rem;
    }
    
    .install-card h2 {
        font-size: 1.8rem;
    }
    
    .install-btn-large {
        padding: 1.5rem 1rem;
        width: 100%;
    }
    
    /* Waitlist page mobile styles */
    .waitlist-content h1 {
        font-size: 2.2rem;
    }
    
    .email-input-large {
        width: 100%;
    }
    
    .waitlist-btn-large {
        width: 100%;
    }
    
    .pro-features {
        grid-template-columns: 1fr;
    }
    
    .waitlist-benefits {
        padding: 2rem 1rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .demo-steps {
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .demo-visual {
        height: 250px;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Waitlist page small mobile styles */
    .waitlist-content h1 {
        font-size: 1.6rem;
    }
    
    .pro-feature {
        padding: 1.5rem;
    }
    
    .pro-feature .feature-icon {
        font-size: 2rem;
    }
    
    .pro-feature h3 {
        font-size: 1.2rem;
    }
    
    .waitlist-benefits h2 {
        font-size: 1.6rem;
    }
    
    .benefit {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Typewriter Effect */
.typewriter-text {
    overflow: hidden;
    border-right: 2px solid var(--accent-green);
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s forwards, blink 1s infinite;
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: var(--accent-green); }
    51%, 100% { border-color: transparent; }
}