/* ========================================
   SusuFlex — Origin-Inspired Design Upgrade
   Elegant serif italic headlines, gradient cards,
   generous spacing, background variety, testimonials,
   glass-morphism polish, refined color palette
   ======================================== */

/* ── Playfair Display — Italic Serif Headlines ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* ── IBM Plex Mono — Techy Legal Footer ── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
    --origin-serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
    --origin-bg-deep: #060610;
    --origin-bg-surface: #0c0c18;
    --origin-bg-card: #141424;
    --origin-bg-elevated: #1a1a2e;
    --origin-border: rgba(255, 255, 255, 0.06);
    --origin-border-hover: rgba(255, 255, 255, 0.12);
    --origin-text-primary: #f5f5fa;
    --origin-text-secondary: rgba(255, 255, 255, 0.65);
    --origin-text-muted: rgba(255, 255, 255, 0.4);
    --origin-accent: #F26522;
    --origin-accent-soft: rgba(242, 101, 34, 0.15);
    /* Seedream 4.0 — Brand palette */
    --sd-indigo: #2D1B69;
    --sd-magenta: #D91A5B;
    --sd-orange: #F26522;
    --sd-coral: #F14B3C;
    --sd-blue: #0099E5;
    /* Glow variants */
    --sd-orange-glow: rgba(242, 101, 34, 0.40);
    --sd-magenta-glow: rgba(217, 26, 91, 0.30);
    --sd-blue-glow: rgba(0, 153, 229, 0.25);
    --sd-coral-glow: rgba(241, 75, 60, 0.30);
    --sd-indigo-glow: rgba(45, 27, 105, 0.40);
}

/* ── Global Typography Upgrade ─────────── */
.headline-massive,
.headline-large,
h2.section-heading-dark,
.explainer-heading,
.section-title,
.how-it-works h2,
.calculator-section h2,
.faq-section h2,
.cta-section h2,
.trust-pillars h2,
.money-flow-title,
.timeline-title {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

/* Italic emphasis on first word — Origin signature style */
.headline-massive {
    font-size: clamp(2.8rem, 8vw, 5rem) !important;
    line-height: 1.05 !important;
    font-weight: 400 !important;
}

.headline-massive em,
.headline-large em,
.section-title em,
.cta-section h2 em,
.explainer-heading em {
    font-style: italic;
    font-weight: 400;
}

.headline-large {
    font-size: clamp(2rem, 5vw, 3.2rem) !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
}

/* Section titles get the Origin treatment */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 400 !important;
}

/* ── Generous Spacing (Origin-level whitespace) ── */
.social-proof-stats {
    padding: 48px 0 !important;
}

/* ── Stat Ticker ───────────────────────── */
.stat-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-ticker-item {
    flex: 1;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}
.stat-ticker-accent {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
    margin: 0 auto 14px;
    opacity: 0.7;
    box-shadow: 0 0 12px var(--accent);
    animation: accentPulse 3s ease-in-out infinite;
}
.stat-ticker-item:nth-child(3) .stat-ticker-accent { animation-delay: 0.4s; }
.stat-ticker-item:nth-child(5) .stat-ticker-accent { animation-delay: 0.8s; }
.stat-ticker-item:nth-child(7) .stat-ticker-accent { animation-delay: 1.2s; }

@keyframes accentPulse {
    0%, 100% { opacity: 0.6; width: 32px; }
    50%      { opacity: 1;   width: 44px; }
}

.stat-ticker-number {
    font-family: var(--origin-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.15;
    margin-bottom: 6px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.stat-ticker-item:hover .stat-ticker-number {
    transform: scale(1.08);
    text-shadow: 0 0 30px var(--accent);
}
.stat-ticker-label {
    font-size: 0.78rem;
    color: var(--origin-text-muted);
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}
.stat-ticker-divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    flex-shrink: 0;
}

/* Ticker mobile */
@media (max-width: 768px) {
    .stat-ticker {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 0;
        justify-items: center;
    }
    .stat-ticker-divider {
        height: 1px;
        width: 56px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }
    /* Hide dividers between rows, show only the middle vertical ones */
    .stat-ticker-divider:nth-of-type(2) {
        grid-column: 2;
        grid-row: 1;
        height: 56px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
        align-self: center;
    }
    .stat-ticker-divider:nth-of-type(4) {
        grid-column: 1 / -1;
        height: 1px;
        width: 80px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }
    .stat-ticker-divider:nth-of-type(6) {
        grid-column: 2;
        grid-row: 3;
        height: 56px;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
        align-self: center;
    }
    .stat-ticker-number {
        font-size: 1.8rem;
    }
    .stat-ticker-label {
        font-size: 0.7rem;
    }
}

.susu-explainer {
    padding: 100px 0 !important;
}

.app-preview-section {
    padding: 100px 0 !important;
}

.how-it-works {
    padding: 100px 0 !important;
}

.calculator-section {
    padding: 100px 0 !important;
}

.features {
    padding: 100px 0 !important;
}

.trust-pillars {
    padding: 100px 0 !important;
}

.faq-section {
    padding: 100px 0 !important;
}

.cta-section {
    padding: 100px 0 !important;
}

.section-header {
    margin-bottom: 64px !important;
}

.section-header p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--origin-text-secondary);
}

/* Section badges — refined */
.section-badge {
    font-size: 0.8rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    color: var(--origin-text-muted) !important;
    display: inline-block;
    margin-bottom: 16px;
}

/* Remove old section dividers — use spacing instead */
.section-divider {
    display: none !important;
}

/* ── Enhanced Section Backgrounds ──────── */

/* Alternating deep/surface backgrounds with subtle gradients */
/* Hero background handled by Cosmic Background Image Layer below */

.social-proof-stats {
    background: var(--origin-bg-surface) !important;
    border-top: 1px solid var(--origin-border) !important;
    border-bottom: 1px solid var(--origin-border) !important;
}

.susu-explainer {
    background: var(--origin-bg-deep) !important;
    position: relative;
    overflow: hidden;
}

.susu-explainer > .container {
    position: relative;
    z-index: 1;
}

.app-preview-section {
    background: var(--origin-bg-surface) !important;
}

.how-it-works {
    background: var(--origin-bg-deep) !important;
    position: relative !important;
    overflow: hidden !important;
}

.how-it-works > .container {
    position: relative;
    z-index: 1;
}

.calculator-section {
    /* Gradient wash — Seedream indigo/magenta mood */
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1040 30%, #2D1B69 55%, #1a1040 80%, #0f0f1e 100%) !important;
}

.features {
    background: var(--origin-bg-surface) !important;
}

/* Testimonials background handled by Cosmic Background Image Layer below */

.trust-pillars {
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Shared video background for sections */
.section-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.section-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(6, 6, 16, 0.92) 0%,
        rgba(6, 6, 16, 0.78) 20%,
        rgba(6, 6, 16, 0.72) 50%,
        rgba(6, 6, 16, 0.78) 80%,
        rgba(6, 6, 16, 0.95) 100%);
    pointer-events: none;
}
.trust-pillars > .container,
.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.faq-section {
    background: var(--origin-bg-surface) !important;
}

/* CTA background handled by Cosmic Background Image Layer below */

/* ── Gradient Testimonial Cards (Origin-style) ── */

/* Carousel wrapper */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.testimonials-track .testimonial-gradient-card {
    width: calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
    margin-right: 0;
}

/* Progress bar */
.carousel-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 28px;
    overflow: hidden;
}
.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--sd-blue), var(--sd-magenta));
    border-radius: 2px;
    width: 30%;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

/* Counter between arrows */
.carousel-counter {
    font-family: var(--origin-serif);
    font-size: 0.95rem;
    color: var(--origin-text-muted);
    letter-spacing: 0.08em;
    min-width: 60px;
    text-align: center;
}

.testimonial-gradient-card {
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.testimonial-gradient-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Gradient variants — Seedream 4.0 palette */
.testimonial-gradient-card.grad-indigo-magenta {
    background: linear-gradient(145deg, rgba(99,60,190,0.55) 0%, rgba(91,45,142,0.55) 35%, rgba(200,50,120,0.55) 100%);
}
.testimonial-gradient-card.grad-magenta-orange {
    background: linear-gradient(145deg, rgba(200,50,120,0.55) 0%, rgba(233,74,64,0.55) 40%, rgba(240,140,50,0.55) 100%);
}
.testimonial-gradient-card.grad-orange-coral {
    background: linear-gradient(145deg, rgba(240,140,50,0.55) 0%, rgba(243,85,48,0.55) 40%, rgba(230,70,80,0.55) 100%);
}
.testimonial-gradient-card.grad-coral-blue {
    background: linear-gradient(145deg, rgba(230,70,80,0.55) 0%, rgba(192,66,110,0.55) 40%, rgba(55,100,220,0.55) 100%);
}
.testimonial-gradient-card.grad-blue-indigo {
    background: linear-gradient(145deg, rgba(55,100,220,0.55) 0%, rgba(59,94,201,0.55) 40%, rgba(99,60,190,0.55) 100%);
}
/* Keep legacy class names working */
.testimonial-gradient-card.grad-blue {
    background: linear-gradient(145deg, rgba(55,100,220,0.55) 0%, rgba(59,141,224,0.55) 40%, rgba(123,184,240,0.55) 100%);
}
.testimonial-gradient-card.grad-green {
    background: linear-gradient(145deg, rgba(55,100,220,0.55) 0%, rgba(11,168,138,0.55) 40%, rgba(52,211,153,0.55) 100%);
}
.testimonial-gradient-card.grad-teal {
    background: linear-gradient(145deg, rgba(240,140,50,0.55) 0%, rgba(233,85,60,0.55) 35%, rgba(230,70,80,0.55) 100%);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Testimonials carousel arrows */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonials-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--origin-border);
    background: transparent;
    color: var(--origin-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.testimonials-nav button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--origin-border-hover);
    color: var(--origin-text-primary);
}

/* ── Feature Showcase (Tabbed) ──────────── */
.feature-showcase {
    max-width: 900px;
    margin: 0 auto;
}

/* Tab navigation row */
.feature-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    background: rgba(20, 20, 36, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--origin-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}
.feature-tab i {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.feature-tab:hover {
    color: var(--origin-text-secondary);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(20, 20, 36, 0.6);
}
.feature-tab.active {
    background: linear-gradient(135deg, rgba(0, 153, 229, 0.15), rgba(217, 26, 91, 0.12));
    border-color: rgba(0, 153, 229, 0.3);
    color: var(--origin-text-primary);
    box-shadow: 0 0 20px rgba(0, 153, 229, 0.1);
}
.feature-tab.active i {
    color: var(--sd-blue);
}

/* Panel container */
.feature-panels {
    position: relative;
    min-height: 260px;
}
.feature-panel {
    display: none;
    animation: panelFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-panel.active {
    display: block;
}
@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Panel inner layout */
.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(20, 20, 36, 0.45);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: border-color 0.3s ease;
}
.panel-content:hover {
    border-color: rgba(255, 255, 255, 0.14);
}
.panel-text h3 {
    font-family: var(--origin-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--origin-text-primary);
    margin-bottom: 12px;
}
.panel-text p {
    color: var(--origin-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Panel visuals */
.panel-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Trust meter — wider in panel */
.panel-visual .trust-meter {
    width: 100%;
}

/* Payment logos — larger */
.payment-logos--large {
    display: flex;
    gap: 20px;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.5);
}
.payment-logos--large i {
    transition: color 0.3s ease, transform 0.3s ease;
}
.payment-logos--large i:hover {
    color: var(--origin-text-primary);
    transform: scale(1.15);
}

/* Health ring */
.health-ring {
    position: relative;
    width: 120px;
    height: 120px;
}
.health-ring-svg {
    width: 100%;
    height: 100%;
}
.health-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.health-ring-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10b981;
}
.health-ring-sub {
    font-size: 0.7rem;
    color: var(--origin-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.health-meta-row {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--origin-text-secondary);
}

/* Safety features row */
.safety-features--row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.safety-features--row .safety-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--origin-text-secondary);
    transition: all 0.3s ease;
}
.safety-features--row .safety-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--origin-text-primary);
}

/* Reminder notifications */
.reminder-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.reminder-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(242, 101, 34, 0.08);
    border: 1px solid rgba(242, 101, 34, 0.15);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--sd-orange);
    animation: notifSlideIn 0.6s ease-out backwards;
}
.reminder-notif:nth-child(2) {
    animation-delay: 0.2s;
}
.reminder-notif.sent {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
@keyframes notifSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Currency pills */
.currency-flags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.currency-pill {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--origin-text-secondary);
    transition: all 0.3s ease;
}
.currency-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--origin-text-primary);
    transform: translateY(-2px);
}

/* Mobile: stack panel */
@media (max-width: 768px) {
    .panel-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
    .feature-tabs {
        gap: 4px;
    }
    .feature-tab {
        padding: 8px 12px;
        font-size: 0.72rem;
    }
    .feature-tab span {
        display: none;
    }
    .feature-tab i {
        font-size: 1rem;
    }
    .payment-logos--large {
        font-size: 2rem;
    }
}

/* ── Bento Grid Polish (legacy) ────────── */
.bento-card {
    background: rgba(20, 20, 36, 0.45) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 36px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-card:hover {
    background: rgba(20, 20, 36, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.bento-card h3 {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px;
    color: var(--origin-text-primary) !important;
}

.bento-card p {
    color: var(--origin-text-secondary) !important;
    line-height: 1.65;
}

.bento-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
}

/* ── Glass-Morphism Data Cards ─────────── */
.app-mock {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    will-change: transform;
}

.app-mock:hover {
    border-color: var(--origin-border-hover) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 153, 229, 0.08) !important;
}

/* ── App Mock Card Ambient Floating ── */
.app-mock-card:nth-child(1) .app-mock { animation: cardFloat1 6s ease-in-out infinite; }
.app-mock-card:nth-child(2) .app-mock { animation: cardFloat2 7s ease-in-out infinite 0.5s; }
.app-mock-card:nth-child(3) .app-mock { animation: cardFloat3 5.5s ease-in-out infinite 1s; }

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.3deg); }
}
@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* ── Trust Fill Bar Animation ── */
.trust-fill {
    width: 0% !important;
    animation: trustFillGrow 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-play-state: paused;
    background: linear-gradient(90deg, var(--sd-blue), #34d399) !important;
    position: relative;
}

.trust-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: inherit;
    filter: blur(3px);
    animation: trustShimmer 2s ease-in-out infinite;
}

@keyframes trustFillGrow {
    0% { width: 0%; }
    100% { width: 92%; }
}

@keyframes trustShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ── Mock Score Badge Pulse ── */
.mock-score {
    animation: scorePulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes scorePulse {
    0%, 100% { box-shadow: 0 0 0 0px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

/* ── Pool Amount Shimmer ── */
.pool-amount {
    position: relative;
    background: linear-gradient(90deg, #10b981 0%, #34d399 40%, #a7f3d0 50%, #34d399 60%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% 100%;
    animation: amountShimmer 4s ease-in-out infinite;
}

@keyframes amountShimmer {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
}

/* ── Member Avatars Stagger Bounce ── */
.mock-members .member {
    animation: memberBounce 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mock-members .member:nth-child(1) { animation-delay: 0s; }
.mock-members .member:nth-child(2) { animation-delay: 0.15s; }
.mock-members .member:nth-child(3) { animation-delay: 0.3s; }
.mock-members .member:nth-child(4) { animation-delay: 0.45s; }
.mock-members .member:nth-child(5) { animation-delay: 0.6s; }
.mock-members .member:nth-child(6) { animation-delay: 0.75s; }

@keyframes memberBounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-4px); }
    40% { transform: translateY(0); }
}

.mock-members .member:hover {
    transform: translateY(-6px) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* ── Payment Rows Hover Slide ── */
.payment-row {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.payment-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.app-mock:hover .payment-row::before {
    left: 100%;
}

.payment-row:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Payment status Paid — green glow */
.payment-row.paid .payment-status {
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Payment status Pending — amber pulse */
.payment-row.pending .payment-status {
    animation: pendingPulse 2s ease-in-out infinite;
}

@keyframes pendingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Activity Rows Stagger + Hover ── */
.activity-row {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-row:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.activity-icon {
    transition: transform 0.3s ease;
}

.activity-row:hover .activity-icon {
    transform: scale(1.2);
}

/* Activity time — subtle fade */
.activity-time {
    transition: color 0.3s ease;
}

.activity-row:hover .activity-time {
    color: var(--sd-blue);
}

/* ── Mock Reminder Bell Shake ── */
.mock-reminder i {
    animation: bellShake 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes bellShake {
    0%, 88%, 100% { transform: rotate(0); }
    90% { transform: rotate(12deg); }
    92% { transform: rotate(-10deg); }
    94% { transform: rotate(8deg); }
    96% { transform: rotate(-6deg); }
    98% { transform: rotate(0); }
}

/* ── Mock Badge Glow ── */
.mock-badge {
    transition: box-shadow 0.3s ease;
}

.app-mock:hover .mock-badge {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.mock-badge-blue {
    transition: box-shadow 0.3s ease;
}

.app-mock:hover .mock-badge-blue {
    box-shadow: 0 0 12px rgba(0, 153, 229, 0.4);
}

/* ── View All Activity Arrow Bounce ── */
.mock-view-all i {
    transition: transform 0.3s ease;
}

.app-mock:hover .mock-view-all i {
    animation: arrowNudge 1.5s ease-in-out infinite;
}

@keyframes arrowNudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* ── Screenshot Card Figcaption Slide-Up ── */
.app-mock-card figcaption {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-mock-card:hover figcaption {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--origin-text-secondary) !important;
}

.screenshot-card {
    background: transparent !important;
    border: none !important;
    border-radius: 20px !important;
}

.screenshot-card figcaption {
    font-size: 0.9rem;
    color: var(--origin-text-muted);
    margin-top: 16px;
    text-align: center;
}

/* ── Calculator Premium Overhaul ──────── */
.calculator-card {
    background: rgba(12, 12, 24, 0.6) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 48px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(45, 27, 105, 0.15) !important;
    overflow: hidden;
    position: relative;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sd-blue), var(--sd-magenta), var(--sd-orange)) !important;
}

/* ── Calculator Grid — dark theme ── */
.calculator-grid {
    align-items: center !important;
}

/* Labels */
.input-group label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Range slider track */
.input-group input[type=range] {
    background: rgba(255, 255, 255, 0.08) !important;
    height: 6px !important;
    border-radius: 6px !important;
}

/* Range slider thumb */
.input-group input[type=range]::-webkit-slider-thumb {
    background: var(--sd-blue) !important;
    box-shadow: 0 0 12px rgba(0, 153, 229, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-group input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 0 20px rgba(0, 153, 229, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.input-group input[type=range]::-moz-range-thumb {
    background: var(--sd-blue) !important;
    box-shadow: 0 0 12px rgba(0, 153, 229, 0.5) !important;
    border: none !important;
}

/* Value labels */
.input-value {
    color: rgba(255, 255, 255, 0.4) !important;
}

.input-value .current {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

/* Results panel */
.calculator-results {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px !important;
    text-align: center;
}

.result-label {
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem !important;
    margin-bottom: 8px;
}

.result-amount {
    font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--sd-blue), var(--sd-magenta)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1;
    margin-bottom: 8px;
}

.result-subtitle {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Comparison cards */
.result-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 20px 16px !important;
    transition: border-color 0.3s ease;
}

.comparison-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.comparison-label {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.comparison-value {
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
}

.comparison-value.positive {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Centered CTA beneath */
.centered-cta {
    text-align: center;
    margin-top: 32px;
}

/* ── FAQ Section Polish ───────────────── */
.faq-item {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 16px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: var(--origin-border-hover) !important;
}

.faq-item[open] {
    border-color: rgba(0, 153, 229, 0.2) !important;
}

.faq-item .faq-answer {
    overflow: hidden;
    animation: faqSlideDown 0.3s ease forwards;
}

@keyframes faqSlideDown {
    from { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; }
    to { opacity: 1; max-height: 500px; }
}

.faq-question {
    padding: 20px 24px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--origin-text-primary) !important;
}

.faq-answer {
    padding: 0 24px 20px !important;
    color: var(--origin-text-secondary) !important;
    line-height: 1.7 !important;
}

/* ── Trust Pillar Cards ───────────────── */
.trust-pillar-card {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 20px !important;
    padding: 36px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.trust-pillar-card:hover {
    border-color: var(--origin-border-hover) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
}

.trust-pillar-title {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
    font-size: 1.3rem !important;
    color: #ffffff !important;
}

.trust-pillar-text {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ── CTA Section Polish ───────────────── */
.cta-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.cta-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.cta-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 6, 16, 0.92) 0%,
        rgba(6, 6, 16, 0.55) 25%,
        rgba(6, 6, 16, 0.40) 50%,
        rgba(6, 6, 16, 0.75) 100%
    );
    z-index: 1;
}

/* Waitlist counter — transparent with bright text */
.waitlist-counter {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
}
.counter-text {
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}
.counter-text strong {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.cta-section .container {
    position: relative;
    z-index: 2;
}

/* ── Bank Comparison Toggle ────────────── */
.bank-compare-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: rgba(20, 20, 36, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--origin-text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bank-compare-toggle:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(20, 20, 36, 0.7);
}
.bank-compare-toggle-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bank-compare-toggle-text i {
    color: var(--sd-orange);
    font-size: 0.95rem;
}
.bank-compare-chevron {
    font-size: 0.8rem;
    color: var(--origin-text-muted);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.bank-compare-panel {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
}
.bank-compare-toggle[aria-expanded="true"] + .bank-compare-panel {
    margin-top: 12px;
}

.cta-section h2 {
    font-family: var(--origin-serif) !important;
    font-size: clamp(2rem, 5vw, 3.2rem) !important;
    font-weight: 400 !important;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

/* ── Footer Polish ────────────────────── */
footer, .mega-footer {
    background: var(--origin-bg-deep) !important;
    border-top: 1px solid var(--origin-border) !important;
    padding-top: 80px !important;
}

/* ── Origin-Style Legal Footer ─────────── */
.origin-legal-footer {
    display: block !important;
    padding-top: 48px !important;
    border-top: none !important;
    text-align: left !important;
}

.origin-legal-logo {
    margin-bottom: 32px;
}

.origin-legal-logo .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--origin-text-primary) !important;
    text-decoration: none;
}

.origin-legal-logo .logo-word {
    font-family: var(--origin-serif) !important;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--origin-text-primary) !important;
}

.origin-legal-logo .footer-logo-img {
    width: 28px;
    height: 28px;
}

.origin-legal-divider {
    border: none;
    height: 1px;
    background: var(--origin-border);
    margin: 0 0 32px 0;
}

.origin-legal-text {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.30);
    text-transform: uppercase;
}

.origin-legal-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.30) !important;
}

.origin-legal-text p:last-child {
    margin-bottom: 0;
}

.origin-legal-text a {
    color: rgba(255, 255, 255, 0.40) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.origin-legal-text a:hover {
    color: rgba(255, 255, 255, 0.60) !important;
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter {
    padding-bottom: 48px !important;
    border-bottom: 1px solid var(--origin-border);
    margin-bottom: 48px;
}

.footer-newsletter h3 {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
    font-size: 1.5rem !important;
}

.newsletter-form input[type="email"] {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 12px !important;
    color: var(--origin-text-primary) !important;
    padding: 14px 20px !important;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--origin-text-muted);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--origin-accent) !important;
    outline: none;
    box-shadow: 0 0 0 3px var(--origin-accent-soft);
}

/* Footer links */
.footer-links h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--origin-text-muted) !important;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--origin-text-secondary) !important;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--origin-text-primary) !important;
}

/* ── How it Works — Flow Diagram Polish ── */
.flow-step {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    padding: 28px 24px !important;
    min-width: 160px !important;
    flex: 1 !important;
}

.flow-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.flow-icon {
    font-size: 2.4rem !important;
    margin-bottom: 12px !important;
}

.flow-label {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
    font-size: 1.15rem !important;
    color: #ffffff !important;
}

.flow-desc {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
}

/* Flow diagram container — clean, no dashed border */
.flow-diagram {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    margin-bottom: 48px !important;
}

/* Flow color accents — stronger borders */
.flow-green {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
}
.flow-green:hover { border-color: rgba(16, 185, 129, 0.5) !important; }
.flow-blue {
    background: rgba(0, 153, 229, 0.08) !important;
    border-color: rgba(0, 153, 229, 0.25) !important;
}
.flow-blue:hover { border-color: rgba(0, 153, 229, 0.5) !important; }
.flow-purple {
    background: rgba(139, 92, 246, 0.10) !important;
    border-color: rgba(139, 92, 246, 0.25) !important;
}
.flow-purple:hover { border-color: rgba(139, 92, 246, 0.5) !important; }
.flow-teal {
    background: rgba(20, 184, 166, 0.08) !important;
    border-color: rgba(20, 184, 166, 0.25) !important;
}
.flow-teal:hover { border-color: rgba(20, 184, 166, 0.5) !important; }

.flow-arrow {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
}
.flow-loop {
    color: rgba(0, 153, 229, 0.60) !important;
}

@media (max-width: 768px) {
    .flow-diagram {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .flow-arrow {
        transform: rotate(90deg);
    }
    .flow-step {
        min-width: unset !important;
    }
}

/* Example box polish */
.example-box {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.example-heading {
    font-family: var(--origin-serif) !important;
    font-weight: 400 !important;
}

/* ── Collapsible section polish ──────── */
.collapsible-section {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.collapsible-section summary {
    color: var(--origin-text-primary) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-color: transparent !important;
    border-radius: 16px 16px 0 0 !important;
}

.collapsible-section summary:hover {
    background: rgba(255, 255, 255, 0.07) !important;
}

.collapsible-section .collapsible-content {
    background: transparent !important;
}

/* ── Stat Items Polish ───────────────── */
.stat-item {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 16px !important;
    padding: 28px 20px !important;
    transition: all 0.3s ease !important;
}

.stat-item:hover {
    border-color: var(--origin-border-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--origin-serif) !important;
    font-size: 2.2rem !important;
}

/* ── Waitlist Form Polish ────────────── */
.waitlist-form input {
    background: var(--origin-bg-card) !important;
    border: 1px solid var(--origin-border) !important;
    border-radius: 12px !important;
    color: var(--origin-text-primary) !important;
    padding: 14px 20px !important;
}

.waitlist-form input::placeholder {
    color: var(--origin-text-muted);
}

.waitlist-form input:focus {
    border-color: var(--origin-accent) !important;
    outline: none;
    box-shadow: 0 0 0 3px var(--origin-accent-soft);
}

/* ── Smooth Fade Transitions Between Sections ── */
.social-proof-stats,
.susu-explainer,
.app-preview-section,
.how-it-works,
.calculator-section,
.features,
.testimonials-section,
.trust-pillars,
.faq-section,
.cta-section {
    position: relative;
    overflow: hidden;
}

/* Section boundary glow — brief color sweep when entering */
.section-boundary-glow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--sd-blue) 20%, 
        var(--sd-magenta) 50%, 
        var(--sd-orange) 80%, 
        transparent 100%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    filter: blur(2px);
}
.section-in-view .section-boundary-glow {
    animation: boundaryFlash 1.5s ease-out forwards;
}
@keyframes boundaryFlash {
    0%   { opacity: 0; transform: scaleX(0); transform-origin: left; }
    30%  { opacity: 0.8; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(1); }
}

/* Subtle top-edge gradient fade for visual continuity */
/* Top fade — blends into the section above */
.susu-explainer::before,
.features::before,
.trust-pillars::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 20%, rgba(255,255,255,0.05) 80%, transparent);
}

/* ── Deep section-blending overlays ──── */



/* calculator: fade the top edge FROM dark into the indigo wash */
.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, #0f0f1e 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* calculator: fade bottom into next section's surface color */
.calculator-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-surface) 100%);
    pointer-events: none;
    z-index: 1;
}

/* app-preview → how-it-works transition */
.app-preview-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* features → trust-pillars blend */
.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* trust-pillars → testimonials blend */
.trust-pillars::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* testimonials → discover blend */
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-surface) 100%);
    pointer-events: none;
    z-index: 1;
}

/* discover & FAQ section: add position relative for pseudo-elements */
.discover-section {
    position: relative;
}

/* FAQ → CTA blend */
.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* CTA section: top fade — removed to eliminate dark line between discover and CTA */
.cta-section::before {
    content: none !important;
}

/* CTA section: bottom fade into footer */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 3;
}

/* ── "Discover what's new" Blog Cards (Origin-style) ── */
.discover-section {
    padding: 100px 0;
    background: var(--origin-bg-surface);
    position: relative;
    overflow: hidden;
}
.discover-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent 0%, var(--origin-bg-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.discover-card {
    background: var(--origin-bg-card);
    border: 1px solid var(--origin-border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.discover-card:hover {
    border-color: var(--origin-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.discover-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--origin-text-muted);
    margin-bottom: 16px;
}

.discover-card-title {
    font-family: var(--origin-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--origin-text-primary);
    line-height: 1.4;
    flex: 1;
    margin-bottom: 24px;
}

.discover-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--origin-text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    border: 1px solid var(--origin-border);
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
}

.discover-card-link:hover {
    color: var(--origin-text-primary);
    border-color: var(--origin-border-hover);
}

/* ── Mobile Responsive ─────────────────── */
@media (max-width: 1024px) {
    .testimonials-track .testimonial-gradient-card {
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    .discover-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Reduce spacing on mobile */
    .social-proof-stats,
    .susu-explainer,
    .app-preview-section,
    .how-it-works,
    .calculator-section,
    .features,
    .testimonials-section,
    .trust-pillars,
    .faq-section,
    .cta-section {
        padding: 64px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px !important;
    }
    
    .testimonials-track .testimonial-gradient-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonial-gradient-card {
        min-height: auto;
        padding: 28px 24px;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
    }
    
    .headline-massive {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    
    .headline-large {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }
    
    .calculator-card {
        padding: 28px !important;
    }
    
    .bento-card {
        padding: 28px !important;
    }
}

@media (max-width: 380px) {
    .testimonial-gradient-card {
        padding: 28px 20px;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
    }
}

/* ── Money Flow & Timeline Animations ──── */

/* Slow-spinning dashed ring border (uses a pseudo-element so nodes stay still) */
.member-ring {
    border: none !important;
    position: relative;
    margin: 20px auto 30px auto !important;
}
.member-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.12);
    animation: ringRotate 30s linear infinite;
    pointer-events: none;
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

/* Pot center — breathing pulse */
.pot-center {
    animation: potPulse 3s ease-in-out infinite;
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.25), 0 0 60px rgba(16, 185, 129, 0.08) !important;
}
@keyframes potPulse {
    0%, 100% { transform: scale(1);   box-shadow: 0 0 24px rgba(16, 185, 129, 0.25), 0 0 60px rgba(16, 185, 129, 0.08); }
    50%      { transform: scale(1.06); box-shadow: 0 0 32px rgba(16, 185, 129, 0.40), 0 0 80px rgba(16, 185, 129, 0.12); }
}

/* Member nodes — staggered gentle float */
.member-node {
    animation: nodeFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-node:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15) !important;
}
.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: 0.8s; }
.node-3 { animation-delay: 1.6s; }
.node-4 { animation-delay: 2.4s; }
.node-5 { animation-delay: 3.2s; }
@keyframes nodeFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -6px; }
}

/* Highlighted member (current pot receiver) — glow ring pulse */
.member-node.highlight {
    border-color: var(--sd-blue) !important;
    box-shadow: 0 0 0 4px rgba(0, 153, 229, 0.25) !important;
    animation: nodeFloat 4s ease-in-out infinite, highlightGlow 2.5s ease-in-out infinite !important;
}
@keyframes highlightGlow {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 153, 229, 0.20); }
    50%      { box-shadow: 0 0 0 8px rgba(0, 153, 229, 0.35), 0 0 20px rgba(0, 153, 229, 0.15); }
}

/* Current timeline segment — pulse glow */
.timeline-segment.current {
    animation: segmentPulse 2.5s ease-in-out infinite;
    border-color: var(--sd-blue) !important;
}
@keyframes segmentPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0, 153, 229, 0.20); }
    50%      { box-shadow: 0 0 0 6px rgba(0, 153, 229, 0.35), 0 0 16px rgba(0, 153, 229, 0.10); }
}

/* Done segments — subtle checkmark fade-in feel */
.timeline-segment.done {
    border-color: #10b981 !important;
    transition: transform 0.2s ease;
}
.timeline-segment.done:hover {
    transform: translateY(-3px);
}

/* Legend dots — soft pulse */
.legend-dot {
    animation: dotPulse 3s ease-in-out infinite;
}

/* Money flow section */
.money-flow-section {
    padding-bottom: 20px !important;
}

.money-flow-title {
    color: #ffffff !important;
}
.flow-legend {
    color: rgba(255, 255, 255, 0.65) !important;
}
.pot-label {
    color: rgba(255, 255, 255, 0.9) !important;
}
.member-node span {
    color: rgba(255, 255, 255, 0.85) !important;
}
.legend-dot.green { animation-delay: 0s; }
.legend-dot.blue  { animation-delay: 1s; }
.legend-dot.gray  { animation-delay: 2s; }
@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.3); opacity: 0.7; }
}

/* ── Seedream 4.0 Bento-Icon Gradient Overrides ── */
/* Map the 6 bento-icon gradients to the Seedream palette */
.bento-icon.gradient-green  { background: linear-gradient(135deg, #059669, #10b981) !important; }
.bento-icon.gradient-blue   { background: linear-gradient(135deg, #0077b8, #0099E5) !important; }
.bento-icon.gradient-teal   { background: linear-gradient(135deg, #0d9488, #14b8a6) !important; }
.bento-icon.gradient-pink   { background: linear-gradient(135deg, #D91A5B, #e84f7e) !important; }
.bento-icon.gradient-orange { background: linear-gradient(135deg, #F26522, #FF7E3A) !important; }
.bento-icon.gradient-red    { background: linear-gradient(135deg, #F14B3C, #ff6f5e) !important; }

/* Section badge accent — electric blue pill dot */
.section-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0099E5;
    margin-right: 8px;
    vertical-align: middle;
}

/* Discover card label — magenta accent on hover */
.discover-card:hover .discover-card-label {
    color: #D91A5B;
}

/* Trust pillar icon glow on hover */
.trust-pillar-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 153, 229, 0.12) !important;
}

/* Nav hover underline — Seedream orange */
.nav-links a::after {
    background: #F26522 !important;
}
.nav-links a.active {
    color: #F26522 !important;
}
.nav-links a.active::after {
    transform: scaleX(1) !important;
    opacity: 1 !important;
}

/* ── Hero Background Video Layer ────────── */

/* ── Premium Centered Hero ─────────────── */
.hero .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    z-index: 2 !important;
}
.hero-content {
    max-width: 820px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    background: rgba(242, 101, 34, 0.10) !important;
    border: 1px solid rgba(242, 101, 34, 0.25) !important;
    color: var(--sd-orange) !important;
    font-family: var(--origin-serif, 'Playfair Display', serif) !important;
    font-style: italic;
    font-size: 0.9rem !important;
    letter-spacing: 0.02em;
    padding: 10px 24px !important;
}
.headline-massive {
    font-family: var(--origin-serif, 'Playfair Display', serif) !important;
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 700 !important;
    color: var(--origin-text-primary) !important;
    letter-spacing: -0.04em !important;
    line-height: 1.0 !important;
    margin-bottom: 28px !important;
}
.headline-massive em {
    font-style: italic;
}
.text-shimmer {
    background: linear-gradient(135deg, var(--sd-orange) 0%, var(--sd-magenta) 40%, var(--sd-blue) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
}
.hero-subtitle {
    color: var(--origin-text-secondary) !important;
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    line-height: 1.75 !important;
    max-width: 600px !important;
    margin: 0 auto 36px !important;
}
.hero-cta {
    justify-content: center !important;
    gap: 18px !important;
    margin-bottom: 40px !important;
}
.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--sd-orange) 0%, #e85d1e 100%) !important;
    box-shadow: 0 4px 24px rgba(242, 101, 34, 0.35) !important;
    border-radius: 14px !important;
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
}
.hero-cta .btn-primary:hover {
    box-shadow: 0 8px 32px rgba(242, 101, 34, 0.5) !important;
    transform: translateY(-3px) !important;
}
.hero-cta .btn-outline {
    color: var(--origin-text-primary) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
}
.hero-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 0 auto 32px;
}
.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 60px !important;
    padding: 12px 24px !important;
    margin-bottom: 0 !important;
}
.stat-highlight {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--sd-orange), var(--sd-magenta)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.stat-context {
    color: var(--origin-text-muted) !important;
    font-size: 0.85rem !important;
}
.hero-trust {
    justify-content: center !important;
    gap: 16px !important;
}
.trust-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--origin-text-secondary) !important;
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
}
.trust-item i {
    color: var(--sd-orange) !important;
    font-size: 0.85rem !important;
}

/* Hero mobile */
@media (max-width: 768px) {
    .hero-bottom-row {
        flex-direction: column;
        gap: 20px;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Hide hero visual (phone removed, just orbs) */
.hero-visual { display: none !important; }

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(6, 6, 16, 0.50) 0%, 
        rgba(6, 6, 16, 0.35) 30%, 
        rgba(6, 6, 16, 0.45) 60%, 
        rgba(6, 6, 16, 0.88) 100%);
    pointer-events: none;
}

/* ── Cosmic Background Image Layer ─────── */
/* Hero: dark base (video handles the visual) */
.hero {
    background: var(--origin-bg-deep) !important;
}

/* CTA section: Mountain video background */
.cta-section {
    background: var(--origin-bg-deep) !important;
    overflow: hidden;
    position: relative;
}

/* Testimonials: Mountain video background */
.testimonials-section {
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ── Scroll-Driven Section Effects ─────── */

/* Accent line that sweeps across when entering a section */
.section-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sd-blue), var(--sd-magenta), var(--sd-orange), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
    opacity: 0.7;
}

.section-in-view .section-accent-line {
    transform: scaleX(1);
}

/* Section badge glow on enter */
.section-in-view .section-badge {
    color: rgba(255, 255, 255, 0.65) !important;
    text-shadow: 0 0 20px rgba(0, 153, 229, 0.3);
    transition: color 0.8s ease, text-shadow 0.8s ease;
}
.section-badge {
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* Section badge pill dot — animate on enter */
.section-in-view .section-badge::before {
    background: var(--sd-blue);
    box-shadow: 0 0 8px var(--sd-blue-glow), 0 0 16px rgba(0, 153, 229, 0.15);
    animation: badgeDotPulse 2s ease-in-out infinite;
}
@keyframes badgeDotPulse {
    0%, 100% { box-shadow: 0 0 8px var(--sd-blue-glow); }
    50%      { box-shadow: 0 0 14px var(--sd-blue-glow), 0 0 28px rgba(0, 153, 229, 0.2); }
}

/* Section heading — slide-up entrance with text shadow */
.section-in-view .headline-large,
.section-in-view .section-heading-dark,
.section-in-view .explainer-heading {
    text-shadow: 0 0 40px rgba(242, 101, 34, 0.08);
}

/* Depth parallax for section content */
.section-depth-content {
    will-change: transform;
}

/* Bento cards & trust pillar cards — hover depth when section is in view */
.section-in-view .bento-card,
.section-in-view .trust-pillar-card,
.section-in-view .testimonial-gradient-card,
.section-in-view .discover-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s ease;
}

/* Section leaving — subtle fade/scale down */
.section-leaving .section-header {
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0.5;
    transform: scale(0.97);
}

/* FAQ items stagger on section enter */
.section-in-view .faq-item {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s ease;
}

/* Section side glow — ambient light on edges when in view */
.section-side-glow {
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.section-side-glow--left {
    left: 0;
    background: radial-gradient(ellipse at left center, var(--sd-blue-glow), transparent 70%);
}
.section-side-glow--right {
    right: 0;
    background: radial-gradient(ellipse at right center, var(--sd-magenta-glow), transparent 70%);
}
.section-in-view .section-side-glow {
    opacity: 1;
}

/* Scroll progress indicator dots (section nav) */
.section-progress-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.section-progress-dots.visible {
    opacity: 1;
}
.section-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.section-dot:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}
.section-dot.active {
    background: var(--sd-blue);
    border-color: var(--sd-blue);
    box-shadow: 0 0 8px var(--sd-blue-glow);
    transform: scale(1.4);
}

/* Hide dots on mobile */
@media (max-width: 768px) {
    .section-progress-dots {
        display: none !important;
    }
    .section-side-glow {
        display: none !important;
    }
}

/* ── Print styles ──────────────────────── */
@media print {
    .testimonials-section,
    .discover-section {
        break-inside: avoid;
    }
    .section-progress-dots,
    .section-accent-line,
    .section-side-glow {
        display: none !important;
    }
}
