:root {
    --ghvac-bg: #030817;
    --ghvac-bg-soft: #071329;
    --ghvac-surface: rgba(10, 20, 42, 0.88);
    --ghvac-surface-strong: rgba(8, 16, 33, 0.96);
    --ghvac-card: rgba(13, 24, 49, 0.88);
    --ghvac-card-alt: rgba(18, 34, 68, 0.9);
    --ghvac-line: rgba(157, 185, 255, 0.18);
    --ghvac-line-strong: rgba(157, 185, 255, 0.28);
    --ghvac-white: #f7faff;
    --ghvac-text: rgba(239, 245, 255, 0.88);
    --ghvac-muted: rgba(185, 199, 230, 0.72);
    --ghvac-primary: #1f6fff;
    --ghvac-primary-dark: #0e4fca;
    --ghvac-accent: #8d35ff;
    --ghvac-accent-alt: #ff8a00;
    --ghvac-success: #2fd67b;
    --ghvac-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    --ghvac-radius: 1.5rem;
    --ghvac-radius-lg: 2rem;
    --ghvac-sticky-offset: 10.5rem;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background-color: #030817;
    overscroll-behavior-x: none;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--ghvac-text);
    line-height: 1.6;
    background-color: #030817;
    background:
        radial-gradient(circle at 18% 12%, rgba(31, 111, 255, 0.16), transparent 22%),
        radial-gradient(circle at 82% 24%, rgba(141, 53, 255, 0.16), transparent 20%),
        radial-gradient(circle at 50% 72%, rgba(255, 138, 0, 0.1), transparent 24%),
        linear-gradient(180deg, #02050f 0%, #071325 42%, #030816 100%);
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
}

body.is-menu-open {
    overflow: hidden;
}

.site-header,
.site-topbar,
.hero-section,
.showcase-section {
    overflow-x: clip;
}

#contenido-principal {
    position: relative;
    isolation: isolate;
    max-width: 100%;
    overflow-x: clip;
}

#contenido-principal > section,
#contenido-principal > .breadcrumbs-wrapper {
    scroll-margin-top: var(--ghvac-sticky-offset);
}

#contenido-principal::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 38rem;
    background:
        radial-gradient(circle at 18% 22%, rgba(31, 111, 255, 0.16), transparent 24%),
        radial-gradient(circle at 78% 30%, rgba(141, 53, 255, 0.16), transparent 22%);
    pointer-events: none;
    z-index: -1;
}

img,
svg {
    max-width: 100%;
}

a {
    color: #90beff;
    text-decoration: none;
}

a:hover {
    color: var(--ghvac-white);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    background: #fff;
    color: #04101f;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}

.site-header {
    padding-top: 0;
    z-index: 1040;
    background: linear-gradient(180deg, rgba(3, 8, 23, 0.98), rgba(3, 8, 23, 0.94));
    border-bottom: 1px solid rgba(157, 185, 255, 0.08);
}

.site-topbar {
    position: relative;
    background:
        linear-gradient(90deg, rgba(18, 101, 243, 0.96), rgba(31, 124, 255, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: max-height 0.3s ease, opacity 0.22s ease, transform 0.3s ease, border-color 0.22s ease;
    max-height: 3.4rem;
    opacity: 1;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: max-height, opacity, transform;
}

.site-topbar::before,
.site-topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-topbar::before {
    background:
        linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 24%, transparent 48%),
        radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 82% 50%, rgba(255, 255, 255, 0.08), transparent 24%);
    opacity: 0.55;
    transform: translateX(-18%);
    animation: topbarShimmer 12s linear infinite;
}

.site-topbar::after {
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    opacity: 0.85;
}

.site-topbar-inner {
    min-height: 3.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.site-topbar-inner a {
    color: #fff;
}

.site-topbar-inner span,
.site-topbar-inner a,
.site-topbar-copy {
    max-width: 100%;
}

.site-topbar-copy {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.site-topbar-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.4rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-topbar-message {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: rgba(255, 255, 255, 0.98);
    text-wrap: balance;
}

.site-topbar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.48rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 22px rgba(5, 25, 66, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 auto;
}

.site-topbar-link span {
    position: relative;
    padding-right: 1rem;
}

.site-topbar-link span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.site-topbar-link:hover,
.site-topbar-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 14px 28px rgba(5, 25, 66, 0.22);
    transform: translateY(-1px);
}

.site-topbar-link:hover span::after,
.site-topbar-link:focus span::after {
    transform: translate(2px, -50%) rotate(45deg);
}

.site-header .navbar {
    padding: 0.85rem 0 0.9rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

@keyframes topbarShimmer {
    0% {
        transform: translateX(-18%);
    }
    100% {
        transform: translateX(18%);
    }
}

.site-nav-shell {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(173, 196, 255, 0.18);
    background:
        linear-gradient(90deg, rgba(17, 40, 78, 0.42), rgba(10, 18, 38, 0.44)),
        rgba(10, 18, 38, 0.44);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
}

.navbar-brand,
.site-brand {
    flex: 0 0 auto;
    margin-right: 0;
    line-height: 1.05;
    min-width: 0;
}

.brand-mark,
.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ghvac-white);
}

.brand-mark span:last-child,
.footer-brand-mark span:last-child {
    min-width: 0;
}

.brand-mark small,
.navbar-brand small,
.site-brand small {
    color: rgba(236, 242, 255, 0.62);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 0.28rem;
}

.brand-mark-icon {
    position: relative;
    width: 1.18rem;
    height: 1.18rem;
    border-radius: 0.32rem;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: linear-gradient(180deg, rgba(31, 111, 255, 0.18), rgba(141, 53, 255, 0.08));
    box-shadow: 0 0 0 4px rgba(31, 111, 255, 0.14);
}

.brand-mark-icon::before,
.brand-mark-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.brand-mark-icon::before {
    top: 0.18rem;
    width: 0.58rem;
    height: 0.12rem;
}

.brand-mark-icon::after {
    bottom: 0.18rem;
    width: 0.34rem;
    height: 0.12rem;
}

.site-nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: auto;
    min-width: 0;
}

.site-nav-mobile-cta {
    display: none;
}

.navbar-toggler {
    padding: 0.58rem 0.72rem;
    border-radius: 0.9rem;
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-collapse {
    min-width: 0;
}

.site-nav-collapse {
    justify-content: flex-end;
    flex: 1 1 auto;
}

.site-nav-list {
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.nav-link {
    white-space: nowrap;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 0.78rem 0.92rem;
    color: rgba(241, 245, 255, 0.82);
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-nav-list .nav-item,
.site-nav-list .dropdown {
    min-width: 0;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-nav-more .dropdown-toggle::after {
    margin-left: 0.45rem;
    vertical-align: 0.12em;
}

.site-nav-dropdown {
    min-width: 14rem;
    padding: 0.55rem;
    border: 1px solid rgba(157, 185, 255, 0.16);
    border-radius: 1rem;
    background: rgba(8, 16, 33, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.site-nav-more {
    position: relative;
}

.site-nav-dropdown .dropdown-item {
    border-radius: 0.75rem;
    font-weight: 500;
    padding: 0.7rem 0.85rem;
    color: var(--ghvac-text);
}

.site-nav-dropdown .dropdown-item:hover,
.site-nav-dropdown .dropdown-item:focus,
.site-nav-dropdown .dropdown-item.active {
    background: rgba(31, 111, 255, 0.12);
    color: var(--ghvac-white);
}

.nav-cta-wrap {
    flex: 0 0 auto;
    margin-left: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta-wrap .btn,
.site-nav-mobile-actions .btn {
    border-radius: 999px;
    font-size: 0.94rem;
    padding: 0.78rem 1.4rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0.4rem 0 4.6rem;
    color: var(--ghvac-white);
    background: transparent;
}

.hero-tech-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.92;
}

.hero-tech-background::before,
.hero-tech-background::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-tech-background::before {
    background:
        radial-gradient(circle at 30% 20%, rgba(31, 111, 255, 0.18), transparent 20%),
        radial-gradient(circle at 75% 38%, rgba(141, 53, 255, 0.18), transparent 18%),
        url("../img/tech-network.svg") center top/cover no-repeat;
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: heroTechDrift 18s ease-in-out infinite alternate;
}

.hero-tech-background::after {
    background:
        linear-gradient(180deg, rgba(2, 5, 15, 0.26), rgba(2, 5, 15, 0.06) 28%, rgba(2, 5, 15, 0.48) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 50%);
    animation: heroTechGlow 10s ease-in-out infinite alternate;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto auto -12rem 8%;
    width: 26rem;
    height: 26rem;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.16), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.hero-section .container,
.inner-hero .container,
.section-space .container {
    position: relative;
    z-index: 1;
}

.hero-section .row,
.section-space .row {
    --bs-gutter-x: 1.8rem;
    --bs-gutter-y: 1.8rem;
}

.hero-section h1,
.inner-hero h1,
.login-panel h1 {
    font-size: clamp(2.4rem, 5.35vw, 5rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.hero-section h1 {
    max-width: 8.5ch;
    font-size: clamp(2.4rem, 4.45vw, 4.35rem);
}

.inner-hero h1,
.login-panel h1 {
    max-width: 13ch;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.hero-lead,
.inner-hero p {
    font-size: 1.1rem;
    max-width: 38rem;
    line-height: 1.78;
    color: var(--ghvac-muted);
}

.home-hero-section .hero-copy-column {
    padding-right: 1.2rem;
}

.home-hero-section .hero-panel-column {
    padding-left: 0.35rem;
}

@media (min-width: 1200px) {
    .home-hero-section .hero-copy-column,
    .home-hero-section .hero-panel-column {
        align-self: flex-start;
    }

    .home-hero-section h1 {
        max-width: 12.6ch;
    }
}

.hero-copy-column,
.hero-panel-column {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.58rem 1rem;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #dce7ff;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(31, 111, 255, 0.06);
}

.hero-actions,
.cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.hero-actions .btn {
    min-width: 12.5rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.55rem;
    color: rgba(232, 239, 255, 0.85);
    font-size: 0.95rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.proof-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ghvac-success), #78f0af);
    box-shadow: 0 0 0 6px rgba(47, 214, 123, 0.12);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.9rem;
}

.hero-metrics div,
.hero-card,
.feature-card,
.module-card,
.content-card,
.sidebar-card,
.form-card,
.audience-card {
    border-radius: var(--ghvac-radius);
}

.hero-metrics div {
    padding: 1.1rem 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    min-width: 0;
}

.hero-metrics strong {
    display: block;
    font-size: 1rem;
    color: var(--ghvac-white);
    margin-bottom: 0.2rem;
}

.hero-metrics span {
    color: rgba(231, 238, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-panel {
    max-width: 35rem;
    margin-left: auto;
    padding: 1.35rem;
    border-radius: calc(var(--ghvac-radius) + 0.35rem);
    background: linear-gradient(180deg, rgba(13, 24, 49, 0.86), rgba(6, 14, 30, 0.96));
    border: 1px solid rgba(169, 192, 255, 0.14);
    box-shadow: var(--ghvac-shadow);
}

.hero-panel,
.hero-panel-screen,
.hero-panel-grid,
.hero-card {
    min-width: 0;
}

.hero-panel-badge {
    display: inline-block;
    padding: 0.48rem 0.82rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--ghvac-white);
    margin-bottom: 1rem;
}

.hero-panel-screen {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-screen-stacked {
    display: grid;
    gap: 0.9rem;
}

.hero-phone-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
}

.hero-panel-toolbar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.hero-panel-toolbar span {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-panel-stat {
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-stat-primary {
    background: linear-gradient(135deg, rgba(31, 111, 255, 0.22), rgba(31, 111, 255, 0.08));
}

.hero-panel-stat-wide {
    grid-column: 1 / -1;
}

.hero-panel-stat small {
    display: block;
    font-size: 0.78rem;
    color: rgba(224, 232, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
}

.hero-panel-stat strong {
    display: block;
    color: var(--ghvac-white);
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
}

.hero-panel-stat span {
    display: block;
    color: rgba(224, 232, 255, 0.74);
    font-size: 0.86rem;
    line-height: 1.45;
}

.hero-panel-list-card,
.hero-mini-card,
.mini-insight-card,
.pricing-card {
    border-radius: 1.2rem;
}

.hero-panel-list-card,
.hero-mini-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-list-card strong,
.hero-mini-card strong,
.mini-insight-card strong {
    display: block;
    color: var(--ghvac-white);
}

.hero-panel-list-card strong {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.hero-panel-list-card span,
.hero-mini-card span,
.mini-insight-card p {
    display: block;
    color: rgba(224, 232, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-panel-list-card small,
.hero-mini-card small {
    display: block;
    font-size: 0.76rem;
    color: rgba(224, 232, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-mini-card-wide {
    grid-column: 1 / -1;
}

.hero-mobile-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
}

.hero-mobile-device {
    position: relative;
    width: min(100%, 22rem);
    height: 43rem;
    padding: 0.78rem;
    border-radius: 3rem;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.68), transparent 22%),
        radial-gradient(circle at 82% 88%, rgba(105, 133, 198, 0.28), transparent 26%),
        linear-gradient(160deg, #eef3ff 0%, #cfd8f0 9%, #8b9bc4 18%, #394a75 46%, #18233e 74%, #0a1120 100%);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow:
        0 34px 68px rgba(0, 0, 0, 0.34),
        0 14px 32px rgba(49, 77, 137, 0.24),
        inset 0 2px 3px rgba(255, 255, 255, 0.75),
        inset 0 -12px 18px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    isolation: isolate;
}

.hero-mobile-device::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.18), transparent 18%);
    pointer-events: none;
    z-index: 2;
}

.hero-mobile-device::after {
    content: "";
    position: absolute;
    inset: 0.24rem;
    border-radius: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.44);
    pointer-events: none;
    z-index: 1;
}

.hero-mobile-side-buttons,
.hero-mobile-volume,
.hero-mobile-power {
    position: absolute;
    background: linear-gradient(180deg, rgba(176, 196, 241, 0.36), rgba(55, 72, 107, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    z-index: 0;
}

.hero-mobile-side-buttons {
    top: 7.1rem;
    left: -0.18rem;
    width: 0.2rem;
    height: 4.4rem;
    border-radius: 0.2rem 0 0 0.2rem;
}

.hero-mobile-volume {
    top: 12.2rem;
    left: -0.16rem;
    width: 0.18rem;
    height: 2.7rem;
    border-radius: 0.18rem 0 0 0.18rem;
}

.hero-mobile-power {
    top: 10rem;
    right: -0.16rem;
    width: 0.18rem;
    height: 4rem;
    border-radius: 0 0.18rem 0.18rem 0;
}

.hero-mobile-screen {
    position: relative;
    height: 100%;
    padding: 1.1rem 0.82rem 0.82rem;
    border-radius: 2.35rem;
    background:
        radial-gradient(circle at top, rgba(63, 143, 255, 0.22), transparent 28%),
        linear-gradient(180deg, #18284a 0%, #101d38 36%, #0a1325 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-mobile-gloss {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 16%, transparent 64%, rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.12), transparent 18%);
    pointer-events: none;
    z-index: 1;
}

.hero-mobile-island {
    position: absolute;
    top: 0.72rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6.4rem;
    height: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(4, 9, 20, 0.98), rgba(15, 18, 28, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.hero-mobile-island::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.05rem;
    transform: translateY(-50%);
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: rgba(22, 32, 60, 0.88);
    box-shadow: 2rem 0 0 rgba(14, 21, 39, 0.96);
}

.hero-mobile-scroll {
    position: relative;
    z-index: 0;
    display: grid;
    gap: 0.72rem;
    padding-top: 2rem;
    padding-bottom: 0.6rem;
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .hero-mobile-device:hover .hero-mobile-scroll {
        transform: translateY(-8.2rem);
    }
}

@media (hover: none) {
    .hero-mobile-scroll {
        animation: heroPhoneAutoScroll 10s ease-in-out infinite alternate;
    }
}

.hero-mobile-header {
    display: grid;
    gap: 0.24rem;
}

.hero-mobile-app {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 1.55rem;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(236, 243, 255, 0.86);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-mobile-header strong {
    font-size: 1.12rem;
    line-height: 1.15;
    color: var(--ghvac-white);
}

.hero-mobile-header p {
    margin-bottom: 0;
    color: rgba(225, 233, 248, 0.74);
    font-size: 0.74rem;
    line-height: 1.42;
}

.hero-mobile-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.hero-mobile-status span {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(231, 239, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 700;
}

.hero-mobile-card {
    padding: 0.82rem;
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 0.18rem;
}

.hero-mobile-card-primary {
    background: linear-gradient(135deg, rgba(31, 111, 255, 0.3), rgba(31, 111, 255, 0.1));
}

.hero-mobile-card-installer {
    background:
        linear-gradient(135deg, rgba(255, 186, 78, 0.22), rgba(255, 186, 78, 0.08)),
        rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 201, 117, 0.22);
}

.hero-mobile-card-accent {
    background:
        linear-gradient(135deg, rgba(85, 219, 159, 0.22), rgba(85, 219, 159, 0.08)),
        rgba(255, 255, 255, 0.04);
    border-color: rgba(103, 223, 170, 0.2);
}

.hero-mobile-card small {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(224, 232, 255, 0.66);
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-mobile-card strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--ghvac-white);
    font-size: 0.9rem;
    line-height: 1.28;
}

.hero-mobile-card span {
    display: block;
    color: rgba(224, 232, 255, 0.74);
    font-size: 0.68rem;
    line-height: 1.4;
}

.hero-mobile-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    margin-top: auto;
    padding-top: 0.45rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(9, 18, 36, 0), rgba(9, 18, 36, 0.94) 38%);
}

.hero-mobile-dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.hero-mobile-dot.is-active {
    background: #7db1ff;
    box-shadow: 0 0 0 5px rgba(125, 177, 255, 0.12);
}

.hero-mobile-home {
    width: 2.5rem;
    height: 0.26rem;
    margin-left: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

@keyframes heroPhoneAutoScroll {
    0%,
    18% {
        transform: translateY(0);
    }
    48%,
    68% {
        transform: translateY(-6.8rem);
    }
    100% {
        transform: translateY(-8.2rem);
    }
}

.hero-card {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    color: #132744;
    margin-bottom: 0.85rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.hero-card.muted {
    background: linear-gradient(180deg, #edf4ff, #dfeeff);
}

.hero-card span {
    display: block;
    color: var(--ghvac-primary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hero-card strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.section-space {
    padding: 6rem 0;
}

.surface-section {
    background: linear-gradient(180deg, rgba(7, 17, 37, 0.58), rgba(5, 12, 28, 0.82));
    border-top: 1px solid rgba(157, 185, 255, 0.08);
    border-bottom: 1px solid rgba(157, 185, 255, 0.08);
}

.section-heading {
    max-width: 50rem;
    margin-bottom: 2.5rem;
}

.section-heading-wide {
    max-width: 58rem;
}

.section-heading h2,
.content-card h2,
.sidebar-card h2,
.feature-card h2,
.cta-strip h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--ghvac-white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

.section-heading p {
    max-width: 44rem;
    margin-bottom: 0;
    color: var(--ghvac-muted);
}

.feature-card,
.content-card,
.sidebar-card,
.form-card,
.audience-card,
.module-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    padding: 1.7rem;
    background:
        linear-gradient(180deg, rgba(16, 29, 59, 0.92), rgba(8, 18, 38, 0.94));
    border: 1px solid var(--ghvac-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    color: var(--ghvac-text);
}

.feature-card h3,
.module-card h3,
.content-card h3 {
    font-size: 1.15rem;
    color: var(--ghvac-white);
    margin-bottom: 0;
    line-height: 1.28;
}

.feature-card-compact h3 {
    max-width: 16ch;
}

.feature-card p,
.module-card p,
.content-card p,
.sidebar-card p,
.form-card p,
.audience-card p,
.footer-text,
.footer-copy,
.login-note,
.content-list,
.link-list {
    color: var(--ghvac-muted);
    margin-bottom: 0;
    line-height: 1.75;
}

.module-card {
    position: relative;
    overflow: hidden;
    display: block;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 100%;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 155, 255, 0.34);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.module-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ghvac-accent-alt), var(--ghvac-primary), var(--ghvac-accent));
}

.module-card::after {
    content: "";
    position: absolute;
    width: 10rem;
    height: 10rem;
    right: -3rem;
    top: -3rem;
    background: radial-gradient(circle, rgba(31, 111, 255, 0.18), transparent 65%);
    pointer-events: none;
}

.home-modules-section {
    background:
        linear-gradient(180deg, rgba(10, 18, 38, 0.2), rgba(8, 16, 33, 0.06));
}

.module-grid-row > div {
    display: flex;
}

.audience-card {
    background: linear-gradient(180deg, rgba(12, 28, 56, 0.9), rgba(8, 18, 38, 0.96));
}

.audience-card h2 {
    max-width: 18ch;
}

.audience-card.dark {
    background:
        radial-gradient(circle at 80% 18%, rgba(141, 53, 255, 0.2), transparent 22%),
        linear-gradient(180deg, rgba(20, 18, 60, 0.96), rgba(8, 14, 32, 0.98));
}

.audience-card.dark p {
    color: rgba(240, 244, 255, 0.76);
}

.home-differentiation-section .audience-card {
    padding: 1.9rem;
}

.checklist-list {
    margin-top: 0.25rem;
}

.checklist-list li::marker,
.pricing-feature-list li::marker {
    color: #84bcff;
}

.audience-mini-grid {
    margin-top: 0.2rem;
}

.mini-insight-card {
    height: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-insight-card strong {
    margin-bottom: 0.35rem;
}

.pricing-section {
    scroll-margin-top: calc(var(--ghvac-sticky-offset) + 1.75rem);
    position: relative;
    overflow: hidden;
    padding: clamp(6.25rem, 8vw, 7.2rem) 0 clamp(5.2rem, 7vw, 6.3rem);
    background:
        radial-gradient(circle at 18% 18%, rgba(31, 111, 255, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(6, 14, 30, 0.3), rgba(6, 14, 30, 0.08));
}

.pricing-section::before,
.pricing-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
    opacity: 0.7;
}

.pricing-section::before {
    width: 20rem;
    height: 20rem;
    top: 4rem;
    left: -6rem;
    background: radial-gradient(circle, rgba(31, 111, 255, 0.1), transparent 70%);
}

.pricing-section::after {
    width: 18rem;
    height: 18rem;
    right: -5rem;
    bottom: 3rem;
    background: radial-gradient(circle, rgba(141, 53, 255, 0.08), transparent 72%);
}

.pricing-heading {
    max-width: 68rem;
    margin-bottom: 2.9rem;
    position: relative;
    z-index: 1;
}

.pricing-heading h2 {
    max-width: 28ch;
}

.pricing-heading p {
    max-width: 48rem;
}

.pricing-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.25rem;
}

.pricing-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.pricing-summary span {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 245, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(31, 111, 255, 0.04);
    backdrop-filter: blur(10px);
}

.pricing-summary span::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    margin-right: 0.55rem;
    background: linear-gradient(180deg, #ffd36e, #4c8dff);
    box-shadow: 0 0 10px rgba(31, 111, 255, 0.34);
}

.pricing-cards-row {
    --bs-gutter-x: 1.45rem;
    --bs-gutter-y: 1.45rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.pricing-plan-column {
    display: flex;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    min-height: 100%;
    width: 100%;
    padding: 1px;
    background:
        linear-gradient(180deg, rgba(86, 114, 172, 0.3), rgba(45, 67, 107, 0.16));
    border: 1px solid rgba(121, 144, 192, 0.12);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border-radius: calc(var(--ghvac-radius) + 0.2rem);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    backdrop-filter: blur(16px);
    isolation: isolate;
}

.pricing-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
    padding: 1.7rem 1.55rem 1.5rem;
    border-radius: calc(var(--ghvac-radius) + 0.08rem);
    background:
        linear-gradient(180deg, rgba(16, 29, 59, 0.94), rgba(8, 18, 38, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -18px 28px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(255, 138, 0, 0.96), rgba(31, 111, 255, 0.96), rgba(141, 53, 255, 0.96));
    opacity: 0.88;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -34% auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 111, 255, 0.2), transparent 68%);
    pointer-events: none;
    filter: blur(4px);
}

.pricing-card-inner > * {
    position: relative;
}

.pricing-card-inner::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.pricing-card .pricing-card-top::before {
    content: "";
    position: absolute;
    inset: -0.9rem -0.9rem auto;
    height: 4.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 78%);
    pointer-events: none;
    opacity: 0.65;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 155, 255, 0.3);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.pricing-card-featured {
    border-color: rgba(88, 151, 255, 0.42);
    background:
        linear-gradient(180deg, rgba(115, 160, 255, 0.42), rgba(63, 99, 166, 0.18));
    transform: translateY(-0.85rem) scale(1.035);
    box-shadow:
        0 42px 92px rgba(12, 36, 80, 0.38),
        0 0 0 1px rgba(88, 151, 255, 0.16),
        0 0 42px rgba(31, 111, 255, 0.2);
}

.pricing-card-featured::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(88, 151, 255, 0.16);
    pointer-events: none;
}

.pricing-card-featured .pricing-card-inner {
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 201, 102, 0.14), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(31, 111, 255, 0.18), transparent 26%),
        linear-gradient(160deg, rgba(24, 43, 84, 0.98), rgba(10, 21, 44, 0.98) 58%, rgba(8, 18, 38, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -24px 36px rgba(2, 7, 20, 0.12);
}

.pricing-card-featured::before {
    width: 5px;
    background: linear-gradient(180deg, #ffd36e, rgba(31, 111, 255, 0.98), rgba(141, 53, 255, 0.98));
    box-shadow: 0 0 24px rgba(31, 111, 255, 0.28);
}

.pricing-card-featured .pricing-card-top::before {
    height: 5.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 78%);
    opacity: 0.9;
}

.pricing-card-featured .pricing-card-top {
    padding-top: 3rem;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd36e, #ffb14a 52%, #ff8a00);
    color: #09111f;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    border: 1px solid rgba(255, 237, 196, 0.5);
    box-shadow:
        0 16px 30px rgba(255, 138, 0, 0.24),
        0 0 0 1px rgba(255, 183, 77, 0.18);
}

.pricing-badge::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: rgba(9, 17, 31, 0.9);
    box-shadow: 0 0 0 4px rgba(9, 17, 31, 0.08);
}

.pricing-card-top {
    display: grid;
    gap: 0.95rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 18rem;
    align-content: start;
}

.pricing-card-header {
    display: grid;
    gap: 1.1rem;
    align-items: start;
}

.pricing-title-group {
    display: grid;
    gap: 0.5rem;
}

.pricing-plan-meta {
    display: grid;
    gap: 0.7rem;
}

.pricing-plan-type {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    width: fit-content;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 245, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pricing-choice-copy {
    margin-bottom: 0;
    padding: 0.72rem 0.9rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, rgba(255, 211, 110, 0.16), rgba(255, 177, 74, 0.08));
    border: 1px solid rgba(255, 177, 74, 0.2);
    color: rgba(255, 234, 194, 0.96);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card-header h3 {
    font-size: 2rem;
    color: var(--ghvac-white);
    margin-bottom: 0;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-card-header p {
    color: var(--ghvac-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

.pricing-ideal-for {
    margin-bottom: 0;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(235, 242, 255, 0.78);
    line-height: 1.65;
    backdrop-filter: blur(8px);
}

.pricing-price-block {
    text-align: left;
    padding-top: 0.2rem;
    display: grid;
    gap: 0.2rem;
}

.pricing-price-line {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pricing-price-block strong {
    display: block;
    font-size: 2.12rem;
    line-height: 0.95;
    color: var(--ghvac-white);
    letter-spacing: -0.04em;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-price-period {
    display: inline-flex;
    align-items: center;
    color: rgba(229, 237, 255, 0.82);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    padding-bottom: 0.22rem;
}

.pricing-price-reference {
    display: block;
    margin-top: 0.25rem;
    color: rgba(213, 224, 248, 0.72);
    font-size: 0.79rem;
    line-height: 1.45;
    font-weight: 500;
    max-width: 20rem;
}

.pricing-card-featured .pricing-price-block strong {
    text-shadow:
        0 14px 28px rgba(0, 0, 0, 0.24),
        0 0 18px rgba(31, 111, 255, 0.12);
}

.pricing-card-featured .pricing-price-period {
    color: rgba(240, 246, 255, 0.9);
}

.pricing-card-featured .pricing-price-reference {
    color: rgba(221, 233, 255, 0.8);
}

.pricing-feature-list {
    padding-left: 1.1rem;
    margin-bottom: 0;
    color: var(--ghvac-muted);
    display: grid;
    gap: 0.72rem;
    line-height: 1.58;
    margin-top: 0.15rem;
    padding-top: 0.15rem;
    padding-bottom: 0.35rem;
    flex: 1 1 auto;
}

.pricing-feature-list li {
    text-wrap: balance;
}

.pricing-actions {
    margin-top: auto;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-actions .btn {
    width: 100%;
    min-height: 3.4rem;
    font-size: 1rem;
}

.pricing-card .btn-outline-light {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.22);
}

.pricing-card .btn-outline-light:hover,
.pricing-card .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.pricing-card-featured .btn-primary {
    box-shadow:
        0 24px 48px rgba(31, 111, 255, 0.34),
        0 0 20px rgba(31, 111, 255, 0.12);
}

.pricing-card-featured .pricing-price-block strong,
.pricing-card-featured .pricing-card-header h3 {
    color: #ffffff;
}

.pricing-card-featured .pricing-plan-type {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-featured .pricing-ideal-for {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    border-color: rgba(120, 163, 255, 0.16);
}

.addons-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.75rem;
    align-items: center;
}

.addons-heading {
    margin-bottom: 0;
}

.addon-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-content: flex-start;
}

.addon-pill {
    display: inline-flex;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(157, 185, 255, 0.18);
    color: var(--ghvac-white);
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.home-final-cta {
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: calc(var(--ghvac-radius-lg) + 0.1rem);
    background:
        radial-gradient(circle at 14% 36%, rgba(31, 111, 255, 0.2), transparent 24%),
        radial-gradient(circle at 88% 34%, rgba(255, 138, 0, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(10, 23, 47, 0.98), rgba(19, 41, 82, 0.98));
    color: var(--ghvac-white);
    border: 1px solid rgba(157, 185, 255, 0.18);
    box-shadow: var(--ghvac-shadow);
}

.home-final-cta-section {
    padding-top: 4.8rem;
}

.home-final-cta > div:first-child {
    flex: 1 1 36rem;
}

.home-final-cta p {
    margin-bottom: 0;
    color: rgba(240, 245, 255, 0.74);
}

.showcase-section {
    padding-top: 1rem;
}

.showcase-shell {
    padding: 2rem;
    border-radius: calc(var(--ghvac-radius-lg) + 0.25rem);
    background: linear-gradient(180deg, rgba(8, 18, 38, 0.9), rgba(5, 11, 24, 0.96));
    border: 1px solid rgba(157, 185, 255, 0.12);
    box-shadow: var(--ghvac-shadow);
}

.showcase-shell,
.device-stage,
.desktop-stage .device-screen,
.mobile-stage .device-screen {
    min-width: 0;
}

.device-stage {
    margin: 0;
    color: var(--ghvac-muted);
}

.device-stage figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.desktop-stage .device-screen,
.mobile-stage .device-screen {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(31, 111, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(141, 53, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #09152d, #040b18);
    border: 1px solid rgba(157, 185, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.desktop-stage .device-screen {
    border-radius: 1.8rem;
    padding: 1.1rem;
}

.desktop-stage {
    max-width: 100%;
}

.device-screen-top {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.device-screen-top span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.device-dashboard {
    display: grid;
    grid-template-columns: 5.8rem minmax(0, 1fr);
    gap: 1rem;
}

.dashboard-sidebar {
    min-height: 17rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(31, 111, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.dashboard-content {
    display: grid;
    gap: 0.9rem;
}

.dashboard-row {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-card {
    min-height: 5.2rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-card-accent {
    background: linear-gradient(135deg, rgba(31, 111, 255, 0.3), rgba(31, 111, 255, 0.08));
}

.dashboard-card-wide {
    grid-column: 1 / -1;
    min-height: 7rem;
    background: linear-gradient(135deg, rgba(141, 53, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.mobile-stack {
    display: grid;
    gap: 1.2rem;
}

.mobile-stage .device-screen {
    width: min(100%, 18rem);
    min-height: 31rem;
    margin: 0 auto;
    border-radius: 2.3rem;
    padding: 1rem 0.9rem 1.2rem;
}

.mobile-notch {
    width: 5.5rem;
    height: 1.1rem;
    margin: 0 auto 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-ui {
    display: grid;
    gap: 0.9rem;
}

.mobile-line,
.mobile-card {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-line {
    height: 1rem;
}

.mobile-line-short {
    width: 60%;
}

.mobile-line-primary {
    width: 75%;
    background: linear-gradient(90deg, rgba(31, 111, 255, 0.42), rgba(31, 111, 255, 0.12));
}

.mobile-card {
    min-height: 6.2rem;
}

.mobile-card-accent {
    background: linear-gradient(135deg, rgba(141, 53, 255, 0.26), rgba(255, 255, 255, 0.04));
}

.showcase-copy {
    min-height: auto;
}

.inner-hero,
.login-section {
    padding: 4rem 0 2.9rem;
}

.inner-hero .narrow,
.section-space .narrow {
    max-width: 56rem;
}

.inner-hero p {
    color: var(--ghvac-muted);
}

.breadcrumbs-wrapper {
    background: rgba(5, 12, 26, 0.82);
    border-bottom: 1px solid rgba(157, 185, 255, 0.12);
}

.breadcrumb {
    padding: 1rem 0;
    font-size: 0.92rem;
    margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(226, 235, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--ghvac-white);
}

.content-list,
.link-list,
.footer-list {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

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

.content-list li,
.link-list li,
.footer-list li {
    margin-bottom: 0.72rem;
    line-height: 1.6;
}

.accent-card {
    background: linear-gradient(180deg, rgba(19, 40, 78, 0.94), rgba(9, 19, 37, 0.96));
}

.cta-strip {
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
    align-items: center;
    padding: 2.4rem 2.5rem;
    border-radius: calc(var(--ghvac-radius-lg) + 0.1rem);
    background:
        radial-gradient(circle at 12% 50%, rgba(255, 138, 0, 0.16), transparent 24%),
        radial-gradient(circle at 88% 40%, rgba(141, 53, 255, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(11, 23, 48, 0.96), rgba(16, 34, 72, 0.98));
    color: var(--ghvac-white);
    border: 1px solid rgba(157, 185, 255, 0.18);
    box-shadow: var(--ghvac-shadow);
}

.cta-strip > div:first-child {
    flex: 1 1 36rem;
}

.cta-strip-actions {
    flex: 0 0 auto;
}

.cta-strip p {
    color: rgba(240, 245, 255, 0.74);
    margin-bottom: 0;
}

.form-card .form-control,
.form-card .form-select,
.login-panel .form-control {
    min-height: 3.15rem;
    border-radius: 1rem;
    border-color: rgba(157, 185, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ghvac-white);
}

.form-card textarea.form-control {
    min-height: 9rem;
}

.form-card .form-control::placeholder {
    color: rgba(225, 234, 255, 0.42);
}

.form-select option {
    color: #071325;
}

.form-label {
    color: rgba(241, 245, 255, 0.86);
    font-weight: 600;
}

.field-error {
    display: block;
    min-height: 1.1rem;
    color: #ff9797;
    margin-top: 0.35rem;
}

.form-status {
    display: none;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    margin-bottom: 1rem;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    background: rgba(47, 214, 123, 0.12);
    color: #8ff0ba;
}

.form-status.error {
    background: rgba(255, 102, 102, 0.12);
    color: #ffaaaa;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.site-footer {
    padding: 4rem 0 2.4rem;
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(180deg, rgba(2, 6, 17, 0.92), #02040c);
    border-top: 1px solid rgba(157, 185, 255, 0.12);
}

.footer-shell {
    padding: 2rem;
    border-radius: calc(var(--ghvac-radius-lg) + 0.1rem);
    border: 1px solid rgba(157, 185, 255, 0.12);
    background:
        radial-gradient(circle at 18% 18%, rgba(31, 111, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(8, 16, 33, 0.96), rgba(4, 10, 22, 0.98));
    box-shadow: var(--ghvac-shadow);
}

.footer-grid {
    --bs-gutter-x: 2.2rem;
    --bs-gutter-y: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.footer-brand-column {
    padding-right: 1rem;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
}

.footer-link,
.footer-location {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-contact-group {
    margin-top: 0.25rem;
    display: grid;
    gap: 0.55rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.footer-badges span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.84rem;
    color: var(--ghvac-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.4rem;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: rgba(223, 232, 255, 0.62);
}

.footer-bottom-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom-meta a {
    color: rgba(239, 245, 255, 0.88);
    font-weight: 700;
}

.footer-bottom-meta a:hover,
.footer-bottom-meta a:focus {
    color: var(--ghvac-white);
}

.footer-country-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2rem;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(239, 245, 255, 0.82);
    font-weight: 600;
}

.footer-country-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(157, 185, 255, 0.14);
    border-radius: 1.2rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    background: rgba(10, 20, 42, 0.84);
}

.faq-accordion {
    max-width: 58rem;
    margin-top: 0.35rem;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1.15rem 1.25rem;
    color: var(--ghvac-white);
    background: rgba(10, 20, 42, 0.96);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--ghvac-white);
    background: rgba(14, 28, 58, 0.98);
}

.faq-accordion .accordion-button::after {
    filter: invert(1) brightness(1.5);
}

.faq-accordion .accordion-body {
    padding: 1.25rem;
    line-height: 1.7;
    color: var(--ghvac-muted);
}

.login-shell {
    overflow: hidden;
    border-radius: calc(var(--ghvac-radius-lg) + 0.1rem);
    box-shadow: var(--ghvac-shadow);
    border: 1px solid rgba(157, 185, 255, 0.14);
    background: rgba(8, 16, 33, 0.92);
}

.login-panel {
    padding: 2.5rem;
    min-height: 100%;
}

.login-panel.brand {
    background:
        radial-gradient(circle at 20% 16%, rgba(31, 111, 255, 0.22), transparent 24%),
        linear-gradient(160deg, rgba(10, 22, 46, 0.98), rgba(7, 15, 31, 0.98));
    color: #fff;
}

.login-panel.brand .content-list.light {
    color: rgba(255, 255, 255, 0.8);
}

.login-panel.form {
    background: linear-gradient(180deg, rgba(9, 18, 37, 0.98), rgba(4, 10, 22, 0.98));
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.9rem 1.6rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ghvac-primary), #2f84ff);
    border-color: rgba(47, 132, 255, 0.9);
    color: #fff;
    box-shadow: 0 18px 38px rgba(31, 111, 255, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #1b63e2, #2878ec);
    border-color: #2878ec;
    color: #fff;
}

.btn-outline-light,
.btn-outline-dark {
    font-weight: 700;
    color: var(--ghvac-white);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus {
    color: #071325;
    background: #fff;
    border-color: #fff;
}

@keyframes heroTechDrift {
    0% {
        transform: translate3d(-1.5%, 1.8%, 0) scale(1.01);
    }

    100% {
        transform: translate3d(2.2%, -1.2%, 0) scale(1.07);
    }
}

@keyframes heroTechGlow {
    0% {
        opacity: 0.42;
    }

    100% {
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-tech-background::before,
    .hero-tech-background::after {
        animation: none;
    }
}

@media (min-width: 1200px) {
    .site-nav-shell {
        max-width: 1380px;
        margin-inline: auto;
    }
}

@media (max-width: 1199.98px) {
    .site-nav-shell {
        border-radius: 1.9rem;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .navbar-collapse {
        margin-top: 0.9rem;
        padding: 1rem;
        background: rgba(8, 18, 38, 0.985);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.1rem;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
        max-height: calc(100vh - 12rem);
        overflow-y: auto;
    }

    .site-nav-list {
        align-items: stretch;
        gap: 0.3rem;
        width: 100%;
    }

    .site-nav-collapse {
        margin-top: 0.8rem;
        width: 100%;
    }

    .site-nav-list .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.78rem 0.92rem;
        white-space: normal;
        width: 100%;
    }

    .site-nav-dropdown {
        min-width: 100%;
        margin-top: 0.4rem;
        position: static;
        display: none;
        padding: 0.55rem 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-nav-more .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-nav-more.is-open > .site-nav-dropdown,
    .site-nav-dropdown.show {
        display: block;
    }

    .site-nav-dropdown .dropdown-item {
        padding: 0.85rem 1rem;
        color: rgba(241, 245, 255, 0.82);
        background: rgba(255, 255, 255, 0.03);
        margin-top: 0.45rem;
    }

    .site-nav-dropdown .dropdown-item.active,
    .site-nav-dropdown .dropdown-item:hover,
    .site-nav-dropdown .dropdown-item:focus {
        background: rgba(31, 111, 255, 0.16);
        color: var(--ghvac-white);
    }
}

@media (max-width: 991.98px) {
    :root {
        --ghvac-sticky-offset: 8.6rem;
    }

    .site-topbar-inner,
    .cta-strip,
    .home-final-cta,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav-shell {
        border-radius: 1.65rem;
        padding: 0.9rem 1rem;
    }

    .site-nav-collapse {
        margin-top: 0.9rem;
    }

    .navbar-collapse {
        padding: 0.9rem;
    }

    .hero-actions .btn,
    .cta-strip-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-section .row {
        --bs-gutter-y: 2rem;
    }

    .hero-section h1,
    .inner-hero h1 {
        max-width: 12ch;
    }

    .section-space {
        padding: 4.8rem 0;
    }

    .hero-panel {
        max-width: none;
        margin-left: 0;
        margin-top: 0.4rem;
    }

    .showcase-shell,
    .footer-shell {
        padding: 1.5rem;
    }

    .addons-shell {
        grid-template-columns: 1fr;
    }

    .pricing-heading {
        margin-bottom: 1.9rem;
    }

    .pricing-cards-row {
        --bs-gutter-x: 1.15rem;
        --bs-gutter-y: 1.15rem;
    }

    .pricing-card-inner {
        padding: 1.55rem 1.35rem 1.35rem;
    }

    .pricing-card-header h3 {
        font-size: 1.7rem;
    }

    .pricing-price-block strong {
        font-size: 1.8rem;
    }

    .pricing-price-period {
        font-size: 0.9rem;
        padding-bottom: 0.18rem;
    }

    .pricing-price-reference {
        font-size: 0.76rem;
    }

    .pricing-card-featured {
        transform: translateY(-0.3rem) scale(1.015);
    }

    .pricing-card-top {
        min-height: 16.8rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --ghvac-sticky-offset: 7.5rem;
    }

    .container,
    .container-sm {
        padding-inline: 1rem;
    }

    .site-topbar-inner {
        min-height: auto;
        padding-top: 0.48rem;
        padding-bottom: 0.48rem;
        font-size: 0.74rem;
        text-align: left;
        gap: 0.45rem;
        line-height: 1.35;
    }

    .site-topbar-inner a {
        font-size: 0.74rem;
        font-weight: 800;
    }

    .site-topbar-copy {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .site-topbar-pill {
        min-height: 1.8rem;
        padding: 0.34rem 0.64rem;
        font-size: 0.64rem;
    }

    .site-topbar-link {
        width: 100%;
        min-height: 2.05rem;
        justify-content: flex-start;
        padding-inline: 0.88rem;
    }

    .site-header .navbar {
        padding-top: 0.55rem;
        padding-bottom: 0.65rem;
    }

    .site-nav-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        border-radius: 1.35rem;
        padding: 0.85rem;
        background:
            linear-gradient(90deg, rgba(17, 40, 78, 0.38), rgba(10, 18, 38, 0.4)),
            rgba(10, 18, 38, 0.4);
        backdrop-filter: blur(18px);
    }

    .site-brand {
        flex: 1 1 auto;
        width: auto;
    }

    .brand-mark {
        font-size: 1.12rem;
        gap: 0.52rem;
    }

    .site-brand small {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .site-nav-mobile-actions {
        width: auto;
        display: flex;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .navbar-toggler {
        width: 3.25rem;
        min-width: 3.25rem;
        min-height: 3rem;
        padding: 0.55rem;
    }

    .site-nav-mobile-cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 0.6rem;
        width: 100%;
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav-mobile-cta .btn {
        min-width: 0;
        min-height: 3rem;
        padding: 0.72rem 0.9rem;
        text-align: center;
        justify-content: center;
        font-size: 0.92rem;
    }

    .site-brand {
        max-width: 100%;
    }

    .brand-mark,
    .footer-brand-mark {
        font-size: 1.28rem;
    }

    .hero-section {
        padding: 0rem 0 2.8rem;
    }

    .hero-tech-background {
        opacity: 0.46;
    }

    .hero-tech-background::before {
        background-size: 190% auto;
        background-position: center top;
        opacity: 0.26;
    }

    .hero-tech-background::after {
        opacity: 0.28;
    }

    .hero-section::after {
        width: 12rem;
        height: 12rem;
        left: -2rem;
        bottom: -3rem;
    }

    .hero-section h1,
    .inner-hero h1,
    .login-panel h1 {
        font-size: clamp(1.78rem, 10.8vw, 2.78rem);
        line-height: 0.98;
        margin-bottom: 1rem;
        text-align: center;
        margin-inline: auto;
    }

    .section-space,
    .login-section {
        padding: 3.2rem 0;
    }

    .feature-card,
    .content-card,
    .sidebar-card,
    .form-card,
    .audience-card,
    .module-card,
    .login-panel,
    .showcase-shell,
    .footer-shell,
    .cta-strip {
        padding: 1.3rem;
    }

    .hero-lead,
    .inner-hero p,
    .section-heading p,
    .feature-card p,
    .module-card p,
    .content-card p,
    .sidebar-card p,
    .form-card p,
    .audience-card p {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .hero-proof {
        display: grid;
        gap: 0.7rem;
        margin-top: 1.1rem;
        font-size: 0.92rem;
    }

    .hero-actions,
    .cta-strip-actions {
        gap: 0.75rem;
        margin-top: 1.15rem;
    }

    .hero-actions .btn {
        min-width: 0;
        min-height: 3.25rem;
    }

    .hero-panel,
    .cta-strip {
        border-radius: 1.35rem;
    }

    .home-hero-section .hero-copy-column,
    .home-hero-section .hero-panel-column {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .hero-panel-grid,
    .hero-mini-grid,
    .dashboard-row {
        grid-template-columns: 1fr;
    }

    .hero-mobile-preview {
        justify-content: center;
    }

    .hero-mobile-device {
        width: min(100%, 19rem);
        height: 38rem;
    }

    .hero-metrics {
        gap: 0.75rem;
        margin-top: 1.35rem;
    }

    .hero-metrics div {
        padding: 0.95rem;
        border-radius: 1.15rem;
    }

    .hero-metrics strong {
        font-size: 0.95rem;
        margin-bottom: 0.16rem;
    }

    .hero-metrics span {
        font-size: 0.82rem;
    }

    .hero-panel {
        padding: 1rem;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .hero-panel-badge {
        margin-bottom: 0.7rem;
        font-size: 0.72rem;
        padding: 0.38rem 0.68rem;
    }

    .hero-panel-screen {
        padding: 0.75rem;
        margin-bottom: 0.7rem;
        border-radius: 1rem;
    }

    .hero-mobile-screen {
        padding: 1rem 0.82rem 0.88rem;
        border-radius: 1.35rem;
    }

    .hero-panel-toolbar {
        margin-bottom: 0.6rem;
    }

    .hero-panel-stat {
        padding: 0.75rem;
        border-radius: 0.95rem;
    }

    .hero-panel-stat small {
        font-size: 0.68rem;
        margin-bottom: 0.3rem;
    }

    .hero-panel-stat strong {
        font-size: 0.92rem;
    }

    .hero-panel-stat span {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .hero-card {
        padding: 0.95rem;
        margin-bottom: 0.75rem;
        border-radius: 1rem;
    }

    .hero-card strong {
        font-size: 1rem;
        line-height: 1.26;
    }

    .device-dashboard {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        min-height: 4rem;
    }

    .footer-brand-row {
        align-items: flex-start;
    }

    .showcase-section {
        padding-top: 0.35rem;
    }

    .showcase-shell {
        padding: 1rem;
        border-radius: 1.35rem;
    }

    .desktop-stage .device-screen {
        border-radius: 1.15rem;
        padding: 0.75rem;
    }

    .device-screen-top {
        margin-bottom: 0.75rem;
    }

    .device-dashboard,
    .dashboard-content,
    .dashboard-row {
        gap: 0.65rem;
    }

    .dashboard-card {
        min-height: 3.9rem;
        border-radius: 0.85rem;
    }

    .dashboard-card-wide {
        min-height: 5rem;
    }

    .mobile-stack {
        gap: 0.9rem;
    }

    .mobile-stage .device-screen {
        width: min(100%, 12.5rem);
        min-height: 20rem;
        padding: 0.8rem 0.7rem 0.9rem;
        border-radius: 1.6rem;
    }

    .mobile-notch {
        width: 4.2rem;
        height: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .mobile-ui {
        gap: 0.65rem;
    }

    .mobile-card {
        min-height: 4.25rem;
        border-radius: 0.8rem;
    }

    .mobile-line {
        height: 0.78rem;
        border-radius: 0.75rem;
    }

    .cta-strip {
        padding: 1.3rem;
        gap: 1rem;
    }

    .home-final-cta {
        padding: 1.35rem;
        gap: 1rem;
        border-radius: 1.35rem;
    }

    .pricing-heading {
        margin-bottom: 1.6rem;
    }

    .pricing-section {
        scroll-margin-top: calc(var(--ghvac-sticky-offset) + 1.1rem);
        padding-top: 5.2rem;
        padding-bottom: 4.7rem;
    }

    .pricing-summary {
        gap: 0.6rem;
    }

    .pricing-summary span {
        min-height: 2.3rem;
        padding: 0.48rem 0.78rem;
        font-size: 0.82rem;
    }

    .pricing-card,
    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-inner {
        padding: 1.3rem;
        gap: 1rem;
    }

    .pricing-card-featured .pricing-card-inner {
        padding-bottom: 1.6rem;
    }

    .pricing-card:hover {
        transform: none;
    }

    .pricing-card-featured {
        box-shadow:
            0 24px 54px rgba(12, 36, 80, 0.28),
            0 0 0 1px rgba(88, 151, 255, 0.14),
            0 0 26px rgba(31, 111, 255, 0.12);
    }

    .pricing-card-featured::after {
        display: none;
    }

    .pricing-card-featured .pricing-card-inner::before {
        display: none;
    }

    .pricing-badge {
        position: static;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.15rem;
        font-size: 0.78rem;
    }

    .pricing-card-header {
        gap: 0.95rem;
    }

    .pricing-actions {
        padding-top: 1rem;
        padding-bottom: 0.35rem;
        padding-inline: 0.15rem;
    }

    .pricing-actions .btn {
        min-height: 3.15rem;
        padding: 0.82rem 1.1rem;
    }

    .pricing-card-featured .pricing-actions {
        padding-top: 1.15rem;
        padding-bottom: 0.45rem;
        padding-inline: 0.2rem;
        margin-bottom: 0;
        background: linear-gradient(180deg, rgba(10, 21, 44, 0), rgba(10, 21, 44, 0.98) 32%);
    }

    .pricing-card-featured .pricing-actions .btn-primary {
        position: relative;
        z-index: 1;
        border-radius: 1.2rem;
        min-height: 3.2rem;
    }

    .pricing-price-block {
        text-align: left;
    }

    .pricing-price-line {
        gap: 0.45rem;
    }

    .pricing-card-header h3 {
        font-size: 1.55rem;
    }

    .pricing-price-block strong {
        font-size: 1.65rem;
    }

    .pricing-price-period {
        font-size: 0.82rem;
        padding-bottom: 0.15rem;
    }

    .pricing-price-reference {
        font-size: 0.74rem;
        max-width: none;
    }

    .pricing-choice-copy {
        font-size: 0.84rem;
        padding: 0.68rem 0.82rem;
    }

    .pricing-card-top {
        min-height: auto;
    }

    .addon-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .faq-accordion .accordion-button,
    .faq-accordion .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 479.98px) {
    :root {
        --ghvac-sticky-offset: 7rem;
    }

    .container,
    .container-sm {
        padding-inline: 0.85rem;
    }

    .site-topbar-inner {
        padding-top: 0.42rem;
        padding-bottom: 0.42rem;
        font-size: 0.68rem;
    }

    .site-topbar-inner a {
        font-size: 0.68rem;
    }

    .site-topbar-pill {
        font-size: 0.6rem;
        letter-spacing: 0.06em;
    }

    .site-topbar-link {
        min-height: 1.95rem;
        padding-inline: 0.78rem;
    }

    .site-nav-shell {
        padding: 0.72rem;
        border-radius: 1.15rem;
        gap: 0.6rem;
    }

    .site-nav-mobile-actions {
        width: auto;
    }

    .site-nav-mobile-cta {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .site-nav-mobile-cta .btn {
        min-height: 2.75rem;
        padding: 0.62rem 0.65rem;
        font-size: 0.84rem;
    }

    .navbar-toggler {
        width: 2.9rem;
        min-width: 2.9rem;
        min-height: 2.75rem;
        padding: 0.45rem;
    }

    .navbar-collapse {
        max-height: calc(100vh - 9.75rem);
        padding: 0.75rem;
    }

    .nav-link,
    .site-nav-dropdown .dropdown-item {
        font-size: 0.89rem;
        padding: 0.72rem 0.82rem;
    }

    .hero-section h1,
    .inner-hero h1,
    .login-panel h1 {
        max-width: 100%;
        font-size: clamp(1.58rem, 9.8vw, 2.32rem);
    }

    .eyebrow {
        min-height: 2.45rem;
        padding: 0.45rem 0.78rem;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .hero-lead,
    .inner-hero p,
    .section-heading p,
    .feature-card p,
    .module-card p,
    .content-card p,
    .sidebar-card p,
    .form-card p,
    .audience-card p {
        font-size: 0.93rem;
        line-height: 1.66;
    }

    .pricing-card {
        border-radius: 1.2rem;
    }

    .pricing-card-inner {
        padding: 1.15rem;
    }

    .pricing-actions {
        padding-inline: 0.1rem;
        padding-bottom: 0.4rem;
    }

    .pricing-actions .btn {
        min-height: 3.05rem;
        padding: 0.76rem 0.95rem;
    }

    .pricing-card-featured .pricing-actions {
        padding-bottom: 0.5rem;
    }

    .pricing-card-header h3 {
        font-size: 1.42rem;
    }

    .pricing-price-block strong {
        font-size: 1.5rem;
    }

    .pricing-price-period {
        font-size: 0.78rem;
        padding-bottom: 0.12rem;
    }

    .pricing-price-reference {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .pricing-choice-copy {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .pricing-summary {
        gap: 0.55rem;
    }

    .pricing-summary span {
        width: 100%;
        justify-content: center;
    }

    .hero-proof {
        font-size: 0.88rem;
    }

    .section-heading h2,
    .content-card h2,
    .sidebar-card h2,
    .feature-card h2,
    .cta-strip h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .mobile-stage .device-screen {
        width: min(100%, 11rem);
        min-height: 17.5rem;
    }

    .footer-bottom {
        font-size: 0.82rem;
    }
}
