/* CSS Variables - Dark Theme Only */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #cccccc;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: #1a1a1a;
    --card-border: #333333;
    --input-border: #444;
    --footer-bg: #000000;
    --footer-border: #222;
    --footer-text: #666;
    --header-bg: rgba(10, 10, 10, 0.95);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Body background variations for different pages */
body.home {
    background: var(--bg-gradient);
}

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

/* Typography */
.gradient-text {
    background: linear-gradient(90deg, #667eea 0%, #667eea 60%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

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

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

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

.brand-text {
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.hero-content {
    max-width: none;
    width: 100%;
}


.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-tertiary);
    margin-bottom: 48px;
    font-weight: 400;
}

.platform-name {
    font-weight: 600;
}

/* Interactive Demo Section */
.demo-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.demo-header {
    text-align: center;
    margin-bottom: 50px;
}

.demo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.demo-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Tabs */
.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.platform-tab {
    padding: 12px 32px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    background: var(--bg-primary);
    border-color: #667eea;
    color: var(--text-primary);
}

.platform-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: white;
}

.platform-tab.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    z-index: -1;
}

/* Demo Content */
.demo-content {
    position: relative;
    display: flex;
    justify-content: center;
}

.platform-demo {
    display: none;
    grid-template-columns: auto auto;
    gap: 40px;
    align-items: start;
    width: fit-content;
}

.platform-demo.active {
    display: grid;
}

/* Demo Controls */
.demo-controls {
    display: flex;
    justify-content: flex-start;
}

.patches-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    width: fit-content;
}

.patches-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-left: 0;
    padding-left: 0;
}

.toggle-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
    align-items: flex-start;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 12px 0;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 200px;
    border-radius: 8px;
    justify-self: flex-start;
}

.toggle-switch:hover {
    background: var(--card-bg);
}

.toggle-switch input {
    display: none;
}

.slider {
    width: 50px;
    height: 24px;
    background: var(--card-border);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.slider::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

input:checked + .slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .slider::after {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Demo Preview */
.demo-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-screenshot {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.demo-screenshot[src="#"] {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-screenshot[src="#"]::after {
    content: 'Screenshot Placeholder';
    color: #999;
    font-size: 1rem;
    text-align: center;
}

/* Demo Note */
.demo-note {
    text-align: center;
    margin-top: 30px;
}

.demo-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.demo-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Privacy Section */
.privacy-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.privacy-content {
    text-align: center;
    position: relative;
}

/* Privacy Icon */
.privacy-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* Enhanced Title */
.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.1;
}

.privacy-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-description {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}


/* Enhanced CTA Button */
.privacy-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.privacy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.privacy-button:hover::before {
    left: 100%;
}

.privacy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.privacy-button svg {
    transition: transform 0.3s ease;
}

.privacy-button:hover svg {
    transform: translateX(4px);
}

/* Closing Section */
.closing-section {
    padding: 120px 0;
    background: var(--bg-primary);
    text-align: center;
}

.closing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.closing-content {
    text-align: center;
}

.closing-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.1;
}

.closing-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}


/* Launch Methods Section */
.launch-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.launch-header {
    text-align: center;
    margin-bottom: 60px;
}

.launch-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.launch-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.launch-method {
    text-align: center;
}

.launch-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.launch-image:hover {
    transform: scale(1.02);
}

.launch-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.method-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.closing-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-store-link,
.google-play-link {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-link:hover,
.google-play-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-store-badge,
.google-play-badge {
    height: 60px;
    width: auto;
}

.closing-cta .app-store-badge,
.closing-cta .google-play-badge {
    width: 200px;
}

/* Custom Download Buttons */
.custom-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(118, 75, 162, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    animation: subtle-pulse 4s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(102, 126, 234, 0.3),
            0 4px 12px rgba(118, 75, 162, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 24px rgba(102, 126, 234, 0.4),
            0 4px 12px rgba(118, 75, 162, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

.custom-download-btn:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 
        0 16px 40px rgba(102, 126, 234, 0.4),
        0 8px 20px rgba(118, 75, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #7289ff 0%, #8b5fbf 100%);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    transition: transform 0.3s ease;
}

.custom-download-btn:hover .btn-icon svg {
    transform: scale(1.1);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
}

.btn-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1;
}

.btn-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 115%;
    height: auto;
    max-height: 690px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.02);
}



/* Page Layouts */
.page-main {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group select {
    padding-right: 32px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Our Story Page */
.story-content {
    padding: 80px 0 120px;
    background: var(--bg-primary);
}

.story-section {
    max-width: 800px;
    margin: 0 auto 84px;
    padding: 0 40px;
}

.story-section:last-child {
    margin-bottom: 0;
}

.section-content {
    padding: 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-body {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.section-body p {
    margin-bottom: 20px;
}

.section-body p:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 24px !important;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Metaphor List */
.metaphor-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.metaphor-item {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-left: 0;
}

.metaphor-item:last-child {
    margin-bottom: 0;
}

.metaphor-item strong {
    color: var(--text-primary);
    font-weight: 600;
}


/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--text-primary);
    padding: 60px 0 20px;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}


.footer-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 20px;
    text-align: center;
    color: var(--footer-text);
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.features-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.features-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.features-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Patches Section */
.patches-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.patches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.instagram-icon {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 100%);
}

.youtube-icon {
    background: #FF0000;
}

.x-icon {
    background: var(--text-primary);
}

.facebook-icon {
    background: #1877F2;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.platform-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-group {
    margin-bottom: 32px;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-category {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pro Section */
.pro-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pro-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.pro-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pro-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.pro-row:last-child {
    margin-bottom: 0;
}

.pro-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.pro-row.reverse .pro-content {
    order: 2;
}

.pro-row.reverse .pro-image {
    order: 1;
}

.pro-content {
    padding: 0;
}

.pro-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.pro-feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pro-feature-examples {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.pro-feature-modes p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pro-feature-modes p:last-child {
    margin-bottom: 0;
}

.pro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border: 2px dashed var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
}

.pro-screenshot {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pro-screenshot:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 12px 16px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        text-align: center;
    }
    
    .hero-content {
        max-width: none;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .phone-mockup {
        max-height: 400px;
    }
    
    .coming-soon-badge {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    /* Hero Small Mobile */
    .hero {
        padding: 80px 0 32px;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .phone-mockup {
        max-height: 320px;
    }
    
    .coming-soon-badge {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    /* Demo Section Mobile */
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-container {
        padding: 0 24px;
    }
    
    .demo-title {
        font-size: 2.25rem;
    }
    
    .demo-subtitle {
        font-size: 1.125rem;
    }
    
    .platform-tabs {
        flex-direction: column;
        gap: 12px;
        margin: 30px 0;
    }
    
    .platform-tab {
        padding: 16px 24px;
        text-align: center;
    }
    
    .platform-demo {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }
    
    .demo-screenshot {
        max-height: 500px;
    }
    
    /* Launch Section Mobile */
    .launch-section {
        padding: 60px 0;
    }
    
    .launch-container {
        padding: 0 24px;
    }
    
    .launch-title {
        font-size: 2.25rem;
    }
    
    .launch-methods {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .launch-image {
        margin-bottom: 24px;
    }
    
    .method-title {
        font-size: 1.375rem;
    }
    
    .method-description {
        font-size: 0.95rem;
    }
    
    /* Privacy Section Mobile */
    .privacy-section {
        padding: 80px 0;
    }
    
    .privacy-container {
        padding: 0 24px;
    }
    
    .privacy-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .privacy-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    
    .privacy-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* Closing Section Mobile */
    .closing-section {
        padding: 80px 0;
    }
    
    .closing-container {
        padding: 0 24px;
    }
    
    .closing-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .closing-subtitle {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    /* Our Story Mobile */
    .story-content {
        padding: 60px 0 80px;
    }
    
    .story-section {
        margin-bottom: 56px;
        padding: 0 24px;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .section-body {
        font-size: 1.125rem;
    }
    
    .section-body p {
        margin-bottom: 18px;
    }
    
    .lead-text {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .metaphor-list {
        margin-top: 32px;
    }
    
    .metaphor-item {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .page-header {
        padding: 30px 0 20px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* Features Page Mobile */
    .features-hero {
        padding: 80px 0 60px;
    }

    .features-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

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

    .patches-section {
        padding: 60px 0;
    }

    .patches-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    .platform-card {
        padding: 24px;
    }

    .platform-header {
        gap: 12px;
        margin-bottom: 16px;
    }

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

    .platform-name {
        font-size: 1.375rem;
    }

    .platform-intro {
        margin-bottom: 24px;
    }

    .feature-group {
        margin-bottom: 24px;
    }

    .feature-category {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    .pro-section {
        padding: 60px 0;
    }

    .pro-header {
        margin-bottom: 50px;
        padding: 0 24px;
    }

    .pro-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

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

    .pro-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 0 24px;
    }

    .pro-row.reverse .pro-content {
        order: 1;
    }

    .pro-row.reverse .pro-image {
        order: 2;
    }

    /* Force all pro rows to stack vertically on mobile */
    .pro-row,
    .pro-row.reverse {
        display: flex;
        flex-direction: column;
    }

    .pro-row.reverse .pro-content {
        order: 1;
    }

    .pro-row.reverse .pro-image {
        order: 2;
    }

    .pro-feature-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .pro-feature-description,
    .pro-feature-examples {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .pro-feature-modes p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .image-placeholder {
        height: 250px;
        font-size: 1rem;
    }

    /* Custom Download Buttons Mobile */
    .custom-download-btn {
        min-width: 180px;
        padding: 14px 20px;
        gap: 12px;
    }

    .btn-icon svg {
        width: 24px;
        height: 24px;
    }

    .btn-subtitle {
        font-size: 0.7rem;
    }

    .btn-title {
        font-size: 1rem;
    }
}

/* Waitlist Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-primary);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 95vh;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 16px;
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    margin-top: 0;
}

.waitlist-iframe {
    width: 100%;
    max-width: 800px;
    height: 550px;
    border: none;
    border-radius: 12px;
    background: transparent;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 98%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 12px;
    }
    
    .modal-body p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .waitlist-iframe {
        height: 395px;
    }
}

.waitlist-iframe {
    width: 100%;
    max-width: 700px;
    height: 430px;
    border: none;
    border-radius: 12px;
    background: transparent;
}

