/* JECRING Home only — scoped to body.tido-home. Does not style auth or the panel. */

body.tido-home {
    --home-bg: #0b0b0c;
    --home-bg-elev: #101011;
    --home-bg-carbon: #0D0E15;
    --home-accent: #6600FF;
    --home-accent-2: #FF5E00;
    --home-text: #ffffff;
    --home-muted: #A0AEC0;
    --home-glass: rgba(18, 18, 22, 0.38);
    --home-glass-std: rgba(18, 18, 22, 0.42);
    --home-glass-elev: rgba(22, 22, 28, 0.55);
    --home-line: rgba(255, 255, 255, 0.12);
    --home-line-soft: rgba(255, 255, 255, 0.08);
    --home-shine: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    --home-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
    --home-blur: blur(22px) saturate(160%);
    --home-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --home-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --home-gradient: linear-gradient(90deg, #FF5E00 0%, #C400FF 52%, #6600FF 100%);
    /* Single glass recipe: translucent white film so the ambient halos stay visible behind every card. */
    --home-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.032) 46%, rgba(255, 255, 255, 0.018) 100%);
    --home-surface-border: rgba(255, 255, 255, 0.13);
    --home-surface-border-hover: rgba(255, 255, 255, 0.22);
    --home-surface-shine: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    --home-surface-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    --home-surface-blur: blur(18px) saturate(150%);
    --home-space: clamp(52px, 7vw, 104px);
    --home-space-tight: clamp(28px, 4vw, 56px);
    --home-intro-gap: clamp(22px, 3vw, 40px);
    background-color: var(--home-bg) !important;
    background-image:
        radial-gradient(ellipse 80% 55% at 12% -8%, rgba(102, 0, 255, 0.22), transparent 58%),
        radial-gradient(ellipse 55% 42% at 92% 4%, rgba(255, 94, 0, 0.12), transparent 56%),
        radial-gradient(ellipse 48% 36% at 78% 42%, rgba(196, 0, 255, 0.08), transparent 62%),
        radial-gradient(ellipse 70% 48% at 50% 108%, rgba(0, 0, 0, 0.55), transparent 70%);
    background-attachment: fixed;
    color: var(--home-text);
    font-family: "Inter", sans-serif;
    isolation: isolate;
    overflow-x: clip;
    scroll-padding-top: 108px;
}

@media (max-width: 991.98px) {
    body.tido-home {
        background-attachment: scroll;
    }
}

body.tido-home::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.tido-home::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 46%, rgba(0, 0, 0, 0.38) 100%);
}

body.tido-home > section,
body.tido-home > .footer,
body.tido-home > .modal-infor {
    position: relative;
    z-index: 1;
}

body.tido-home > nav.navbar.navbar-custom.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
}

/* ==========================================================================
   Continuous section system
   Sections never paint a rectangle of their own: they stay transparent over
   the global ambient and only add soft radial halos that fade out.
   ========================================================================== */

body.tido-home .home-section {
    position: relative;
    background: transparent !important;
    background-image: none !important;
    scroll-margin-top: 108px;
    padding-top: 0;
    padding-bottom: var(--home-space);
    overflow: visible;
}

body.tido-home .home-section > .container {
    position: relative;
    z-index: 1;
}

body.tido-home .home-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    inset: -8% 0 auto 0;
    height: 78%;
    background: radial-gradient(ellipse 62% 60% at var(--halo-x, 18%) 34%, var(--halo-color, rgba(102, 0, 255, 0.16)), transparent 70%);
}

/* The hero and the catalog already carry their own light; they opt out of the generic halo. */
body.tido-home #home.home-section::before,
body.tido-home #services.home-section::before {
    display: none;
}

body.tido-home #casos { --halo-x: 84%; --halo-color: rgba(196, 0, 255, 0.13); }
body.tido-home #academia { --halo-x: 14%; --halo-color: rgba(102, 0, 255, 0.17); }
body.tido-home #beneficios { --halo-x: 78%; --halo-color: rgba(255, 94, 0, 0.1); }
body.tido-home #como-funciona { --halo-x: 22%; --halo-color: rgba(102, 0, 255, 0.14); }
body.tido-home #faq { --halo-x: 76%; --halo-color: rgba(196, 0, 255, 0.11); }

body.tido-home .section-intro {
    max-width: 46rem;
    margin: 0 0 var(--home-intro-gap);
}

body.tido-home .section-intro--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body.tido-home .section-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 12px;
}

body.tido-home h2.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.55rem, 1.05rem + 1.9vw, 2.4rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
    color: var(--home-text);
    margin: 0 0 14px;
    text-wrap: balance;
}

body.tido-home .section-word {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    background: var(--home-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

body.tido-home .section-sub {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1.02rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--home-muted);
    margin: 0;
}

/* Shared glass surface for every Home card. */
body.tido-home .cases-card,
body.tido-home .academy-card,
body.tido-home .benefits-card,
body.tido-home .how-card,
body.tido-home .faq-item {
    background: var(--home-surface);
    border: 1px solid var(--home-surface-border);
    box-shadow: var(--home-surface-shine), var(--home-surface-shadow);
    backdrop-filter: var(--home-surface-blur);
    -webkit-backdrop-filter: var(--home-surface-blur);
}

body.tido-home p,
body.tido-home h1,
body.tido-home h2,
body.tido-home h3,
body.tido-home h4 {
    font-family: "Inter", sans-serif;
}

body.tido-home h1,
body.tido-home h2,
body.tido-home h3,
body.tido-home h4 {
    color: var(--home-text);
}

body.tido-home .services,
body.tido-home .social-icon-area,
body.tido-home .our-features,
body.tido-home .how-it-works,
body.tido-home .we-offer,
body.tido-home .testimonial,
body.tido-home .faqs,
body.tido-home .subscriber,
body.tido-home .copyright {
    background: transparent !important;
    background-image: none !important;
    color: var(--home-muted);
}

body.tido-home .services .sigle-service,
body.tido-home .our-features .feature-content {
    background: var(--home-bg-elev) !important;
    border: 1px solid var(--home-line);
    box-shadow: none;
    color: var(--home-text);
}

body.tido-home .section-title .title,
body.tido-home .section-title p,
body.tido-home .services-title,
body.tido-home .services-content .text,
body.tido-home .our-features h1,
body.tido-home .our-features .section-title p,
body.tido-home .features-content h3,
body.tido-home .features-content p,
body.tido-home .how-it-works h1,
body.tido-home .how-it-works p,
body.tido-home .we-offer h3,
body.tido-home .we-offer p,
body.tido-home .testimonial .above-heading,
body.tido-home .testimonial .header-title,
body.tido-home .faqs .above-heading,
body.tido-home .faqs .header-desc,
body.tido-home .faqs h4,
body.tido-home .subscriber h2,
body.tido-home .subscriber .above-heading {
    color: var(--home-text) !important;
}

body.tido-home .section-title p,
body.tido-home .services-content .text,
body.tido-home .features-content p,
body.tido-home .text-muted {
    color: var(--home-muted) !important;
}

body.tido-home nav.navbar.navbar-custom {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 18px 0 0 !important;
    font-family: "Inter", sans-serif;
    transition: none;
    z-index: 1040;
}

body.tido-home nav.navbar.navbar-custom.top-nav-collapse {
    background: transparent !important;
    box-shadow: none !important;
}

body.tido-home .navbar-pill {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 10px 12px 10px 18px;
    border-radius: 999px;
    background: var(--home-glass-std);
    border: 1px solid var(--home-line);
    box-shadow: var(--home-shine), 0 18px 44px rgba(0, 0, 0, 0.38);
    backdrop-filter: var(--home-blur);
    -webkit-backdrop-filter: var(--home-blur);
    overflow: visible;
}

body.tido-home .navbar-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 36%, transparent 58%);
}

body.tido-home .navbar-pill > * {
    position: relative;
    z-index: 1;
}

body.tido-home nav.navbar.navbar-custom.top-nav-collapse .navbar-pill {
    background: rgba(14, 14, 18, 0.62);
}

body.tido-home nav.navbar.navbar-custom .navbar-brand.logo-image {
    margin-right: 0;
    padding: 4px 8px 4px 4px;
}

body.tido-home nav.navbar.navbar-custom .navbar-brand.logo-image img {
    height: 40px !important;
    max-width: 168px !important;
    width: auto !important;
    object-fit: contain;
}

body.tido-home nav.navbar.navbar-custom .navbar-toggler {
    color: var(--home-text) !important;
    border: 0;
    padding: 0.45rem 0.7rem;
}

body.tido-home nav.navbar.navbar-custom .navbar-nav {
    margin: 0;
}

body.tido-home nav.navbar.navbar-custom .navbar-nav.ml-auto {
    margin-left: 0.5rem !important;
    margin-right: auto;
}

body.tido-home nav.navbar.navbar-custom .nav-item .nav-link,
body.tido-home nav.navbar.navbar-custom .nav-item .nav-link.btn-login,
body.tido-home nav.navbar.navbar-custom .navbar-nav .nav-link {
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.01em;
    text-transform: none !important;
    color: #ffffff !important;
    opacity: 1 !important;
    padding: 0.6rem 0.78rem;
}

body.tido-home nav.navbar.navbar-custom .nav-item .btn-outline-sm {
    font-family: "Inter", sans-serif !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    border-color: var(--home-accent) !important;
    border-radius: 999px;
    padding: 0.45rem 1.05rem;
    position: relative;
}

body.tido-home .navbar-tools {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    margin-left: 12px;
    min-width: 0;
}

/* Deliberate two-row cluster: the currency control on top, the payment hint under it.
   Nothing reflows when the active currency changes. */
body.tido-home .geo-cluster {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    flex: 0 0 222px;
    width: 222px;
    max-width: 222px;
}

body.tido-home .nav-auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    white-space: nowrap;
}

body.tido-home .geo-switch {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    gap: 2px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(8, 8, 10, 0.45);
    border: 1px solid var(--home-line-soft);
    box-shadow: var(--home-shine);
}

body.tido-home .geo-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    width: 100%;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Inter", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    border-radius: 999px;
    padding: 7px 10px;
    cursor: pointer;
    transition: background-color 160ms var(--home-ease-out), border-color 160ms var(--home-ease-out), color 160ms var(--home-ease-out);
}

body.tido-home .geo-code {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
}

body.tido-home svg.geo-flag {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 11px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

body.tido-home .geo-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

body.tido-home .geo-btn.is-active {
    background: rgba(102, 0, 255, 0.34);
    border-color: rgba(102, 0, 255, 0.62);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.tido-home .geo-pay-hint {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0 6px;
    min-height: 2.05em;
    font-family: "Inter", sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--home-muted);
    line-height: 1.3;
    white-space: normal;
}

body.tido-home .geo-pay-label {
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.04em;
}

body.tido-home [data-geo-pay] {
    display: none;
}

html[data-jecring-geo="AR"] body.tido-home [data-geo-pay="AR"],
html[data-jecring-geo="CO"] body.tido-home [data-geo-pay="CO"],
html[data-jecring-geo="GLOBAL"] body.tido-home [data-geo-pay="GLOBAL"],
html:not([data-jecring-geo]) body.tido-home [data-geo-pay="GLOBAL"] {
    display: inline;
}

@media (min-width: 1200px) {
    body.tido-home .navbar-pill {
        flex-wrap: nowrap;
        overflow: visible;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-collapse {
        min-width: 0;
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-nav.ml-auto {
        flex-wrap: nowrap;
        min-width: 0;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-nav.ml-auto .nav-link {
        white-space: nowrap;
    }

    body.tido-home .navbar-tools {
        flex-shrink: 0;
    }
}

body.tido-home #home.header-top.mheader,
body.tido-home #home.mheader,
body.tido-home section#home {
    background-color: transparent !important;
    background-image: none !important;
    padding-top: 118px !important;
    padding-bottom: 72px !important;
    overflow: visible;
    min-height: 0 !important;
}

body.tido-home #home .intro_wrapper,
body.tido-home #home.mheader .intro_wrapper {
    background: transparent !important;
    padding: 0 !important;
    min-height: 0 !important;
}

body.tido-home #home .hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

body.tido-home #home .hero-copy {
    width: 100%;
    max-width: 100%;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.tido-home #home .intro_text,
body.tido-home #home.mheader .intro_wrapper .intro_text {
    text-align: left !important;
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

body.tido-home #home .hero-subtitle {
    font-family: "Inter", sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    color: var(--home-muted) !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    margin: 0 0 12px !important;
    line-height: 1.5 !important;
}

body.tido-home #home h1.hero-title,
body.tido-home #home.mheader .intro_wrapper .intro_text h1.hero-title,
body.tido-home #home.header-top .intro_wrapper .intro_text h1 {
    font-family: "Montserrat", sans-serif !important;
    font-size: 2.05rem !important;
    font-weight: 800 !important;
    line-height: 1.14 !important;
    letter-spacing: -0.038em !important;
    color: #ffffff !important;
    margin: 0 0 16px !important;
    height: auto !important;
}

body.tido-home #home .hero-gradient-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    background: var(--home-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

body.tido-home #home .hero-lead {
    font-family: "Inter", sans-serif !important;
    font-size: 1.02rem !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    color: var(--home-muted) !important;
    margin: 0 0 28px !important;
    max-width: 36rem;
    padding: 0 !important;
    width: auto !important;
}

body.tido-home #home .hero-cta {
    margin: 0 0 28px;
}

body.tido-home #home a.hero-cta-btn {
    position: relative;
    isolation: isolate;
    display: inline-block;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    background: var(--home-accent);
    border: 0;
    border-radius: 999px;
    padding: 14px 32px;
    box-shadow: 0 12px 28px rgba(102, 0, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 160ms var(--home-ease-out);
}

body.tido-home #home a.hero-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #5300d1;
    opacity: 0;
    transition: opacity 160ms var(--home-ease-out);
}

body.tido-home #home a.hero-cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 420ms var(--home-ease-out);
}

body.tido-home #home a.hero-cta-btn:active {
    transform: scale(0.97);
}

body.tido-home #home .hero-trust-box {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px 10px;
    max-width: 540px;
    margin: 0;
    padding: 18px 20px 16px;
    background: var(--home-surface);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 20px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: var(--home-blur);
    -webkit-backdrop-filter: var(--home-blur);
    overflow: hidden;
}

body.tido-home #home .hero-trust-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 42%, transparent 68%);
}

body.tido-home #home .hero-trust-box > * {
    position: relative;
    z-index: 1;
}

body.tido-home #home .hero-trust-box .trust-stat {
    flex: 1 1 0;
    min-width: 0;
}

body.tido-home #home .hero-trust-box .trust-stat-top {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
}

body.tido-home #home .hero-trust-box .stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

body.tido-home #home .hero-trust-box .trust-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #FFC94A;
    font-size: 0.6rem;
    line-height: 1;
}

body.tido-home #home .hero-trust-box .trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9AE6B4;
    font-size: 0.95rem;
    line-height: 1;
}

body.tido-home #home .hero-trust-box .trust-icon-lead {
    color: #ffffff;
    font-size: 1.2rem;
}

body.tido-home #home .hero-trust-box .stat-label {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--home-muted);
    margin-top: 7px;
}

body.tido-home #home .hero-trust-box .trust-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16) 22%, rgba(255, 255, 255, 0.16) 78%, transparent);
    align-self: stretch;
    flex: 0 0 1px;
}

/* Own trust seal: corner tab. Position is always right/bottom 0. */
body.tido-home .home-seal {
    position: fixed;
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 138px;
    max-width: 145px;
}

body.tido-home .home-seal-tab {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    margin: 0;
    padding: 7px 10px 7px 9px;
    border-radius: 14px 0 0 0;
    background: rgba(14, 14, 18, 0.55);
    background-image: var(--home-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    border-bottom: 0;
    box-shadow: var(--home-surface-shine), 0 14px 32px rgba(0, 0, 0, 0.38);
    backdrop-filter: var(--home-blur);
    -webkit-backdrop-filter: var(--home-blur);
    color: #ffffff;
    cursor: pointer;
    text-align: left;
}

body.tido-home .home-seal-tab:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 2px;
}

body.tido-home .home-seal-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.18);
    border: 1px solid rgba(72, 187, 120, 0.42);
    color: #68D391;
    font-size: 0.68rem;
}

body.tido-home .home-seal-label {
    font-family: "Inter", sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    min-width: 0;
}

body.tido-home .home-seal-band {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: auto;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(14, 14, 18, 0.55);
    background-image: var(--home-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    border-bottom: 0;
    border-radius: 14px 0 0 0;
    box-shadow: var(--home-surface-shine);
    backdrop-filter: var(--home-blur);
    -webkit-backdrop-filter: var(--home-blur);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms var(--home-ease-out), transform 180ms var(--home-ease-out);
}

body.tido-home .home-seal-band[hidden] {
    display: none;
}

body.tido-home .home-seal.is-open .home-seal-band {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    body.tido-home .home-seal {
        width: 190px;
        max-width: 195px;
    }

    body.tido-home .home-seal-tab {
        gap: 9px;
        padding: 10px 16px 10px 12px;
    }

    body.tido-home .home-seal-check {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    body.tido-home .home-seal-label {
        font-size: 0.78rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    body.tido-home .home-seal-band {
        height: 32px;
        padding: 0 16px;
        font-size: 0.72rem;
    }
}

body.tido-home #home .hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 220px;
    max-width: 220px;
    margin: 28px auto 0;
    padding: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible;
}

body.tido-home #home .hero-media::before,
body.tido-home #home .hero-media::after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(42px);
}

body.tido-home #home .hero-media::before {
    width: 180px;
    height: 180px;
    left: -28px;
    top: 18%;
    background: rgba(102, 0, 255, 0.38);
}

body.tido-home #home .hero-media::after {
    width: 150px;
    height: 150px;
    right: -22px;
    bottom: 12%;
    background: rgba(255, 94, 0, 0.22);
}

body.tido-home #home .hero-device-glow {
    display: none !important;
}

body.tido-home #home .hero-device {
    position: relative;
    z-index: 1;
    width: 220px;
    max-width: 220px;
    aspect-ratio: 9 / 16;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 32px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16),
        0 22px 36px rgba(0, 0, 0, 0.46),
        0 10px 20px rgba(102, 0, 255, 0.18);
    overflow: hidden;
}

body.tido-home #home .hero-device::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 12, 0.18) 48%, rgba(11, 11, 12, 0.62) 100%);
    border-radius: 0 0 32px 32px;
}

body.tido-home #home .hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 32px;
    background: transparent !important;
}

body.tido-home #home .hero-video-fallback {
    display: none;
    position: absolute;
    inset: 0;
    padding: 28px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

body.tido-home #home .hero-device.is-fallback .hero-video {
    display: none;
}

body.tido-home #home .hero-device.is-fallback .hero-video-fallback {
    display: flex;
}

body.tido-home #home .hero-brand-mark {
    width: auto !important;
    max-width: 148px !important;
    height: auto !important;
    margin: 0 0 18px !important;
    border-radius: 0 !important;
    object-fit: contain;
}

body.tido-home #home .hero-device-slogan {
    font-family: "Inter", sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    color: var(--home-muted) !important;
    margin: 0 !important;
    padding: 0 12px !important;
    line-height: 1.45 !important;
}

@media (hover: hover) and (pointer: fine) {
    body.tido-home #home a.hero-cta-btn:hover::before {
        opacity: 1;
    }

    body.tido-home #home a.hero-cta-btn:hover::after {
        transform: translateX(120%);
    }

    body.tido-home .geo-btn:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    body.tido-home .geo-btn.is-active:hover {
        background: rgba(102, 0, 255, 0.38);
    }

    body.tido-home nav.navbar.navbar-custom .nav-item .btn-outline-sm:hover {
        background: rgba(102, 0, 255, 0.18);
        color: #ffffff !important;
    }
}

@media (max-width: 1199.98px) {
    body.tido-home nav.navbar.navbar-custom {
        padding: 10px 0 0 !important;
    }

    body.tido-home .navbar-pill {
        border-radius: 24px;
        padding: 8px 10px 10px;
        overflow: hidden;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-brand.logo-image {
        margin-right: auto;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-collapse,
    body.tido-home nav.navbar.navbar-custom .navbar-collapse.show,
    body.tido-home nav.navbar.navbar-custom .navbar-collapse.collapsing {
        flex-basis: 100%;
        width: 100%;
        background: transparent !important;
        margin: 8px 0 0;
        padding: 8px 6px 6px;
        border: 0;
        border-radius: 0;
    }

    body.tido-home nav.navbar.navbar-custom .navbar-nav.ml-auto {
        margin-left: 0 !important;
        margin-right: 0;
        width: 100%;
    }

    body.tido-home nav.navbar.navbar-custom .nav-item .nav-link,
    body.tido-home nav.navbar.navbar-custom .nav-item .btn-outline-sm {
        color: #ffffff !important;
        display: block;
        margin-left: 0;
        margin-bottom: 0.2rem;
        padding: 0.7rem 0.4rem;
    }

    body.tido-home .navbar-tools {
        width: 100%;
        margin: 8px 0 0;
        flex-direction: column;
        align-items: stretch;
    }

    body.tido-home .geo-cluster {
        flex: 1 1 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
        max-width: 100%;
    }

    body.tido-home .geo-pay-hint {
        white-space: normal;
        flex-wrap: wrap;
        padding: 0 2px;
    }

    body.tido-home .nav-auth {
        justify-content: flex-start;
        padding-top: 4px;
    }
}

@media (max-width: 991.98px) {
    body.tido-home #home.header-top.mheader,
    body.tido-home section#home {
        padding-top: 96px !important;
        padding-bottom: 48px !important;
    }

    body.tido-home #home .hero-layout {
        flex-wrap: wrap;
    }

    body.tido-home #home .hero-copy {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    body.tido-home #home .hero-media,
    body.tido-home #home .hero-device {
        width: 220px;
        max-width: 220px;
    }

    body.tido-home #home .hero-media {
        flex: 0 0 auto;
        margin: 24px auto 0;
        justify-content: center;
    }

    body.tido-home #home h1.hero-title,
    body.tido-home #home.mheader .intro_wrapper .intro_text h1.hero-title {
        font-size: 1.9rem !important;
        line-height: 1.18 !important;
    }

    body.tido-home #home .hero-trust-box {
        flex-wrap: wrap;
    }

    body.tido-home #home .hero-trust-box .trust-divider {
        display: none;
    }

    body.tido-home #home .hero-trust-box .trust-stat {
        flex: 1 1 30%;
        min-width: 96px;
    }
}

@media (max-width: 575.98px) {
    body.tido-home #home .hero-trust-box {
        flex-direction: column;
        gap: 0;
        padding: 14px 16px;
    }

    body.tido-home #home .hero-trust-box .trust-stat {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1 1 auto;
        width: 100%;
        padding: 11px 0;
    }

    body.tido-home #home .hero-trust-box .trust-stat ~ .trust-stat {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.tido-home #home .hero-trust-box .trust-stat-top {
        flex: 0 0 auto;
    }

    body.tido-home #home .hero-trust-box .stat-label {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    body.tido-home #home.header-top.mheader,
    body.tido-home section#home {
        padding-top: 128px !important;
        padding-bottom: 64px !important;
    }

    body.tido-home #home .hero-layout {
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 48px;
    }

    body.tido-home #home .hero-copy {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        padding-top: 8px;
    }

    body.tido-home #home .hero-media,
    body.tido-home #home .hero-device {
        width: 280px;
        max-width: 280px;
    }

    body.tido-home #home .hero-media {
        flex: 0 0 280px;
        margin: 0;
        justify-content: flex-end;
        align-self: flex-start;
    }

    body.tido-home #home .hero-media::before {
        width: 220px;
        height: 220px;
        left: -36px;
    }

    body.tido-home #home .hero-media::after {
        width: 180px;
        height: 180px;
        right: -28px;
    }

    body.tido-home #home h1.hero-title,
    body.tido-home #home.mheader .intro_wrapper .intro_text h1.hero-title {
        font-size: 2.85rem !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
    }
}

@media (min-width: 1200px) {
    body.tido-home #home.header-top.mheader,
    body.tido-home section#home {
        padding-top: 136px !important;
        padding-bottom: 72px !important;
    }

    body.tido-home #home h1.hero-title,
    body.tido-home #home.mheader .intro_wrapper .intro_text h1.hero-title {
        font-size: 3.35rem !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
    }
}

@keyframes home-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.tido-home #home .hero-subtitle,
body.tido-home #home .hero-title,
body.tido-home #home .hero-lead,
body.tido-home #home .hero-cta,
body.tido-home #home .hero-trust-box,
body.tido-home #home .hero-device {
    animation: home-rise 420ms var(--home-ease-out) both;
}

body.tido-home #home .hero-title { animation-delay: 50ms; }
body.tido-home #home .hero-lead { animation-delay: 90ms; }
body.tido-home #home .hero-cta { animation-delay: 130ms; }
body.tido-home #home .hero-trust-box { animation-delay: 170ms; }
body.tido-home #home .hero-device { animation-delay: 110ms; }

body.tido-home .home-catalog {
    background: transparent !important;
    padding: var(--home-space-tight) 0 var(--home-space);
}

body.tido-home .catalog-shell {
    position: relative;
    isolation: isolate;
    background: var(--home-glass-std);
    border: 1px solid var(--home-line);
    border-radius: 28px;
    padding: 22px 16px 26px;
    box-shadow: var(--home-shine), var(--home-shadow);
    backdrop-filter: var(--home-blur);
    -webkit-backdrop-filter: var(--home-blur);
    overflow: hidden;
}

body.tido-home .catalog-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 8% 0%, rgba(102, 0, 255, 0.16), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 28%);
}

body.tido-home .catalog-shell > * {
    position: relative;
    z-index: 1;
}

body.tido-home .catalog-head {
    margin: 0 0 22px;
}

body.tido-home .catalog-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.55rem, 1.05rem + 1.9vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.16;
    color: var(--home-text);
    margin: 0 0 8px;
}

body.tido-home .catalog-lead {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--home-muted);
    margin: 0;
}

body.tido-home .catalog-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "focal"
        "tabs";
    gap: 12px;
    margin: 0 0 22px;
    width: 100%;
    align-items: stretch;
}

body.tido-home .catalog-focal {
    --focal-accent: #6600FF;
    --focal-accent-2: #C400FF;
    grid-area: focal;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 38%, rgba(18, 18, 22, 0.28) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    overflow: hidden;
    transition: opacity 180ms var(--home-ease-out), transform 180ms var(--home-ease-out);
}

body.tido-home .catalog-focal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 70% at 85% 18%, var(--focal-accent) 0%, transparent 62%);
    opacity: 0.38;
}

body.tido-home .catalog-focal.is-switching {
    opacity: 0.38;
    transform: scale(0.985);
}

body.tido-home .catalog-focal-halo {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -28px;
    top: -52px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 40%, var(--focal-accent) 0%, transparent 62%),
        radial-gradient(circle at 70% 70%, var(--focal-accent-2) 0%, transparent 58%);
    opacity: 0.55;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}

body.tido-home .catalog-focal-icon,
body.tido-home .catalog-focal-copy {
    position: relative;
    z-index: 1;
}

body.tido-home .catalog-focal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 18px rgba(0, 0, 0, 0.22);
}

body.tido-home .catalog-focal-icon .catalog-svg,
body.tido-home .catalog-focal-icon .home-tiktok-icon {
    width: 1.25rem;
    height: 1.25rem;
}

body.tido-home .catalog-focal-name {
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--home-text);
    margin: 0;
}

body.tido-home .catalog-tabs-block {
    grid-area: tabs;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
    width: 100%;
}

body.tido-home .catalog-tabs-rail {
    position: relative;
    min-width: 0;
    width: 100%;
}

body.tido-home .catalog-tabs-rail::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2.75rem;
    height: calc(100% - 8px);
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, rgba(18, 18, 22, 0) 0%, rgba(18, 18, 22, 0.78) 62%, rgba(12, 12, 16, 0.96) 100%);
    transition: opacity 180ms var(--home-ease-out);
    z-index: 1;
}

body.tido-home .catalog-tabs-rail.has-more::after {
    opacity: 1;
}

body.tido-home .catalog-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 10px;
    margin: 0;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

body.tido-home .catalog-tabs-hint {
    margin: 0;
    padding: 0 2px;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--home-muted);
    letter-spacing: 0.01em;
}

body.tido-home .catalog-focal[data-catalog-focal="instagram"] { --focal-accent: #E1306C; --focal-accent-2: #F77737; }
body.tido-home .catalog-focal[data-catalog-focal="tiktok"] { --focal-accent: #25F4EE; --focal-accent-2: #FE2C55; }
body.tido-home .catalog-focal[data-catalog-focal="youtube"] { --focal-accent: #FF0000; --focal-accent-2: #FF5E00; }
body.tido-home .catalog-focal[data-catalog-focal="facebook"] { --focal-accent: #1877F2; --focal-accent-2: #6600FF; }
body.tido-home .catalog-focal[data-catalog-focal="kick"] { --focal-accent: #53FC18; --focal-accent-2: #1DB954; }
body.tido-home .catalog-focal[data-catalog-focal="twitch"] { --focal-accent: #9146FF; --focal-accent-2: #6600FF; }
body.tido-home .catalog-focal[data-catalog-focal="telegram"] { --focal-accent: #229ED9; --focal-accent-2: #6600FF; }
body.tido-home .catalog-focal[data-catalog-focal="spotify"] { --focal-accent: #1DB954; --focal-accent-2: #53FC18; }
body.tido-home .catalog-focal[data-catalog-focal="linkedin"] { --focal-accent: #0A66C2; --focal-accent-2: #1877F2; }
body.tido-home .catalog-focal[data-catalog-focal="discord"] { --focal-accent: #5865F2; --focal-accent-2: #6600FF; }
body.tido-home .catalog-focal[data-catalog-focal="reddit"] { --focal-accent: #FF4500; --focal-accent-2: #FF5E00; }
body.tido-home .catalog-focal[data-catalog-focal="snapchat"] { --focal-accent: #FFD60A; --focal-accent-2: #FF5E00; }
body.tido-home .catalog-focal[data-catalog-focal="x"] { --focal-accent: #E7E9EA; --focal-accent-2: #6600FF; }

body.tido-home .catalog-tabs::-webkit-scrollbar {
    display: none;
}

body.tido-home .catalog-tab {
    appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--home-line-soft);
    border-radius: 999px;
    background: rgba(11, 11, 12, 0.28);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    padding: 8px 11px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: background-color 160ms var(--home-ease-out), border-color 160ms var(--home-ease-out), transform 160ms var(--home-ease-out);
}

body.tido-home .catalog-tab.is-active {
    background: rgba(102, 0, 255, 0.22);
    border-color: rgba(102, 0, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.tido-home .catalog-tab:active {
    transform: scale(0.97);
}

body.tido-home .catalog-tab-icon,
body.tido-home .catalog-focal-icon {
    color: #ffffff;
}

body.tido-home .catalog-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
}

body.tido-home .catalog-svg,
body.tido-home .home-tiktok-icon {
    width: 1rem;
    height: 1rem;
    display: block;
    fill: currentColor;
}

body.tido-home .catalog-mark {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

body.tido-home .catalog-panel {
    width: 100%;
}

body.tido-home .catalog-panel[hidden] {
    display: none !important;
}

body.tido-home .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

body.tido-home .catalog-more {
    appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 14px 0 0;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: transform 160ms var(--home-ease-out), background-color 160ms var(--home-ease-out), border-color 160ms var(--home-ease-out);
}

body.tido-home .catalog-more:active {
    transform: scale(0.97);
}

body.tido-home .catalog-more:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

body.tido-home .catalog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 16px 16px 14px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(16, 16, 20, 0.22) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--home-shine), 0 16px 34px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition: opacity 220ms var(--home-ease-out), transform 220ms var(--home-ease-out), border-color 180ms ease;
}

body.tido-home .catalog-card.is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.tido-home .catalog-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 12px;
}

body.tido-home .catalog-card-kind {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1;
}

body.tido-home .catalog-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--home-text);
    margin: 0;
    min-width: 0;
    overflow-wrap: break-word;
}

body.tido-home .catalog-card-platform {
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--home-muted);
    margin: 6px 0 0;
}

body.tido-home .catalog-card-price {
    margin-top: auto;
    padding-top: 16px;
}

body.tido-home .catalog-card-amount {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--home-text);
    white-space: nowrap;
    line-height: 1;
}

body.tido-home .catalog-card-unit {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--home-muted);
    margin-top: 6px;
}

body.tido-home .catalog-badge {
    flex: 0 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1.2;
    color: #9AE6B4;
    background: rgba(154, 230, 180, 0.1);
    border: 1px solid rgba(154, 230, 180, 0.2);
    border-radius: 999px;
    padding: 5px 8px;
    white-space: nowrap;
}

body.tido-home .catalog-card-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--home-accent);
    color: #ffffff !important;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(102, 0, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 160ms var(--home-ease-out), box-shadow 160ms var(--home-ease-out);
}

body.tido-home .catalog-card-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.2) 50%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 420ms var(--home-ease-out);
}

body.tido-home .catalog-card-cta:active {
    transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
    body.tido-home .catalog-tab:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    body.tido-home .catalog-tab.is-active:hover {
        background: rgba(102, 0, 255, 0.3);
    }

    body.tido-home .catalog-card.is-in:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.16);
    }

    body.tido-home .catalog-card-cta:hover::after {
        transform: translateX(120%);
    }

    body.tido-home .catalog-more:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.26);
    }

    body.tido-home .cases-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.16);
    }

    body.tido-home .academy-cta:hover {
        opacity: 0.92;
    }

    body.tido-home .benefits-card:hover {
        transform: translateY(-2px);
        border-color: var(--home-surface-border-hover);
    }

    body.tido-home .cases-arrow:not([disabled]):hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: var(--home-surface-border-hover);
    }

    body.tido-home .faq-trigger:hover .faq-question {
        color: #ffffff;
    }

    body.tido-home .faq-trigger:hover .faq-sign {
        background: rgba(255, 255, 255, 0.12);
    }

    body.tido-home .how-card:hover {
        border-color: var(--home-surface-border-hover);
    }
}

@media (min-width: 360px) {
    body.tido-home .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body.tido-home .catalog-card {
        padding: 12px 12px 11px;
        border-radius: 16px;
    }

    body.tido-home .catalog-card-head {
        margin: 0 0 8px;
        gap: 4px;
        flex-wrap: nowrap;
        align-items: center;
    }

    body.tido-home .catalog-card-kind {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        border-radius: 8px;
        font-size: 0.72rem;
    }

    body.tido-home .catalog-card-title {
        font-size: 0.86rem;
        line-height: 1.25;
    }

    body.tido-home .catalog-card-platform {
        font-size: 0.68rem;
        margin-top: 4px;
    }

    body.tido-home .catalog-card-price {
        padding-top: 10px;
    }

    body.tido-home .catalog-card-amount {
        font-size: 1.12rem;
    }

    body.tido-home .catalog-card-unit {
        font-size: 0.68rem;
        margin-top: 4px;
    }

    body.tido-home .catalog-badge {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        font-size: 0.5rem;
        font-weight: 600;
        letter-spacing: -0.02em;
        padding: 2px 5px;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        overflow: visible;
    }

    body.tido-home .catalog-card-cta {
        min-height: 36px;
        margin-top: 10px;
        padding: 8px 10px;
        font-size: 0.74rem;
        white-space: normal;
    }

    body.tido-home .catalog-panel:not(.is-expanded) .catalog-card:nth-child(n+5) {
        display: none;
    }

    body.tido-home .catalog-more {
        display: inline-flex;
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    body.tido-home .catalog-shell {
        padding: 28px 24px 32px;
        border-radius: 32px;
    }

    body.tido-home .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    body.tido-home .catalog-more {
        display: none !important;
    }
}

@media (min-width: 992px) {
    body.tido-home .catalog-stage {
        display: grid !important;
        grid-template-columns: 268px minmax(0, 1fr) !important;
        grid-template-areas: "focal tabs" !important;
        grid-template-rows: auto;
        align-items: stretch;
        column-gap: 22px;
        row-gap: 0;
        margin-bottom: 28px;
    }

    body.tido-home .catalog-focal {
        grid-area: focal !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        width: 100%;
        max-width: none;
        min-width: 0;
        height: 240px;
        min-height: 240px;
        padding: 24px 22px 22px;
        border-radius: 26px;
        background:
            linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(18, 18, 22, 0.22) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            0 22px 44px rgba(0, 0, 0, 0.38),
            0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    body.tido-home .catalog-focal-halo {
        width: 260px;
        height: 260px;
        right: -42px;
        top: -56px;
        opacity: 0.7;
        filter: blur(8px);
    }

    body.tido-home .catalog-focal-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        font-size: 1.85rem;
        border-radius: 20px;
        margin-bottom: 14px;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.22);
    }

    body.tido-home .catalog-focal-icon .catalog-svg,
    body.tido-home .catalog-focal-icon .home-tiktok-icon {
        width: 1.9rem;
        height: 1.9rem;
    }

    body.tido-home .catalog-focal-name {
        font-size: 1.7rem;
        line-height: 1.12;
    }

    body.tido-home .catalog-tabs-block {
        grid-area: tabs !important;
        height: 100%;
        justify-content: center;
    }

    body.tido-home .catalog-tabs-hint,
    body.tido-home .catalog-tabs-rail::after {
        display: none;
    }

    body.tido-home .catalog-tabs {
        flex-wrap: wrap;
        overflow: visible;
        padding: 4px 0 0;
        align-content: center;
        align-self: stretch;
        width: auto;
        min-width: 0;
        max-width: none;
        height: auto;
        gap: 8px;
    }

    body.tido-home .catalog-tab {
        padding: 7px 10px;
        font-size: 0.76rem;
    }
}

@media (min-width: 1200px) {
    body.tido-home .catalog-shell {
        padding: 36px 32px 40px;
        border-radius: 36px;
    }

    body.tido-home .catalog-stage {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        column-gap: 24px;
    }

    body.tido-home .catalog-focal {
        height: 248px;
        min-height: 248px;
        padding: 26px 24px 24px;
    }

    body.tido-home .catalog-focal-name {
        font-size: 1.85rem;
    }

    body.tido-home .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    body.tido-home .catalog-card-amount {
        font-size: 1.7rem;
    }
}

body.tido-home .testimonial.home-cases,
body.tido-home .home-cases {
    background: transparent !important;
    padding: 0 0 var(--home-space);
}

body.tido-home .testimonial .swiper-button-prev,
body.tido-home .testimonial .swiper-button-next,
body.tido-home .testimonial .swiper-container,
body.tido-home .testimonial .text-slider {
    display: none !important;
}

body.tido-home .cases-shell {
    --cases-gap: 12px;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

body.tido-home .cases-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: var(--cases-gap);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding: 0 0 12px;
    margin: 0;
}

body.tido-home .cases-track::-webkit-scrollbar {
    display: none;
}

body.tido-home .cases-card {
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    padding: 18px;
    border-radius: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: transform 180ms var(--home-ease-out), border-color 180ms ease;
}

body.tido-home .cases-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.tido-home .cases-avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: var(--home-bg-elev);
}

body.tido-home .cases-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

body.tido-home .cases-arrow {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    color: #ffffff;
    font-size: 0.82rem;
    background: var(--home-surface);
    border: 1px solid var(--home-surface-border);
    box-shadow: var(--home-surface-shine);
    backdrop-filter: var(--home-surface-blur);
    -webkit-backdrop-filter: var(--home-surface-blur);
    transition: background-color 160ms var(--home-ease-out), border-color 160ms var(--home-ease-out), opacity 160ms ease;
}

body.tido-home .cases-arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

body.tido-home .cases-arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

body.tido-home .cases-meta {
    min-width: 0;
    flex: 1 1 auto;
}

body.tido-home .cases-profile {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--home-text);
    margin: 0 0 5px;
    overflow-wrap: anywhere;
}

body.tido-home .cases-network {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--home-muted);
    margin: 0;
}

body.tido-home .cases-network span {
    min-width: 0;
    overflow-wrap: anywhere;
}

body.tido-home .cases-network i,
body.tido-home .cases-svg,
body.tido-home .cases-kick-mark,
body.tido-home .cases-network .home-tiktok-icon {
    flex: 0 0 auto;
    color: #ffffff;
}

body.tido-home .cases-svg,
body.tido-home .cases-network .home-tiktok-icon {
    width: 0.85rem;
    height: 0.85rem;
    display: block;
    fill: currentColor;
}

body.tido-home .cases-kick-mark {
    font-family: "Montserrat", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
}

body.tido-home .cases-quote {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.68;
    color: var(--home-muted);
    margin: 16px 0 0;
    height: auto;
    overflow: visible;
    text-overflow: clip;
}

@media (min-width: 768px) {
    body.tido-home .cases-shell {
        --cases-gap: 18px;
    }

    body.tido-home .cases-track {
        padding-bottom: 16px;
    }

    /* Two full cards plus a slice of the third, so the row reads as "there is more". */
    body.tido-home .cases-card {
        flex: 0 0 calc((100% - (2 * var(--cases-gap))) / 2.3);
        width: auto;
        min-width: calc((100% - (2 * var(--cases-gap))) / 2.3);
        max-width: none;
        padding: 22px 24px;
        scroll-snap-stop: normal;
    }

    body.tido-home .cases-nav {
        margin-top: 2px;
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    body.tido-home .cases-shell {
        --cases-gap: 20px;
    }

    body.tido-home .cases-card {
        flex-basis: calc((100% - (2 * var(--cases-gap))) / 2.35);
        min-width: calc((100% - (2 * var(--cases-gap))) / 2.35);
    }

    body.tido-home .cases-arrow {
        width: 44px;
        height: 44px;
    }
}

body.tido-home .we-offer,
body.tido-home .our-features {
    display: none !important;
}

body.tido-home .home-academy {
    background: transparent !important;
    padding: 0 0 var(--home-space);
}

body.tido-home .academy-switch {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 420px);
    margin: 0 auto 22px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(8, 8, 10, 0.42);
    border: 1px solid var(--home-line-soft);
    box-shadow: var(--home-shine);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.tido-home .academy-switch-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 999px;
    background: var(--home-accent);
    box-shadow: 0 8px 18px rgba(102, 0, 255, 0.28);
    transform: translateX(0);
    transition: transform 220ms var(--home-ease-out);
    pointer-events: none;
    z-index: 0;
}

body.tido-home .academy-switch[data-academy="reseller"] .academy-switch-thumb {
    transform: translateX(100%);
}

body.tido-home .academy-switch-btn {
    appearance: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: var(--home-muted);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease;
}

body.tido-home .academy-switch-btn.is-active {
    color: #ffffff;
}

body.tido-home .academy-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    padding: 22px 18px;
    border-radius: 22px;
}

body.tido-home .academy-copy {
    min-width: 0;
}

body.tido-home .academy-panel[hidden] {
    display: none !important;
}

body.tido-home .academy-panel {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition: opacity 200ms var(--home-ease-out), transform 200ms var(--home-ease-out);
}

body.tido-home .academy-panel.is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.tido-home .academy-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--home-text);
    margin: 0 0 14px;
}

body.tido-home .academy-gradient-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    background: var(--home-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

body.tido-home .academy-text {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--home-muted);
    margin: 0 0 22px;
}

body.tido-home .academy-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--home-accent);
    color: #ffffff !important;
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none !important;
    line-height: 1.2;
    box-shadow: 0 10px 22px rgba(102, 0, 255, 0.28);
    transition: transform 160ms var(--home-ease-out), opacity 160ms var(--home-ease-out);
}

body.tido-home .academy-cta:active {
    transform: scale(0.97);
}

body.tido-home .academy-visual {
    position: relative;
    min-height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 28%, rgba(102, 0, 255, 0.34), transparent 46%),
        radial-gradient(circle at 78% 72%, rgba(255, 94, 0, 0.22), transparent 44%),
        var(--home-bg-carbon);
    border: 1px solid var(--home-line);
}

body.tido-home .academy-card[data-academy-card="reseller"] .academy-visual {
    background:
        radial-gradient(circle at 70% 24%, rgba(102, 0, 255, 0.4), transparent 48%),
        radial-gradient(circle at 24% 78%, rgba(196, 0, 255, 0.2), transparent 42%),
        var(--home-bg-carbon);
}

body.tido-home .academy-orb,
body.tido-home .academy-ring,
body.tido-home .academy-chip {
    position: absolute;
    pointer-events: none;
}

body.tido-home .academy-orb-a {
    width: 88px;
    height: 88px;
    left: 18%;
    top: 22%;
    border-radius: 50%;
    background: rgba(102, 0, 255, 0.28);
    filter: blur(2px);
}

body.tido-home .academy-orb-b {
    width: 56px;
    height: 56px;
    right: 18%;
    bottom: 20%;
    border-radius: 50%;
    background: rgba(255, 94, 0, 0.22);
}

body.tido-home .academy-ring {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    margin: -60px 0 0 -60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 12px rgba(102, 0, 255, 0.08);
}

body.tido-home .academy-chip {
    width: 92px;
    height: 36px;
    left: 50%;
    top: 50%;
    margin: -18px 0 0 -46px;
    border-radius: 999px;
    background: rgba(16, 16, 17, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.tido-home .academy-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: transparent;
}

body.tido-home .academy-media[hidden] {
    display: none !important;
}

body.tido-home .academy-media iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 280ms var(--home-ease-out);
}

body.tido-home .academy-media.is-ready iframe {
    opacity: 1;
}

body.tido-home .academy-visual.has-player {
    aspect-ratio: 16 / 9;
}

body.tido-home .academy-sound {
    appearance: none;
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(16, 16, 17, 0.72);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.tido-home .academy-sound[hidden] {
    display: none !important;
}

body.tido-home .academy-sound:focus-visible {
    outline: 2px solid var(--home-accent);
    outline-offset: 3px;
}

body.tido-home .academy-sound i {
    font-size: 0.95rem;
    pointer-events: none;
}

body.tido-home .academy-gate {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    padding: 18px 16px;
    background: rgba(8, 8, 10, 0.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.tido-home .academy-gate[hidden] {
    display: none !important;
}

body.tido-home .academy-visual.has-gate {
    min-height: 230px;
}

body.tido-home .academy-gate-title {
    font-family: "Montserrat", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}

body.tido-home .academy-gate-text {
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

body.tido-home .academy-gate-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 4px;
}

body.tido-home .academy-gate-accept,
body.tido-home .academy-gate-prefs {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
}

body.tido-home .academy-gate-accept {
    border: 0;
    background: var(--home-accent);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(102, 0, 255, 0.28);
}

body.tido-home .academy-gate-prefs {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(16, 16, 17, 0.45);
    color: rgba(255, 255, 255, 0.92);
}

body.tido-home .academy-gate-accept:focus-visible,
body.tido-home .academy-gate-prefs:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (min-width: 768px) {
    body.tido-home .academy-gate {
        padding: 22px 20px;
    }

    body.tido-home .academy-gate-title {
        font-size: 1.05rem;
    }
}

body.tido-home .home-benefits {
    background: transparent !important;
    padding: 0 0 var(--home-space);
}

body.tido-home .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

body.tido-home .benefits-card {
    min-width: 0;
    padding: 20px 18px 18px;
    border-radius: 18px;
    transition: transform 180ms var(--home-ease-out), border-color 180ms ease;
}

body.tido-home .benefits-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0 12px;
    border-radius: 12px;
    background: rgba(102, 0, 255, 0.16);
    color: #ffffff;
    font-size: 0.95rem;
}

body.tido-home .benefits-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--home-text);
    margin: 0 0 6px;
}

body.tido-home .benefits-text {
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--home-muted);
    margin: 0;
}

@media (min-width: 768px) {
    body.tido-home .academy-card {
        grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
        gap: 28px;
        padding: 28px 28px;
        border-radius: 26px;
    }

    body.tido-home .academy-title {
        font-size: 1.7rem;
    }

    body.tido-home .academy-visual {
        min-height: 240px;
    }

    body.tido-home .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    body.tido-home .academy-title {
        font-size: 1.85rem;
    }

    body.tido-home .academy-visual {
        min-height: 260px;
    }

    body.tido-home .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }
}

body.tido-home .subscriber {
    display: none !important;
}

body.tido-home .home-how {
    background: transparent !important;
    padding: 0 0 var(--home-space);
    overflow: visible;
}

body.tido-home .how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}

body.tido-home .how-card {
    position: relative;
    min-width: 0;
    padding: 20px 18px 18px;
    border-radius: 18px;
}

/* Mobile / tablet: vertical connector between consecutive steps. */
body.tido-home .how-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 34px;
    bottom: -26px;
    width: 1px;
    height: 26px;
    background: linear-gradient(180deg, rgba(102, 0, 255, 0.6), rgba(102, 0, 255, 0.05));
    pointer-events: none;
}

body.tido-home .how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 0 12px;
    border-radius: 50%;
    background: rgba(102, 0, 255, 0.22);
    border: 1px solid rgba(102, 0, 255, 0.4);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
}

body.tido-home .how-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--home-text);
    margin: 0 0 8px;
}

body.tido-home .how-card-text {
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--home-muted) !important;
    margin: 0;
}

body.tido-home .home-faq {
    background: transparent !important;
    padding: 0 0 var(--home-space);
}

body.tido-home .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}

body.tido-home .faq-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
}

body.tido-home .faq-heading {
    display: flex;
    width: 100%;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

body.tido-home .faq-trigger {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    flex: 1 1 auto;
    margin: 0;
    padding: 17px 18px;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--home-text);
}

body.tido-home .faq-trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: -3px;
    border-radius: 16px;
}

body.tido-home .faq-question {
    flex: 1 1 auto;
    min-width: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--home-text);
}

body.tido-home .faq-sign {
    position: relative;
    flex: 0 0 22px;
    align-self: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

body.tido-home .faq-sign::before,
body.tido-home .faq-sign::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.82);
    transform: translate(-50%, -50%);
    transition: transform 200ms var(--home-ease-out), opacity 200ms var(--home-ease-out);
}

body.tido-home .faq-sign::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.tido-home .faq-item.is-open .faq-sign::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.tido-home .faq-item.is-open .faq-trigger {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.tido-home .faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms var(--home-ease-out);
}

body.tido-home .faq-panel[hidden] {
    display: none;
}

body.tido-home .faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

body.tido-home .faq-panel-inner {
    overflow: hidden;
    min-height: 0;
}

body.tido-home .faq-answer {
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #C5CDD6;
    margin: 0;
    padding: 16px 20px 20px;
}

body.tido-home .footer.home-footer,
body.tido-home .home-footer {
    position: relative;
    background: transparent !important;
    background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.5) 100%) !important;
    border-top: 1px solid var(--home-line-soft);
    padding: 48px 0 28px;
    color: var(--home-muted);
}

body.tido-home .home-footer-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

body.tido-home .home-footer-col {
    min-width: 0;
    width: 100%;
}

body.tido-home .home-footer-col + .home-footer-col {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--home-line-soft);
}

body.tido-home .home-footer-brand {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    text-decoration: none !important;
}

body.tido-home .home-footer-brand img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

body.tido-home .home-footer-privacy {
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #A0AEC0;
    margin: 0 0 16px;
}

body.tido-home .home-footer .footer-lang-selector,
body.tido-home .home-footer .ajaxChangeLanguage {
    min-width: 130px;
    max-width: 100%;
    background: rgba(16, 16, 17, 0.85);
    color: #ffffff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    padding: 8px 10px;
    margin: 0 0 16px;
}

body.tido-home .home-footer-links .home-footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.tido-home .home-footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
}

body.tido-home .home-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.tido-home .home-footer-links li {
    margin: 0 0 4px;
}

body.tido-home .home-footer-links a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 44px;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    line-height: 1.4;
    color: #A0AEC0 !important;
    text-decoration: none !important;
}

body.tido-home .home-footer-contact {
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.tido-home .home-footer-copy {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    color: #A0AEC0;
    margin: 32px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--home-line);
}

@media (hover: hover) and (pointer: fine) {
    body.tido-home .home-footer-links a:hover,
    body.tido-home .home-footer-social:hover {
        color: #ffffff !important;
    }
}

@media (min-width: 768px) {
    body.tido-home .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 34px;
        row-gap: 26px;
    }

    /* Tablet: horizontal connector inside the column gap. */
    body.tido-home .how-card:nth-child(odd):not(:last-child)::after {
        left: auto;
        right: -34px;
        bottom: auto;
        top: 36px;
        width: 34px;
        height: 1px;
        background: linear-gradient(90deg, rgba(102, 0, 255, 0.6), rgba(102, 0, 255, 0.06));
    }

    body.tido-home .how-card:nth-child(even):not(:last-child)::after {
        left: 34px;
        right: auto;
        top: auto;
        bottom: -26px;
        width: 1px;
        height: 26px;
    }

    body.tido-home .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        align-items: start;
    }

    body.tido-home .faq-trigger {
        min-height: 84px;
        padding: 18px 20px;
        align-items: center;
    }

    body.tido-home .home-footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.2fr);
        gap: 32px;
        align-items: start;
    }

    body.tido-home .home-footer-col + .home-footer-col {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    body.tido-home .home-footer-links li {
        margin: 0 0 10px;
    }

    body.tido-home .home-footer-links a {
        min-height: 0;
    }
}

@media (min-width: 1200px) {
    body.tido-home .how-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 28px;
        row-gap: 0;
    }

    /* Desktop: one continuous line of chevrons linking the four steps. */
    body.tido-home .how-card:not(:last-child)::after,
    body.tido-home .how-card:nth-child(odd):not(:last-child)::after,
    body.tido-home .how-card:nth-child(even):not(:last-child)::after {
        left: auto;
        right: -28px;
        top: 36px;
        bottom: auto;
        width: 28px;
        height: 1px;
        background: linear-gradient(90deg, rgba(102, 0, 255, 0.65), rgba(196, 0, 255, 0.18));
    }

    body.tido-home .how-card:not(:last-child)::before {
        content: "";
        position: absolute;
        right: -13px;
        top: 32px;
        width: 7px;
        height: 7px;
        border-top: 1px solid rgba(196, 0, 255, 0.65);
        border-right: 1px solid rgba(196, 0, 255, 0.65);
        transform: rotate(45deg);
        pointer-events: none;
    }

    body.tido-home .home-footer {
        padding: 56px 0 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.tido-home #home a.hero-cta-btn,
    body.tido-home #home a.hero-cta-btn::before,
    body.tido-home #home a.hero-cta-btn::after,
    body.tido-home .geo-btn,
    body.tido-home .catalog-tab,
    body.tido-home .catalog-focal,
    body.tido-home .catalog-card,
    body.tido-home .catalog-card-cta,
    body.tido-home .catalog-card-cta::after,
    body.tido-home .catalog-more,
    body.tido-home .catalog-tabs-rail::after,
    body.tido-home .cases-card,
    body.tido-home .academy-switch-thumb,
    body.tido-home .academy-switch-btn,
    body.tido-home .academy-panel,
    body.tido-home .academy-cta,
    body.tido-home .academy-gate-accept,
    body.tido-home .academy-gate-prefs,
    body.tido-home .academy-media iframe,
    body.tido-home .benefits-card,
    body.tido-home .how-card,
    body.tido-home .cases-arrow {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    body.tido-home .home-seal-band,
    body.tido-home .home-seal-tab {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    body.tido-home .faq-panel,
    body.tido-home .faq-sign::before,
    body.tido-home .faq-sign::after {
        transition: none !important;
    }

    body.tido-home .cases-track {
        scroll-behavior: auto;
    }

    body.tido-home #home .hero-subtitle,
    body.tido-home #home .hero-title,
    body.tido-home #home .hero-lead,
    body.tido-home #home .hero-cta,
    body.tido-home #home .hero-trust-box,
    body.tido-home #home .hero-device {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    body.tido-home #home a.hero-cta-btn:active,
    body.tido-home .catalog-tab:active,
    body.tido-home .catalog-card-cta:active,
    body.tido-home .catalog-more:active,
    body.tido-home .geo-btn:active,
    body.tido-home .academy-cta:active {
        transform: none !important;
    }

    body.tido-home .catalog-card,
    body.tido-home .catalog-focal,
    body.tido-home .catalog-focal.is-switching {
        opacity: 1;
        transform: none;
        filter: none;
    }

    body.tido-home .academy-panel {
        opacity: 1;
        transform: none;
    }

    body.tido-home .academy-media iframe {
        opacity: 1;
    }

    body.tido-home #home .hero-media::before,
    body.tido-home #home .hero-media::after,
    body.tido-home .catalog-focal-halo {
        filter: none;
    }
}
