/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-purple: #a65af2;
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Geist Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Ensure all sections are properly centered */
    .hero-section,
    #features,
    .why-section,
    .how-section,
    .features-section,
    .faq-section,
    .cta-section {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    /* Fix max-width containers on mobile */
    .hero-content,
    .section-content,
    .how-content,
    .features-content,
    .faq-content,
    .cta-content,
    .max-w-7xl {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.025em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-purple);
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-main {
    margin-bottom: 4rem;
}

.typewriter-container {
    margin-bottom: 4rem;
}

.typewriter-text {
    font-size: 1.875rem;
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: pre-line;
}

.typewriter-text span {
    display: inline;
}

.cursor-blink {
    color: #9ca3af;
    animation: blink 1.5s infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.waitlist-form, .cta-form {
    max-width: 28rem;
    margin: 0 auto;
}

.form-group, .cta-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.email-input, .cta-email-input {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #d1d5db;
    font-size: 1.125rem;
    outline: none;
    transition: border-color 0.3s ease;
    height: 58px;
    box-sizing: border-box;
}

.email-input:focus, .cta-email-input:focus {
    border-color: var(--color-purple);
}

.submit-btn, .cta-submit-btn {
    background-color: transparent;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 58px;
    box-sizing: border-box;
}

.submit-btn:hover, .cta-submit-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.submit-btn:disabled, .cta-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-message, .cta-submit-message {
    text-align: center;
    margin-top: 1rem;
}

.submit-message.success, .cta-submit-message.success {
    color: #059669;
}

.submit-message.error, .cta-submit-message.error {
    color: #dc2626;
}

/* App Screenshot */
.app-screenshot {
    position: relative;
    max-width: 1536px;
    margin: 0 auto;
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.app-image:hover {
    transform: scale(1.05);
}

.screenshot-footnote {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(2px);
}

.scroll-reveal.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-150px) rotate(-8deg) scale(0.8);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(4px);
}

.scroll-reveal-left.animate {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    filter: blur(0px);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(150px) rotate(8deg) scale(0.8);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(4px);
}

.scroll-reveal-right.animate {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    filter: blur(0px);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.3) rotate(45deg);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: blur(5px) saturate(0);
}

.scroll-reveal-scale.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0px) saturate(1);
}

.scroll-stagger-1 { transition-delay: 0.1s; }
.scroll-stagger-2 { transition-delay: 0.2s; }
.scroll-stagger-3 { transition-delay: 0.3s; }
.scroll-stagger-4 { transition-delay: 0.4s; }
.scroll-stagger-5 { transition-delay: 0.5s; }

/* Parallax container */
.parallax-container {
    perspective: 1000px;
}

.parallax-element {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(166, 90, 242, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(16, 185, 129, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.section-content {
    max-width: 1536px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
}

.problems-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.problem-row.reverse {
    direction: rtl;
}

.problem-row.reverse > * {
    direction: ltr;
}

.problem-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.problem-text {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.problem-detail {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #374151;
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Cards */
.config-card, .privacy-card, .model-picker-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.config-card::before, .privacy-card::before, .model-picker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 90, 242, 0.1), transparent);
    transition: left 0.6s;
}

.config-card:hover::before, .privacy-card:hover::before, .model-picker-card:hover::before {
    left: 100%;
}

.config-card:hover, .privacy-card:hover, .model-picker-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px rgba(166, 90, 242, 0.2);
    border-color: var(--color-purple);
    border-width: 2px;
    animation: cardBounce 2s infinite;
}

@keyframes cardBounce {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(166, 90, 242, 0.2);
    }
    50% {
        box-shadow: 0 30px 60px rgba(166, 90, 242, 0.3);
    }
}

.config-header, .privacy-header {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.config-card:hover .config-header,
.privacy-card:hover .privacy-header {
    color: var(--color-purple);
    transform: translateX(8px) scale(1.1);
    font-weight: 600;
}

.config-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-prompt {
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    color: #1f2937;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.config-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 90, 242, 0.05), transparent);
    transition: left 0.8s;
}

.config-card:hover .config-prompt::before {
    left: 100%;
}

.config-card:hover .config-prompt {
    background-color: #f0f4ff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(166, 90, 242, 0.1);
    border: 1px solid rgba(166, 90, 242, 0.2);
}

.config-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.875rem;
}

.config-params > div {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.config-card:hover .config-params > div {
    transform: translateY(-2px);
    background-color: #f9fafb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.config-card:hover .config-params > div:nth-child(1) {
    animation: slideInUp 0.4s ease forwards;
    animation-delay: 0.1s;
}

.config-card:hover .config-params > div:nth-child(2) {
    animation: slideInUp 0.4s ease forwards;
    animation-delay: 0.2s;
}

.config-card:hover .config-params > div:nth-child(3) {
    animation: slideInUp 0.4s ease forwards;
    animation-delay: 0.3s;
}

.config-card:hover .config-params > div:nth-child(4) {
    animation: slideInUp 0.4s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.privacy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s;
}

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

.privacy-card:hover .privacy-item {
    transform: translateX(5px) scale(1.02);
    background-color: #f0fdf4;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.privacy-card:hover .privacy-item:nth-child(1) {
    animation: slideInRight 0.4s ease forwards;
    animation-delay: 0.1s;
}

.privacy-card:hover .privacy-item:nth-child(2) {
    animation: slideInRight 0.4s ease forwards;
    animation-delay: 0.2s;
}

.privacy-card:hover .privacy-item:nth-child(3) {
    animation: slideInRight 0.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(5px) scale(1.02);
    }
}

.privacy-local {
    font-size: 0.75rem;
    color: var(--color-purple);
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.privacy-card:hover .privacy-local {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.privacy-footer {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.privacy-card:hover .privacy-footer {
    color: #059669;
    transform: translateY(-2px);
}

.model-picker-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.model-picker-card:hover .model-picker-header {
    transform: translateY(-2px);
}

.window-controls {
    display: flex;
    gap: 0.25rem;
}

.window-control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-picker-card:hover .window-control {
    transform: scale(1.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.model-picker-card:hover .window-control.red {
    animation: pulse 1s infinite;
    animation-delay: 0.1s;
}

.model-picker-card:hover .window-control.yellow {
    animation: pulse 1s infinite;
    animation-delay: 0.2s;
}

.model-picker-card:hover .window-control.green {
    animation: pulse 1s infinite;
    animation-delay: 0.3s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
}

.window-control.red { background-color: #ef4444; }
.window-control.yellow { background-color: #eab308; }
.window-control.green { background-color: #22c55e; }

.model-picker-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: auto;
    transition: all 0.3s ease;
}

.model-picker-card:hover .model-picker-title {
    color: var(--color-purple);
    transform: translateX(-5px);
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.model-item {
    background-color: #f9fafb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 90, 242, 0.1), transparent);
    transition: left 0.5s;
}

.model-picker-card:hover .model-item::before {
    left: 100%;
}

.model-picker-card:hover .model-item {
    transform: translateX(8px) scale(1.03);
    background-color: #f0f4ff;
    box-shadow: 0 4px 8px rgba(166, 90, 242, 0.15);
    border: 1px solid rgba(166, 90, 242, 0.2);
    color: var(--color-purple);
    font-weight: 500;
}

.model-picker-card:hover .model-item:nth-child(1) {
    animation: modelSlideIn 0.4s ease forwards;
    animation-delay: 0.1s;
}

.model-picker-card:hover .model-item:nth-child(2) {
    animation: modelSlideIn 0.4s ease forwards;
    animation-delay: 0.2s;
}

.model-picker-card:hover .model-item:nth-child(3) {
    animation: modelSlideIn 0.4s ease forwards;
    animation-delay: 0.3s;
}

.model-picker-card:hover .model-item:nth-child(4) {
    animation: modelSlideIn 0.4s ease forwards;
    animation-delay: 0.4s;
}

@keyframes modelSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(8px) scale(1.03);
    }
}

/* How Section */
.how-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(166, 90, 242, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    animation: bgFloat 25s infinite ease-in-out reverse;
    z-index: 0;
}

.how-section > * {
    position: relative;
    z-index: 1;
}

.how-content {
    max-width: 1024px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.how-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.how-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.how-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #374151;
}

.how-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-purple);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.how-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.dont-card, .local-card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dont-card::before, .local-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 90, 242, 0.05), transparent);
    transition: left 0.8s;
}

.dont-card:hover::before, .local-card:hover::before {
    left: 100%;
}

.dont-card:hover, .local-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(166, 90, 242, 0.15);
    border-color: var(--color-purple);
}

.dont-header, .local-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 0.75rem;
}

.dont-list, .local-list {
    list-style: none;
}

.dont-list li, .local-list li {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* New Feature Cards Section */
#features {
    padding: 8rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(166, 90, 242, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    animation: bgFloat 20s infinite ease-in-out;
    z-index: 0;
    transform: rotate(var(--scroll-rotation, 0deg));
    transition: transform 0.1s ease-out;
}

@keyframes bgFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-10px, -10px) rotate(1deg);
    }
    66% {
        transform: translate(10px, 5px) rotate(-1deg);
    }
}

#features > * {
    position: relative;
    z-index: 1;
}

.max-w-7xl {
    max-width: 90rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .sm\:px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .max-w-7xl {
        max-width: none;
        width: 100%;
    }
}

.bg-bg-card {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.bg-bg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.bg-bg-card:hover::before {
    left: 100%;
}

.border-border-color {
    border-color: #e5e7eb;
    border-width: 1px;
}

.hover\:border-border-hover:hover {
    border-color: var(--color-purple);
    border-width: 2px;
    box-shadow: 0 20px 40px rgba(166, 90, 242, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.lg\:p-16 {
    padding: 4rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.lg\:gap-16 {
    gap: 4rem;
}

.items-center {
    align-items: center;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.lg\:order-1 {
    order: 1;
}

.lg\:order-2 {
    order: 2;
}

.border-primary {
    border-color: var(--color-purple);
}

.text-primary {
    color: var(--color-purple);
}

.border-orange-500 {
    border-color: #f59e0b;
}

.text-orange-500 {
    color: #f59e0b;
}

.border-green-500 {
    border-color: #10b981;
}

.text-green-500 {
    color: #10b981;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.text-xs {
    font-size: 0.75rem;
}

.lg\:text-sm {
    font-size: 0.875rem;
}

.font-semibold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.w-fit {
    width: fit-content;
}

.mb-4 {
    margin-bottom: 1rem;
}

.lg\:mb-6 {
    margin-bottom: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.lg\:text-5xl {
    font-size: 3rem;
}

.font-black {
    font-weight: 900;
}

.leading-tight {
    line-height: 1.25;
}

.text-lg {
    font-size: 1.125rem;
}

.lg\:text-xl {
    font-size: 1.25rem;
}

.text-text-secondary {
    color: #6b7280;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.lg\:mb-8 {
    margin-bottom: 2rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.lg\:space-y-3 > * + * {
    margin-top: 0.75rem;
}

.text-text-primary {
    color: #1a1a1a;
}

.text-sm {
    font-size: 0.875rem;
}

.lg\:text-base {
    font-size: 1rem;
}

.relative {
    position: relative;
}

.rounded-2xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transform {
    transform: var(--tw-transform);
}

.scale-100 {
    transform: scale(1);
}

.lg\:scale-110 {
    transform: scale(1.1);
}

.max-w-full {
    max-width: 100%;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.max-h-64 {
    max-height: 16rem;
}

.lg\:max-h-none {
    max-height: none;
}

.object-cover {
    object-fit: cover;
}

.transition-colors {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Feature card hover animations */
#features .bg-bg-card:hover .text-3xl,
#features .bg-bg-card:hover .lg\:text-5xl {
    transform: translateX(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#features .bg-bg-card:hover .text-text-secondary {
    color: #4b5563;
    transition: color 0.3s ease;
}

#features .bg-bg-card:hover .border-primary,
#features .bg-bg-card:hover .border-orange-500,
#features .bg-bg-card:hover .border-green-500 {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#features .bg-bg-card:hover .space-y-2 > div,
#features .bg-bg-card:hover .lg\:space-y-3 > div {
    animation: slideInLeft 0.6s ease forwards;
}

#features .bg-bg-card:hover .space-y-2 > div:nth-child(1),
#features .bg-bg-card:hover .lg\:space-y-3 > div:nth-child(1) {
    animation-delay: 0.1s;
}

#features .bg-bg-card:hover .space-y-2 > div:nth-child(2),
#features .bg-bg-card:hover .lg\:space-y-3 > div:nth-child(2) {
    animation-delay: 0.2s;
}

#features .bg-bg-card:hover .space-y-2 > div:nth-child(3),
#features .bg-bg-card:hover .lg\:space-y-3 > div:nth-child(3) {
    animation-delay: 0.3s;
}

#features .bg-bg-card:hover .space-y-2 > div:nth-child(4),
#features .bg-bg-card:hover .lg\:space-y-3 > div:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image hover effects */
#features .bg-bg-card:hover .rounded-2xl img {
    transform: scale(1.15) rotate(2deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#features .bg-bg-card:hover .shadow-2xl {
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.4s ease;
}

/* Pulsing glow effect */
#features .bg-bg-card:hover {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(166, 90, 242, 0.15);
    }
    50% {
        box-shadow: 0 25px 50px rgba(166, 90, 242, 0.25);
    }
}

.hidden {
    display: none;
}

.sm\:block {
    display: block;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: #fff;
}

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

/* Highlighted heading */
.highlight-heading {
    position: relative;
}

.highlight-text {
    position: relative;
    color: var(--color-purple);
    background: linear-gradient(135deg, var(--color-purple), #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: -0.25rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.25rem;
    background: linear-gradient(135deg, var(--color-purple), #d946ef);
    opacity: 0.1;
    border-radius: 0.5rem;
    z-index: -1;
}

/* User types grid */
.user-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.user-type-pane {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.user-type-pane:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-purple);
}

.user-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-type-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-purple), #d946ef);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.user-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.user-type-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-type-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.user-type-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-type-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.user-type-features .feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-purple);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Legacy feature styles (kept for compatibility) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-purple);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.faq-content {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #4b5563;
    line-height: 1.6;
}

.email-link {
    color: var(--color-purple);
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-form {
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.cta-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-email-input {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #d1d5db;
    font-size: 1.125rem;
    outline: none;
    transition: border-color 0.3s ease;
    height: 58px;
    box-sizing: border-box;
}

.cta-submit-btn {
    background-color: transparent;
    color: #374151;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 58px;
    box-sizing: border-box;
}

.cta-footer {
    color: #6b7280;
    text-align: center;
}

.cta-brand {
    font-weight: 600;
}

.cta-tagline {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-group, .cta-form-group {
        flex-direction: row;
        align-items: center;
    }
    
    .typewriter-text {
        font-size: 2.25rem;
    }
    
    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .sm\:block {
        display: block;
    }
}

@media (min-width: 768px) {
    .typewriter-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:gap-16 {
        gap: 2rem;
    }
    
    .lg\:p-16 {
        padding: 2rem;
    }
    
    .lg\:order-1,
    .lg\:order-2 {
        order: unset;
    }
    
    .lg\:mb-6 {
        margin-bottom: 1rem;
    }
    
    .lg\:text-5xl {
        font-size: 1.875rem;
    }
    
    .lg\:text-xl {
        font-size: 1.125rem;
    }
    
    .lg\:mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .lg\:space-y-3 > * + * {
        margin-top: 0.5rem;
    }
    
    .lg\:text-base {
        font-size: 0.875rem;
    }
    
    .lg\:scale-110 {
        transform: scale(1);
    }
    
    .lg\:max-h-none {
        max-height: 16rem;
    }
    
    /* Reduce animation transforms on mobile for better performance */
    .scroll-reveal-left {
        transform: translateX(-80px) rotate(-3deg) scale(0.9);
    }
    
    .scroll-reveal-right {
        transform: translateX(80px) rotate(3deg) scale(0.9);
    }
    
    .scroll-reveal-scale {
        transform: scale(0.5) rotate(20deg);
    }
}

@media (max-width: 768px) {
    .problem-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .user-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .user-type-pane {
        padding: 1.5rem;
    }
    
    .user-type-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .user-type-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .user-type-title {
        font-size: 1.25rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .problem-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
}

/* Legal Pages */
.terms-content {
    padding: 8rem 0 4rem;
}

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

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-section {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.legal-heading {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text:last-child {
    margin-bottom: 0;
}

.legal-text strong {
    color: #1f2937;
}

/* Footer */
.legal-footer {
    background-color: #f9fafb;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

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

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

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-purple);
}

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

@media (max-width: 480px) {
    .hero-section {
        padding-top: 4rem;
    }
    
    .typewriter-text {
        font-size: 1.5rem;
        height: 8rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .problem-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .terms-content {
        padding: 6rem 0 3rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-heading {
        font-size: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 8rem 0 4rem;
    background-color: #f9fafb;
    min-height: 80vh;
}

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

.contact-form-container {
    background-color: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid #d1d5db;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: var(--font-sans);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-purple);
}

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

.contact-submit-btn {
    background-color: var(--color-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background-color: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 90, 242, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Navigation active state */
.nav-link.active {
    color: var(--color-purple);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-section {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
} 