:root {
    --bg: #020b09;
    --panel: rgba(4, 31, 25, .78);
    --panel-2: rgba(6, 43, 34, .72);
    --line: rgba(100, 228, 207, .28);
    --line-strong: rgba(164, 255, 55, .7);
    --text: #f4fff9;
    --muted: #8bcac0;
    --accent: #a6ff3d;
    --cyan: #58ead7;
    --warn: #ffd35c;
    --danger: #ff6e7a;
    --shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        linear-gradient(rgba(88,234,215,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,234,215,.045) 1px, transparent 1px),
        radial-gradient(circle at 75% 10%, rgba(166,255,61,.16), transparent 34rem),
        radial-gradient(circle at 12% 20%, rgba(88,234,215,.12), transparent 30rem),
        var(--bg);
    background-size: 64px 64px, 64px 64px, auto, auto, auto;
    font: 16px/1.55 "Inter", "Segoe UI", system-ui, sans-serif;
    overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }
.landing {
    position: relative;
    isolation: isolate;
    padding-bottom: 1px;
}
.landing:before {
    content: "";
    position: absolute;
    inset: 92px 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88,234,215,.22), transparent);
    z-index: -1;
}
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: linear-gradient(120deg, transparent, rgba(255,255,255,.035), transparent);
    mix-blend-mode: overlay;
}
.glow { position: fixed; width: 32rem; height: 32rem; border-radius: 999px; filter: blur(70px); pointer-events: none; opacity: .2; }
.glow-a { right: -10rem; top: -8rem; background: var(--accent); }
.glow-b { left: -12rem; bottom: 8rem; background: var(--cyan); }

.site-header, .cabinet-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.site-header {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 28px 0;
    position: relative;
    z-index: 4;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.brand img, .brand-fallback {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #061912, #0b382a);
    border: 1px solid rgba(166,255,61,.42);
    box-shadow: 0 0 34px rgba(166,255,61,.18);
    object-fit: cover;
}
.brand-fallback {
    display: grid;
    place-items: center;
    color: #07120d;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    font-weight: 1000;
}
.brand b { display: block; font-size: 1.28rem; letter-spacing: .02em; }
.brand small { display: block; color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .09em; }
.site-header nav { display: flex; align-items: center; gap: 20px; color: var(--muted); }
.site-header nav a:hover { color: var(--text); }

.hero {
    width: min(1180px, calc(100vw - 40px));
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    align-items: center;
    gap: clamp(36px, 5vw, 76px);
    padding: 20px 0 86px;
}
.hero-copy {
    min-width: 0;
}
.hero-copy h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(3rem, 6.25vw, 5.7rem);
    line-height: .96;
    letter-spacing: -.065em;
    text-wrap: balance;
}
.hero-copy p:not(.eyebrow) {
    max-width: 650px;
    color: #b9dcd6;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(88,234,215,.2);
    border-radius: 999px;
    color: #b8eee5;
    background: rgba(6, 43, 34, .44);
    font-size: .86rem;
}
.hero-badges span:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(166,255,61,.55);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.hero-stats span {
    position: relative;
    overflow: hidden;
    min-height: 104px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(88,234,215,.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(88,234,215,.08), transparent 56%),
        rgba(4, 31, 25, .58);
    box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.hero-stats span:after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 1px solid rgba(166,255,61,.22);
    box-shadow: inset 0 0 0 18px rgba(166,255,61,.035);
}
.hero-stats b {
    color: var(--text);
    font-size: 1.02rem;
}
.hero-stats small {
    color: var(--muted);
    line-height: 1.42;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button, .ghost, .small-button, .logout, .side-home {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px 22px;
    color: var(--text);
    background: rgba(9, 54, 43, .62);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover, .ghost:hover, .small-button:hover, .logout:hover, .side-home:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.button.primary {
    color: #07120d;
    background: linear-gradient(135deg, var(--accent), #5eead4);
    border-color: transparent;
    font-weight: 950;
}
.button.soft { background: rgba(7, 28, 23, .72); color: var(--muted); }
.button.wide { width: 100%; }
.ghost { padding: 10px 18px; background: rgba(8, 36, 30, .7); }

.radar-card {
    position: relative;
    min-height: 440px;
    border: 1px solid var(--line);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(88,234,215,.09), transparent 46%),
        radial-gradient(circle at 50% 44%, rgba(166,255,61,.16), transparent 38%),
        var(--panel);
    box-shadow: var(--shadow), inset 0 0 90px rgba(88,234,215,.05);
    overflow: hidden;
}
.radar-card:after {
    content: "";
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 64%;
    background: radial-gradient(ellipse at 50% 0%, rgba(88,234,215,.18), transparent 62%);
    pointer-events: none;
}
.radar-card:before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 34px;
    border: 1px solid rgba(88,234,215,.11);
    pointer-events: none;
}
.radar-card i {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(166,255,61,.22);
    border-radius: 999px;
    animation: orbit 11s linear infinite;
}
.radar-card i:nth-child(2) { inset: 26%; animation-duration: 8s; border-style: dashed; }
.radar-card i:nth-child(3) { inset: 38%; animation-duration: 6s; border-color: rgba(88,234,215,.25); }
.radar-status {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    display: grid;
    gap: 4px;
    text-align: center;
}
.radar-status b {
    color: var(--accent);
    font-weight: 950;
    letter-spacing: .08em;
}
.radar-status small {
    color: var(--muted);
    white-space: nowrap;
}
.logo-orb {
    position: absolute;
    left: 50%;
    top: 47%;
    width: 154px;
    height: 154px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 50%, rgba(166,255,61,.42), transparent 43%),
        linear-gradient(135deg, rgba(166,255,61,.2), rgba(88,234,215,.1));
    border: 1px solid rgba(166,255,61,.28);
    box-shadow: 0 0 70px rgba(166,255,61,.24), inset 0 0 34px rgba(88,234,215,.08);
}
.logo-orb img {
    width: 112px;
    height: 112px;
    border-radius: 30px;
}
.shield-eye {
    display: none;
}
.shield-eye:before {
    content: "";
    position: absolute;
    inset: 30px 20px;
    border: 9px solid var(--accent);
    border-radius: 70% 10% 70% 10% / 70% 10% 70% 10%;
    transform: rotate(45deg);
}
.shield-eye:after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 68px;
    height: 11px;
    border-radius: 999px;
    background: var(--accent);
    transform: rotate(-45deg);
    box-shadow: 0 0 24px rgba(166,255,61,.7);
}
@keyframes orbit { to { transform: rotate(360deg); } }

.section {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto 90px;
}
.feature-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .62fr) minmax(220px, .62fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
}
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(88,234,215,.08), transparent 48%),
        rgba(4, 31, 25, .76);
    box-shadow: var(--shadow);
}
.feature-card:before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 999px;
    border: 1px solid rgba(166,255,61,.18);
    box-shadow: inset 0 0 0 34px rgba(166,255,61,.035), inset 0 0 0 70px rgba(88,234,215,.025);
    pointer-events: none;
}
.feature-card h2,
.feature-card h3 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -.04em;
}
.feature-card h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 4.3vw, 4.4rem);
}
.feature-card h3 {
    margin-top: 54px;
    font-size: 1.6rem;
}
.feature-card p {
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--muted);
}
.big-feature {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 458px;
    background:
        radial-gradient(circle at 78% 22%, rgba(166,255,61,.2), transparent 32%),
        linear-gradient(145deg, rgba(88,234,215,.1), transparent 46%),
        rgba(4, 31, 25, .8);
}
.feature-index {
    position: absolute;
    top: 24px;
    left: 24px;
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #07120d;
    background: linear-gradient(135deg, var(--accent), #68ead8);
    font-weight: 1000;
}
.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.feature-points span {
    padding: 9px 13px;
    border: 1px solid rgba(88,234,215,.22);
    border-radius: 999px;
    color: #bdf7ee;
    background: rgba(4, 31, 25, .64);
    font-size: .88rem;
    font-weight: 800;
}
.section-head {
    position: relative;
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
    padding-left: 18px;
}
.section-head:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(var(--accent), var(--cyan));
    box-shadow: 0 0 24px rgba(166,255,61,.32);
}
.section-head h2, .split h2 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -.05em;
    text-wrap: balance;
}
.section-head p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}
.platform-grid article, .panel, .auth-card, .modal-card {
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.platform-grid article {
    padding: 24px;
    min-height: 214px;
}
.platform-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}
.platform-card div {
    display: grid;
    gap: 14px;
}
.platform-grid b { display: block; font-size: 1.48rem; }
.platform-grid span {
    display: inline-flex;
    width: fit-content;
    color: #07120d;
    background: rgba(255, 211, 92, .95);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 950;
}
.platform-grid span.ready {
    background: linear-gradient(135deg, var(--accent), #6eead7);
}
.platform-grid small {
    display: block;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.65;
}
.platform-grid small, .split p, .muted { color: var(--muted); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.cabinet-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.news-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(88,234,215,.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 86% 8%, rgba(88,234,215,.14), transparent 32%),
        linear-gradient(145deg, rgba(166,255,61,.07), transparent 44%),
        rgba(4, 31, 25, .74);
    box-shadow: var(--shadow);
}
.news-card:before {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    border: 1px solid rgba(166,255,61,.22);
    box-shadow: inset 0 0 0 24px rgba(166,255,61,.035), inset 0 0 0 52px rgba(88,234,215,.025);
    pointer-events: none;
}
.news-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.news-card-top time {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}
.news-card h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.12;
    letter-spacing: -.03em;
}
.news-body {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}
.news-card small {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
}
.news-card .badge {
    width: fit-content;
}
.news-card.severity-warning {
    border-color: rgba(255,211,92,.34);
    background:
        radial-gradient(circle at 86% 8%, rgba(255,211,92,.18), transparent 32%),
        rgba(4, 31, 25, .74);
}
.news-card.severity-critical {
    border-color: rgba(255,110,122,.42);
    background:
        radial-gradient(circle at 86% 8%, rgba(255,110,122,.18), transparent 32%),
        rgba(4, 31, 25, .74);
}
.empty-news {
    grid-column: 1 / -1;
    min-height: 160px;
}
.plan-builder {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(230px, .72fr) minmax(340px, 1fr) minmax(270px, .78fr);
    gap: 20px;
    align-items: stretch;
    margin: 0 0 22px;
    padding: 24px;
    border: 1px solid rgba(88,234,215,.24);
    border-radius: 38px;
    background:
        radial-gradient(circle at 82% 12%, rgba(166,255,61,.2), transparent 28%),
        radial-gradient(circle at 18% 92%, rgba(88,234,215,.12), transparent 32%),
        linear-gradient(135deg, rgba(88,234,215,.1), transparent 52%),
        rgba(3, 28, 23, .76);
    box-shadow: var(--shadow);
}
.plan-builder:before {
    content: "";
    position: absolute;
    inset: -92px -32px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    border: 1px dashed rgba(166,255,61,.28);
    opacity: .7;
    animation: orbit 18s linear infinite;
    pointer-events: none;
}
.plan-builder:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(166,255,61,.09) 46%, transparent 72%);
    transform: translateX(-110%);
    animation: builderSweep 7s ease-in-out infinite;
    pointer-events: none;
}
.builder-copy,
.builder-controls,
.builder-result {
    position: relative;
    z-index: 1;
}
.builder-copy {
    display: grid;
    align-content: space-between;
    gap: 18px;
}
.builder-copy h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.03;
    letter-spacing: -.04em;
}
.builder-copy p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}
.builder-mini-map {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(88,234,215,.16);
    border-radius: 44px;
    background:
        radial-gradient(circle, rgba(166,255,61,.24), transparent 48%),
        rgba(2, 20, 17, .44);
}
.builder-mini-map i {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(166,255,61,.18);
    border-radius: 999px;
    animation: orbit 12s linear infinite;
}
.builder-mini-map i:nth-child(2) {
    inset: 38px;
    border-color: rgba(88,234,215,.22);
    animation-duration: 8s;
    animation-direction: reverse;
}
.builder-mini-map i:nth-child(3) {
    inset: 54px;
    border-color: rgba(166,255,61,.34);
    animation-duration: 5s;
}
.builder-mini-map span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 2.4rem;
    font-weight: 950;
    text-shadow: 0 0 26px rgba(166,255,61,.45);
}
.builder-controls {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(88,234,215,.14);
    border-radius: 30px;
    background: rgba(2, 20, 17, .54);
}
.builder-control-group {
    display: grid;
    gap: 10px;
}
.builder-label {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    color: var(--cyan);
}
.builder-label span {
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.builder-label small {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.term-choice {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.term-pill {
    min-height: 74px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(88,234,215,.22);
    border-radius: 22px;
    color: var(--muted);
    background:
        linear-gradient(145deg, rgba(88,234,215,.08), transparent 52%),
        rgba(4, 31, 25, .72);
    font-weight: 950;
    text-align: left;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.term-pill strong {
    color: var(--text);
    font-size: 1rem;
}
.term-pill small {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.term-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(166,255,61,.38);
}
.term-pill.active {
    color: #07120d;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    box-shadow: 0 16px 40px rgba(166,255,61,.2);
}
.term-pill.active strong,
.term-pill.active small {
    color: #07120d;
}
.device-choice {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 8px;
}
.device-dot {
    aspect-ratio: 1;
    min-height: 38px;
    border: 1px solid rgba(88,234,215,.2);
    border-radius: 15px;
    color: var(--muted);
    background:
        radial-gradient(circle at 50% 20%, rgba(88,234,215,.1), transparent 55%),
        rgba(4, 31, 25, .72);
    font-weight: 950;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}
.device-dot:hover {
    transform: translateY(-2px);
    border-color: rgba(88,234,215,.4);
}
.device-dot.active {
    color: #07120d;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    box-shadow: 0 10px 24px rgba(166,255,61,.2);
}
.platform-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 2px;
}
.choice-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(88,234,215,.22);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(4, 31, 25, .72);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}
.choice-pill input {
    width: auto;
    margin: 0;
    accent-color: var(--accent);
}
.choice-pill:has(input:checked) {
    color: #07120d;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
}
.builder-result {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(166,255,61,.24);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(166,255,61,.1), transparent 50%),
        rgba(2, 20, 17, .68);
}
.result-orbit {
    position: relative;
    width: 86px;
    height: 86px;
    margin-bottom: 4px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(166,255,61,.2), transparent 62%);
}
.result-orbit i,
.result-orbit span {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(166,255,61,.26);
    border-radius: inherit;
    animation: orbit 9s linear infinite;
}
.result-orbit i:nth-child(2) {
    inset: 20px;
    border-color: rgba(88,234,215,.32);
    animation-duration: 6s;
    animation-direction: reverse;
}
.result-orbit span {
    inset: 30px;
    border: 0;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    box-shadow: 0 0 32px rgba(166,255,61,.35);
}
.builder-result small {
    color: var(--cyan);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.builder-result b {
    font-size: 1.25rem;
    line-height: 1.2;
}
.builder-result p,
.builder-result em {
    margin: 0;
    color: var(--muted);
    font-style: normal;
}
.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.result-metrics span {
    min-height: 64px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(88,234,215,.14);
    border-radius: 18px;
    background: rgba(3, 28, 23, .58);
}
.result-metrics em {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.result-metrics strong {
    color: var(--text);
    font-size: .95rem;
}
.builder-result strong {
    color: var(--accent);
    font-size: 1.05rem;
}
.builder-result button {
    width: fit-content;
    margin-top: 8px;
    opacity: .66;
    cursor: default;
}
.plan-builder {
    grid-template-columns: minmax(220px, .58fr) minmax(430px, 1.15fr) minmax(300px, .72fr);
    gap: 22px;
    padding: 26px;
    border-color: rgba(166,255,61,.24);
    background:
        radial-gradient(circle at 86% 8%, rgba(166,255,61,.18), transparent 28%),
        radial-gradient(circle at 8% 86%, rgba(88,234,215,.12), transparent 30%),
        linear-gradient(135deg, rgba(10, 19, 28, .88), rgba(2, 22, 18, .9));
}
.plan-builder:after {
    opacity: .62;
}
.builder-copy {
    padding: 10px 0;
}
.builder-copy h3 {
    max-width: 360px;
}
.builder-steps {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}
.builder-steps span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px 12px;
    align-items: center;
    min-height: 76px;
    padding: 15px;
    border: 1px solid rgba(88,234,215,.16);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(88,234,215,.07), transparent 58%),
        rgba(3, 27, 23, .56);
}
.builder-steps span.active {
    border-color: rgba(166,255,61,.42);
    background:
        linear-gradient(135deg, rgba(166,255,61,.16), transparent 58%),
        rgba(8, 39, 25, .64);
    box-shadow: inset 0 0 28px rgba(166,255,61,.06);
}
.builder-steps i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #06110c;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    font-style: normal;
    font-size: .72rem;
    font-weight: 950;
}
.builder-steps b {
    color: var(--text);
    font-size: .94rem;
}
.builder-steps small {
    color: var(--muted);
    font-size: .78rem;
}
.builder-controls {
    gap: 20px;
    padding: 24px;
    border-color: rgba(88,234,215,.18);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        rgba(2, 17, 15, .62);
}
.builder-control-group {
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(88,234,215,.11);
    border-radius: 24px;
    background: rgba(0,0,0,.12);
}
.term-choice {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.term-pill {
    min-height: 104px;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 12%, rgba(166,255,61,.12), transparent 34%),
        linear-gradient(145deg, rgba(88,234,215,.07), transparent 52%),
        rgba(4, 28, 24, .76);
}
.term-pill strong {
    font-size: 1.08rem;
}
.term-pill small {
    line-height: 1.35;
}
.term-pill.active {
    color: var(--text);
    border-color: rgba(166,255,61,.68);
    background:
        radial-gradient(circle at 86% 12%, rgba(166,255,61,.28), transparent 42%),
        linear-gradient(145deg, rgba(166,255,61,.18), rgba(88,234,215,.08)),
        rgba(9, 44, 28, .82);
    box-shadow: 0 18px 48px rgba(166,255,61,.16), inset 0 0 0 1px rgba(166,255,61,.18);
}
.term-pill.active strong,
.term-pill.active small {
    color: var(--text);
}
.device-choice {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    padding: 10px;
    border: 1px solid rgba(88,234,215,.12);
    border-radius: 22px;
    background: rgba(3, 24, 21, .56);
}
.device-dot {
    min-height: 44px;
    border-radius: 14px;
}
.device-dot.active {
    color: #06110c;
    box-shadow: 0 0 0 4px rgba(166,255,61,.08), 0 12px 26px rgba(166,255,61,.18);
}
.builder-result {
    padding: 26px;
    border-color: rgba(166,255,61,.32);
    background:
        radial-gradient(circle at 50% 8%, rgba(166,255,61,.18), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.035), transparent 44%),
        rgba(2, 17, 15, .74);
}
.result-orbit {
    width: 126px;
    height: 126px;
    margin: 0 auto 6px;
}
.result-orbit span {
    inset: 39px;
    display: grid;
    place-items: center;
    color: #07120d;
    border: 0;
    background: linear-gradient(135deg, var(--accent), #65e4cf);
    box-shadow: 0 0 36px rgba(166,255,61,.38);
    font-size: 2rem;
    font-weight: 950;
}
.builder-result > small,
.builder-result > b,
.builder-result > strong,
.builder-result > em {
    text-align: center;
}
.builder-result b {
    font-size: 1.45rem;
}
.builder-result strong {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(166,255,61,.2);
    border-radius: 18px;
    background: rgba(166,255,61,.055);
}
.builder-result button {
    justify-self: center;
    width: 100%;
    max-width: 260px;
    justify-content: center;
}
@keyframes builderSweep {
    0%, 54% { transform: translateX(-115%); opacity: 0; }
    62% { opacity: .75; }
    100% { transform: translateX(115%); opacity: 0; }
}
.tariff-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.tariff-preview article {
    min-height: 130px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(88,234,215,.18);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(88,234,215,.08), transparent 52%),
        rgba(4, 31, 25, .62);
    box-shadow: var(--shadow);
}
.tariff-preview b {
    font-size: 1.12rem;
}
.tariff-preview small {
    color: var(--muted);
    line-height: 1.55;
}
.tariff-actions {
    margin-top: 18px;
}
.product-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(88,234,215,.18);
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(166,255,61,.1), transparent 42%),
        rgba(2, 22, 18, .62);
    box-shadow: var(--shadow);
}
.trust-strip div {
    min-height: 104px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 22px;
    border: 1px solid rgba(88,234,215,.14);
    border-radius: 24px;
    background: rgba(5, 35, 29, .58);
}
.trust-strip b {
    font-size: 1.1rem;
}
.trust-strip small {
    color: var(--muted);
    line-height: 1.45;
}
.product-flow article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(88,234,215,.2);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(166,255,61,.08), transparent 44%),
        rgba(4, 31, 25, .7);
    box-shadow: var(--shadow);
}
.product-flow span {
    color: var(--cyan);
    font-weight: 950;
    letter-spacing: .12em;
}
.product-flow b {
    display: block;
    margin-top: 18px;
    font-size: 1.45rem;
}
.product-flow p {
    margin: 10px 0 0;
    color: var(--muted);
}
.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}
.glass-list { display: grid; gap: 12px; }
.glass-list span {
    display: grid;
    gap: 5px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 40, 33, .58);
}
.glass-list b {
    color: var(--text);
}
.glass-list small {
    color: var(--muted);
    line-height: 1.5;
}
.site-footer {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border: 1px solid rgba(88,234,215,.18);
    border-radius: 30px;
    background:
        linear-gradient(120deg, rgba(166,255,61,.09), transparent 34%),
        rgba(4, 31, 25, .62);
    box-shadow: var(--shadow);
}
.site-footer div {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}
.site-footer img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
}
.site-footer b {
    display: block;
    letter-spacing: .03em;
}
.site-footer small {
    display: block;
    color: var(--cyan);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
}
.site-footer p {
    margin: 0;
    color: var(--muted);
}

.feature-card,
.platform-grid article,
.trust-strip div,
.product-flow article,
.tariff-preview article,
.news-card,
.glass-list span {
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.feature-card:hover,
.platform-grid article:hover,
.trust-strip div:hover,
.product-flow article:hover,
.tariff-preview article:hover,
.news-card:hover,
.glass-list span:hover {
    transform: translateY(-4px);
    border-color: rgba(166,255,61,.42);
    box-shadow: var(--shadow), 0 0 42px rgba(88,234,215,.08);
}

.auth, .modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .64);
    backdrop-filter: blur(12px);
}
.auth-card, .modal-card {
    width: min(560px, 100%);
    padding: 36px;
    position: relative;
}
.close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--muted);
    background: rgba(8, 40, 33, .62);
}
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.auth-tabs button {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    color: var(--muted);
    background: rgba(6, 31, 26, .7);
}
.auth-tabs button.active { color: #07120d; background: var(--accent); border-color: transparent; font-weight: 900; }
label { display: block; color: var(--cyan); font-size: .78rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
input, select, textarea {
    display: block;
    width: 100%;
    margin: 8px 0 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background: rgba(2, 21, 18, .76);
    outline: none;
}
textarea { min-height: 104px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--line-strong); box-shadow: 0 0 0 4px rgba(166,255,61,.08); }
.form-error { min-height: 22px; color: var(--danger); }

.cabinet {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
}
.cabinet-side {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 24px;
    border-right: 1px solid rgba(88,234,215,.13);
    background: rgba(1, 13, 11, .74);
    backdrop-filter: blur(10px);
}
.cabinet-side nav { display: grid; gap: 10px; margin-top: 44px; }
.cabinet-side nav button, .logout, .side-home {
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 13px 16px;
    color: var(--muted);
    background: transparent;
}
.side-home {
    margin-top: 28px;
    border-color: rgba(88,234,215,.22);
    color: var(--cyan);
    background:
        linear-gradient(120deg, rgba(88,234,215,.09), transparent 58%),
        rgba(5, 35, 29, .44);
    font-weight: 900;
}
.cabinet-side nav button.active {
    color: #07120d;
    background: var(--accent);
    font-weight: 950;
}
.logout { margin-top: 40px; border-color: var(--line); text-align: center; }
.cabinet-main { padding: 36px min(48px, 4vw); }
.cabinet-top { margin-bottom: 30px; }
.cabinet-top h1 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.05em; }
.user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 40, 33, .62);
}
.user-pill span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #07120d;
    background: var(--accent);
    font-weight: 1000;
}
.user-pill small { color: var(--muted); }
.view { display: none; }
.view.active { display: block; }
.dashboard-grid, .admin-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr;
    gap: 18px;
}
.panel { padding: 24px; }
.panel.wide { grid-column: span 1; }
.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.panel-head h3 { margin: 0; font-size: 1.6rem; }
.small-button {
    padding: 10px 14px;
    border-radius: 16px;
}
.card-list, .product-list, .download-grid { display: grid; gap: 12px; }
.product-list { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.download-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.item-card {
    border: 1px solid rgba(88,234,215,.2);
    border-radius: 22px;
    padding: 18px;
    background: rgba(3, 24, 20, .64);
}
.item-card h4 { margin: 0 0 8px; font-size: 1.1rem; }
.item-card p { margin: 4px 0; color: var(--muted); }
.item-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.product-admin-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.product-admin-form label.full { grid-column: 1 / -1; }
.product-admin-form .item-actions { grid-column: 1 / -1; justify-content: flex-end; }
.payment-settings-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.payment-settings-form .full { grid-column: 1 / -1; justify-content: flex-end; }
.payment-card {
    display: grid;
    gap: 12px;
}
.payment-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.payment-card label:not(.toggle-line) {
    display: grid;
    gap: 8px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
}
.payment-card textarea {
    min-height: 120px;
    resize: vertical;
}
.toggle-line {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}
.toggle-line input { accent-color: var(--accent); }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--cyan);
    background: rgba(88,234,215,.1);
    font-size: .75rem;
    font-weight: 900;
}
.badge:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
}
.badge.info { color: var(--cyan); }
.badge.warning { color: var(--warn); }
.badge.critical { color: var(--danger); }
.badge.approved, .badge.active { color: var(--accent); }
.badge.pending_review, .badge.waiting_receipt { color: var(--warn); }
.badge.rejected, .badge.blocked { color: var(--danger); }
.key-box {
    user-select: all;
    overflow-wrap: anywhere;
    margin-top: 10px;
    padding: 12px;
    border-radius: 16px;
    color: var(--accent);
    background: rgba(166,255,61,.08);
}
.toast-stack {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: grid;
    gap: 10px;
}
.toast {
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(4, 31, 25, .94);
    box-shadow: var(--shadow);
}
.toast.error { border-color: rgba(255,110,122,.6); color: #ffd7dc; }

@media (max-width: 900px) {
    .hero, .split, .dashboard-grid, .admin-grid, .feature-mosaic { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .plan-builder { grid-template-columns: 1fr; }
    .builder-mini-map { width: 120px; height: 120px; }
    .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .tariff-preview { grid-template-columns: 1fr; }
    .product-flow, .trust-strip { grid-template-columns: 1fr; }
    .site-footer { align-items: flex-start; flex-direction: column; }
    .radar-card { min-height: 380px; }
    .big-feature { min-height: 360px; }
    .cabinet { grid-template-columns: 1fr; }
    .cabinet-side {
        position: relative;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(88,234,215,.13);
    }
}

@media (max-width: 560px) {
    .site-header nav a { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 42px 0 56px; }
    .hero-copy h1 { font-size: clamp(2.7rem, 16vw, 4.2rem); }
    .hero-stats span { min-height: 88px; }
    .radar-card { min-height: 320px; border-radius: 30px; }
    .logo-orb { width: 126px; height: 126px; border-radius: 34px; }
    .logo-orb img { width: 92px; height: 92px; border-radius: 24px; }
    .radar-status { bottom: 34px; }
    .radar-status small { white-space: normal; }
    .feature-card { padding: 22px; border-radius: 28px; }
    .feature-card h3 { margin-top: 46px; }
    .plan-builder { padding: 16px; border-radius: 28px; }
    .builder-controls { padding: 14px; border-radius: 24px; }
    .term-choice { grid-template-columns: 1fr; }
    .term-pill { min-height: 64px; }
    .device-choice { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .builder-label { align-items: flex-start; flex-direction: column; gap: 3px; }
    .result-metrics { grid-template-columns: 1fr; }
    .auth-card, .modal-card, .panel { padding: 20px; border-radius: 24px; }
    .product-admin-form { grid-template-columns: 1fr; }
}

/* Premium public-site restyle */
:root {
    --premium-bg: #03070d;
    --premium-panel: rgba(5, 13, 20, .78);
    --premium-panel-2: rgba(6, 25, 22, .78);
    --premium-line: rgba(130, 255, 92, .22);
    --premium-line-soft: rgba(120, 238, 218, .15);
    --premium-glow: 0 0 58px rgba(91, 255, 67, .23);
}

body {
    background:
        radial-gradient(circle at 72% 12%, rgba(104, 255, 68, .15), transparent 30rem),
        radial-gradient(circle at 20% 78%, rgba(48, 230, 196, .12), transparent 34rem),
        linear-gradient(rgba(88,234,215,.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,234,215,.038) 1px, transparent 1px),
        linear-gradient(180deg, #02050a 0%, #03100e 48%, #020807 100%);
    background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.landing:after {
    content: "";
    position: fixed;
    inset: auto -8vw 0 -8vw;
    height: 44vh;
    pointer-events: none;
    opacity: .32;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(107, 255, 52, .18), transparent 62%),
        linear-gradient(135deg, transparent 0 24%, rgba(109, 255, 55, .08) 25%, transparent 26% 100%),
        linear-gradient(45deg, transparent 0 31%, rgba(88, 234, 215, .07) 32%, transparent 33% 100%);
    filter: blur(.2px);
    z-index: -2;
}

.noise {
    opacity: .34;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(120deg, transparent, rgba(255,255,255,.035), transparent);
    background-size: 4px 4px, auto;
}

.glow {
    opacity: .28;
    filter: blur(82px);
}

.site-header {
    width: min(1280px, calc(100vw - 40px));
    margin-top: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(88,234,215,.13);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), transparent),
        rgba(3, 10, 16, .74);
    box-shadow: 0 20px 80px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.025);
    backdrop-filter: blur(18px);
}

.site-header nav {
    gap: 28px;
    color: rgba(244,255,249,.78);
    font-weight: 700;
}

.site-header nav a {
    position: relative;
}

.site-header nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.site-header nav a:hover:after {
    transform: scaleX(1);
}

.brand img,
.brand-fallback {
    border-radius: 18px;
    box-shadow: 0 0 32px rgba(166,255,61,.2), inset 0 0 0 1px rgba(255,255,255,.04);
}

.ghost,
.button,
.small-button,
.logout,
.side-home {
    border-radius: 18px;
}

.button.primary,
.ghost:hover {
    box-shadow: 0 14px 34px rgba(98, 255, 67, .22);
}

.hero {
    width: min(1280px, calc(100vw - 40px));
    position: relative;
    min-height: 690px;
    margin-top: 22px;
    padding: clamp(44px, 7vw, 86px);
    grid-template-columns: minmax(360px, .82fr) minmax(420px, 1fr);
    border: 1px solid rgba(88,234,215,.12);
    border-radius: 38px;
    background:
        radial-gradient(circle at 74% 38%, rgba(106, 255, 55, .16), transparent 25rem),
        radial-gradient(circle at 22% 75%, rgba(88, 234, 215, .1), transparent 26rem),
        linear-gradient(145deg, rgba(8, 18, 30, .86), rgba(3, 16, 14, .8));
    box-shadow: 0 32px 110px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.025);
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    right: -4%;
    top: -18%;
    width: min(760px, 58vw);
    height: min(760px, 58vw);
    border-radius: 999px;
    background:
        repeating-radial-gradient(circle, rgba(166,255,61,.18) 0 1px, transparent 1px 56px),
        radial-gradient(circle, rgba(166,255,61,.2), transparent 54%);
    opacity: .52;
    animation: orbit 28s linear infinite;
    pointer-events: none;
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 7% -2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166,255,61,.6), rgba(88,234,215,.42), transparent);
    box-shadow: 0 0 36px rgba(166,255,61,.42);
    pointer-events: none;
}

.hero-copy,
.radar-card {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3.2rem, 6.4vw, 6.15rem);
    line-height: .93;
    letter-spacing: -.075em;
}

.hero-copy h1::first-line {
    color: var(--text);
}

.hero-copy p:not(.eyebrow) {
    max-width: 610px;
    color: rgba(226, 255, 247, .76);
}

.eyebrow {
    color: #64f9df;
    text-shadow: 0 0 22px rgba(88,234,215,.18);
}

.hero-badges span,
.hero-stats span,
.feature-card,
.platform-grid article,
.trust-strip,
.product-flow article,
.glass-list span,
.site-footer,
.news-card,
.tariff-preview article {
    background:
        linear-gradient(180deg, rgba(255,255,255,.04), transparent),
        rgba(4, 15, 21, .72);
    border-color: rgba(95, 255, 210, .14);
    box-shadow: 0 24px 74px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.025);
}

.hero-stats {
    max-width: 680px;
}

.hero-stats span {
    min-height: 122px;
}

.hero-stats b {
    color: #9dff46;
    font-size: 1.12rem;
    text-shadow: 0 0 24px rgba(166,255,61,.16);
}

.radar-card {
    min-height: 520px;
    border-radius: 42px;
    border-color: rgba(166,255,61,.25);
    background:
        radial-gradient(circle at 50% 42%, rgba(166,255,61,.2), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(88,234,215,.1), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,.045), transparent 42%),
        rgba(3, 14, 21, .78);
    box-shadow: 0 36px 120px rgba(0,0,0,.48), inset 0 0 110px rgba(88,234,215,.045), var(--premium-glow);
}

.radar-card i {
    border-color: rgba(166,255,61,.28);
}

.logo-orb {
    width: 188px;
    height: 188px;
    border-radius: 46px;
    background:
        radial-gradient(circle at 50% 50%, rgba(166,255,61,.3), transparent 60%),
        linear-gradient(145deg, rgba(166,255,61,.18), rgba(88,234,215,.08));
    box-shadow: 0 0 70px rgba(166,255,61,.26);
}

.logo-orb img {
    width: 136px;
    height: 136px;
    border-radius: 34px;
}

.radar-status {
    border-color: rgba(166,255,61,.28);
    background: rgba(2, 18, 14, .78);
}

.feature-mosaic,
.platform-grid,
.product-flow,
.trust-strip,
.split {
    position: relative;
}

.section {
    width: min(1280px, calc(100vw - 40px));
    margin-bottom: 105px;
}

.section-head {
    margin-bottom: 34px;
    padding-left: 0;
}

.section-head:before {
    display: none;
}

.section-head h2,
.split h2 {
    max-width: 820px;
    font-size: clamp(2.3rem, 5vw, 5rem);
    letter-spacing: -.065em;
}

.section-head h2 span,
.hero-copy h1 span {
    color: var(--accent);
}

.feature-card,
.platform-grid article,
.tariff-preview article,
.glass-list span {
    border-radius: 30px;
}

.big-feature {
    background:
        radial-gradient(circle at 72% 18%, rgba(166,255,61,.26), transparent 30%),
        linear-gradient(145deg, rgba(10, 21, 31, .84), rgba(4, 31, 25, .78));
}

.feature-index {
    box-shadow: 0 0 34px rgba(166,255,61,.25);
}

.plan-builder {
    width: min(1280px, 100%);
    margin-inline: auto;
    grid-template-columns: minmax(220px, .45fr) minmax(520px, 1fr) minmax(330px, .56fr);
    gap: 0;
    padding: 0;
    border-radius: 34px;
    border-color: rgba(166,255,61,.22);
    background:
        radial-gradient(circle at 80% 18%, rgba(166,255,61,.17), transparent 27rem),
        linear-gradient(180deg, rgba(255,255,255,.045), transparent),
        rgba(4, 12, 20, .82);
    box-shadow: 0 36px 120px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.025);
}

.plan-builder:before {
    inset: 36px 44px auto auto;
    width: 230px;
    height: 230px;
    opacity: .48;
}

.builder-copy,
.builder-controls,
.builder-result {
    padding: 30px;
}

.builder-copy {
    border-right: 1px solid rgba(88,234,215,.1);
    background:
        linear-gradient(145deg, rgba(166,255,61,.08), transparent 52%),
        rgba(2, 13, 18, .36);
}

.builder-copy h3 {
    max-width: 420px;
    font-size: clamp(1.8rem, 3.3vw, 3.1rem);
}

.builder-steps {
    gap: 14px;
}

.builder-steps span {
    min-height: 88px;
    border-radius: 22px;
}

.builder-steps span.active {
    border-color: rgba(166,255,61,.58);
    box-shadow: inset 0 0 40px rgba(166,255,61,.08), 0 0 28px rgba(166,255,61,.08);
}

.builder-controls {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.builder-control-group {
    gap: 18px;
    padding: 22px;
    border-color: rgba(88,234,215,.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        rgba(2, 14, 20, .52);
}

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

.term-pill {
    min-height: 118px;
    padding: 20px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 86% 14%, rgba(166,255,61,.12), transparent 34%),
        rgba(6, 16, 26, .72);
}

.term-pill strong {
    font-size: 1.14rem;
}

.term-pill.active {
    border-color: rgba(166,255,61,.75);
    background:
        radial-gradient(circle at 82% 18%, rgba(166,255,61,.32), transparent 42%),
        linear-gradient(145deg, rgba(166,255,61,.18), rgba(88,234,215,.08)),
        rgba(9, 37, 25, .84);
    box-shadow: 0 24px 54px rgba(91,255,67,.18), inset 0 0 0 1px rgba(166,255,61,.2);
}

.device-choice {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
}

.device-dot {
    min-height: 48px;
    border-radius: 14px;
    background: rgba(6, 16, 26, .72);
}

.builder-result {
    border-width: 0 0 0 1px;
    border-style: solid;
    border-color: rgba(88,234,215,.1);
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 16%, rgba(166,255,61,.22), transparent 42%),
        rgba(1, 9, 14, .5);
}

.result-orbit {
    width: 154px;
    height: 154px;
}

.result-orbit span {
    inset: 48px;
    font-size: 2.2rem;
}

.builder-result b {
    font-size: 1.62rem;
}

.builder-result strong {
    border-color: rgba(166,255,61,.28);
    background: rgba(166,255,61,.075);
}

.tariff-preview article {
    min-height: 150px;
    padding: 26px;
}

.site-footer {
    width: min(1280px, calc(100vw - 40px));
    border-radius: 34px;
}

@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .plan-builder {
        grid-template-columns: 1fr;
    }

    .builder-copy,
    .builder-result {
        border: 0;
    }
}

@media (max-width: 680px) {
    .site-header {
        width: min(100% - 24px, 1280px);
        margin-top: 12px;
        padding: 14px;
    }

    .hero,
    .section,
    .site-footer {
        width: min(100% - 24px, 1280px);
    }

    .hero {
        padding: 28px;
        border-radius: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 4.2rem);
    }

    .plan-builder {
        border-radius: 28px;
    }

    .builder-copy,
    .builder-controls,
    .builder-result {
        padding: 18px;
    }

    .term-choice {
        grid-template-columns: 1fr;
    }

    .term-pill {
        min-height: 78px;
    }
}

/* Premium layout polish: keep the expensive feel, remove collisions. */
.hero {
    grid-template-columns: minmax(0, .95fr) minmax(390px, .82fr);
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(40px, 5.5vw, 70px);
    min-height: 650px;
}

.hero-copy {
    min-width: 0;
    max-width: 560px;
}

.hero-copy h1 {
    max-width: 560px;
    font-size: clamp(3rem, 5.25vw, 5.05rem);
    line-height: .98;
    letter-spacing: -.058em;
}

.hero-copy p:not(.eyebrow) {
    max-width: 520px;
}

.radar-card {
    justify-self: end;
    width: min(100%, 520px);
    min-height: 470px;
}

.radar-status {
    bottom: 34px;
}

.feature-mosaic {
    gap: 28px;
    align-items: stretch;
}

.feature-card {
    min-width: 0;
}

.feature-card h2 {
    max-width: 640px;
    font-size: clamp(2.45rem, 4vw, 4.25rem);
    line-height: 1.08;
    letter-spacing: -.052em;
}

.big-feature {
    padding-right: 34px;
}

.feature-card:not(.big-feature) {
    padding-top: 92px;
}

.feature-card h3 {
    margin-top: 0;
    line-height: 1.08;
}

.feature-card p {
    line-height: 1.58;
}

.plan-builder {
    grid-template-columns: minmax(260px, .5fr) minmax(520px, 1fr) minmax(320px, .56fr);
    gap: 18px;
    padding: 18px;
}

.builder-copy,
.builder-controls,
.builder-result {
    border-radius: 28px;
}

.builder-copy {
    border-right: 0;
    padding: 30px 28px;
}

.builder-copy h3 {
    max-width: 330px;
    font-size: clamp(2rem, 2.65vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.builder-copy p {
    max-width: 300px;
}

.builder-controls {
    padding: 28px;
}

.builder-result {
    border-width: 0;
}

@media (max-width: 1240px) {
    .hero {
        grid-template-columns: minmax(0, .9fr) minmax(370px, .78fr);
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 5vw, 4.55rem);
        max-width: 500px;
    }

    .radar-card {
        width: min(100%, 470px);
    }

    .feature-mosaic {
        grid-template-columns: minmax(0, 1fr) minmax(230px, .7fr) minmax(230px, .7fr);
    }

    .feature-card h2 {
        font-size: clamp(2.25rem, 3.6vw, 3.55rem);
    }
}

@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-copy h1,
    .hero-copy p:not(.eyebrow),
    .radar-card {
        max-width: none;
        width: 100%;
    }

    .radar-card {
        justify-self: stretch;
    }

    .feature-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .big-feature {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .plan-builder {
        grid-template-columns: 1fr;
    }

    .builder-copy h3,
    .builder-copy p {
        max-width: 720px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding: 26px;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
        letter-spacing: -.05em;
    }

    .radar-card {
        min-height: 360px;
    }

    .feature-mosaic {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .feature-card:not(.big-feature) {
        padding-top: 82px;
    }

    .plan-builder {
        padding: 14px;
        gap: 14px;
    }
}
