:root {
    --bg: #06111f;
    --bg-soft: #0B1220;
    --surface: rgba(11, 18, 32, 0.64);
    --surface-strong: rgba(12, 23, 39, 0.84);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f8fafc;
    --muted: #aeb8c8;
    --muted-strong: #d7e0ea;
    --primary: #2DD4BF;
    --secondary: #3B82F6;
    --accent: #7DD3FC;
    --warm: #D6B76A;
    --success: #8DD9A8;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    --heading-font: "Aptos Display", "Segoe UI", sans-serif;
    --body-font: "Aptos", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--body-font);
    background:
        radial-gradient(circle at 12% 0%, rgba(125, 211, 252, 0.09), transparent 24%),
        radial-gradient(circle at 86% 8%, rgba(45, 212, 191, 0.08), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(214, 183, 106, 0.08), transparent 34%),
        linear-gradient(180deg, #06111f 0%, #0b1424 52%, #06111f 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 97%);
    opacity: 0.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

.site-video-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: #030914;
}

.site-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    filter: brightness(0.24) contrast(1) saturate(0.55);
}

.site-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 15%, rgba(45, 212, 191, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(3, 9, 20, 0.28) 0%, rgba(6, 17, 31, 0.68) 38%, rgba(6, 17, 31, 0.94) 100%);
}

.page-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(215, 224, 234, 0.1);
    background: rgba(6, 17, 31, 0.72);
    backdrop-filter: blur(18px);
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-logo-wordmark {
    width: clamp(154px, 15vw, 198px);
    height: auto;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    background: linear-gradient(90deg, #ffffff 0%, #d7e0ea 48%, #d6b76a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.brand-tagline {
    color: rgba(229, 223, 255, 0.68);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-links a {
    position: relative;
    color: #b9c5d4;
    font-size: 0.94rem;
    font-weight: 500;
    transition: color 0.24s ease;
}

.site-links a:hover,
.site-links a[aria-current="page"] {
    color: white;
}

.site-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.9), transparent);
}

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

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-size: 1.1rem;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.button:hover,
.button-secondary:hover,
.mini-button:hover {
    transform: translateY(-2px);
}

.button {
    color: white;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.96), rgba(37, 99, 235, 0.96));
    box-shadow: 0 14px 34px rgba(45, 212, 191, 0.18);
}

.button-secondary {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content {
    position: relative;
    z-index: 1;
}

.home-hero {
    position: relative;
    padding: 0 0 90px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
}

.home-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 25%, rgba(255, 255, 255, 0.06), transparent 16%),
        radial-gradient(circle at 82% 18%, rgba(122, 227, 255, 0.1), transparent 18%),
        linear-gradient(180deg, rgba(5, 3, 10, 0.06) 0%, rgba(5, 3, 10, 0.34) 100%);
    pointer-events: none;
}

.hero-grid,
.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 36px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.home-hero-shell {
    position: relative;
    width: 100%;
    padding-inline: clamp(16px, 3.5vw, 42px);
    padding-block: 0 18px;
    overflow: hidden;
}

.hero-media-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    filter: brightness(0.34) saturate(0.58) contrast(1);
}

.hero-media-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.06), transparent 16%),
        radial-gradient(circle at 14% 18%, rgba(118, 220, 255, 0.12), transparent 18%),
        radial-gradient(circle at 82% 22%, rgba(214, 183, 106, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(6, 17, 31, 0.38) 0%, rgba(6, 17, 31, 0.58) 46%, rgba(6, 17, 31, 0.84) 100%);
}

.hero-grid-wide {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 170px);
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    align-content: center;
    padding-top: clamp(72px, 10vw, 132px);
}

.hero-copy-center {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 7, 18, 0.38);
    color: #d7e0ea;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: 0 0 14px rgba(45, 212, 191, 0.42);
}

.hero-title,
.page-title,
.section-title,
.card-title,
.legal-title {
    margin: 0;
    font-family: var(--heading-font);
    letter-spacing: 0;
    line-height: 0.95;
}

.hero-title {
    margin-top: 24px;
    font-size: clamp(3.2rem, 8vw, 6.35rem);
    font-weight: 600;
    line-height: 1.02;
}

.page-title {
    margin-top: 20px;
    font-size: clamp(2.9rem, 6vw, 5.2rem);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
}

.accent-text {
    background: linear-gradient(90deg, #ffffff 0%, var(--warm) 30%, var(--primary) 66%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-lead,
.page-lead,
.section-lead,
.card-copy,
.legal-copy {
    color: var(--muted-strong);
    line-height: 1.85;
}

.hero-lead {
    max-width: 690px;
    margin-top: 24px;
    font-size: 1.06rem;
}

.hero-copy-center .hero-lead {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.page-lead {
    max-width: 720px;
    margin-top: 20px;
    font-size: 1.02rem;
}

.hero-actions,
.page-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-copy-center .hero-actions {
    justify-content: center;
}

.hero-metrics,
.info-grid-3,
.info-grid-4,
.card-grid-2,
.card-grid-3,
.card-grid-4,
.stats-grid,
.use-grid,
.pricing-grid,
.legal-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.hero-metrics {
    margin-top: 52px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-metrics-wide {
    width: 100%;
    max-width: 1480px;
    margin-top: 10px;
}

.executive-dashboard {
    position: relative;
    width: min(1020px, 100%);
    padding: 22px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background:
        radial-gradient(circle at 15% 0%, rgba(125, 211, 252, 0.12), transparent 34%),
        radial-gradient(circle at 88% 4%, rgba(214, 183, 106, 0.1), transparent 28%),
        linear-gradient(145deg, rgba(8, 18, 34, 0.82), rgba(4, 10, 20, 0.92));
    backdrop-filter: blur(22px);
    box-shadow:
        0 34px 110px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.executive-dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 38%, rgba(116, 227, 255, 0.08) 100%);
    pointer-events: none;
}

.dashboard-topbar,
.dashboard-kpis,
.dashboard-main {
    position: relative;
    z-index: 1;
}

.dashboard-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.dashboard-topbar h2 {
    margin: 6px 0 0;
    font-family: var(--heading-font);
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}

.dashboard-kicker,
.dashboard-kpi span,
.dashboard-row span,
.dashboard-action span {
    color: #c8d3df;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(129, 255, 200, 0.22);
    background: rgba(129, 255, 200, 0.08);
    color: #c5f6eb;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.dashboard-status::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 18px rgba(129, 255, 200, 0.7);
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-kpi,
.dashboard-row,
.dashboard-action,
.dashboard-proof-grid span {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-kpi {
    display: grid;
    gap: 8px;
    min-height: 122px;
    padding: 18px;
    border-radius: 22px;
}

.dashboard-kpi strong {
    font-family: var(--heading-font);
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.95;
}

.dashboard-kpi small,
.dashboard-row small,
.dashboard-action small {
    color: #9aa8ba;
    line-height: 1.55;
}

.dashboard-main {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.8fr);
    gap: 14px;
    margin-top: 14px;
}

.dashboard-feed {
    display: grid;
    gap: 12px;
}

.dashboard-row {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    text-align: left;
}

.dashboard-row.priority {
    border-color: rgba(129, 255, 200, 0.28);
    background:
        linear-gradient(90deg, rgba(129, 255, 200, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
}

.dashboard-row strong,
.dashboard-action strong {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.35;
}

.dashboard-side {
    display: grid;
    gap: 12px;
}

.dashboard-action {
    display: grid;
    align-content: space-between;
    gap: 12px;
    min-height: 178px;
    padding: 18px;
    border-radius: 22px;
    text-align: left;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 207, 141, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.045);
}

.dashboard-proof-grid {
    display: grid;
    gap: 10px;
}

.dashboard-proof-grid span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    color: #e7edf5;
    font-size: 0.84rem;
    font-weight: 700;
}

.info-grid-3,
.card-grid-3,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid-4,
.card-grid-4,
.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-2,
.contact-grid,
.legal-grid,
.use-grid,
.page-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.panel,
.card,
.price-card,
.cta-panel,
.legal-card,
.contact-card,
details.support-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.metric-card,
.card,
.panel,
.price-card,
.contact-card {
    padding: 26px;
}

.metric-card::before,
.panel::before,
.card::before,
.price-card::before,
.cta-panel::before,
.legal-card::before,
.contact-card::before,
details.support-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 72%);
}

.metric-card {
    min-height: 128px;
}

.metric-label {
    color: #c8d3df;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.metric-value {
    margin-top: 14px;
    font-family: var(--heading-font);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0;
}

.metric-card p,
.card p,
.panel p,
.price-card p,
.contact-card p,
.cta-panel p,
.legal-card p,
.legal-card li,
.comparison-table td,
.comparison-table th {
    color: var(--muted);
    line-height: 1.8;
}

.hero-stage,
.page-aside {
    position: relative;
}

.hero-stage {
    min-height: 560px;
}

.orb,
.orb-small {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(16px);
}

.orb {
    inset: -6% auto auto 30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.18), rgba(45, 212, 191, 0));
}

.orb-small {
    right: 2%;
    bottom: 14%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(214, 183, 106, 0.15), rgba(214, 183, 106, 0));
}

.home-hero .orb {
    inset: 6% auto auto 6%;
    width: clamp(260px, 24vw, 380px);
    height: clamp(260px, 24vw, 380px);
    opacity: 0.88;
}

.home-hero .orb-small {
    right: 5%;
    bottom: 24%;
    width: clamp(180px, 18vw, 280px);
    height: clamp(180px, 18vw, 280px);
    opacity: 0.9;
}

.hero-signal-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 1220px;
}

.hero-signal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 8, 21, 0.42);
    backdrop-filter: blur(14px);
    color: #e7edf5;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
}

.hero-visual {
    position: relative;
    min-height: 540px;
    padding: 28px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(13, 10, 25, 0.58), rgba(10, 7, 19, 0.3));
    backdrop-filter: blur(18px);
}

.hero-window,
.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 5, 14, 0.54);
}

.hero-window {
    min-height: 320px;
}

.hero-window img,
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.hero-window::after,
.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 4, 15, 0.08), rgba(7, 4, 15, 0.84));
}

.hero-panel-stack {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 14px;
    padding: 0 18px 18px;
}

.hero-mini-panel {
    position: relative;
    z-index: 1;
    padding: 18px 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 8, 22, 0.56);
    backdrop-filter: blur(14px);
}

.hero-mini-label,
.card-label,
.price-label,
.list-title,
.legal-kicker {
    color: #d7e0ea;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-mini-title,
.card-title,
.price-name {
    margin-top: 10px;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}

.hero-chip-row,
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip-row {
    margin-top: 14px;
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #e7edf5;
    font-size: 0.82rem;
}

.page-hero {
    position: relative;
    padding: 58px 0 56px;
}

.page-aside .panel {
    min-height: 100%;
}

.section {
    position: relative;
    padding: 88px 0;
}

.section-header {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-header p {
    margin: 18px 0 0;
}

.card-label,
.price-label,
.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.card-label::before,
.price-label::before,
.legal-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.card-title {
    font-size: 1.75rem;
}

.card-copy {
    margin-top: 14px;
    font-size: 0.98rem;
}

.card-list,
.price-list,
.legal-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.card-list li,
.price-list li,
.legal-list li {
    position: relative;
    padding-left: 22px;
}

.card-list li::before,
.price-list li::before,
.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.media-card {
    min-height: 100%;
}

.media-card .card-body {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.price-card {
    min-height: 100%;
}

.price-card.featured {
    border-color: rgba(45, 212, 191, 0.28);
    background:
        linear-gradient(180deg, rgba(45, 212, 191, 0.13), rgba(255, 255, 255, 0.03)),
        rgba(12, 23, 39, 0.88);
}

.price-name {
    font-size: 1.72rem;
}

.price-subtitle {
    margin-top: 10px;
    color: var(--muted-strong);
    font-weight: 600;
}

.price-amount {
    margin-top: 22px;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.price-note {
    margin-top: 8px;
    color: #8aa3b8;
    font-size: 0.9rem;
}

.price-footer {
    margin-top: 24px;
}

.comparison-wrap {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(10, 7, 20, 0.5);
    backdrop-filter: blur(18px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    color: white;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

details.support-item {
    padding: 0;
}

details.support-item + details.support-item {
    margin-top: 14px;
}

details.support-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
}

details.support-item summary::-webkit-details-marker {
    display: none;
}

.support-title {
    margin-top: 8px;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
}

.support-index {
    color: #d7e0ea;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.support-plus {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.24s ease;
}

details.support-item[open] .support-plus {
    transform: rotate(45deg);
}

.support-body {
    padding: 0 24px 24px;
}

.support-body p,
.support-body li {
    color: var(--muted);
    line-height: 1.85;
}

.support-body ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.code-inline {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 0.84rem;
}

.cta-panel {
    padding: 34px;
}

.cta-panel h2 {
    margin: 14px 0 0;
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.98;
}

.cta-panel p {
    margin-top: 18px;
}

.contact-card h3,
.legal-card h3 {
    margin: 12px 0 0;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
}

.contact-list,
.legal-list {
    margin-top: 18px;
}

.contact-card .button,
.contact-card .button-secondary,
.price-card .button,
.price-card .button-secondary,
.card .button-secondary,
.panel .button-secondary {
    margin-top: 22px;
}

.legal-card {
    padding: 28px;
}

.legal-title {
    margin-top: 12px;
    font-size: 1.7rem;
    font-weight: 600;
}

.newsletter-box {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    color: #c8d3df;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 6, 14, 0.5);
    color: white;
    font: inherit;
}

.field textarea {
    min-height: 150px;
    padding-block: 16px;
    resize: vertical;
}

.field select {
    appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #8aa3b8;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.form-status[data-state="success"] {
    color: var(--success);
}

.form-status[data-state="error"] {
    color: #f59e9e;
}

.button[aria-busy="true"],
button:disabled {
    cursor: wait;
    opacity: 0.72;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    gap: 18px;
}

.footer-card {
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 7, 21, 0.52);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.footer-card h4 {
    margin: 0 0 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-card p,
.footer-card a,
.footer-card span {
    color: var(--muted);
    line-height: 1.9;
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    line-height: 1.9;
    text-align: left;
    cursor: pointer;
}

.footer-link-button:hover,
.footer-card a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 0 4px;
    color: #8aa3b8;
    font-size: 0.84rem;
}

.surface-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #d7e0ea;
    font-size: 0.84rem;
}

.surface-note::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--success), var(--accent));
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: min(520px, calc(100% - 36px));
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        rgba(8, 6, 18, 0.92);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(20px);
}

.cookie-banner h2 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 700;
}

.cookie-banner p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1100px) {
    .hero-grid,
    .page-hero-grid,
    .card-grid-2,
    .contact-grid,
    .legal-grid,
    .use-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .dashboard-kpis,
    .info-grid-4,
    .card-grid-4,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stage {
        min-height: 460px;
    }

    .hero-grid-wide {
        min-height: auto;
    }

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

@media (max-width: 920px) {
    .site-links {
        display: none;
        position: absolute;
        z-index: 80;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgb(8, 6, 18);
        backdrop-filter: blur(24px);
        box-shadow: var(--shadow);
    }

    body.nav-open .site-links {
        display: flex;
    }

    .site-links a {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .site-links a[aria-current="page"]::after {
        display: none;
    }

    .nav-actions .button-secondary {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 24px, 1240px);
    }

    .site-nav {
        min-height: 76px;
    }

    .home-hero {
        min-height: auto;
        padding-bottom: 82px;
    }

    .home-hero-shell {
        padding-inline: 12px;
    }

    .hero-grid-wide {
        padding-top: 88px;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .page-title,
    .section-title,
    .cta-panel h2 {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
    }

    .hero-metrics,
    .dashboard-kpis,
    .info-grid-3,
    .info-grid-4,
    .card-grid-3,
    .card-grid-4,
    .stats-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .executive-dashboard {
        padding: 16px;
        border-radius: 26px;
    }

    .dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-kpi,
    .dashboard-row,
    .dashboard-action {
        padding: 16px;
        border-radius: 18px;
    }

    .dashboard-kpi {
        min-height: auto;
    }

    .metric-card,
    .card,
    .panel,
    .price-card,
    .cta-panel,
    .legal-card,
    .contact-card {
        padding: 22px;
    }

    .hero-visual {
        min-height: 420px;
        padding: 18px;
    }

    .hero-signal-row {
        gap: 10px;
    }

    .hero-signal {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.84rem;
    }

    .hero-window {
        min-height: 260px;
    }

    .comparison-wrap {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 680px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
