:root {
    --rootera-bg: #07111f;
    --rootera-bg-soft: #101b2e;
    --rootera-panel: rgba(12, 22, 40, 0.88);
    --rootera-panel-soft: rgba(255, 255, 255, 0.05);
    --rootera-card: #ffffff;
    --rootera-card-soft: #f4f7fb;
    --rootera-border: rgba(255, 255, 255, 0.09);
    --rootera-border-soft: rgba(15, 23, 42, 0.08);
    --rootera-text: #e2e8f0;
    --rootera-text-strong: #ffffff;
    --rootera-text-dark: #0f172a;
    --rootera-text-muted: #94a3b8;
    --rootera-accent: #2563eb;
    --rootera-accent-soft: rgba(37, 99, 235, 0.16);
    --rootera-cyan: #42e8ff;
    --rootera-gold: #ffd86b;
    --rootera-shadow: 0 30px 80px rgba(2, 6, 23, 0.24);
    --rootera-radius-xl: 32px;
    --rootera-radius-lg: 24px;
    --rootera-radius-md: 18px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(66, 232, 255, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 28%),
        linear-gradient(180deg, #0c1527 0%, #050a16 100%);
    color: var(--rootera-text);
}

.container {
    max-width: 1280px;
}

.rootera-site-shell {
    min-height: 100vh;
}

.rootera-main {
    position: relative;
    z-index: 2;
}

.rootera-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    border: 1px solid rgba(66, 232, 255, 0.22);
    background: rgba(0, 126, 167, 0.18);
    color: #8eecff;
    padding: .8rem 1.35rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.rootera-glass-nav {
    position: sticky;
    top: 18px;
    z-index: 90;
    margin: 20px auto 0;
    padding: 0 16px;
}

.rootera-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px;
    border-radius: 28px;
    border: 1px solid var(--rootera-border);
    background: rgba(7, 17, 31, 0.68);
    box-shadow: var(--rootera-shadow);
    backdrop-filter: blur(18px);
}

.rootera-logo-link img {
    width: 210px;
    height: auto;
}

.rootera-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rootera-nav-links li {
    position: relative;
}

.rootera-nav-links a,
.rootera-nav-action,
.rootera-mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    padding: 12px 18px;
    color: var(--rootera-text);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.rootera-nav-links a:hover,
.rootera-nav-links a.active,
.rootera-nav-action:hover,
.rootera-mobile-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--rootera-text-strong);
}

.rootera-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rootera-btn-primary,
.rootera-btn-outline,
.rootera-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
    padding: 14px 24px;
    font-size: .98rem;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.rootera-btn-primary,
.rootera-footer-cta {
    background: linear-gradient(135deg, #2563eb 0%, #2c6cff 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.32);
}

.rootera-btn-primary:hover,
.rootera-footer-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 24px 50px rgba(37, 99, 235, 0.38);
}

.rootera-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--rootera-text-strong);
}

.rootera-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.rootera-nav-dropdown > a {
    gap: 10px;
}

.rootera-nav-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: .8;
    transition: .2s ease;
}

.rootera-nav-dropdown:hover .rootera-nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.rootera-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 280px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 18, 32, 0.96);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
    pointer-events: none;
    z-index: 40;
}

.rootera-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 12px;
}

.rootera-nav-dropdown:hover .rootera-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.rootera-nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 12px 14px;
    color: #dbe7f5;
    font-size: .8rem !important;
    font-weight: 600;
}

.rootera-nav-dropdown-menu a + a {
    margin-top: 4px;
}

.rootera-nav-dropdown-menu a:hover,
.rootera-nav-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.rootera-hero {
    padding: 60px 0 36px;
}

.rootera-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 36px;
    align-items: center;
}

.rootera-hero-title {
    margin: 22px 0 0;
    color: var(--rootera-text-strong);
    font-size: clamp(3.3rem, 4.8vw, 5.6rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -.04em;
}

.rootera-hero-text {
    max-width: 760px;
    margin-top: 26px;
    color: var(--rootera-text);
    font-size: 1.18rem;
    line-height: 1.95;
}

.rootera-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.rootera-feature-grid,
.rootera-mini-grid {
    display: grid;
    gap: 18px;
}

.rootera-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.rootera-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.rootera-dark-card,
.rootera-soft-card,
.rootera-kpi-card {
    border-radius: var(--rootera-radius-lg);
    overflow: hidden;
}

.rootera-dark-card,
.rootera-kpi-card {
    border: 1px solid var(--rootera-border);
    background: linear-gradient(180deg, rgba(27, 39, 63, 0.86), rgba(20, 30, 49, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.rootera-dark-card {
    padding: 24px 22px;
}

.rootera-soft-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.96);
    color: var(--rootera-text-dark);
    box-shadow: var(--rootera-shadow);
}

.rootera-soft-card-body {
    padding: 22px;
}

.rootera-card-title {
    color: var(--rootera-text-strong);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.rootera-card-text {
    margin-top: 16px;
    color: rgba(226, 232, 240, 0.9);
    font-size: 1rem;
    line-height: 1.9;
}

.rootera-panel-label,
.rootera-section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #8ca4cc;
}

.rootera-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.rootera-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    padding: 11px 16px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.rootera-kpi-card {
    padding: 22px;
}

.rootera-kpi-card .rootera-metric {
    color: var(--rootera-cyan);
    font-size: 2.35rem;
    font-weight: 900;
}

.rootera-kpi-card .rootera-kpi-title {
    margin-top: 12px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #94a3b8;
}

.rootera-kpi-card p {
    margin: 10px 0 0;
    color: #d3dceb;
    font-size: 1rem;
    line-height: 1.7;
}

.rootera-section {
    padding: 44px 0;
}

.rootera-section-title {
    margin: 0;
    color: var(--rootera-text-strong);
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -.03em;
}

.rootera-section-copy {
    margin: 16px auto 0;
    max-width: 760px;
    color: var(--rootera-text);
    font-size: 1.08rem;
    line-height: 1.9;
}

.rootera-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.rootera-service-card {
    border-radius: 28px;
    border: 1px solid var(--rootera-border);
    background: linear-gradient(180deg, rgba(18, 29, 50, 0.92), rgba(10, 17, 31, 0.96));
    padding: 26px;
    box-shadow: var(--rootera-shadow);
}

.rootera-service-card h4,
.rootera-service-card h3 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.rootera-service-card p {
    margin: 0;
    color: #b8c5d9;
    font-size: .98rem;
    line-height: 1.85;
}

.rootera-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #8ce8ff;
    font-weight: 700;
    text-decoration: none;
}

.rootera-site-footer {
    padding: 34px 0 42px;
}

.rootera-footer-panel {
    border-radius: 34px;
    border: 1px solid var(--rootera-border);
    background: rgba(10, 16, 29, 0.88);
    padding: 30px;
    box-shadow: var(--rootera-shadow);
}

.rootera-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 26px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rootera-footer-brand img {
    width: 200px;
    height: auto;
}

.rootera-footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--rootera-text);
    line-height: 1.85;
}

.rootera-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 26px;
}

.rootera-footer-column h5 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.rootera-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rootera-footer-list li + li {
    margin-top: 10px;
}

.rootera-footer-list a,
.rootera-footer-meta a {
    color: #b7c5d9;
    text-decoration: none;
}

.rootera-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #93a4bb;
    font-size: .95rem;
}

.rootera-auth-shell {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.22);
}

.rootera-auth-grid {
    display: grid;
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
}

.rootera-auth-side {
    background: linear-gradient(180deg, rgba(23, 34, 55, 0.98), rgba(32, 47, 73, 0.94));
    color: #fff;
    padding: 30px 28px;
}

.rootera-auth-side img {
    width: 158px;
    height: auto;
}

.rootera-auth-badge {
    margin-top: 18px;
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(255, 216, 107, 0.25);
    background: rgba(255, 216, 107, 0.09);
    color: var(--rootera-gold);
    padding: 8px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.rootera-auth-side h1 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(1.7rem, 2.15vw, 2.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.rootera-auth-side p {
    margin-top: 14px;
    color: #ced7e5;
    font-size: .92rem;
    line-height: 1.65;
}

.rootera-auth-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.rootera-auth-kpi {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
}

.rootera-auth-kpi .metric {
    color: var(--rootera-cyan);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.05;
}

.rootera-auth-kpi .label {
    margin-top: 8px;
    color: #94a3b8;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.rootera-auth-kpi p {
    margin-top: 8px;
    color: #d7dfeb;
    font-size: .78rem;
    line-height: 1.45;
}

.rootera-auth-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rootera-auth-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    color: #dce5f1;
    font-size: .84rem;
}

.rootera-auth-form {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.97));
    padding: 30px 28px;
}

.rootera-auth-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 150px;
    background: radial-gradient(circle, rgba(66, 232, 255, 0.18), transparent 58%);
    pointer-events: none;
}

.rootera-auth-form > * {
    position: relative;
    z-index: 1;
}

.rootera-auth-label {
    display: inline-flex;
    border-radius: 999px;
    background: #eef4ff;
    color: #1d4ed8;
    padding: 8px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.rootera-auth-title {
    margin-top: 14px;
    color: #172036;
    font-size: clamp(1.85rem, 2.2vw, 2.45rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.rootera-auth-copy {
    margin-top: 10px;
    color: #607693;
    font-size: .92rem;
    line-height: 1.55;
}

.rootera-auth-session {
    margin-top: 14px;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    padding: 12px 14px;
    color: #15803d;
    font-size: .9rem;
}

.rootera-auth-form .text-zinc-600,
.rootera-auth-form .text-zinc-400 {
    color: #64748b !important;
}

.rootera-auth-form .flex.flex-col.gap-6 {
    gap: .8rem !important;
}

.rootera-auth-form form {
    gap: .8rem !important;
}

.rootera-auth-form .w-full[data-flux-field],
.rootera-auth-form [data-flux-field] {
    width: 100%;
}

.rootera-auth-form input {
    min-height: 48px;
    border-radius: 14px !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 8px 20px rgba(15, 23, 42, 0.04);
}

.rootera-auth-form label,
.rootera-auth-form .text-sm {
    font-size: .84rem !important;
}

.rootera-auth-form [data-flux-label] {
    margin-bottom: .35rem !important;
}

.rootera-auth-form .relative {
    margin-top: 0 !important;
}

.rootera-auth-form .rootera-submit,
.rootera-auth-form button[type="submit"] {
    min-height: 48px;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #2563eb 0%, #2c6cff 100%) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.rootera-auth-form .rootera-submit:hover,
.rootera-auth-form button[type="submit"]:hover {
    transform: translateY(-1px);
}

.rootera-auth-helper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    padding: 12px 14px;
}

.rootera-auth-helper-note {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.6;
}

.rootera-auth-footer {
    margin-top: 16px;
    color: #64748b;
    font-size: .88rem;
    text-align: center;
}

.rootera-auth-footer a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.rootera-legacy-page .section {
    padding: 56px 0;
}

.rootera-legacy-page .card-offer,
.rootera-legacy-page .card-plan,
.rootera-legacy-page .item-number,
.rootera-legacy-page .card-we-do {
    border-radius: 26px;
    border: 1px solid var(--rootera-border-soft);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.rootera-legacy-page .color-brand-1,
.rootera-legacy-page h1,
.rootera-legacy-page h2,
.rootera-legacy-page h3,
.rootera-legacy-page h4,
.rootera-legacy-page h5 {
    color: #12203a !important;
}

.rootera-legacy-page .font-md,
.rootera-legacy-page .color-grey-500,
.rootera-legacy-page .color-gray-500,
.rootera-legacy-page p {
    color: #5c708d !important;
}

@media (max-width: 1199px) {
    .rootera-hero-grid,
    .rootera-auth-grid,
    .rootera-footer-top,
    .rootera-footer-grid {
        grid-template-columns: 1fr;
    }

    .rootera-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .rootera-nav-links,
    .rootera-nav-actions {
        display: none;
    }

    .rootera-hero {
        padding-top: 36px;
    }

    .rootera-feature-grid,
    .rootera-service-grid,
    .rootera-auth-kpis {
        grid-template-columns: 1fr;
    }

    .rootera-auth-side,
    .rootera-auth-form {
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .rootera-hero-title,
    .rootera-auth-title {
        font-size: 2.1rem;
    }

    .rootera-logo-link img {
        width: 172px;
    }

    .rootera-nav-inner {
        padding: 16px 18px;
    }

    .rootera-feature-grid,
    .rootera-mini-grid {
        grid-template-columns: 1fr;
    }
}
