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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #111827;
    background: #ffffff;
    font-feature-settings: 'kern', 'liga', 'calt';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}


.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #4f46e5;
    letter-spacing: -0.025em;
    position: relative;
}

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

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: #4f46e5;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #4f46e5;
    color: white;
    border: 1px solid #4f46e5;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.5);
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Make Apple logo white when inside black buttons */
.btn-secondary .btn-icon[src*="apple_logo"],
.btn-primary .btn-icon[src*="apple_logo"] {
    filter: brightness(0) invert(1);
}

/* Free tier special layout with two buttons side by side */
.pricing-card:first-child .pricing-cta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
}


.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(79, 70, 229, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn-large::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 ease;
}

.btn-large:hover::before {
    left: 100%;
}

.nav-cta {
    padding: 8px 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 114, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Cursor-inspired gradient override */
.gradient-hero {
    background-color: hsla(276,100%,50%,1);
    background-image:
        radial-gradient(at 40% 20%, hsla(28,100%,74%,1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189,100%,56%,1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355,100%,93%,1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340,100%,76%,1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22,100%,77%,1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242,100%,70%,1) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(343,100%,76%,1) 0px, transparent 50%);
    color: #0b0b0f;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Centered hero layout per mockup */
.gradient-hero .container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
    padding-top: 32px;
}

.gradient-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(56px, 8vw, 86px);
    font-weight: 800;
    margin-bottom: 24px;
    color: #0b0b10;
    letter-spacing: -0.025em;
    line-height: 1.1;
    font-family: 'DM Sans', sans-serif;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.hero-subtitle {
    font-size: clamp(18px, 3.5vw, 22px);
    color: rgba(12, 12, 18, 0.75);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 90%;
    font-family: 'DM Sans', sans-serif;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
}

.hero-actions {
    gap: 12px;
}

.gradient-hero .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

/* Modern hero buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-hero svg, .btn-hero img { display: block; width: 20px; height: 20px; }
.icon-apple { margin-top: 0; }

.btn-hero-primary {
    color: #0b0b10;
    background: linear-gradient(180deg, #ffffff 0%, #f5f6ff 100%);
    border-color: rgba(12, 12, 18, 0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-hero-secondary {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(22,22,30,0.9) 0%, rgba(12,12,20,0.9) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(12,12,20,0.95) 0%, rgba(8,8,14,0.95) 100%);
}

.cta-note {
    font-size: 15px;
    color: rgba(10,10,16,0.9);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

/* .cta-note::before {
    content: '*';
    display: inline;
    margin-right: 6px;
    color: rgba(0,0,0,0.7);
    font-weight: 700;
} */

/* Hero Visual: large borderless screenshot */
.hero-visual { position: relative; overflow: visible; }
.hero-visual { position: relative; overflow: visible; display: flex; justify-content: center; align-items: center; margin-top: 24px; }
.screenshot-frame { position: relative; background: transparent; padding: 0; border: 0; box-shadow: none; }
.screenshot-img {
    display: block;
    width: min(100%, 1100px);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 12px 32px rgba(0,0,0,0.18);
    transform: none;
}

.flow-step {
    margin-bottom: 24px;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.flow-step:nth-child(odd) .step-label {
    color: #4f46e5;
    text-align: left;
}

.flow-step:nth-child(even) .step-label {
    color: #059669;
    text-align: right;
}

.step-message {
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    position: relative;
    max-width: 85%;
}

.ai-msg {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    color: #1e293b;
    border: 1px solid rgba(79, 70, 229, 0.1);
    margin-right: auto;
}

.ai-msg::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f0f7ff;
}

.user-msg {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #1e293b;
    border: 1px solid rgba(5, 150, 105, 0.1);
    margin-left: auto;
}

.user-msg::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #ecfdf5;
}

.typing-step .step-message {
    display: flex;
    align-items: center;
    gap: 12px;
}

.generating {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border: 1px solid rgba(79, 70, 229, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.generating::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

.typing-indicator {
    display: flex;
    gap: 4px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f46e5;
    animation: pulse 1.4s infinite ease-in-out;
}

.dot-pulse:nth-child(2) { animation-delay: 0.2s; }
.dot-pulse:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

/* Manifesto Section */
.manifesto {
    padding: 100px 0;
    background: #ffffff;
}

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

.manifesto .section-title {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.manifesto-text {
    text-align: left;
}

.manifesto-lead {
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
}

.manifesto-text p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.manifesto-conclusion {
    font-size: clamp(18px, 3vw, 20px);
    color: #111827;
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.4;
}

/* How It Works Section */
/* How It Works Section - Cursor-inspired clean layout */
.how-it-works {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(64px, 10vw, 80px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: clamp(64px, 10vw, 80px);
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.step-info {
    margin-bottom: 32px;
}

.step-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif;
}

.step-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.step-note {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #9ca3af;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    margin-top: 8px;
    font-style: italic;
}

.step-demo {
    position: relative;
}

.step-gif {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-gif:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.demo-placeholder-step {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-placeholder-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.demo-icon-step {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    color: #4f46e5;
}

.demo-text-step {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Pricing Section */
.pricing {
    padding: clamp(80px, 12vw, 120px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.pricing-header {
    text-align: left;
    margin-bottom: 40px;
}

.pricing .section-title {
    text-align: left;
    margin-bottom: 0;
}

.pricing-subtitle {
    font-size: clamp(18px, 3.5vw, 22px);
    color: rgba(12, 12, 18, 0.75);
    margin-top: 4px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 600px;
    line-height: 1.5;
}

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

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 800px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(79, 70, 229, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(79, 70, 229, 0.2);
}

.pricing-card-featured {
    background: 
        radial-gradient(at 40% 20%, hsla(28,100%,74%,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189,100%,56%,0.12) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355,100%,93%,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340,100%,76%,0.12) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22,100%,77%,0.12) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242,100%,70%,0.12) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(343,100%,76%,0.12) 0px, transparent 50%),
        rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(79, 70, 229, 0.15);
    position: relative;
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
    border-color: rgba(79, 70, 229, 0.4);
    background: 
        radial-gradient(at 40% 20%, hsla(28,100%,74%,0.35) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(189,100%,56%,0.35) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355,100%,93%,0.35) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340,100%,76%,0.35) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22,100%,77%,0.35) 0px, transparent 50%),
        radial-gradient(at 80% 100%, hsla(242,100%,70%,0.35) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(343,100%,76%,0.35) 0px, transparent 50%),
        rgba(255, 255, 255, 0.9);
}


.pricing-card-header {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-tier {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #0b0b10;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 16px;
    gap: 4px;
}

.price-currency {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    color: #4f46e5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.price-amount {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 700;
    color: #4f46e5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 500;
    color: #6b7280;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.pricing-description {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(12, 12, 18, 0.65);
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
}

.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(15px, 2.3vw, 16px);
    color: rgba(12, 12, 18, 0.8);
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #4f46e5;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: auto;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    white-space: nowrap;
}

.upgrade-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    margin: 0;
    padding: 12px 16px;
}

.btn-secondary {
    background: #4f46e5;
    color: white;
    border: 1px solid #4f46e5;
}

.btn-secondary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
}

.pricing-footer {
    text-align: center;
    margin-top: clamp(48px, 8vw, 64px);
}

.pricing-note {
    font-size: clamp(14px, 2.2vw, 16px);
    color: #6b7280;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note::before {
    content: '✨';
    font-size: 16px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #ffffff;
}

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

.team-description {
    font-size: clamp(17px, 3vw, 19px);
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.company-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.2s ease;
    min-width: 140px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

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

.company-icon svg {
    width: 32px;
    height: 32px;
}

.meta-icon {
    background: #1877f2;
    color: white;
}

.instacart-icon {
    background: #43b02a;
    color: white;
}

.snap-icon {
    background: #fffc00;
    color: #000;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.005em;
    font-family: 'DM Sans', sans-serif;
}

.team-note {
    font-size: clamp(16px, 2.5vw, 17px);
    color: #9ca3af;
    font-style: italic;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

/* Memo Section */
.memo {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    position: relative;
}

.memo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

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

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

.memo-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-family: 'DM Sans', sans-serif;
}

.memo-subtitle {
    font-size: clamp(18px, 3vw, 20px);
    color: #6b7280;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.memo-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 64px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.memo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.2) 50%, transparent 100%);
}

.memo-lead {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
}

.memo-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.memo-text p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
}

.memo-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #4f46e5;
    margin: 32px 0;
    position: relative;
}

.memo-highlight p {
    font-size: clamp(17px, 3vw, 19px);
    color: #1e293b;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.memo-companies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    font-family: 'DM Sans', sans-serif;
}

.company-badge::before {
    content: '●';
    color: #4f46e5;
    font-size: 12px;
}

.memo-signature {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.memo-signature p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #6b7280;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    font-style: italic;
}

/* Demo CTA Section */
.demo-cta {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(124, 58, 237, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(18px, 3.5vw, 22px);
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    color: #4f46e5;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: #4f46e5;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.demo-cta .cta-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-cta .cta-note::before {
    content: '⚡';
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #111827;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

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

.footer-logo-image {
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: 'DM Sans', sans-serif;
    color: #4f46e5;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.footer-brand p {
    color: #6b7280;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 8px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.footer-column h4 {
    margin-bottom: 24px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

.footer-column a {
    display: block;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.footer-column a:hover {
    color: #4f46e5;
    transform: translateX(4px);
}

.footer-address {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 40px;
    text-align: center;
    color: #6b7280;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .gradient-hero .container { justify-items: center; }
    
    .hero-cta { align-items: center; }
    .gradient-hero .hero-cta { flex-direction: column; gap: 12px; }
    .cta-note { justify-content: center; margin-left: 0; }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    
    .hero-visual { overflow: visible; align-items: center; margin-top: 16px; }
    .screenshot-img { width: 100%; max-width: 100%; transform: none; box-shadow: 0 18px 50px rgba(0,0,0,0.25), 0 8px 22px rgba(0,0,0,0.15); border-radius: 10px; }
    
    .conversation-flow:hover {
        transform: scale(1.01);
    }
    
    .flow-step {
        margin-bottom: 20px;
    }
    
    .step-message {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 90%;
    }
    
    .step-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 28px;
        border-radius: 16px;
    }
    
    .feature-number {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .step-number {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .step-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .memo {
        padding: 80px 0;
    }
    
    .memo-container {
        padding: 0 20px;
    }
    
    .memo-header {
        margin-bottom: 48px;
    }
    
    .memo-content {
        padding: 32px;
        border-radius: 20px;
    }
    
    .memo-lead {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .memo-text {
        gap: 20px;
    }
    
    .memo-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .memo-highlight {
        padding: 20px;
        margin: 24px 0;
        border-radius: 12px;
    }
    
    .memo-companies {
        gap: 16px;
        margin: 32px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .company-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 50px;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 16px auto 0;
    }
    
    .nav {
        padding: 16px 24px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    .pricing-card-featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-card {
        padding: 28px;
        border-radius: 20px;
    }
    
    .pricing-badge {
        font-size: 11px;
        padding: 6px 20px;
    }
    
    .pricing-card-header {
        margin-bottom: 28px;
    }
    
    .pricing-features {
        margin-bottom: 28px;
    }
    
    .features-list {
        gap: 14px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .demo-cta {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
    }
    
    .cta-button {
        margin-bottom: 16px;
    }
    
    .feature-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .feature-number {
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .step-card {
        padding: 28px 20px;
        border-radius: 12px;
    }
    
    .step-number {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .memo {
        padding: 60px 0;
    }
    
    .memo-container {
        padding: 0 16px;
    }
    
    .memo-header {
        margin-bottom: 40px;
    }
    
    .memo-content {
        padding: 28px;
        border-radius: 16px;
    }
    
    .memo-lead {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .memo-text {
        gap: 18px;
    }
    
    .memo-text p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .memo-highlight {
        padding: 18px;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .memo-highlight p {
        font-size: 16px;
    }
    
    .memo-companies {
        gap: 12px;
        margin: 28px 0;
    }
    
    .company-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .memo-signature {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .conversation-flow {
        padding: 20px;
        border-radius: 12px;
    }
    
    .flow-step {
        margin-bottom: 16px;
    }
    
    .step-message {
        font-size: 12px;
        padding: 10px 14px;
        max-width: 95%;
    }
    
    .step-label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .typing-indicator {
        gap: 2px;
    }
    
    .dot-pulse {
        width: 6px;
        height: 6px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-logo-image {
        width: 24px;
        height: 24px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .pricing {
        padding: 50px 0;
    }
    
    .pricing-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .pricing-badge {
        font-size: 10px;
        padding: 5px 18px;
    }
    
    .pricing-card-header {
        margin-bottom: 24px;
    }
    
    .pricing-features {
        margin-bottom: 24px;
    }
    
    .features-list {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
    }
    
    .pricing-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Ensure icon stays on the first line next to the first text line */
    .cta-note { display: block; text-align: center; }
}

/* Waitlist Styles */
.waitlist-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.waitlist-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.waitlist-header {
    text-align: center;
    margin-bottom: 24px;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    background: #4f46e5;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 16px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}

.waitlist-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

.waitlist-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.waitlist-form {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.form-input {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: #111827;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: rgba(107, 114, 128, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-waitlist {
    background: #4f46e5;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    min-width: 140px;
    justify-content: center;
}

.btn-waitlist:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-waitlist:active {
    transform: translateY(0);
}

.btn-waitlist.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-waitlist .btn-icon {
    transition: transform 0.2s ease;
}

.btn-waitlist:hover .btn-icon {
    transform: translateX(2px);
}

.form-status {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    min-height: 20px;
}

.form-status.success {
    color: #059669;
}

.form-status.error {
    color: #dc2626;
}


/* Beta Pricing Styles */
.beta-pricing-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}

.pricing-urgency {
    color: #f59e0b;
    font-weight: 600;
    margin-top: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beta-access-badge {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    animation: pulse 2s infinite;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    margin-right: 8px;
}

.popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.price-strike {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-guarantee {
    color: #10b981;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    font-family: 'DM Sans', sans-serif;
}

.pricing-waitlist-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 12px;
}

.pricing-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.waitlist-note {
    color: #6b7280;
    font-size: 13px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .waitlist-container {
        padding: 28px 24px;
        margin: 0 16px;
        max-width: 400px;
    }
    
    .waitlist-title {
        font-size: 24px;
    }
    
    .waitlist-subtitle {
        font-size: 15px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-waitlist {
        width: 100%;
        min-width: unset;
        padding: 16px 20px;
    }
    
    .form-input {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .waitlist-container {
        padding: 24px 20px;
        border-radius: 12px;
        margin: 0 12px;
    }
    
    .waitlist-title {
        font-size: 22px;
    }
    
    .waitlist-subtitle {
        font-size: 14px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .btn-waitlist {
        padding: 14px 20px;
        font-size: 15px;
    }
}