/* Features, Spaces, and CTA Sections */
.features {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0) 30%), var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 72px;
}

[data-theme="dark"] .features,
@media (prefers-color-scheme: dark) {
    .features {
        background: linear-gradient(180deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0) 30%), var(--bg-secondary);
    }
}

/* Mobility Grid Styles */
.mobility-grid {
    display: grid;
    grid-template-columns: 250px 60px 250px;
    grid-template-rows: 180px 60px 180px;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    justify-items: center;
    align-items: center;
    gap: 0;
}

.mobility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mobility-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.mobility-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.mobility-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.mobility-item:nth-child(4) {
    grid-column: 3;
    grid-row: 3;
}

.mobility-box {
    background: white;
    border: 2px solid #e5e5e7;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.35s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow 0.35s ease, border-color 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    .mobility-box {
        background: var(--bg-secondary);
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
        border-color: #424245;
    }
}

[data-theme="dark"] .mobility-box {
    background: var(--bg-secondary);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
    border-color: #424245;
}

[data-theme="light"] .mobility-box {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #e5e5e7;
}

.mobility-box:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 36px rgba(0, 102, 255, 0.18);
    border-color: var(--sociail-blue);
}

/* Arrows positioned between boxes */
.arrow-right {
    grid-column: 2;
    grid-row: 1;
    font-size: 28px;
    color: var(--arrow-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.arrow-down {
    grid-column: 3;
    grid-row: 2;
    font-size: 28px;
    color: var(--arrow-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.arrow-left {
    grid-column: 2;
    grid-row: 3;
    font-size: 28px;
    color: var(--arrow-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.arrow-up {
    grid-column: 1;
    grid-row: 2;
    font-size: 28px;
    color: var(--arrow-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .mobility-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 320px;
    }
    
    .mobility-item {
        position: relative;
    }
    
    .mobility-item:nth-child(1),
    .mobility-item:nth-child(2),
    .mobility-item:nth-child(3),
    .mobility-item:nth-child(4) {
        grid-column: unset;
        grid-row: unset;
    }
    
    /* Hide all desktop arrows on mobile */
    .arrow-right,
    .arrow-down,
    .arrow-left,
    .arrow-up {
        display: none !important;
    }
    
    /* Only show mobile arrows between items (not after last) */
    .mobility-item:nth-child(1)::after,
    .mobility-item:nth-child(2)::after,
    .mobility-item:nth-child(3)::after {
        content: "↓";
        display: block;
        text-align: center;
        font-size: 24px;
        color: var(--arrow-color);
        font-weight: bold;
        margin-top: 20px;
    }
    
    /* Ensure last item has no arrow */
    .mobility-item:nth-child(4)::after {
        display: none;
    }
    
    .mobility-box {
        max-width: 100%;
        height: auto;
    }
}

.features-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: var(--sociail-blue);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.008em;
}

.feature-description {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-primary);
    opacity: 0.84;
}

/* Spaces Section */
.spaces {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, rgba(245, 245, 247, 0.5) 100%);
    scroll-margin-top: 72px;
}

@media (prefers-color-scheme: dark) {
    .spaces {
        background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(28, 28, 30, 0.8) 100%);
    }
}

[data-theme="dark"] .spaces {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(28, 28, 30, 0.8) 100%);
}

.spaces-demo {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spaces-visual {
    position: relative;
    height: 400px;
}

.space-bubble {
    position: absolute;
    border-radius: 20px;
    padding: 20px;
    font-weight: 500;
    transition: transform 0.35s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow 0.35s ease, filter 0.35s ease;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px currentColor, 0 10px 24px rgba(0, 0, 0, 0.08);
}

.space-work {
    top: 20px;
    left: 0;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid var(--sociail-blue);
    color: var(--sociail-blue);
}

.space-personal {
    top: 120px;
    right: 0;
    background: rgba(249, 217, 73, 0.1);
    border: 2px solid var(--sociail-yellow);
    color: #d4a017;
}

.space-family {
    bottom: 80px;
    left: 60px;
    background: rgba(52, 199, 89, 0.1);
    border: 2px solid var(--success-color);
    color: var(--success-color);
}

.space-bubble:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: inset 0 0 0 1px currentColor, 0 16px 28px rgba(0, 0, 0, 0.12);
    filter: brightness(1.02);
}

.space-bubble.is-popping {
    transform: translateY(-6px) scale(1.08);
    box-shadow: inset 0 0 0 1px currentColor, 0 18px 32px rgba(0, 0, 0, 0.14);
}

.space-bubble:focus-visible {
    outline: 2px solid var(--sociail-blue);
    outline-offset: 3px;
}

.spaces-info h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.spaces-info p {
    font-size: 21px;
    line-height: 1.381;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.voice-commands {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .voice-commands,
@media (prefers-color-scheme: dark) {
    .voice-commands {
        background: rgba(28, 28, 30, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }
}

.command {
    padding: 8px 0;
    color: var(--sociail-blue);
}

/* Read the Thinking */
.thinking {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    scroll-margin-top: 72px;
}

.thinking-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: center;
}

.thinking-content .section-title {
    margin-bottom: 16px;
}

.thinking-lead {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto 50px;
}

.thinking-link {
    color: var(--sociail-indigo);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.thinking-link:hover,
.thinking-link:focus-visible {
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 4px;
}

[data-theme="dark"] .thinking-link,
@media (prefers-color-scheme: dark) {
    .thinking-link {
        color: #a5b4fc;
    }
}

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

@media (max-width: 768px) {
    .thinking-grid {
        grid-template-columns: 1fr;
    }
}

.thinking-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    text-decoration: none;
    color: var(--text-primary);
}

.thinking-card .feature-title {
    margin-bottom: 0;
    font-size: 19px;
}

.thinking-card .feature-description {
    flex: 1;
    font-size: 15px;
}

.thinking-card .thinking-cta {
    margin-top: 8px;
    color: var(--sociail-indigo);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

[data-theme="dark"] .thinking-card .thinking-cta,
@media (prefers-color-scheme: dark) {
    .thinking-card .thinking-cta {
        color: #a5b4fc;
    }
}

.thinking-card:hover .thinking-cta,
.thinking-card:focus-visible .thinking-cta {
    transform: translateX(3px);
}

.thinking-card:focus-visible {
    outline: 2px solid var(--sociail-indigo);
    outline-offset: 3px;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(249, 217, 73, 0.08) 0%, rgba(249, 217, 73, 0) 35%), var(--bg-secondary);
    scroll-margin-top: 72px;
    transition: filter 0.3s ease;
}

[data-theme="dark"] .cta,
@media (prefers-color-scheme: dark) {
    .cta {
        background: linear-gradient(180deg, rgba(249, 217, 73, 0.1) 0%, rgba(249, 217, 73, 0) 35%), var(--bg-secondary);
    }
}

.cta:hover {
    filter: brightness(1.02);
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 22px;
}

.cta h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.selection-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.cta p {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.form-status {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    min-height: 18px;
    text-align: center;
}

.form-status.success {
    color: var(--success-color);
}

.form-status.error {
    color: var(--error-color);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 13px;
    transition: opacity 0.2s ease;
}

.trust-signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), color 0.3s ease;
}

.trust-signal svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: transform 0.3s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), opacity 0.3s ease;
}

.trust-signals:hover {
    opacity: 0.9;
}

.trust-signal:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
}

.trust-signal:hover svg {
    opacity: 1;
    transform: translateY(-1px) scale(1.05);
}

@media (max-width: 640px) {
    .trust-signals {
        display: none;
    }
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 17px;
    background: white;
    color: var(--text-primary);
    transition: border-color 0.3s;
}

@media (prefers-color-scheme: dark) {
    .email-input {
        background: var(--bg-secondary);
    }
}

[data-theme="dark"] .email-input {
    background: var(--bg-secondary);
}

[data-theme="light"] .email-input {
    background: white;
}

.email-input:focus {
    outline: none;
    border-color: var(--sociail-blue);
}

.email-input:focus-visible {
    outline: 2px solid var(--sociail-blue);
    outline-offset: 2px;
}

.notify-btn {
    padding: 16px 30px;
    background: linear-gradient(120deg, var(--sociail-indigo), var(--sociail-purple));
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 18px 38px -18px rgba(99, 102, 241, 0.65);
    transition: transform 0.35s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), box-shadow 0.35s ease, filter 0.3s ease;
}

.notify-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 44px -20px rgba(99, 102, 241, 0.75);
}

.notify-btn:not(:disabled):active {
    transform: scale(0.98);
}

.notify-btn:focus-visible,
.email-input:focus-visible,
.pricing-card:focus-visible {
    outline: 2px solid var(--sociail-blue);
    outline-offset: 2px;
}

.notify-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    background: var(--border-color);
}

.notify-btn.loading {
    position: relative;
    color: transparent;
}

.notify-btn.loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confetti-fall 3s ease-out forwards;
}

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

.confetti-square {
    border-radius: 2px;
}

.confetti-ribbon {
    width: 8px;
    height: 20px;
    border-radius: 2px;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--drift, 0px), 100vh, 0) rotate(720deg) scale(0.5);
    }
}

@media (prefers-reduced-motion: reduce) {
    .confetti {
        animation: none;
        display: none;
    }
}

.notify-btn:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 100%);
}

[data-theme="dark"] footer,
@media (prefers-color-scheme: dark) {
    footer {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.03) 100%);
    }
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--text-primary);
    text-decoration: underline;
    outline: none;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-logo {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    margin-bottom: 16px;
}

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

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

.footer-meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    opacity: 0.85;
}

.footer-meta a {
    color: var(--sociail-indigo);
    text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
    .footer-meta a {
        color: #a5b4fc;
    }
}

[data-theme="dark"] .footer-meta a {
    color: #a5b4fc;
}

.footer-legal {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:focus-visible {
    outline: 2px solid var(--sociail-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    padding: 25px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    background: white;
    transition: transform 0.35s var(--ease-out-smooth, cubic-bezier(0.22, 1, 0.36, 1)), border-color 0.3s ease, box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (prefers-color-scheme: dark) {
    .pricing-card {
        background: var(--bg-secondary);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
}

[data-theme="dark"] .pricing-card {
    background: var(--bg-secondary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .pricing-card {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover,
.pricing-card:focus-visible {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--sociail-blue);
}

.pricing-card.selected {
    border-color: var(--sociail-yellow);
    box-shadow: 0 8px 24px rgba(249, 217, 73, 0.2);
}

.pricing-card:focus-visible {
    outline: 2px solid var(--sociail-blue);
    outline-offset: 2px;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--sociail-yellow);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .price-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-card .price-detail {
    font-size: 12px;
    color: var(--text-secondary);
}

.price-title.highlight {
    color: var(--sociail-blue);
}

/* Post-hero density pass */
.features {
    padding: clamp(76px, 8vw, 112px) 0;
    background:
        radial-gradient(circle at 18% 8%, rgba(99, 102, 241, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(99, 102, 241, 0.06) 100%),
        var(--bg-secondary);
}

[data-theme="dark"] .features,
@media (prefers-color-scheme: dark) {
    .features {
        background:
            radial-gradient(circle at 18% 8%, rgba(129, 140, 248, 0.18), transparent 32%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(99, 102, 241, 0.08) 100%),
            var(--bg-secondary);
    }
}

.features-content,
.spaces-demo,
.thinking-content,
.cta-content {
    width: min(100% - 44px, 1180px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: end;
    margin-bottom: clamp(30px, 4vw, 52px);
}

.section-kicker {
    margin: 0 0 12px;
    color: var(--sociail-indigo);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

[data-theme="dark"] .section-kicker,
@media (prefers-color-scheme: dark) {
    .section-kicker {
        color: #a5b4fc;
    }
}

.section-heading-row .section-title {
    margin: 0;
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.98;
    max-width: 10ch;
}

.section-lead {
    max-width: 54ch;
    margin: 0;
    color: var(--text-primary);
    opacity: 0.78;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.5;
}

.journey-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.45fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: stretch;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 26px 70px rgba(31, 41, 55, 0.08);
}

[data-theme="dark"] .journey-panel,
@media (prefers-color-scheme: dark) {
    .journey-panel {
        background: rgba(28, 28, 30, 0.7);
        border-color: rgba(165, 180, 252, 0.18);
        box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    }
}

.journey-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-copy h3 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.journey-copy p:not(.section-kicker) {
    margin: 0;
    color: var(--text-primary);
    opacity: 0.78;
    font-size: 18px;
    line-height: 1.55;
}

.journey-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.journey-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--sociail-indigo-deep);
    font-size: 13px;
    font-weight: 650;
}

[data-theme="dark"] .journey-proof span,
@media (prefers-color-scheme: dark) {
    .journey-proof span {
        background: rgba(129, 140, 248, 0.16);
        color: #c7d2fe;
    }
}

.journey-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.journey-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 22px 18px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

[data-theme="dark"] .journey-step,
@media (prefers-color-scheme: dark) {
    .journey-step {
        background: rgba(17, 24, 39, 0.62);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }
}

.step-index {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.step-icon,
.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 18px 0 22px;
    border-radius: 14px;
    color: var(--sociail-indigo);
    background: rgba(99, 102, 241, 0.1);
}

.step-icon svg,
.capability-icon svg {
    width: 22px;
    height: 22px;
}

.journey-step h4,
.capability-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.journey-step p,
.capability-card p {
    margin: 0;
    color: var(--text-primary);
    opacity: 0.78;
    font-size: 15px;
    line-height: 1.48;
}

.capability-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(480px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    margin-top: clamp(34px, 5vw, 72px);
}

.assistant-context-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 42%, rgba(99, 102, 241, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 247, 0.78));
    box-shadow: 0 28px 78px rgba(31, 41, 55, 0.1);
}

[data-theme="dark"] .assistant-context-card,
@media (prefers-color-scheme: dark) {
    .assistant-context-card {
        background:
            radial-gradient(circle at 50% 42%, rgba(129, 140, 248, 0.2), transparent 36%),
            linear-gradient(145deg, rgba(31, 41, 55, 0.86), rgba(17, 24, 39, 0.74));
    }
}

.assistant-orbit {
    position: absolute;
    inset: 12%;
}

.assistant-orbit span {
    position: absolute;
    inset: var(--orbit-inset, 0);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 50%;
}

.assistant-orbit span:nth-child(2) {
    --orbit-inset: 12%;
}

.assistant-orbit span:nth-child(3) {
    --orbit-inset: 24%;
}

.assistant-puck {
    position: absolute;
    left: 50%;
    top: 47%;
    width: min(72%, 330px);
    height: 108px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe767, #f4ce23);
    box-shadow:
        inset 0 -10px 0 rgba(130, 99, 0, 0.28),
        0 34px 70px rgba(87, 68, 5, 0.28);
}

.assistant-speaker {
    position: absolute;
    left: 38px;
    top: 34px;
    width: 82px;
    height: 38px;
    border-radius: 999px;
    background: repeating-linear-gradient(0deg, rgba(130, 99, 0, 0.28) 0 2px, transparent 2px 5px);
}

.assistant-mic {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: white;
    background: radial-gradient(circle at 35% 25%, #28a8ff, #0057d8 72%);
    box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.18), 0 10px 24px rgba(0, 102, 255, 0.32);
}

.assistant-mic svg {
    width: 31px;
    height: 31px;
}

.context-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.1);
}

.chip-work {
    left: 8%;
    top: 18%;
}

.chip-personal {
    right: 8%;
    top: 28%;
}

.chip-family {
    left: 13%;
    bottom: 20%;
}

.assistant-context-card > p {
    position: absolute;
    left: 50%;
    bottom: 34px;
    width: min(76%, 340px);
    margin: 0;
    transform: translateX(-50%);
    color: var(--text-primary);
    opacity: 0.72;
    text-align: center;
    font-size: 15px;
    line-height: 1.45;
}

.capability-copy h2 {
    margin: 0 0 28px;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.capability-card {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 34px rgba(31, 41, 55, 0.06);
}

[data-theme="dark"] .capability-card,
@media (prefers-color-scheme: dark) {
    .capability-card {
        background: rgba(17, 24, 39, 0.58);
    }
}

.spaces {
    padding: clamp(74px, 8vw, 116px) 0;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, rgba(245, 245, 247, 0.7) 100%);
}

.spaces-demo {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 1.1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.spaces-info .section-kicker {
    margin-bottom: 14px;
}

.spaces-info h2 {
    margin: 0 0 20px;
    font-size: clamp(2.35rem, 4.4vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.022em;
}

.spaces-info p {
    max-width: 48ch;
    color: var(--text-primary);
    opacity: 0.78;
    font-size: 20px;
    line-height: 1.5;
}

.spaces-visual {
    position: relative;
    min-height: 520px;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.14);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 48%, rgba(99, 102, 241, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 245, 247, 0.66));
    box-shadow: 0 28px 78px rgba(31, 41, 55, 0.08);
}

[data-theme="dark"] .spaces-visual,
@media (prefers-color-scheme: dark) {
    .spaces-visual {
        background:
            radial-gradient(circle at 50% 48%, rgba(129, 140, 248, 0.2), transparent 34%),
            linear-gradient(145deg, rgba(31, 41, 55, 0.84), rgba(17, 24, 39, 0.72));
    }
}

.space-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    padding: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    text-align: center;
    background: linear-gradient(135deg, var(--sociail-indigo), var(--sociail-purple));
    color: white;
    box-shadow: 0 28px 68px rgba(99, 102, 241, 0.34);
}

.space-hub span {
    font-size: 22px;
    font-weight: 750;
    line-height: 1.08;
}

.space-hub small {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.84;
}

.space-bubble {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 190px;
    border-radius: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.space-bubble svg {
    margin-bottom: 2px;
}

.space-bubble strong {
    font-size: 17px;
    line-height: 1.1;
}

.space-bubble small {
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.78;
}

.space-work {
    top: 54px;
    left: 54px;
}

.space-personal {
    top: 96px;
    right: 48px;
}

.space-family {
    bottom: 62px;
    left: 96px;
}

.voice-commands {
    margin-top: 30px;
    padding: 22px;
    border-radius: 20px;
}

.command {
    padding: 10px 0;
    color: var(--sociail-indigo);
    white-space: normal;
}

.thinking {
    padding: clamp(48px, 6vw, 78px) 0;
    background: var(--bg-secondary);
}

.thinking-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: start;
    text-align: left;
}

.thinking-header h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.thinking-header p:not(.section-kicker) {
    margin: 0;
    color: var(--text-primary);
    opacity: 0.76;
    font-size: 17px;
    line-height: 1.55;
}

.thinking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.thinking-card {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);
}

[data-theme="dark"] .thinking-card,
@media (prefers-color-scheme: dark) {
    .thinking-card {
        background: rgba(17, 24, 39, 0.58);
    }
}

.thinking-card span {
    margin-bottom: 18px;
    color: var(--sociail-indigo);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.thinking-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.15;
}

.thinking-card p {
    margin: 0;
    color: var(--text-primary);
    opacity: 0.74;
    font-size: 14px;
    line-height: 1.45;
}

.cta {
    padding: clamp(70px, 8vw, 112px) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.16), transparent 32%),
        radial-gradient(circle at 88% 70%, rgba(147, 51, 234, 0.14), transparent 30%),
        var(--bg-secondary);
}

.cta:hover {
    filter: none;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 4.8vw, 56px);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 32px 90px rgba(31, 41, 55, 0.12);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

[data-theme="dark"] .cta-panel,
@media (prefers-color-scheme: dark) {
    .cta-panel {
        background: rgba(17, 24, 39, 0.72);
        border-color: rgba(165, 180, 252, 0.18);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    }
}

.cta-copy {
    text-align: left;
}

.cta h2 {
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 4.6vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.024em;
}

.cta p {
    margin: 0;
    color: var(--text-primary);
    opacity: 0.78;
    font-size: 19px;
    line-height: 1.5;
}

.cta-note {
    margin-top: 18px;
    font-size: 14px;
}

.cta-actions {
    text-align: left;
}

.selection-hint {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 13px;
}

.pricing-grid {
    max-width: none;
    margin: 0 0 22px;
    gap: 14px;
}

.pricing-card {
    min-height: 150px;
    padding: 22px;
    text-align: left;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
}

.pricing-card:hover,
.pricing-card:focus-visible {
    border-color: var(--sociail-indigo);
}

.pricing-card.selected {
    border-color: var(--sociail-indigo);
    box-shadow: 0 16px 38px rgba(99, 102, 241, 0.18);
}

.pricing-card h4 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.18;
}

.pricing-card .price-detail {
    color: var(--text-primary);
    opacity: 0.72;
    font-size: 13px;
    line-height: 1.45;
}

.email-form {
    max-width: none;
    margin: 0;
    gap: 12px;
}

.email-input {
    min-height: 56px;
    border-radius: 16px;
}

.notify-btn {
    min-height: 56px;
    padding: 16px 28px;
}

.trust-signals {
    justify-content: flex-start;
    margin-top: 22px;
}

/* High-end material polish pass */
.journey-panel,
.assistant-context-card,
.spaces-visual,
.cta-panel {
    isolation: isolate;
    border-color: var(--glass-edge);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
        var(--glass-panel);
    box-shadow: var(--glass-inner-highlight), var(--glass-shadow);
    backdrop-filter: blur(34px) saturate(180%);
    -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.journey-panel::before,
.assistant-context-card::before,
.spaces-visual::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 1px 1px auto;
    height: 46%;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
    z-index: -1;
}

.journey-panel,
.cta-panel {
    position: relative;
}

.journey-step,
.capability-card,
.thinking-card,
.pricing-card,
.voice-commands,
.context-chip,
.space-bubble {
    border-color: var(--glass-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22)),
        var(--glass-card);
    box-shadow: var(--glass-inner-highlight), 0 16px 44px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.journey-step,
.capability-card,
.thinking-card,
.pricing-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s var(--ease-out-smooth),
        border-color 0.3s ease,
        box-shadow 0.35s ease,
        background-color 0.3s ease;
}

.journey-step::before,
.capability-card::before,
.thinking-card::before,
.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.54), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    opacity: 0.72;
}

.journey-step > *,
.capability-card > *,
.thinking-card > *,
.pricing-card > * {
    position: relative;
}

.journey-step:hover,
.capability-card:hover,
.thinking-card:hover,
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: var(--glass-inner-highlight), 0 24px 56px rgba(31, 41, 55, 0.12);
}

.step-icon,
.capability-icon {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.3)),
        rgba(99, 102, 241, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 24px rgba(99, 102, 241, 0.12);
}

.assistant-puck {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffe976 0%, #f3cc1e 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        inset 0 -10px 0 rgba(130, 99, 0, 0.24),
        0 34px 70px rgba(87, 68, 5, 0.26);
}

.assistant-puck::after {
    content: "";
    position: absolute;
    inset: 14px 34px auto;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    filter: blur(1px);
}

.assistant-mic,
.space-hub {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -8px 0 rgba(0, 0, 0, 0.16),
        0 22px 48px rgba(99, 102, 241, 0.28);
}

.context-chip {
    border: 1px solid var(--glass-border);
}

.pricing-card.selected {
    border-color: rgba(99, 102, 241, 0.66);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
        rgba(238, 242, 255, 0.82);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 22px 54px rgba(99, 102, 241, 0.2);
}

.pricing-card.selected::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--sociail-indigo);
    box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.14);
}

.email-input {
    border-color: var(--glass-border);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 30px rgba(31, 41, 55, 0.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.email-input:focus {
    border-color: rgba(99, 102, 241, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.notify-btn {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
        linear-gradient(120deg, var(--sociail-indigo), var(--sociail-purple));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 18px 38px -18px rgba(99, 102, 241, 0.7);
}

.notify-btn:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 26px 52px -22px rgba(99, 102, 241, 0.8);
}

[data-theme="dark"] .journey-panel,
[data-theme="dark"] .assistant-context-card,
[data-theme="dark"] .spaces-visual,
[data-theme="dark"] .cta-panel,
[data-theme="dark"] .journey-step,
[data-theme="dark"] .capability-card,
[data-theme="dark"] .thinking-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .voice-commands,
[data-theme="dark"] .context-chip,
[data-theme="dark"] .space-bubble {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        var(--glass-card);
}

[data-theme="dark"] .pricing-card.selected {
    background:
        linear-gradient(180deg, rgba(129, 140, 248, 0.22), rgba(129, 140, 248, 0.08)),
        rgba(17, 24, 39, 0.72);
}

[data-theme="dark"] .journey-step::before,
[data-theme="dark"] .capability-card::before,
[data-theme="dark"] .thinking-card::before,
[data-theme="dark"] .pricing-card::before {
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0.82;
}

[data-theme="dark"] .email-input {
    background: rgba(17, 24, 39, 0.7);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .journey-panel,
    .assistant-context-card,
    .spaces-visual,
    .cta-panel,
    .journey-step,
    .capability-card,
    .thinking-card,
    .pricing-card,
    .voice-commands,
    .context-chip,
    .space-bubble,
    .email-input {
        background: var(--bg-primary);
    }
}
