/* Garajly — Dark Cinematic 3D layer */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 100;
    background: linear-gradient(90deg, #31cad8, #5ce2ef, #84a9ff);
    box-shadow: 0 0 12px rgba(49, 202, 216, 0.65);
    transition: width 0.08s linear;
}

.hero-pin-track {
    position: relative;
}

.hero-pin-track .cinematic-hero {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    overflow: visible;
    align-items: flex-start;
    padding-top: calc(6.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2.5rem;
    box-sizing: border-box;
}

.cinematic-hero > .max-w-7xl {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
}

.cinematic-hero [data-reveal]:first-child {
    overflow: visible;
}

.cinematic-hero [data-reveal]:first-child > .flex.flex-wrap {
    padding-top: 0.35rem;
    margin-bottom: 1.25rem;
}

.cinematic-hero .tg-kicker,
.cinematic-hero .live-pill {
    overflow: visible;
}

.cinematic-hero {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(49, 202, 216, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(49, 202, 216, 0.08), transparent),
        linear-gradient(165deg, #040a14 0%, #060d1a 40%, #0a1324 100%);
    isolation: isolate;
}


.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb--1 {
    width: 420px;
    height: 420px;
    top: -8%;
    right: -5%;
    background: rgba(49, 202, 216, 0.22);
}

.hero-orb--2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    left: -8%;
    background: rgba(36, 120, 200, 0.15);
    animation-delay: -4s;
}

.hero-orb--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 45%;
    background: rgba(92, 226, 239, 0.1);
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(49, 202, 216, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49, 202, 216, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    pointer-events: none;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 64px 64px, 64px 64px; }
}

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 45%, rgba(255, 255, 255, 0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub-gradient {
    background: linear-gradient(130deg, #5ce2ef, #31cad8 50%, #84a9ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShimmer 7s ease-in-out infinite;
}

@keyframes gradientShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glass-panel {
    border: 1px solid rgba(143, 163, 189, 0.28);
    background: linear-gradient(155deg, rgba(17, 29, 48, 0.75), rgba(8, 17, 31, 0.82));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow:
        0 24px 60px rgba(0, 8, 21, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}

.glass-panel:hover {
    box-shadow:
        0 32px 70px rgba(0, 8, 21, 0.55),
        0 0 0 1px rgba(49, 202, 216, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-panel__glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(49, 202, 216, 0.25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.glass-panel__inner {
    position: relative;
    z-index: 1;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.35);
    background: rgba(6, 78, 59, 0.35);
    color: #86efac;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.live-pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.btn-cinematic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    min-height: 48px;
}

.btn-cinematic--primary {
    background: linear-gradient(135deg, #ffffff 0%, #e8f8fa 100%);
    color: #0a5f6b;
    box-shadow: 0 12px 32px rgba(49, 202, 216, 0.25);
}

.btn-cinematic--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(49, 202, 216, 0.35);
}

.btn-cinematic--ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e8edf7;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.btn-cinematic--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(49, 202, 216, 0.4);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(159, 177, 201, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.trust-marquee {
    position: relative;
    z-index: 4;
    border-block: 1px solid rgba(159, 177, 201, 0.12);
    background: rgba(6, 13, 26, 0.6);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    overflow: hidden;
}

.trust-marquee__track {
    display: flex;
    gap: 3rem;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.trust-marquee__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9fb1c9;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-marquee__item svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #31cad8;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 42rem;
    margin-inline: auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(92, 226, 239, 0.28);
    background: rgba(18, 34, 58, 0.55);
    color: #b9f1f7;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-kicker::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: #4be0ed;
    box-shadow: 0 0 0 5px rgba(75, 224, 237, 0.1);
    flex-shrink: 0;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-content-bridge {
    position: relative;
    z-index: 3;
    height: clamp(3.5rem, 7vw, 6rem);
    margin-top: -1.5rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(6, 13, 26, 0.65) 40%,
        rgba(8, 16, 31, 0.96) 100%
    );
    pointer-events: none;
}

.steps-timeline {
    position: relative;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .steps-timeline::before {
        content: "";
        position: absolute;
        top: 2.5rem;
        left: 16%;
        right: 16%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(49, 202, 216, 0.4), transparent);
        z-index: 0;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 163, 189, 0.22);
    background: linear-gradient(160deg, rgba(17, 29, 48, 0.7), rgba(8, 17, 31, 0.85));
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(49, 202, 216, 0.45);
    box-shadow: 0 20px 50px rgba(0, 8, 21, 0.4);
}

.step-card__num {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #31cad8, #188fa3);
    box-shadow: 0 8px 24px rgba(49, 202, 216, 0.3);
}

.bento-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-item--wide {
        grid-column: span 2;
    }

    .bento-item--tall {
        grid-row: span 2;
    }
}

.bento-item {
    transform-style: preserve-3d;
}

.bento-item--featured .feature-card {
    border-color: rgba(49, 202, 216, 0.48) !important;
    background: linear-gradient(155deg, rgba(22, 42, 68, 0.92), rgba(12, 24, 42, 0.95)) !important;
    box-shadow:
        0 24px 60px rgba(0, 8, 21, 0.5),
        0 0 50px rgba(49, 202, 216, 0.1) !important;
}

.feature-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b9f1f7;
    border: 1px solid rgba(92, 226, 239, 0.35);
    background: rgba(18, 34, 58, 0.75);
}

.feature-card {
    position: relative;
}

.stat-section--hero {
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    position: relative;
    z-index: 4;
}

@media (max-width: 768px) {
    .stat-section--hero {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .stat-section--hero + .trust-marquee {
        margin-top: 0;
    }
}

/* Support page */
.support-page {
    background: linear-gradient(180deg, rgba(8, 16, 31, 0.92), rgba(7, 14, 27, 0.96));
}

.support-contact-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 163, 189, 0.22);
    background: linear-gradient(160deg, rgba(17, 29, 48, 0.7), rgba(8, 17, 31, 0.85));
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.support-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(49, 202, 216, 0.4);
    box-shadow: 0 20px 50px rgba(0, 8, 21, 0.4);
}

.support-contact-card .feature-icon {
    margin: 0 auto 1rem;
    width: 3rem;
    height: 3rem;
}

.support-faq-panel {
    border: 1px solid rgba(143, 163, 189, 0.22);
    border-radius: 1.5rem;
    background: linear-gradient(160deg, rgba(11, 21, 38, 0.75), rgba(7, 14, 26, 0.85));
    backdrop-filter: blur(12px);
    padding: 2rem 2.5rem;
}

@media (min-width: 768px) {
    .support-faq-panel {
        padding: 3rem;
    }
}
.stat-strip {
    border: 1px solid rgba(143, 163, 189, 0.2);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(17, 29, 48, 0.65), rgba(8, 17, 31, 0.8));
    backdrop-filter: blur(16px);
    padding: 2.5rem 1.5rem;
}

.stat-strip .stat-number {
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: #9fb1c9;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 0.35rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49, 202, 216, 0.12);
    border: 1px solid rgba(49, 202, 216, 0.35);
    color: #5ce2ef;
    box-shadow: 0 8px 24px rgba(49, 202, 216, 0.12);
}

@media (min-width: 768px) {
    .stat-icon {
        width: 5rem;
        height: 5rem;
    }

    .stat-icon svg {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(49, 202, 216, 0.12);
    font-family: Georgia, serif;
    pointer-events: none;
}

.cta-glow-section {
    position: relative;
    overflow: hidden;
}

.cta-glow-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(49, 202, 216, 0.15), transparent 70%);
    pointer-events: none;
}

.cinematic-hero [data-reveal] {
    opacity: 1;
    transform: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

nav#navbar {
    background: rgba(4, 10, 20, 0.72) !important;
    border-bottom: 1px solid rgba(159, 177, 201, 0.1) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

nav#navbar.scrolled {
    background: rgba(4, 10, 20, 0.92) !important;
    border-bottom-color: rgba(49, 202, 216, 0.12) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 768px) {
    nav#navbar,
    nav#navbar.scrolled {
        background: rgba(4, 10, 20, 0.97) !important;
        border-bottom-color: rgba(159, 177, 201, 0.14) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28) !important;
    }
}

.mobile-menu {
    background: rgba(4, 10, 20, 0.97) !important;
    border-color: rgba(159, 177, 201, 0.15) !important;
    border-top: 1px solid rgba(159, 177, 201, 0.12);
}

/* Hero video background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.08);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
    animation: heroVideoKenBurns 22s ease-in-out infinite alternate;
}

.hero-video-wrap.is-playing .hero-video-bg {
    opacity: 0.44;
}

@keyframes heroVideoKenBurns {
    0% { transform: translate(-50%, -50%) scale(1.06); }
    100% { transform: translate(-50%, -48%) scale(1.14); }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 10, 20, 0.38) 0%, rgba(4, 10, 20, 0.62) 55%, rgba(4, 10, 20, 0.88) 100%),
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(49, 202, 216, 0.1), transparent 70%);
    pointer-events: none;
    animation: heroOverlayPulse 8s ease-in-out infinite;
}

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

/* Hero entrance & float */
.cinematic-hero .hero-headline {
    animation: heroHeadlineIn 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.cinematic-hero .tg-kicker,
.cinematic-hero .live-pill {
    animation: heroBadgeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.15s both;
}

.cinematic-hero [data-reveal]:first-child > p {
    animation: heroTextIn 0.75s cubic-bezier(0.23, 1, 0.32, 1) 0.35s both;
}

.cinematic-hero [data-reveal]:first-child > p + p {
    animation: heroTextIn 0.75s cubic-bezier(0.23, 1, 0.32, 1) 0.45s both;
}

.cinematic-hero .hero-actions .btn-cinematic {
    animation: heroCtaIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.cinematic-hero .hero-actions .btn-cinematic:nth-child(1) {
    animation-delay: 0.55s;
}

.cinematic-hero .hero-actions .btn-cinematic:nth-child(2) {
    animation-delay: 0.68s;
}

.cinematic-hero .phone-showcase[data-reveal] {
    transition-delay: 0.25s;
}

.cinematic-hero .btn-cinematic--primary {
    position: relative;
    overflow: hidden;
}

.cinematic-hero .btn-cinematic--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: ctaShine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroCtaIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ctaShine {
    0%, 75%, 100% { transform: translateX(-120%); }
    90% { transform: translateX(120%); }
}

.phone-showcase .phone-device--hero {
    animation: phoneHeroFloat 5.5s ease-in-out infinite;
}

@keyframes heroHeadlineIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBadgeIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes phoneHeroFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -10px; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}

/* Phone mockup */
.phone-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: min(62vh, 640px);
    overflow: visible;
}

.phone-showcase__float {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 320px;
    transform: translate3d(
        calc(-50% + var(--parallax-x, 0)),
        calc(-50% + var(--parallax-y, 0) + var(--phone-rise, 85vh)),
        0
    ) scale(var(--phone-rise-scale, 0.88));
    opacity: var(--phone-rise-opacity, 0.15);
    will-change: transform, opacity;
}

.phone-showcase__wire-car {
    position: absolute;
    top: 26%;
    left: 50%;
    width: 300%;
    max-width: 900px;
    height: 490px;
    transform: translate(-50%, -40%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.15s linear;
    background: transparent;
}

.phone-showcase__wire-car canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    filter:
        drop-shadow(0 0 6px rgba(30, 202, 232, 0.95))
        drop-shadow(0 0 22px rgba(49, 202, 216, 0.55))
        drop-shadow(0 0 48px rgba(49, 202, 216, 0.25))
        brightness(1.15);
}

@media (min-width: 1024px) {
    .phone-showcase {
        min-height: min(68vh, 720px);
    }

    .phone-showcase__float {
        --phone-rise: 92vh;
    }

    .phone-showcase__wire-car {
        width: 345%;
        max-width: 1040px;
        height: 540px;
        top: 22%;
    }
}

.phone-showcase__glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(49, 202, 216, 0.35), transparent 68%);
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
    animation: glowPulse 4s ease-in-out infinite;
}

.phone-device {
    position: relative;
    z-index: 2;
    width: min(280px, 78vw);
    padding: 10px;
    border-radius: 36px;
    background: linear-gradient(155deg, #1a2a42 0%, #0a1324 50%, #060d1a 100%);
    border: 2px solid rgba(143, 163, 189, 0.35);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 60px rgba(49, 202, 216, 0.15);
    transform-style: preserve-3d;
}

.phone-device__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 22px;
    border-radius: 0 0 14px 14px;
    background: #060d1a;
    z-index: 4;
}

.phone-device__screen {
    border-radius: 28px;
    overflow: hidden;
    background: #0a1324;
    aspect-ratio: 9 / 19.5;
    position: relative;
}

.phone-device__screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.phone-device__screen img.is-fading {
    opacity: 0;
    transform: scale(1.03);
}

.phone-showcase__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.phone-tab {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #9fb1c9;
    background: rgba(10, 19, 36, 0.7);
    border: 1px solid rgba(143, 163, 189, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 36px;
}

.phone-tab:hover,
.phone-tab.is-active {
    color: #e8edf7;
    border-color: rgba(49, 202, 216, 0.55);
    background: rgba(49, 202, 216, 0.12);
    box-shadow: 0 0 20px rgba(49, 202, 216, 0.2);
}

.phone-device--sm {
    width: 200px;
    padding: 8px;
    border-radius: 28px;
}

.phone-device--sm .phone-device__notch {
    width: 64px;
    height: 16px;
    top: 10px;
}

.phone-device--sm .phone-device__screen {
    border-radius: 22px;
}

.phone-device--download .phone-device__screen img {
    object-fit: cover;
    object-position: center 72%;
}

/* App showcase section */
.app-showcase-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.app-showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(49, 202, 216, 0.08), transparent),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(132, 169, 255, 0.06), transparent);
    pointer-events: none;
}

.app-showcase-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .app-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .app-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        align-items: end;
    }

    .app-shot-card:nth-child(1) { transform: translateY(0); }
    .app-shot-card:nth-child(2) { transform: translateY(24px); }
    .app-shot-card:nth-child(3) { transform: translateY(8px); }
    .app-shot-card:nth-child(4) { transform: translateY(32px); }
}

.app-shot-card {
    text-align: center;
    padding: 1.5rem 1rem 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(143, 163, 189, 0.2);
    background: linear-gradient(165deg, rgba(17, 29, 48, 0.75), rgba(8, 17, 31, 0.88));
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.app-shot-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(49, 202, 216, 0.45);
    box-shadow: 0 28px 60px rgba(0, 8, 21, 0.45), 0 0 40px rgba(49, 202, 216, 0.1);
}

.app-shot-card .phone-device {
    margin: 0 auto 1.25rem;
}

.app-shot-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8edf7;
    margin-bottom: 0.35rem;
}

.app-shot-card p {
    font-size: 0.85rem;
    color: #9fb1c9;
    line-height: 1.5;
}

/* Pricing glow */
.tg-plan-popular {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 24px 60px rgba(49, 202, 216, 0.35),
        0 0 80px rgba(49, 202, 216, 0.15) !important;
}

.tg-pricing-shell {
    padding: 0.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(49, 202, 216, 0.08), rgba(132, 169, 255, 0.05));
}

/* Trial form glass */
.trial-form-panel,
#trial .max-w-2xl > .bg-gradient-to-br {
    border-radius: 28px !important;
    background: linear-gradient(160deg, rgba(19, 31, 52, 0.95), rgba(9, 18, 33, 0.96)) !important;
    border: 1px solid rgba(159, 177, 201, 0.22);
    box-shadow: 0 32px 70px rgba(0, 8, 21, 0.5), 0 0 0 1px rgba(49, 202, 216, 0.12) !important;
    padding: 2rem 2.5rem;
}

@media (min-width: 768px) {
    .trial-form-panel {
        padding: 3rem;
    }
}

/* Pricing */
.billing-toggle__track {
    width: 3.5rem;
    height: 1.75rem;
    background: rgba(35, 54, 80, 0.95);
    border: 1px solid rgba(143, 163, 189, 0.25);
    border-radius: 999px;
    position: relative;
    transition: background-color 0.2s ease;
}

.billing-toggle__track::after {
    content: "";
    position: absolute;
    top: 0.125rem;
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #e8edf7;
    transition: transform 0.2s ease;
}

.billing-toggle .peer:focus-visible + .billing-toggle__track {
    outline: 2px solid #5ce2ef;
    outline-offset: 3px;
}

.billing-toggle .peer:checked + .billing-toggle__track {
    background: #31cad8;
    border-color: rgba(92, 226, 239, 0.4);
}

.billing-toggle .peer:checked + .billing-toggle__track::after {
    transform: translateX(1.75rem);
}

.discount-pill {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #b9f1f7;
    border: 1px solid rgba(49, 202, 216, 0.35);
    background: rgba(49, 202, 216, 0.12);
}

.price-highlight {
    color: #5ce2ef;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem 0.85rem;
    border-bottom-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plan-badge--trial {
    color: #fff;
    background: linear-gradient(135deg, #31cad8, #1f9aac);
}

.plan-badge--popular {
    color: #060d1a;
    background: linear-gradient(135deg, #5ce2ef, #31cad8);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(49, 202, 216, 0.4) !important;
}

.check-icon {
    color: #4be0ed;
    flex-shrink: 0;
}

.tg-pricing-shell .check-icon--light {
    color: #fff;
}

.premium-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #188fa3;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.premium-cta:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 8, 21, 0.25);
}

/* FAQ */
.faq-shell {
    border: 1px solid rgba(143, 163, 189, 0.22) !important;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(11, 21, 38, 0.75), rgba(7, 14, 26, 0.85)) !important;
    backdrop-filter: blur(12px);
}

.faq-item summary:focus-visible {
    outline: 2px solid #5ce2ef;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Testimonials */
.star-rating {
    color: #5ce2ef;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(49, 202, 216, 0.35), rgba(24, 143, 163, 0.5));
    border: 2px solid rgba(92, 226, 239, 0.35);
    box-shadow: 0 0 0 4px rgba(49, 202, 216, 0.08);
}

.store-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

/* Mobile nav links */
.nav-mobile-link {
    color: #9fb1c9 !important;
}

.nav-mobile-link:hover {
    color: #dff8fb !important;
    background: rgba(49, 202, 216, 0.08) !important;
}

@media (max-width: 768px) {
    .hero-pin-track {
        height: auto !important;
        margin-bottom: 0.5rem;
    }

    .hero-pin-track .cinematic-hero {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
        align-items: flex-start !important;
        padding-top: calc(6.25rem + env(safe-area-inset-top, 0px));
        padding-bottom: 2rem;
    }

    .cinematic-hero > .max-w-7xl {
        flex: none;
        justify-content: flex-start;
        padding-top: 0;
    }

    .cinematic-hero .hero-headline {
        font-size: clamp(1.75rem, 7.5vw, 2.35rem);
        margin-bottom: 0.85rem;
    }

    .cinematic-hero [data-reveal]:first-child > p.text-lg {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 0.65rem;
    }

    .cinematic-hero .hero-actions {
        margin-bottom: 1rem;
    }

    .cinematic-hero .store-badges img {
        width: 148px;
        height: auto;
    }

    .tg-hero-grid {
        gap: 0;
    }

    .hero-store-badges--desktop {
        display: none;
    }

    .hero-store-badges--mobile {
        display: block;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 6;
    }

    .cinematic-hero .tg-hero-grid > [data-reveal]:first-child {
        margin-bottom: 0;
    }

    .phone-showcase {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        height: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 2.75rem;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0.5rem;
        gap: 0;
        overflow: visible;
    }

    .phone-showcase__glow {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(100vw, 420px);
        height: 230px;
        z-index: 0;
    }

    .phone-showcase__wire-car {
        position: relative;
        order: 1;
        z-index: 1;
        width: 100vw;
        max-width: 100vw;
        height: 250px;
        margin: 0 0 1.75rem;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        left: auto;
        top: auto;
        transform: none;
    }

    .phone-showcase__wire-car canvas {
        margin: 0 auto;
    }

    .phone-showcase__float {
        position: relative;
        order: 2;
        z-index: 2;
        left: auto;
        top: auto;
        transform: none !important;
        opacity: 1 !important;
        --phone-rise: 0px;
        --phone-rise-scale: 1;
        --phone-rise-opacity: 1;
        max-width: 280px;
        gap: 0.85rem;
        will-change: auto;
        margin-top: 0.25rem;
    }

    .phone-device {
        width: min(232px, 68vw);
    }

    .phone-tab {
        font-size: 0.68rem;
        padding: 0.38rem 0.68rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-video-wrap {
        display: none !important;
    }

    .phone-showcase .phone-device--hero {
        animation: phoneHeroFloat 6s ease-in-out infinite;
    }

    .trust-marquee {
        margin-top: 0;
    }

    .app-shot-card {
        transform: none !important;
    }
}

@media (min-width: 769px) {
    .hero-store-badges--desktop {
        display: block;
    }

    .hero-store-badges--mobile {
        display: none;
    }

    .hero-pin-track .cinematic-hero {
        padding-top: calc(7.25rem + env(safe-area-inset-top, 0px));
    }

    .cinematic-hero > .max-w-7xl {
        padding-top: 0.75rem;
    }
}

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

    .hero-video-overlay,
    .hero-grid-overlay,
    .phone-showcase .phone-device--hero,
    .phone-showcase__glow,
    .holo-car-stage__grid,
    .holo-car-stage__scanlines {
        animation: none !important;
    }

    .phone-showcase__wire-car,
    .cinematic-hero .hero-headline,
    .cinematic-hero .tg-kicker,
    .cinematic-hero .live-pill,
    .cinematic-hero [data-reveal]:first-child > p,
    .cinematic-hero .hero-actions .btn-cinematic,
    .hero-sub-gradient,
    .cinematic-hero .btn-cinematic--primary::after {
        animation: none !important;
    }

    .phone-showcase {
        transform: none !important;
    }

    .phone-showcase__float {
        transform: none !important;
        --phone-rise: 0px !important;
        --phone-rise-scale: 1 !important;
        --phone-rise-opacity: 1 !important;
    }

    .phone-device__screen img {
        transition: none;
    }
}

@media (min-width: 1024px) {
    .tg-hero-grid.lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mobile-menu .nav-mobile-link {
    color: #c5d4e8 !important;
}

.mobile-menu .nav-mobile-link:hover {
    color: #5ce2ef !important;
    background: rgba(49, 202, 216, 0.08) !important;
}

.hero-pin-track.is-pinned-complete .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-pin-track {
        height: auto !important;
    }

    .hero-pin-track .cinematic-hero {
        position: relative;
        height: auto;
        min-height: 100svh;
        max-height: none;
    }

    .hero-orb,
    .trust-marquee__track,
    .scroll-indicator,
    .live-pill::before {
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
