/* ============================================
   Reset & Base Styles
   ============================================ */

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

@font-face {
    font-family: 'Workbench';
    src: url('Workbench-Regular-VariableFont_BLED,SCAN.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Minimalist Color Palette */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #999999;
    --gray-bg: #fafafa;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   Navigation - Minimal
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    margin-right: auto;
    margin-left: -1rem;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.125rem;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* ============================================
   Button - Minimalist CTA
   ============================================ */

.cta-button {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
}

.cta-button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ============================================
   Hero Section - Clean & Centered
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 0 var(--spacing-md);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('Assets/orinAI-motion.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--black);
    letter-spacing: -2px;
}

.chaos {
    font-family: 'Workbench', monospace;
    font-size: 4.25rem;
    position: relative;
    top: 0.15rem;
    margin: 0 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   Waitlist Modal - Glassmorphic
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl);
    width: 90%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
    transition: opacity 0.2s ease;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-lg);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.email-input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

.submit-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
}

.submit-button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ============================================
   Second Section - Before/After Comparison
   ============================================ */

.section-two {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 0 var(--spacing-md);
    margin-top: -4rem;
}

.comparison-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.comparison-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    color: var(--black);
    letter-spacing: -2px;
}

.comparison-title em {
    font-style: italic;
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.comparison-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.comparison-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.comparison-badge.before {
    background: #666;
    color: var(--white);
}

.comparison-badge.after {
    background: #0000ff;
    color: var(--white);
}

.tools-display {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    min-height: 120px;
}

.tool-item {
    font-size: 4rem;
}

.app-icon {
    width: 70px;
    height: 70px;
}

.app-icon[alt="Notes App"] {
    mix-blend-mode: multiply;
}

.orin-logo-large {
    width: 100px;
    height: 100px;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.comparison-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.comparison-point .icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-point.negative .icon {
    color: #ff0000;
}

.comparison-point.positive .icon {
    color: #00cc00;
}

/* ============================================
   Third Section - Capture Methods
   ============================================ */

.section-three {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
}

.capture-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.capture-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--black);
    letter-spacing: -2px;
}

.capture-title em {
    font-style: italic;
    font-weight: 700;
}

.capture-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
}

.capture-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.capture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.capture-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.capture-visual {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background: var(--gray-bg);
    border-radius: 20px;
}

.method-icon {
    font-size: 5rem;
}

.capture-method {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.capture-detail {
    font-size: 1.125rem;
    color: var(--gray-light);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .nav-container {
        padding: 1.25rem var(--spacing-md);
    }

    .nav-links {
        gap: var(--spacing-md);
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .chaos {
        font-size: 2.5rem;
        top: 0.1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .cta-button {
        padding: 0.875rem 2.5rem;
        font-size: 0.9375rem;
    }

    .comparison-title {
        font-size: 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .tool-item {
        font-size: 3rem;
    }

    .app-icon {
        width: 50px;
        height: 50px;
    }

    .orin-logo-large {
        width: 100px;
        height: 100px;
    }

    .comparison-point {
        font-size: 1rem;
    }

    .capture-title {
        font-size: 2.5rem;
    }

    .capture-tagline {
        font-size: 1.25rem;
    }

    .capture-description {
        font-size: 1rem;
    }

    .capture-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .capture-visual {
        width: 180px;
        height: 180px;
    }

    .method-icon {
        font-size: 4rem;
    }

    .capture-method {
        font-size: 1.25rem;
    }

    .capture-detail {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.75rem;
    }

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

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .chaos {
        font-size: 2rem;
        top: 0.08rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .comparison-title {
        font-size: 2rem;
    }

    .tool-item {
        font-size: 2.5rem;
    }

    .app-icon {
        width: 40px;
        height: 40px;
    }

    .orin-logo-large {
        width: 80px;
        height: 80px;
    }

    .comparison-point {
        font-size: 0.9375rem;
    }

    .capture-title {
        font-size: 2rem;
    }

    .capture-tagline {
        font-size: 1.125rem;
    }

    .capture-description {
        font-size: 0.9375rem;
    }

    .capture-visual {
        width: 150px;
        height: 150px;
    }

    .method-icon {
        font-size: 3rem;
    }

    .capture-method {
        font-size: 1.125rem;
    }

    .capture-detail {
        font-size: 0.9375rem;
    }

    .modal-content {
        padding: var(--spacing-lg);
    }

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

    .modal-subtitle {
        font-size: 0.9375rem;
    }
}
