:root {
    --coral: #F4714A;
    --coral-light: #F6876B;
    --coral-dark: #D85A35;
    --warm-bg: #FFFBF5;
    --surface: #FDF4EC;
    --surface-dark: #F5E6D3;
    --border: #E8E0D4;
    --text-primary: #0B0B0B;
    --text-muted: #6B6056;
    --text-subtle: #9B8E82;
    --dark-bg: #1C1410;
    --dark-surface: #2A201A;
    --shadow-soft: 0 4px 20px rgba(244, 113, 74, 0.08);
    --shadow-medium: 0 8px 30px rgba(244, 113, 74, 0.12);
    --shadow-lifted: 0 12px 40px rgba(244, 113, 74, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 9999px;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--warm-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--coral);
    color: white;
    border-color: var(--coral);
}

.btn-primary:hover {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-outline {
    background-color: transparent;
    color: var(--coral);
    border-color: var(--coral);
}

.btn-outline:hover {
    background-color: var(--coral);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-submit {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    padding: 16px 28px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.hero-gradient-blob {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 113, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background-color: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-social-proof {
    font-size: 14px;
    color: var(--text-subtle);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1) inset,
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(244, 113, 74, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--warm-bg);
    border-radius: 32px;
    overflow: hidden;
}

.app-welcome {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.app-welcome .lottie-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.welcome-icon {
    margin-bottom: 24px;
}

.lottie-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
}

.lottie-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

.welcome-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.floating-chips {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-medium);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.chip-icon {
    font-size: 18px;
    color: var(--coral);
}

.chip-1 {
    top: 20%;
    left: -20px;
    animation: fadeSlideIn 0.8s ease-out 0.3s both;
}

.chip-2 {
    top: 50%;
    right: -30px;
    animation: fadeSlideIn 0.8s ease-out 0.5s both;
}

.chip-3 {
    bottom: 25%;
    left: -10px;
    animation: fadeSlideIn 0.8s ease-out 0.7s both;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--warm-bg);
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 16px;
}

.how-it-works .section-subtitle {
    text-align: center;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.step-icon .material-symbols-outlined {
    font-size: 32px;
    color: var(--coral);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.step-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Founder Note */
.founder-note {
    padding: 80px 0;
    background: var(--warm-bg);
}

.founder-note-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-note-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.founder-note-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.founder-note-signature {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Waitlist Section */

.ps-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.ps-problem {
    background: var(--surface);
    border: 1px solid var(--border);
}

.ps-solution {
    background: white;
    border: 2px solid var(--coral);
    box-shadow: var(--shadow-soft);
}

.ps-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.ps-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.ps-icon-cross {
    background: rgba(107, 96, 86, 0.1);
}

.ps-icon-cross.material-symbols-outlined {
    color: var(--text-muted);
}

.ps-icon-check {
    background: rgba(244, 113, 74, 0.15);
}

.ps-icon-check.material-symbols-outlined {
    color: var(--coral);
}

.ps-problem.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.ps-problem.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.ps-solution.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.ps-solution.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lifted);
    border-color: rgba(244, 113, 74, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--coral);
}

.feature-icon .material-symbols-outlined {
    font-size: 36px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: var(--coral);
    color: white;
    border-radius: var(--radius-sm);
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

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

.privacy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(244, 113, 74, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.privacy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.lock-animation-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.privacy-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--dark-surface);
    border-radius: var(--radius-lg);
    min-width: 180px;
}

.trust-icon {
    font-size: 32px;
    color: var(--coral);
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--warm-bg);
}

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

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.pricing-card-featured {
    border: 2px solid var(--coral);
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge-yearly {
    background: var(--text-primary);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-subtle);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-muted);
}

.feature-check {
    color: var(--coral);
    font-size: 18px;
}

.feature-x {
    color: var(--text-subtle);
    font-size: 18px;
}

.pricing-feature-disabled {
    color: var(--text-subtle);
    text-decoration: line-through;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-subtle);
    margin-top: 32px;
}

/* Waitlist Section */
.waitlist {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.waitlist-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 113, 74, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

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

.waitlist-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.waitlist-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.waitlist-counter {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.counter-number {
    font-weight: 700;
    color: var(--text-primary);
}

.waitlist-form {
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: white;
}

.form-input {
    flex: 1;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
}

.form-input::placeholder {
    color: var(--text-subtle);
}

.form-error {
    font-size: 14px;
    color: #dc3545;
    margin-top: 12px;
    display: none;
}

.waitlist-form.error .form-error {
    display: block;
}

.waitlist-success {
    display: none;
}

.waitlist-success.visible {
    display: block;
}

.success-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.success-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.waitlist-footer {
    font-size: 14px;
    color: var(--text-subtle);
    margin-top: 48px;
}

/* Footer */
.footer {
    background: var(--warm-bg);
    padding: 80px 0 40px;
    position: relative;
}

.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 12px;
}

.footer-description {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 15px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--coral);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--coral);
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-subtle);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-social-proof {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card-featured {
        transform: none;
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section-title {
        font-size: 32px;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-description {
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

.chip {
        display: none;
    }

    .hero.has-chips {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero.has-chips .hero-content {
        order: 1;
    }

    .hero.has-chips .hero-visual {
        order: 0;
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 24px;
    }

    .hero.has-chips .floating-chips {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        display: block;
    }

    .hero.has-chips .chip {
        display: flex;
        position: absolute;
        animation: fadeSlideIn 0.8s ease-out var(--delay, 0.3s) both;
    }

    .hero.has-chips .chip-1 {
        top: 10%;
        left: -10px;
        --delay: 0.3s;
    }

    .hero.has-chips .chip-2 {
        top: 40%;
        right: -15px;
        --delay: 0.5s;
    }

.hero.has-chips .chip-3 {
        bottom: 20%;
        left: -5px;
        --delay: 0.7s;
    }

    .form-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .form-input {
        border-bottom: 1px solid var(--border);
    }

    .btn-submit {
        border-radius: var(--radius-lg);
        margin: 12px;
        width: calc(100% - 24px);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .problem-solution,
    .how-it-works,
    .features,
    .privacy,
    .pricing,
    .founder-note,
    .waitlist {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .lottie-wrapper {
        width: 180px;
        height: 180px;
    }

    .welcome-title {
        font-size: 18px;
    }

    .welcome-subtitle {
        font-size: 12px;
    }

    .ps-card {
        padding: 28px;
    }

    .feature-card {
        padding: 24px;
    }
}

/* Animation Classes */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
