@font-face {
    font-family: "Cherry Bomb One";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/cherry-bomb-one-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
        U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC,
        U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --mac-frame-border: #e0e0e0;
    --mac-frame-bg: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.section-title {
    position: absolute;
    top: 2vh;
    font-size: 8vw;
    font-weight: 800;
    color: #000;
    text-align: center;
    width: 100%;
    z-index: 10;
    letter-spacing: -0.04em;
    white-space: nowrap;
    line-height: 1;
}

/* Scroll containers give the space to scroll through the animation */
.scroll-container {
    height: 400vh; /* 4 screens of scrolling for the video */
    position: relative;
    width: 100%;
}

.sticky-frame {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Allow scaled video to spill downwards */
}

/* The Mac Frame CSS using frame.png */
.mac-frame {
    width: 90vw;
    max-width: 1400px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.mac-frame-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(0deg) scale(1.01); /* Perfectly horizontal */
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-0.2deg) scale(1.01);
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero text */
.hero-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: -0.02em;
    width: 90%;
    z-index: 25; /* Higher than video (15) to sit in front of the Mac */
    opacity: 1;
    transition: opacity 0.5s ease;
    background: radial-gradient(ellipse 80% 40% at 50% 50%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.4) 65%, rgba(255,255,255,0) 100%);
    padding: 60px 10px;
    border-radius: 50%;
}

/* Videos are snippets of the top notch area */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    pointer-events: none;
}

#notch_prompt, #notch_visuals,
#notch_prompt_1, #notch_prompt_2,
#notch_visuals_1, #notch_visuals_2 {
    position: absolute;
    top: 16.9%; /* Adjusted a tiny bit up */
    left: 49.8%; /* Shifted a tiny bit to the left */
    transform: translateX(-50%);
    width: 52.5%; /* Exact width of screen hole */
    height: auto;
    background-color: #000;
}

.demo-menu-bar-brand-icon {
    position: absolute;
    top: 17.2%;
    left: 59.4%;
    width: 0.8%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22%;
    z-index: 18;
    pointer-events: none;
}

/* Transition text between frames */
.transition-section {
    position: absolute;
    top: 130vh; /* Moved up to appear earlier */
    width: 100%;
    z-index: 50;
    pointer-events: none;
    opacity: 0; /* JS will handle opacity */
    transform: translateY(50px); /* JS will animate this to 0 */
}

/* Feature Widgets */
.feature-widgets-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1400px;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Below mac-frame which is z-index 2 */
}

.feature-widgets {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.left-widgets {
    right: 78%;
    align-items: flex-end;
}

.right-widgets {
    left: 78%;
    align-items: flex-start;
}

.feature-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 99px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0; /* Animated in JS */
    white-space: nowrap;
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* Orange to Blue palette */
    background: linear-gradient(135deg, #FF6B00 0%, #00C2FF 100%);
}

.intro-text {
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.intro-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.phantom-subtitle-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-brand-container {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.intro-logo-img {
    height: 14vw;
    width: 14vw;
    object-fit: contain;
    border-radius: 22%;
}

.phantom-brand-text {
    display: block;
    font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", sans-serif;
    font-weight: 900;
    font-size: 18vw;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.intro-text p {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
    margin: 3rem 0 0 0; /* Centered, moved down */
}

#animated-subtitle span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-30px);
}

.intro-text.visible #animated-subtitle span {
    animation: dropIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--delay) + 0.3s);
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Voice section below the second Mac frame */
.voice-section {
    padding: 6rem 0;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.voice-section h3 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
}

.gradient-text {
    background: linear-gradient(90deg, #0055d4 0%, #8b78cf 33%, #ff8c42 66%, #ffb37b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.voice-streams {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.marquee-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    width: max-content;
    align-items: center;
}

.marquee-track.right {
    animation: scroll-right 40s linear infinite;
}

.marquee-track.left {
    animation: scroll-left 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-33.33%); }
    100% { transform: translateX(0); }
}

.voice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    padding: 1.5rem 2rem;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    font-size: 1.25rem;
    font-weight: 500;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.voice-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(0,194,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.voice-item:hover::before {
    opacity: 1;
}

.voice-item:hover {
    border-color: transparent;
    box-shadow: 0 0 0 2px #FF6B00, 0 10px 30px rgba(255, 107, 0, 0.15);
    transform: translateY(-2px);
    color: #000;
}

.play-btn {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.voice-item:nth-child(10n+1) .play-btn { background: #0055d4; }
.voice-item:nth-child(10n+2) .play-btn { background: #267ef2; }
.voice-item:nth-child(10n+3) .play-btn { background: #5a80d8; }
.voice-item:nth-child(10n+4) .play-btn { background: #8c7bcf; }
.voice-item:nth-child(10n+5) .play-btn { background: #a578c2; }
.voice-item:nth-child(10n+6) .play-btn { background: #ba76ab; }
.voice-item:nth-child(10n+7) .play-btn { background: #d47a8f; }
.voice-item:nth-child(10n+8) .play-btn { background: #ea7f73; }
.voice-item:nth-child(10n+9) .play-btn { background: #ff8947; }
.voice-item:nth-child(10n+10) .play-btn { background: #ffb27a; }

.play-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 2rem;
    text-align: center;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.integrations-section h3 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
    color: #000;
}

.scatter-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.scatter-container h3 {
    position: relative;
    z-index: 10;
    margin: 0;
    max-width: 600px;
}

.integration-pill {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 99px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: default;
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float-scatter 6s ease-in-out infinite;
}

.integration-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(0,194,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.integration-pill:hover::before {
    opacity: 1;
}

.integration-pill:hover {
    border-color: transparent;
    box-shadow: 0 0 0 2px #FF6B00, 0 10px 30px rgba(255, 107, 0, 0.15);
    color: #000;
    animation-play-state: paused;
}

/* Float Positions */
.float-1 { top: 5%; left: 10%; animation-delay: 0s; }
.float-2 { top: 25%; left: 0%; animation-delay: 1.2s; }
.float-3 { top: 50%; left: -5%; animation-delay: 2.4s; }
.float-4 { top: 75%; left: 5%; animation-delay: 0.5s; }

.float-5 { top: 10%; right: 10%; animation-delay: 1s; }
.float-6 { top: 30%; right: 0%; animation-delay: 2.1s; }
.float-7 { top: 55%; right: -5%; animation-delay: 3s; }
.float-8 { top: 80%; right: 5%; animation-delay: 1.5s; }

.float-9 { top: -5%; left: 35%; animation-delay: 0.8s; }
.float-10 { top: 0%; right: 30%; animation-delay: 1.8s; }
.float-11 { bottom: -5%; left: 30%; animation-delay: 2.5s; }
.float-12 { bottom: 0%; right: 35%; animation-delay: 0.3s; }

.float-13 { top: 20%; left: 25%; animation-delay: 1.1s; }
.float-14 { top: 15%; right: 25%; animation-delay: 2.7s; }
.float-15 { bottom: 10%; left: 20%; animation-delay: 0.9s; }
.float-16 { bottom: 15%; right: 20%; animation-delay: 2.2s; }
.float-17 { bottom: 25%; left: 15%; animation-delay: 0.4s; }
.float-18 { top: 40%; left: 20%; animation-delay: 1.6s; }
.float-19 { bottom: 30%; right: 15%; animation-delay: 3.1s; }
.float-20 { top: 45%; right: 20%; animation-delay: 1.9s; }

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

@media (max-width: 900px) {
    .scatter-container {
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 2rem 0;
        gap: 1rem;
    }
    .scatter-container h3 {
        margin-bottom: 2rem;
        width: 100%;
    }
    .integration-pill {
        position: static;
        animation: none;
    }
}


/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    background: #f7f7f8;
    scroll-margin-top: 5rem;
}

.pricing-heading {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-heading h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.pricing-heading > p:last-child {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 490px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid #dfdfe3;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.04);
}

.pricing-card-featured {
    border-color: #8b78cf;
    box-shadow: 0 24px 65px rgba(78, 74, 153, 0.14);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.55rem 1rem;
    border-bottom-left-radius: 16px;
    background: linear-gradient(90deg, #0055d4, #8b78cf, #ff8c42);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-plan {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 800;
}

.pricing-price {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}

.pricing-price span {
    color: #000;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
}

.pricing-description {
    min-height: 3.4rem;
    color: #555;
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 1.65rem;
    color: #333;
    line-height: 1.55;
}

.pricing-features li::before {
    position: absolute;
    top: 0.05rem;
    left: 0;
    content: "✓";
    color: #5f55a7;
    font-weight: 900;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
}

.pricing-cta-primary {
    background: linear-gradient(90deg, #0055d4, #8b78cf, #ff8c42);
    color: #fff;
    box-shadow: 0 8px 20px rgba(80, 73, 153, 0.2);
}

.pricing-cta-secondary {
    border: 1px solid #cfcfd5;
    background: #fff;
    color: #111;
}

.usage-explainer {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 2rem;
    border: 1px solid #dfdfe3;
    border-radius: 24px;
    background: #fff;
}

.usage-meter-copy {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.usage-meter {
    height: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e8ec;
}

.usage-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0055d4, #8b78cf, #ff8c42);
}

.usage-explainer p {
    color: #4f4f55;
    line-height: 1.65;
}

.pricing-fine-print {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ebebee;
    font-size: 0.9rem;
}

/* Privacy Section */
.privacy-section {
    padding: 8rem 2rem;
    text-align: center;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-icon {
    margin-bottom: 2rem;
    color: #000;
}

.privacy-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
}

.privacy-content {
    display: flex;
    gap: 4rem;
    text-align: left;
}

.privacy-content p {
    flex: 1;
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .pricing-card {
        min-height: 0;
    }

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

/* Review Section */
.review-section {
    padding: 8rem 0;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.review-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
}

.review-streams {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    width: 380px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.review-author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.review-handle {
    font-size: 0.9rem;
    color: #888;
}

.review-stars {
    color: #ddd;
    font-size: 1.25rem;
}

.review-stars .star.filled {
    color: #ffb703;
}

.review-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

header.hidden {
    transform: translateY(-100%);
}

.logo, .header-nav {
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 22%;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-text {
    font-family: "Cherry Bomb One", ui-rounded, "SF Pro Rounded", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

header.scrolled .logo-text {
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}

/* Join Button Navbar */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-nav-link {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.header-nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.join-btn-nav {
    background: linear-gradient(90deg, #0055d4 0%, #8b78cf 33%, #ff8c42 66%, #ffb37b 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 99px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.join-btn-nav:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Waitlist Section */
.waitlist-section {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    background: #ffffff;
}

.waitlist-card {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.waitlist-card h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.waitlist-card p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 99px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input:focus {
    border-color: #8b78cf;
}

.join-btn-large {
    background: linear-gradient(90deg, #0055d4 0%, #8b78cf 33%, #ff8c42 66%, #ffb37b 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.join-btn-large:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

footer {
    padding: 5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    flex-wrap: nowrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
}

.footer-left .logo {
    align-items: center;
}

.logo-img-large {
    height: clamp(64px, 8vw, 192px);
    width: clamp(64px, 8vw, 192px);
    object-fit: contain;
    border-radius: 22%;
}

.logo-text-large {
    font-family: "Cherry Bomb One", ui-rounded, "SF Pro Rounded", sans-serif;
    font-size: clamp(3.5rem, 10vw, 10.5rem);
    font-weight: 400;
    color: #000;
    line-height: 1;
}

.copyright {
    color: #999;
    font-size: 0.875rem;
}

.footer-right {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #000;
}

@media (max-width: 768px) {
    header {
        padding: 1.25rem;
    }
    .header-nav {
        gap: 0.75rem;
    }
    .header-nav-link {
        display: none;
    }
    .join-btn-nav {
        padding: 0.65rem 1.3rem;
    }
    .mac-frame {
        width: 95vw;
        height: auto;
    }
    .hero-message {
        font-size: 2rem;
        top: 50%;
    }
    .section-title {
        font-size: 8vw;
        top: 15vh;
    }
    .intro-text h2 {
        font-size: 1.2rem;
    }
    .phantom-brand-text {
        font-size: 20vw;
    }
    .intro-logo-img {
        height: 16vw;
        width: 16vw;
    }
    .intro-text p {
        font-size: 1.2rem;
        white-space: normal;
        max-width: 90vw;
    }
    .voice-item {
        padding: 1rem 1.5rem;
    }
    .pricing-section,
    .privacy-section {
        padding: 5rem 1.25rem;
    }
    .pricing-card,
    .usage-explainer {
        padding: 1.5rem;
    }
    .privacy-section h2 {
        margin-bottom: 2.5rem;
        font-size: 2.5rem;
    }
    footer {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
    }
    .footer-right {
        flex-direction: column;
        gap: 2.5rem;
    }
    .logo-img-large {
        height: 96px;
        width: 96px;
    }
    .logo-text-large {
        font-size: 5rem;
    }
}

/* Floating Prompts */
#floating-prompts-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    transition: opacity 0.1s ease-out;
}

.floating-prompt {
    position: absolute;
    padding: 16px 24px;
    border-radius: 20px;
    background: white;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    max-width: 280px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    cursor: default;
    /* Gradient Border setup */
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #0055d4 0%, #8b78cf 33%, #ff8c42 66%, #ffb37b 100%) border-box;
    border: 3px solid transparent;
}

.floating-prompt.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-prompt:hover {
    background: linear-gradient(90deg, #0055d4 0%, #8b78cf 33%, #ff8c42 66%, #ffb37b 100%) border-box;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
