:root {
    /* Primary Brand Colors */
    --soft-porcelain: #F6EFE8;      /* 60% - Primary background */
    --charcoal: #1C1C1C;            /* 30% - Text, headings, UI */
    --dusty-rose: #C29D96;          /* 10% - Accent highlights */

    /* Accent Colors */
    --blush-veil: #F1D6D3;
    --soft-cocoa: #6E5A55;
    --muted-plum: #8F6B73;

    /* Utility */
    --white: #ffffff;
    --text-light: #6E5A55;          /* Using Soft Cocoa for secondary text */
}

@font-face {
    font-family: 'Chillax';
    src: url('./fonts/Chillax-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Chillax';
    src: url('./fonts/Chillax-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Chillax';
    src: url('./fonts/Chillax-Semibold.otf') format('opentype');
    font-weight: 600;
}

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

body {
    font-family: 'Chillax', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--soft-porcelain);
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 80px;
    padding-top: 80px;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 450px;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    gap: 40px;
}

.nav-links-left a,
.nav-links-right a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Chillax', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: opacity 0.2s;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
    opacity: 0.8;
}

.waitlist-nav {
    font-weight: 600 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Chillax', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: opacity 0.2s;
}

.mobile-menu a:hover {
    opacity: 0.8;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 8px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--blush-veil);
}

.wave-divider.wave-white .shape-fill {
    fill: var(--white);
}

.wave-divider.wave-cocoa .shape-fill {
    fill: var(--soft-cocoa);
}

.wave-divider.wave-porcelain .shape-fill {
    fill: var(--soft-porcelain);
}

.wave-divider.wave-charcoal .shape-fill {
    fill: var(--charcoal);
}

/* Hero Section */
.hero {
    background: var(--dusty-rose);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 60px 80px;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-family: 'Chillax', sans-serif;
    font-size: 72px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 1px;
}

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

.hero-image-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    background: #F7C5CC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Lines */
.decorative-line {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dashed-line {
    width: 40px;
    height: 0;
    border-top: 2px dashed var(--soft-cocoa);
    margin-right: 8px;
}

.dashed-line.long {
    width: 60px;
}

.circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--soft-cocoa);
    border-radius: 50%;
    background: transparent;
}

/* About Section */
.about-section {
    background: var(--blush-veil);
    padding: 60px 0 80px;
    position: relative;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-left {
    flex: 1;
    max-width: 500px;
}

.about-header {
    font-family: 'Chillax', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.about-description {
    font-size: 14px;
    font-weight: 500;
    color: var(--soft-cocoa);
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-ask {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background: var(--dusty-rose);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: background 0.2s, transform 0.1s;
}

.btn-ask:hover {
    background: var(--muted-plum);
    transform: translateY(-2px);
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image-container {
    width: 500px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* iPhone Mockup Section */
.iphone-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    width: 100%;
    overflow: visible;
}

.iphone-mockup {
    position: relative;
    z-index: 10;
}

.iphone-frame {
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    position: relative;
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 35px;
    border: 3px solid #1a1a1a;
    pointer-events: none;
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 20;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2a2a2a;
    border-radius: 50%;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.iphone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Text Bubbles */
.text-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.text-bubble {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 220px;
    white-space: normal;
    line-height: 1.4;
    opacity: 0;
    animation: floatBubble 12s ease-in-out infinite;
}

.text-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

/* Left side bubbles - tail points right */
.bubble-1, .bubble-3, .bubble-5, .bubble-7 {
    right: calc(50% + 160px);
}

.bubble-1::after, .bubble-3::after, .bubble-5::after, .bubble-7::after {
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: var(--white);
}

/* Right side bubbles - tail points left */
.bubble-2, .bubble-4, .bubble-6 {
    left: calc(50% + 160px);
}

.bubble-2::after, .bubble-4::after, .bubble-6::after {
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: var(--white);
}

/* Individual bubble positions and timing */
.bubble-1 {
    top: 20px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 100px;
    animation-delay: 1.7s;
}

.bubble-3 {
    top: 180px;
    animation-delay: 3.4s;
}

.bubble-4 {
    top: 260px;
    animation-delay: 5.1s;
}

.bubble-5 {
    top: 340px;
    animation-delay: 6.8s;
}

.bubble-6 {
    top: 420px;
    animation-delay: 8.5s;
}

.bubble-7 {
    top: 500px;
    animation-delay: 10.2s;
}

@keyframes floatBubble {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    8% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }
    28% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    35% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
}

/* Slideshow styles for transparent phone */
.transparent-screen {
    background: transparent !important;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 35px;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
    padding: 120px 0 180px;
    position: relative;
    overflow-x: clip;
}

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

.how-it-works h2 {
    font-family: 'Chillax', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--charcoal);
}

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

.step-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--soft-porcelain);
    transition: transform 0.2s;
}

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

/* Typing Bubble for Step 1 */
.step-card-ask {
    position: relative;
    overflow: visible;
    z-index: 20;
}

.typing-bubble-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.typing-bubble {
    background: var(--white);
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    display: flex;
    align-items: center;
}

.typing-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: var(--white);
    border-bottom: none;
}

.step-card-ask:hover .typing-bubble {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    margin-left: 1px;
    animation: blink 0.7s step-end infinite;
}

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

/* Vote Bubbles for Step 2 */
.step-card-votes {
    position: relative;
    overflow: visible;
    z-index: 20;
}

.step-card-votes:hover {
    z-index: 30;
}

.vote-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.vote-bubble {
    position: absolute;
    background: var(--blush-veil);
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.5) translateY(10px);
    transition: none;
}

.step-card-votes:hover .vote-bubble {
    animation: popInBubble 0.4s ease-out forwards;
}

.step-card-votes:hover .vote-bubble-1 { animation-delay: 0s; }
.step-card-votes:hover .vote-bubble-2 { animation-delay: 0.08s; }
.step-card-votes:hover .vote-bubble-3 { animation-delay: 0.16s; }
.step-card-votes:hover .vote-bubble-4 { animation-delay: 0.24s; }
.step-card-votes:hover .vote-bubble-5 { animation-delay: 0.32s; }
.step-card-votes:hover .vote-bubble-6 { animation-delay: 0.4s; }
.step-card-votes:hover .vote-bubble-7 { animation-delay: 0.48s; }
.step-card-votes:hover .vote-bubble-8 { animation-delay: 0.56s; }
.step-card-votes:hover .vote-bubble-9 { animation-delay: 0.64s; }

/* Position each bubble around the card - all outside */
.vote-bubble-1 { top: -25px; left: -20px; }
.vote-bubble-2 { top: -20px; right: -30px; }
.vote-bubble-3 { top: 20%; left: -80px; }
.vote-bubble-4 { top: 15%; right: -100px; }
.vote-bubble-5 { top: 50%; left: -70px; }
.vote-bubble-6 { top: 50%; right: -60px; }
.vote-bubble-7 { bottom: 15%; left: -85px; }
.vote-bubble-8 { bottom: 10%; right: -70px; }
.vote-bubble-9 { bottom: -35px; left: 50%; transform: translateX(-50%) scale(0.5); }

@keyframes popInBubble {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Keep bubble 9 centered when animating */
.step-card-votes:hover .vote-bubble-9 {
    animation: popInBubbleCentered 0.4s ease-out forwards;
    animation-delay: 0.64s;
}

@keyframes popInBubbleCentered {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5) translateY(10px);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) translateY(0);
    }
}

/* Confetti and Hearts for Step 3 */
.step-card-decide {
    position: relative;
    overflow: visible;
    z-index: 20;
}

.confetti-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.confetti-particle {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
}

.confetti-particle.heart {
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.confetti-particle.heart.large {
    font-size: 32px;
}

.confetti-particle.confetti {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.confetti-particle.confetti.large {
    width: 16px;
    height: 16px;
}

.confetti-particle.confetti.circle {
    border-radius: 50%;
}

@keyframes confettiBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(0);
    }
    20% {
        opacity: 1;
        transform: translate(var(--tx), var(--ty)) rotate(180deg) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--tx) * 1.2), calc(var(--ty) + 120px)) rotate(540deg) scale(0.4);
    }
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dusty-rose);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Community Section */
.community {
    background: var(--soft-cocoa);
    padding: 60px 0 80px;
    position: relative;
}

.community-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.community-left {
    flex: 1;
    max-width: 500px;
}

.community-header {
    font-family: 'Chillax', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.community-description {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
}

.community-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.community-phone {
    min-height: 600px;
}

.community-phone .slideshow-container {
    border-radius: 35px;
}

/* Community Text Bubbles */
.community-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.community-bubble {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 220px;
    white-space: normal;
    line-height: 1.4;
    opacity: 0;
    animation: floatBubble 12s ease-in-out infinite;
}

.community-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
}

/* Left side bubbles - tail points right */
.cbubble-1, .cbubble-3, .cbubble-5, .cbubble-7 {
    right: calc(50% + 160px);
}

.cbubble-1::after, .cbubble-3::after, .cbubble-5::after, .cbubble-7::after {
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: var(--white);
}

/* Right side bubbles - tail points left */
.cbubble-2, .cbubble-4, .cbubble-6, .cbubble-8 {
    left: calc(50% + 160px);
}

.cbubble-2::after, .cbubble-4::after, .cbubble-6::after, .cbubble-8::after {
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: var(--white);
}

/* Individual bubble positions and timing */
.cbubble-1 {
    top: 20px;
    animation-delay: 0s;
}

.cbubble-2 {
    top: 90px;
    animation-delay: 1.5s;
}

.cbubble-3 {
    top: 160px;
    animation-delay: 3s;
}

.cbubble-4 {
    top: 230px;
    animation-delay: 4.5s;
}

.cbubble-5 {
    top: 300px;
    animation-delay: 6s;
}

.cbubble-6 {
    top: 370px;
    animation-delay: 7.5s;
}

.cbubble-7 {
    top: 440px;
    animation-delay: 9s;
}

.cbubble-8 {
    top: 510px;
    animation-delay: 10.5s;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Waitlist Section */
.waitlist {
    background: var(--soft-porcelain);
    padding: 100px 0;
}

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

.waitlist h2 {
    font-family: 'Chillax', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.waitlist p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.waitlist-form input {
    padding: 14px 20px;
    border: 2px solid var(--dusty-rose);
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--muted-plum);
}

.waitlist-form input::placeholder {
    color: var(--soft-cocoa);
}

.btn-join {
    padding: 14px 32px;
    background: var(--dusty-rose);
    color: var(--white);
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Chillax', sans-serif;
}

.btn-join:hover {
    background: var(--muted-plum);
    transform: translateY(-2px);
}

.form-note {
    font-size: 12px;
    color: var(--soft-cocoa);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 40px;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays for step cards */
.step-card.fade-in:nth-child(1) { transition-delay: 0s; }
.step-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.step-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* Staggered animation delays for stats */
.stat-item.fade-in:nth-child(1) { transition-delay: 0s; }
.stat-item.fade-in:nth-child(2) { transition-delay: 0.15s; }
.stat-item.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* Hero entrance animations */
.hero-left {
    animation: slideInLeft 1s ease-out;
}

.hero-right {
    animation: slideInRight 1s ease-out;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating animation for hero image */
.hero-image-circle {
    animation: float 4s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-image-circle {
        width: 350px;
        height: 350px;
    }

    .about-content {
        flex-direction: column;
        gap: 60px;
    }

    .about-left {
        max-width: 100%;
        text-align: center;
    }

    .about-right {
        justify-content: center;
    }

    .decorative-line {
        justify-content: center;
    }

    /* Community section responsive */
    .community-content {
        flex-direction: column;
        gap: 60px;
    }

    .community-left {
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .community-right {
        justify-content: center;
        order: 2;
    }

    .community-phone {
        min-height: 550px;
    }

    /* Community bubbles responsive */
    .cbubble-1, .cbubble-3, .cbubble-5, .cbubble-7 {
        right: calc(50% + 150px);
    }

    .cbubble-2, .cbubble-4, .cbubble-6, .cbubble-8 {
        left: calc(50% + 150px);
    }

    .community-bubble {
        font-size: 13px;
        padding: 10px 14px;
        max-width: 180px;
    }

    .cbubble-1 { top: 15px; }
    .cbubble-2 { top: 80px; }
    .cbubble-3 { top: 145px; }
    .cbubble-4 { top: 210px; }
    .cbubble-5 { top: 275px; }
    .cbubble-6 { top: 340px; }
    .cbubble-7 { top: 405px; }
    .cbubble-8 { top: 470px; }

    /* iPhone section responsive */
    .iphone-section {
        min-height: 550px;
    }

    .iphone-frame {
        width: 260px;
        height: 520px;
    }

    .bubble-1, .bubble-3, .bubble-5, .bubble-7 {
        right: calc(50% + 150px);
    }

    .bubble-2, .bubble-4, .bubble-6 {
        left: calc(50% + 150px);
    }

    .text-bubble {
        font-size: 13px;
        padding: 10px 14px;
        max-width: 180px;
    }

    /* Typing bubble responsive */
    .typing-bubble {
        font-size: 12px;
        padding: 10px 14px;
    }

    .typing-bubble-container {
        top: -50px;
    }

    /* Vote bubbles responsive - reduce negative offsets to prevent cutoff */
    .vote-bubble {
        font-size: 11px;
        padding: 6px 10px;
    }

    .vote-bubble-1 { top: -30px; left: 5px; }
    .vote-bubble-2 { top: -30px; right: 5px; }
    .vote-bubble-3 { top: 15%; left: -25px; }
    .vote-bubble-4 { top: 15%; right: -35px; }
    .vote-bubble-5 { top: 45%; left: -20px; }
    .vote-bubble-6 { top: 45%; right: -25px; }
    .vote-bubble-7 { bottom: 15%; left: -20px; }
    .vote-bubble-8 { bottom: 15%; right: -30px; }

    .bubble-1 { top: 15px; }
    .bubble-2 { top: 90px; }
    .bubble-3 { top: 165px; }
    .bubble-4 { top: 240px; }
    .bubble-5 { top: 315px; }
    .bubble-6 { top: 390px; }
    .bubble-7 { top: 465px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 24px 20px;
        padding-top: 24px;
    }

    .nav-content {
        gap: 0;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
    }

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

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image-circle {
        width: 280px;
        height: 280px;
    }

    .decorative-line {
        justify-content: center;
    }

    .about-content {
        padding: 0 24px;
    }

    .about-image-container {
        width: 100%;
        height: 250px;
    }

    /* Community section mobile */
    .community-content {
        padding: 0 24px;
    }

    .community-header {
        font-size: 36px;
    }

    .community-phone {
        min-height: 450px;
    }

    .community-phone .slideshow-container {
        border-radius: 26px;
    }

    /* Community bubbles mobile */
    .community-bubble {
        font-size: 10px;
        padding: 8px 10px;
        max-width: 100px;
        white-space: normal;
        line-height: 1.3;
    }

    .cbubble-1, .cbubble-3, .cbubble-5, .cbubble-7 {
        right: calc(50% + 100px);
        left: auto;
    }

    .cbubble-2, .cbubble-4, .cbubble-6, .cbubble-8 {
        left: calc(50% + 100px);
        right: auto;
    }

    .cbubble-1 { top: 10px; }
    .cbubble-2 { top: 60px; }
    .cbubble-3 { top: 110px; }
    .cbubble-4 { top: 160px; }
    .cbubble-5 { top: 210px; }
    .cbubble-6 { top: 260px; }
    .cbubble-7 { top: 310px; }
    .cbubble-8 { top: 360px; }

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

    /* Typing bubble mobile */
    .typing-bubble {
        font-size: 11px;
        padding: 8px 12px;
    }

    .typing-bubble-container {
        top: -45px;
    }

    /* Vote bubbles mobile - text message style floating above card */
    .step-card-votes {
        overflow: visible;
        position: relative;
    }

    .vote-bubbles-container {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 10px 25px 10px;
    }

    .vote-bubble {
        position: relative;
        background: var(--blush-veil);
        padding: 10px 14px;
        border-radius: 16px;
        font-size: 13px;
        font-weight: 400;
        color: var(--charcoal);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        white-space: normal;
        line-height: 1.4;
        max-width: 85%;
        opacity: 1;
        transform: none;
    }

    /* Alternate left and right alignment like a chat */
    .vote-bubble-1,
    .vote-bubble-3,
    .vote-bubble-5,
    .vote-bubble-7,
    .vote-bubble-9 {
        align-self: flex-start;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .vote-bubble-2,
    .vote-bubble-4,
    .vote-bubble-6,
    .vote-bubble-8 {
        align-self: flex-end;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    /* Show only 3 bubbles on mobile for cleaner look */
    .vote-bubble-4,
    .vote-bubble-5,
    .vote-bubble-6,
    .vote-bubble-7,
    .vote-bubble-8,
    .vote-bubble-9 {
        display: none;
    }

    /* Text message tails for vote bubbles */
    .vote-bubble::after {
        content: '';
        position: absolute;
        bottom: -8px;
        width: 0;
        height: 0;
        border: 8px solid transparent;
    }

    /* Left-aligned bubbles - tail on left */
    .vote-bubble-1::after,
    .vote-bubble-3::after {
        left: 12px;
        border-top-color: var(--blush-veil);
        border-left-color: transparent;
        border-bottom-color: transparent;
        border-right-color: transparent;
        bottom: -8px;
        transform: rotate(45deg);
    }

    /* Right-aligned bubbles - tail on right */
    .vote-bubble-2::after {
        right: 12px;
        border-top-color: var(--blush-veil);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        bottom: -8px;
        transform: rotate(-45deg);
    }

    .community-stats {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 42px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .how-it-works h2,
    .community h2,
    .download h2 {
        font-size: 36px;
    }

    /* iPhone section mobile */
    .iphone-section {
        min-height: 450px;
    }

    .iphone-frame {
        width: 180px;
        height: 380px;
        border-radius: 32px;
        padding: 8px;
    }

    .iphone-frame::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 26px;
    }

    .iphone-notch {
        width: 70px;
        height: 20px;
        top: 8px;
        border-radius: 0 0 12px 12px;
    }

    .iphone-screen {
        border-radius: 26px;
    }

    .text-bubble {
        font-size: 10px;
        padding: 8px 10px;
        max-width: 100px;
        white-space: normal;
        line-height: 1.3;
    }

    .bubble-1, .bubble-3, .bubble-5, .bubble-7 {
        right: calc(50% + 100px);
        left: auto;
    }

    .bubble-2, .bubble-4, .bubble-6 {
        left: calc(50% + 100px);
        right: auto;
    }

    .bubble-1 { top: 10px; }
    .bubble-2 { top: 65px; }
    .bubble-3 { top: 120px; }
    .bubble-4 { top: 175px; }
    .bubble-5 { top: 230px; }
    .bubble-6 { top: 285px; }
    .bubble-7 { top: 340px; }

    /* Disable How It Works hover animations on mobile - use scroll-triggered instead */
    .step-card:hover {
        transform: none;
    }

    .step-card-ask:hover .typing-bubble {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    .step-card-votes:hover .vote-bubble {
        animation: none;
        opacity: 0;
    }

    .step-card-votes:hover .vote-bubble-9 {
        animation: none;
        opacity: 0;
    }

    /* Mobile scroll-triggered animations for How It Works */
    .step-card-ask.mobile-animate .typing-bubble {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    /* Mobile vote bubbles - fade in with stagger on scroll */
    .vote-bubble {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .step-card-votes.mobile-animate .vote-bubble {
        opacity: 1;
        transform: translateY(0);
    }

    .step-card-votes.mobile-animate .vote-bubble-1 { transition-delay: 0s; }
    .step-card-votes.mobile-animate .vote-bubble-2 { transition-delay: 0.15s; }
    .step-card-votes.mobile-animate .vote-bubble-3 { transition-delay: 0.3s; }
}
