:root {
    color-scheme: dark;
    --bg: #030711;
    --surface: #071126;
    --surface-strong: #0c1934;
    --surface-soft: #050d1f;
    --text: #f8fbff;
    --muted: #a8b7d0;
    --border: #1c3154;
    --brand: #00eadc;
    --brand-2: #129dff;
    --accent: #5a32ff;
    --success: #00b88a;
    --warning: #f59e0b;
    --ink: #030711;
    --ink-panel: #071126;
    --brand-glow: rgba(0, 234, 220, 0.18);
    --blue-glow: rgba(18, 157, 255, 0.18);
    --accent-glow: rgba(90, 50, 255, 0.2);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.22);
    --radius: 8px;
    --radius-sm: 6px;
    --content-max: 1180px;
    --font: "Aptos", "Segoe UI Variable", "Trebuchet MS", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 234, 220, 0.13), transparent 34rem),
        radial-gradient(circle at 78% 4%, rgba(90, 50, 255, 0.18), transparent 30rem),
        linear-gradient(180deg, #030711 0%, #071126 52%, #030711 100%);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 100;
    top: 12px;
    left: 12px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: #ffffff;
    padding: 10px 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid rgba(86, 124, 178, 0.28);
    background: rgba(3, 7, 17, 0.82);
    padding: 10px clamp(16px, 4vw, 42px);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 62px;
    height: 62px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.brand strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.site-nav a,
.login-button,
.primary-button,
.secondary-button,
.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 0 15px;
    font-weight: 900;
    text-decoration: none;
}

.site-nav a {
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(18, 157, 255, 0.1);
    color: var(--brand-2);
}

.login-button {
    border: 1px solid rgba(0, 234, 220, 0.48);
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: var(--ink);
    box-shadow: 0 12px 28px var(--blue-glow);
}

.nav-toggle {
    display: none;
}

main {
    width: min(var(--content-max), 100%);
    margin: 0 auto;
    padding: clamp(20px, 4vw, 52px) clamp(16px, 4vw, 34px) 72px;
}

.hero-section,
.split-section,
.cta-band,
.page-hero,
.section-grid,
.compare-panel {
    margin-top: clamp(24px, 5vw, 62px);
}

.section-grid > .feature-grid.three {
    margin-top: clamp(30px, 5vw, 52px);
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
    min-height: calc(100svh - 150px);
}

.hero-copy,
.section-heading {
    display: grid;
    gap: 12px;
}

.eyebrow {
    margin: 0;
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 880px;
    margin-bottom: 0;
    font-size: clamp(3rem, 8vw, 6.6rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3.4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.hero-lede,
.page-hero p,
.split-section p,
.panel p,
.feature-card p,
.price-card p,
.cta-band p {
    color: var(--muted);
}

.hero-lede {
    max-width: 680px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.primary-button {
    border: 1px solid rgba(0, 234, 220, 0.42);
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: var(--ink);
    box-shadow: 0 12px 28px var(--blue-glow);
}

.secondary-button {
    border: 1px solid rgba(18, 157, 255, 0.32);
    background: rgba(12, 25, 52, 0.9);
    color: #d9eaff;
}

.text-link {
    width: fit-content;
    padding-inline: 0;
    color: var(--brand-2);
}

.primary-button:hover,
.secondary-button:hover,
.login-button:hover,
.price-card:hover,
.panel:hover,
.feature-card:hover {
    transform: translateY(-2px);
}

.primary-button,
.secondary-button,
.login-button,
.price-card,
.panel,
.feature-card {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-strip span,
.plan-badge,
.panel-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-visual {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(211, 231, 246, 0.9);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 36%, rgba(0, 234, 220, 0.2), transparent 12rem),
        linear-gradient(160deg, var(--ink-panel), #0b1732 62%, #132456);
    box-shadow: var(--shadow);
}

.score-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.hero-logo {
    width: 92px;
    height: 92px;
    position: absolute;
    top: 42px;
    left: 42px;
    border-radius: var(--radius);
    object-fit: cover;
}

.orbit-ring {
    position: absolute;
    width: 340px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.orbit-ring-one {
    transform: rotate(18deg) scaleX(1.12);
}

.orbit-ring-two {
    width: 430px;
    transform: rotate(-28deg) scaleY(0.82);
}

.score-card {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 17, 38, 0.94);
    color: var(--text);
    padding: 24px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.score-card strong {
    font-size: 4rem;
    line-height: 1;
}

.score-card span,
.score-card small {
    color: var(--muted);
    font-weight: 900;
}

.signal-pill {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(148, 179, 226, 0.24);
    background: rgba(12, 25, 52, 0.94);
    color: var(--text);
    padding: 9px 13px;
    font-size: 0.84rem;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
}

.signal-pill-one {
    top: 28%;
    right: 11%;
}

.signal-pill-two {
    bottom: 22%;
    left: 10%;
}

.signal-pill-three {
    right: 16%;
    bottom: 15%;
}

.feature-grid {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
}

.feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.panel,
.feature-card,
.price-card,
.compare-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(7, 17, 38, 0.88);
    box-shadow: var(--shadow-soft);
}

.panel,
.feature-card,
.price-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(18px, 2.5vw, 28px);
}

.feature-card-large {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: center;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: clamp(22px, 5vw, 58px);
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(0, 234, 220, 0.11), transparent),
        rgba(7, 17, 38, 0.84);
    padding: clamp(20px, 4vw, 38px);
    box-shadow: var(--shadow-soft);
}

.dashboard-preview {
    overflow: hidden;
    border: 1px solid rgba(107, 151, 221, 0.32);
    border-radius: calc(var(--radius) + 4px);
    background: #050d1f;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
    color: #f8fbff;
}

.app-preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(107, 151, 221, 0.2);
    background: rgba(12, 25, 52, 0.96);
    padding: 0 16px;
}

.app-preview-brand,
.app-preview-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 900;
}

.app-preview-brand i {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 18px var(--brand-glow);
}

.app-preview-brand span {
    color: var(--muted);
    font-weight: 750;
}

.app-preview-user {
    width: 28px;
    height: 28px;
    justify-content: center;
    border: 1px solid rgba(0, 234, 220, 0.42);
    border-radius: 50%;
    background: rgba(0, 234, 220, 0.1);
    color: var(--brand);
}

.app-preview-body {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 290px;
}

.app-preview-sidebar {
    display: grid;
    align-content: start;
    gap: 6px;
    border-right: 1px solid rgba(107, 151, 221, 0.16);
    background: #071126;
    padding: 16px 10px;
}

.app-preview-sidebar span {
    border-radius: 7px;
    color: #8ca3c7;
    font-size: 0.72rem;
    font-weight: 850;
    padding: 8px 10px;
}

.app-preview-sidebar .is-active {
    background: rgba(18, 157, 255, 0.16);
    color: #e5f7ff;
}

.app-preview-main {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 20px;
}

.app-preview-heading {
    display: grid;
    gap: 3px;
}

.app-preview-heading span,
.app-preview-score span,
.app-preview-stat span,
.app-preview-activity span,
.app-preview-activity small {
    color: #93a8c8;
    font-size: 0.7rem;
    font-weight: 800;
}

.app-preview-heading strong {
    font-size: 1.05rem;
}

.app-preview-metrics {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
}

.app-preview-score,
.app-preview-stat,
.app-preview-activity {
    display: grid;
    gap: 5px;
    border: 1px solid rgba(107, 151, 221, 0.2);
    border-radius: 9px;
    background: rgba(12, 25, 52, 0.74);
    padding: 14px;
}

.app-preview-score {
    min-height: 112px;
    align-content: center;
    background: radial-gradient(circle at 50% 36%, rgba(0, 234, 220, 0.16), transparent 58%), rgba(12, 25, 52, 0.82);
}

.app-preview-score strong,
.app-preview-stat strong {
    color: var(--brand);
    font-size: 1.7rem;
    line-height: 1;
}

.app-preview-activity b {
    font-size: 0.82rem;
}

.page-hero {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.page-hero.is-pricing-hero {
    justify-items: center;
    margin-inline: auto;
    margin-bottom: clamp(36px, 5vw, 64px);
    gap: clamp(14px, 2vw, 20px);
    text-align: center;
}

.page-hero.is-pricing-hero h1 {
    max-width: 860px;
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    text-wrap: balance;
}

.page-hero.is-pricing-hero .hero-lede {
    max-width: 65ch;
    margin-bottom: 0;
    line-height: 1.65;
    text-wrap: pretty;
}

.trust-wheel-mock {
    width: min(260px, 100%);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--surface) 0 31%, transparent 32%),
        repeating-conic-gradient(from -9deg, rgba(248, 251, 255, 0.66) 0 2deg, transparent 2deg 36deg),
        conic-gradient(#00eadc, #129dff, #5a32ff, #00b88a, #f59e0b, #00eadc);
    box-shadow: var(--shadow-soft);
}

.trust-wheel-mock i {
    position: absolute;
    width: 44%;
    height: 12px;
    left: 50%;
    top: 50%;
    border-radius: 999px;
    background: var(--color);
    transform: rotate(var(--angle)) translateX(22%);
    transform-origin: left center;
    opacity: 0.52;
}

.wheel-core {
    z-index: 1;
    color: var(--text);
    font-size: 2.2rem;
    font-weight: 950;
}

.marketing-trust-score-shell {
    position: relative;
    width: min(300px, 100%);
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(107, 151, 221, 0.28);
    border-radius: 14px;
    background: #050b18;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.marketing-trust-score-shell .trust-score-chart {
    display: block;
    width: 100%;
    aspect-ratio: 1;
}

.marketing-trust-score-shell .trust-score-bg {
    fill: #050b18;
}

.marketing-trust-score-shell .trust-score-category-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 40;
}

.marketing-trust-score-shell .trust-score-category-value {
    fill: none;
    stroke: var(--segment-color);
    stroke-linecap: round;
    stroke-width: 40;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--segment-color), transparent 48%));
}

.marketing-trust-score-shell .trust-score-center circle {
    fill: #0c1934;
    stroke: rgba(206, 227, 255, 0.56);
    stroke-width: 3;
}

.marketing-trust-score-shell .trust-score-number,
.marketing-trust-score-shell .trust-score-title,
.marketing-trust-score-shell .trust-score-subtitle {
    fill: #f8fbff;
    text-anchor: middle;
}

.marketing-trust-score-shell .trust-score-number {
    font-size: 82px;
    font-weight: 950;
}

.marketing-trust-score-shell .trust-score-title {
    fill: var(--brand);
    font-size: 25px;
    font-weight: 950;
}

.marketing-trust-score-shell .trust-score-subtitle {
    fill: #a8b7d0;
    font-size: 15px;
    font-weight: 800;
}

.trust-score-live-pill {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 14px;
    border: 1px solid rgba(0, 234, 220, 0.46);
    border-radius: 999px;
    background: rgba(0, 234, 220, 0.12);
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    padding: 5px 8px;
    text-transform: uppercase;
}

.trust-wheel-visual {
    position: relative;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 34%, rgba(28, 39, 78, 0.98), rgba(16, 24, 52, 0.96) 56%, rgba(10, 16, 36, 0.94)),
        linear-gradient(180deg, rgba(19, 27, 53, 0.96), rgba(10, 16, 36, 0.94));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), var(--shadow-soft);
    display: grid;
    place-items: center;
    min-height: 0;
    padding: clamp(18px, 3vw, 36px);
    padding-top: clamp(64px, 7.6vw, 86px);
}

.trust-wheel-visual .trust-score-chart {
    display: block;
    width: min(100%, 760px);
    aspect-ratio: 1;
    min-height: 240px;
    overflow: visible;
}

.trust-wheel-visual .trust-score-bg {
    fill: #050b18;
    pointer-events: none;
}

.trust-score-grid-ring,
.trust-score-grid-spoke {
    fill: none;
    pointer-events: none;
    stroke: rgba(180, 199, 237, 0.13);
    stroke-width: 1.2;
}

.trust-score-category,
.trust-score-sub-segment {
    cursor: default;
    outline: none;
    transition: opacity 180ms ease, filter 180ms ease;
}

.trust-score-category-track,
.trust-score-sub-track {
    fill: rgba(255, 255, 255, 0.1);
    pointer-events: visiblePainted;
}

.trust-score-category-value,
.trust-score-sub-value {
    fill: var(--segment-color);
    pointer-events: visiblePainted;
    filter: drop-shadow(0 0 7px color-mix(in srgb, var(--segment-color), transparent 55%));
    transform-box: fill-box;
    transform-origin: center;
    animation: trust-column-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-score-sub-track {
    opacity: 0.72;
}

.trust-score-category-label {
    fill: var(--segment-color);
    font-size: 13px;
    font-weight: 950;
    paint-order: stroke;
    pointer-events: none;
    stroke: rgba(3, 7, 17, 0.72);
    stroke-width: 4px;
}

.trust-score-sub-label {
    fill: rgba(234, 244, 255, 0.88);
    font-size: 9px;
    font-weight: 900;
    paint-order: stroke;
    pointer-events: none;
    stroke: rgba(3, 7, 17, 0.7);
    stroke-linejoin: round;
    stroke-width: 2.8px;
    text-rendering: geometricPrecision;
}

.trust-score-center circle {
    fill: url(#trustScoreCenterGradient);
    stroke: rgba(240, 247, 255, 0.78);
    stroke-width: 3;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.trust-score-number,
.trust-score-title,
.trust-score-subtitle {
    fill: #ffffff;
    dominant-baseline: middle;
    letter-spacing: 0;
    pointer-events: none;
}

.trust-score-number {
    font-size: 64px;
    font-weight: 950;
}

.trust-score-title {
    font-size: 22px;
    font-weight: 950;
}

.trust-score-subtitle {
    fill: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.trust-wheel-visual .trust-score-live-pill {
    inset: 18px auto auto 18px;
    z-index: 2;
    border-color: color-mix(in srgb, var(--success), transparent 58%);
    background: color-mix(in srgb, var(--success), transparent 88%);
    color: var(--success);
    padding: 6px 10px;
    font-size: 0.74rem;
    letter-spacing: 0;
}

.trust-wheel-visual .trust-score-breakdown-label {
    grid-column: 1;
    margin: 0;
    color: #dce9ff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-align: center;
}

@keyframes trust-column-rise {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 0.9; transform: scale(1); }
}

.steps-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 14px;
}

.steps-list strong {
    color: var(--brand-2);
}

.steps-list span {
    color: var(--muted);
}

.pricing-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: clamp(14px, 2vw, 22px);
    align-items: stretch;
    justify-content: center;
}

.price-card {
    grid-template-rows: auto auto 1fr auto auto;
}

.price-card.is-featured {
    border-color: rgba(0, 234, 220, 0.72);
    background:
        linear-gradient(180deg, rgba(0, 234, 220, 0.12), transparent 46%),
        var(--surface);
    box-shadow: 0 18px 46px rgba(0, 234, 220, 0.22);
}

.premium-trial-badge {
    width: fit-content;
    border: 1px solid rgba(0, 234, 220, 0.64);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 234, 220, 0.24), rgba(18, 157, 255, 0.22));
    box-shadow: 0 0 0 4px rgba(0, 234, 220, 0.08);
    color: #e7fffd;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    padding: 7px 11px;
    text-transform: uppercase;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price strong {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-weight: 900;
}

.annual-option {
    margin: -4px 0 0;
    color: #a8c5ed;
    font-size: 0.84rem;
    font-weight: 800;
}

.annual-option strong {
    color: var(--brand);
}

.price-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.price-card li::before {
    color: var(--success);
    content: "\2713 ";
    font-weight: 950;
}

.product-image {
    width: 100%;
    max-height: 440px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.pricing-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
    min-height: 330px;
    border: 1px solid rgba(107, 151, 221, 0.26);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 18% 16%, rgba(18, 157, 255, 0.16), transparent 34%),
        radial-gradient(circle at 86% 74%, rgba(0, 234, 220, 0.14), transparent 36%),
        #061025;
    padding: clamp(18px, 3vw, 30px);
    box-shadow: var(--shadow);
}

.pricing-visual-plan {
    display: grid;
    gap: 6px;
    min-height: 190px;
    align-content: end;
    border: 1px solid rgba(148, 179, 226, 0.24);
    border-radius: 12px;
    background: rgba(12, 25, 52, 0.86);
    padding: 18px;
}

.pricing-visual-plan span,
.pricing-visual-plan small {
    color: #a7b8d5;
    font-weight: 850;
}

.pricing-visual-plan strong {
    color: #f8fbff;
    font-size: clamp(2.6rem, 7vw, 4.2rem);
    line-height: 0.9;
}

.pricing-visual-plan.is-premium {
    min-height: 244px;
    border-color: rgba(0, 234, 220, 0.55);
    background: linear-gradient(180deg, rgba(0, 234, 220, 0.16), rgba(12, 25, 52, 0.94));
    box-shadow: 0 14px 38px rgba(0, 234, 220, 0.14);
}

.pricing-visual-plan.is-premium strong,
.pricing-visual-plan b {
    color: var(--brand);
}

.pricing-visual-plan b {
    margin-top: 8px;
    font-size: 0.82rem;
}

.compare-panel {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 3vw, 30px);
}

.comparison-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1.3fr) repeat(2, minmax(110px, 1fr));
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.comparison-grid > * {
    border-bottom: 1px solid var(--border);
    padding: 14px;
}

.comparison-grid > :nth-last-child(-n + 3) {
    border-bottom: 0;
}

.comparison-grid strong {
    background: var(--surface-strong);
}

.comparison-grid strong:not(:first-child) {
    text-align: center;
}

.comparison-status {
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 950;
}

.comparison-status.is-included {
    color: #37d39c;
}

.comparison-status.is-excluded {
    color: #ff6674;
}

.cta-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(0, 234, 220, 0.32);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--ink-panel), #102550);
    color: #ffffff;
    padding: clamp(20px, 4vw, 36px);
    box-shadow: var(--shadow);
}

.cta-band img {
    width: 86px;
    height: 86px;
    border-radius: var(--radius);
    object-fit: cover;
}

.cta-band p {
    color: #c6d5ee;
}

.site-footer {
    width: min(var(--content-max), 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding: 24px clamp(16px, 4vw, 34px) 34px;
    color: var(--muted);
    font-weight: 850;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--brand);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 840px;
}

.legal-content section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(7, 17, 38, 0.88);
    padding: clamp(18px, 3vw, 28px);
}

.legal-content h2 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 960px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .brand small {
        display: none;
    }

    .nav-toggle {
        display: grid;
        grid-column: 2;
        grid-row: 1;
        width: 44px;
        height: 44px;
        gap: 4px;
        place-content: center;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--surface);
    }

    .nav-toggle span:not(.sr-only) {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--text);
    }

    .login-button {
        grid-column: 3;
        grid-row: 1;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: 1fr;
        justify-content: stretch;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--surface);
        padding: 8px;
    }

    body.nav-open .site-nav {
        display: grid;
    }

    .hero-section,
    .split-section,
    .feature-grid.two,
    .feature-grid.three,
    .pricing-layout,
    .feature-card-large,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 0;
    }

    .feature-card-large {
        grid-column: auto;
    }

    .pricing-layout {
        grid-template-columns: minmax(0, 420px);
    }

    .compare-panel {
        overflow-x: auto;
    }

    .comparison-grid {
        min-width: 620px;
    }
}

@media (max-width: 640px) {
    main {
        padding: 28px 20px 64px;
    }

    .site-header {
        min-height: 74px;
        padding: 12px 20px;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand strong {
        font-size: 1.1rem;
    }

    .login-button {
        min-height: 40px;
        padding-inline: 12px;
    }

    h1 {
        font-size: clamp(2.65rem, 16vw, 4.5rem);
    }

    .page-hero.is-pricing-hero {
        margin-bottom: 32px;
    }

    .hero-section,
    .split-section,
    .cta-band,
    .feature-card-large {
        gap: 28px;
    }

    .page-hero,
    .hero-copy {
        gap: 16px;
    }

    .panel,
    .feature-card,
    .price-card {
        padding: 22px 20px;
    }

    .split-section,
    .cta-band {
        padding: 24px 20px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-logo {
        width: 68px;
        height: 68px;
        top: 20px;
        left: 20px;
    }

    .orbit-ring-one {
        width: min(72vw, 260px);
    }

    .orbit-ring-two {
        width: min(86vw, 310px);
    }

    .score-card {
        padding: 18px;
    }

    .score-card strong {
        font-size: 3rem;
    }

    .signal-pill-one,
    .signal-pill-two,
    .signal-pill-three {
        display: block;
        padding: 7px 9px;
        font-size: 0.68rem;
    }

    .signal-pill-one {
        top: 16%;
        right: 4%;
    }

    .signal-pill-two {
        bottom: 12%;
        left: 5%;
    }

    .signal-pill-three {
        right: 6%;
        bottom: 28%;
    }

    .app-preview-body {
        grid-template-columns: 1fr;
    }

    .app-preview-sidebar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid rgba(107, 151, 221, 0.16);
        gap: 4px;
        padding: 8px;
    }

    .app-preview-sidebar span {
        overflow: hidden;
        padding: 7px 4px;
        font-size: 0.62rem;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .app-preview-main {
        padding: 16px;
    }

    .app-preview-metrics,
    .pricing-visual {
        grid-template-columns: 1fr;
    }

    .pricing-visual {
        min-height: 0;
        padding: 20px;
    }

    .pricing-visual-plan,
    .pricing-visual-plan.is-premium {
        min-height: 160px;
    }

    .pricing-visual-plan.is-premium {
        min-height: 184px;
    }

    .trust-wheel-visual {
        padding: 56px 14px 14px;
    }

    .trust-wheel-visual .trust-score-chart {
        min-height: 260px;
    }

    .trust-score-category-label {
        font-size: 10px;
    }

    .trust-score-sub-label {
        font-size: 7px;
    }

    .trust-score-number {
        font-size: 52px;
    }

    .trust-score-title {
        font-size: 18px;
    }

    .trust-score-subtitle {
        font-size: 11px;
    }

    .comparison-grid {
        min-width: 560px;
    }

    .comparison-grid > * {
        padding: 11px 10px;
        font-size: 0.84rem;
    }

    .site-footer,
    .footer-links {
        gap: 10px;
    }

    .site-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 20px 36px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 10px 12px;
        width: 100%;
    }

    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--surface-soft);
        padding: 10px 12px;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
