:root {
    --black: #050505;
    --page: #0d0d0d;
    --panel: #181818;
    --panel-2: #202020;
    --button: #242424;
    --cyan: #00f2d2;
    --cyan-dark: #007a68;
    --blue: #00bfff;
    --orange: #ff9d00;
    --red: #ff2626;
    --red-panel: #5a0707;
    --lime: #caff2f;
    --green: #00f28f;
    --white: #ffffff;
    --muted: #9fa6bd;
    --line: rgba(255, 255, 255, 0.08);
    --strong-line: rgba(0, 242, 210, 0.32);
    --soft-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 78% 8%, rgba(0, 242, 210, 0.08), transparent 26%),
        linear-gradient(180deg, #050505 0%, #090909 48%, #050505 100%);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.58;
}

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

button,
input,
textarea {
    font: inherit;
}

.wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--cyan);
    display: grid;
    place-items: center;
    color: var(--cyan);
    background: #101010;
    box-shadow: 0 0 18px rgba(0, 242, 210, 0.24);
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

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

.links a,
.btn {
    min-height: 38px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--button);
    color: var(--white);
    font-weight: 850;
    font-size: 0.9rem;
    cursor: pointer;
}

.links a:hover,
.btn:hover {
    border-color: var(--strong-line);
}

.btn.primary {
    background: var(--cyan-dark);
}

.btn.orange {
    color: #080808;
    background: var(--orange);
}

.demo-btn {
    color: var(--cyan);
}

.hero {
    padding: 58px 0 40px;
    background:
        linear-gradient(180deg, rgba(0, 242, 210, 0.045), transparent 28%),
        var(--black);
}

.kicker {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.94rem;
}

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

h1 {
    max-width: 650px;
    margin-bottom: 16px;
    color: var(--orange);
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: 0;
    text-transform: uppercase;
}

.subhead {
    max-width: 620px;
    margin-bottom: 14px;
    color: #dce8ff;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
}

.hero-note {
    max-width: 610px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 26px;
}

.hero-copy {
    min-width: 0;
}

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

.window,
.card,
.package,
.faq-item,
.legal-card {
    border: 1px solid var(--line);
    background: rgba(24, 24, 24, 0.88);
}

.software-ui {
    padding: 22px;
}

.product-shot {
    border: 0;
    padding: 0;
    display: grid;
    align-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.product-shot-button {
    width: 100%;
    cursor: zoom-in;
}

.product-shot img {
    width: 100%;
    max-height: 390px;
    height: auto;
    object-fit: contain;
    display: block;
    border: 0;
    box-shadow: var(--soft-shadow);
}

.product-shot span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(5, 5, 5, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 24px 24px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
    display: none !important;
}

.image-lightbox[aria-hidden="false"] {
    display: flex;
}

.image-lightbox img {
    max-width: min(1180px, 100%);
    max-height: calc(100vh - 110px);
    object-fit: contain;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(24, 24, 24, 0.96);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

body.lightbox-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.video-modal[hidden] {
    display: none !important;
}

.video-modal[aria-hidden="false"] {
    display: flex;
}

.video-modal-panel {
    width: min(980px, 100%);
    border: 1px solid var(--strong-line);
    background:
        linear-gradient(145deg, rgba(0, 242, 210, 0.08), transparent 42%),
        rgba(12, 12, 12, 0.98);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
}

.video-modal-header span {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.video-modal-header h2 {
    margin-bottom: 0;
    color: var(--cyan);
    font-size: clamp(1.05rem, 2.2vw, 1.65rem);
    line-height: 1.15;
    text-transform: uppercase;
}

.video-close {
    position: static;
    flex: 0 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.button-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.fake-button {
    min-height: 34px;
    display: grid;
    place-items: center;
    background: var(--button);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 850;
}

.fake-button.active {
    background: var(--cyan-dark);
}

.status-track {
    padding: 24px 36px 7px;
    background: var(--panel);
}

.activity-bar {
    height: 22px;
    width: 58%;
    background: var(--orange);
}

.status-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--muted);
    font-size: 0.68rem;
}

.nearby {
    padding: 18px 0 12px;
    text-align: center;
    color: var(--orange);
    font-size: clamp(2rem, 6vw, 3.45rem);
    font-weight: 950;
}

.live-panel {
    padding: 14px 18px 10px;
    background: var(--panel);
}

.live-panel h3 {
    margin-bottom: 10px;
    text-align: center;
    color: var(--cyan);
    font-size: 0.92rem;
    text-transform: uppercase;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    text-align: center;
    font-size: 0.76rem;
    color: var(--muted);
}

.data-grid strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
    font-family: Consolas, "Courier New", monospace;
}

.alert-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-weight: 850;
}

.badge {
    min-height: 34px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button);
}

.badge.red {
    min-width: 126px;
    border: 1px solid #9e2a2a;
    background: var(--red-panel);
    color: #ffaaaa;
}

.badge.blue {
    color: #9ee8ff;
    background: transparent;
}

.chart {
    min-height: 122px;
    padding: 18px;
    background: var(--panel);
    overflow: hidden;
}

.chart-title {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.channels {
    position: relative;
    height: 72px;
    border-bottom: 3px solid var(--green);
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    align-items: end;
    gap: 4px;
}

.channels i {
    display: block;
    min-height: 3px;
    background: var(--green);
}

.channels i.hot {
    background: var(--orange);
}

.channels i.locked {
    height: 62px;
    border: 1px solid var(--white);
    background: transparent;
}

.channels i.lime {
    background: var(--lime);
}

.scan-line {
    position: absolute;
    left: 44%;
    bottom: -3px;
    width: 2px;
    height: 68px;
    background: var(--blue);
}

.scan-line::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--blue);
}

.signup-card {
    padding: 20px;
    border: 1px solid var(--strong-line);
    border-top: 4px solid var(--cyan);
    background:
        linear-gradient(135deg, rgba(0, 242, 210, 0.07), transparent 42%),
        rgba(18, 18, 18, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.signup-wide,
.compact-signup {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
    gap: 24px;
    align-items: start;
}

.compact-signup {
    grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1.62fr);
    align-items: center;
}

.pro-signup {
    display: grid;
    grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.signup-label {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.signup-intro h2 {
    margin-bottom: 4px;
}

.signup-intro p {
    margin-bottom: 0;
}

.signup-card h2 {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.signup-card p,
.card p,
.package p,
.faq-item p,
.legal-card p,
.legal-card li {
    color: var(--muted);
}

.interest-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.signup-wide .interest-options {
    margin-top: 0;
}

.signup-fields {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 12px;
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.choice-row label {
    cursor: pointer;
}

.choice-row input {
    position: absolute;
    opacity: 0;
}

.choice-row span {
    min-height: 36px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.56);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.choice-row input:checked + span {
    border-color: var(--orange);
    background: rgba(255, 157, 0, 0.13);
    color: var(--white);
}

.version-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.version-card {
    cursor: pointer;
}

.version-card input {
    position: absolute;
    opacity: 0;
}

.version-card span {
    min-height: 104px;
    padding: 16px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(0, 242, 210, 0.04), transparent),
        rgba(5, 5, 5, 0.58);
}

.version-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
}

.version-card small {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.version-card input:checked + span {
    border-color: var(--orange);
    background:
        linear-gradient(145deg, rgba(255, 157, 0, 0.16), rgba(0, 242, 210, 0.04)),
        rgba(5, 5, 5, 0.75);
    box-shadow: 0 0 0 3px rgba(255, 157, 0, 0.08);
}

.version-card input:checked + span strong {
    color: var(--orange);
}

.inline-fields {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(170px, 0.85fr) auto;
    gap: 10px;
}

.pro-fields {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(170px, 0.82fr);
    gap: 10px;
}

.signup-form-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.92fr) minmax(260px, 1.08fr);
    gap: 16px;
    align-items: stretch;
}

.contact-panel {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.42);
}

.inline-fields input,
.compact-signup textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 11px 12px;
    background: rgba(5, 5, 5, 0.76);
    color: var(--white);
    outline: none;
}

.notes-field {
    width: 100%;
    min-height: 112px;
    margin-top: 10px;
    padding: 12px;
    display: block;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.76);
    color: var(--white);
    outline: none;
    resize: vertical;
}

.signup-input {
    width: 100%;
    min-height: 46px;
    padding: 12px;
    display: block;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.76);
    color: var(--white);
    outline: none;
}

.signup-input::placeholder,
.notes-field::placeholder {
    color: rgba(159, 166, 189, 0.82);
}

.signup-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 210, 0.12);
}

.notes-field:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 210, 0.12);
}

.compact-signup textarea {
    margin-top: 10px;
    resize: vertical;
}

.submit-wide {
    width: 100%;
    margin-top: 10px;
}

.captcha-wrap {
    margin-top: 12px;
    overflow-x: auto;
}

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

.inline-fields input:focus,
.compact-signup textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 210, 0.12);
}

.option {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.54);
    cursor: pointer;
}

.option:hover {
    border-color: var(--strong-line);
}

.option input {
    accent-color: var(--cyan);
    margin-top: 3px;
}

.option strong {
    display: block;
    color: var(--white);
}

.option span {
    color: var(--muted);
    font-size: 0.92rem;
}

.field {
    margin-bottom: 12px;
}

.field label {
    display: block;
    margin-bottom: 6px;
    color: #d6ddf5;
    font-size: 0.9rem;
    font-weight: 850;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 13px 14px;
    background: rgba(5, 5, 5, 0.76);
    color: var(--white);
    outline: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 242, 210, 0.12);
}

.fineprint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.section {
    padding: 62px 0;
    border-top: 1px solid var(--line);
}

.advert-strip {
    padding: 34px 0;
}

.advert-line {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 157, 0, 0.3);
    background:
        linear-gradient(90deg, rgba(255, 157, 0, 0.16), rgba(0, 242, 210, 0.06)),
        rgba(18, 18, 18, 0.94);
}

.advert-line strong {
    color: var(--orange);
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.advert-line span {
    color: #dce8ff;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 24px;
}

.section-heading h2,
.page-title h1 {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--cyan);
    font-size: clamp(1.9rem, 4.4vw, 3.25rem);
    line-height: 1.04;
    text-transform: uppercase;
}

.section-heading p,
.page-title p {
    max-width: 470px;
    margin-bottom: 0;
    color: var(--muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

.status-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: rgba(24, 24, 24, 0.9);
}

.status-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: var(--cyan);
}

.status-card mark {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.34);
    color: var(--white);
    font-weight: 900;
}

.status-card h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
}

.status-card p {
    color: var(--muted);
}

.status-swatch {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 34px rgba(255, 255, 255, 0.08);
}

.status-green {
    background: linear-gradient(145deg, rgba(0, 242, 143, 0.14), rgba(24, 24, 24, 0.92) 48%);
}

.status-green::after,
.status-green .status-swatch {
    background: var(--green);
}

.status-yellow {
    background: linear-gradient(145deg, rgba(202, 255, 47, 0.16), rgba(24, 24, 24, 0.92) 48%);
}

.status-yellow::after,
.status-yellow .status-swatch {
    background: var(--lime);
}

.status-orange {
    background: linear-gradient(145deg, rgba(255, 157, 0, 0.18), rgba(24, 24, 24, 0.92) 48%);
}

.status-orange::after,
.status-orange .status-swatch {
    background: var(--orange);
}

.status-red {
    background: linear-gradient(145deg, rgba(255, 38, 38, 0.18), rgba(24, 24, 24, 0.92) 48%);
}

.status-red::after,
.status-red .status-swatch {
    background: var(--red);
}

.insight-box {
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 157, 0, 0.28);
    border-left: 5px solid var(--orange);
    background:
        linear-gradient(135deg, rgba(255, 157, 0, 0.12), rgba(0, 242, 210, 0.04)),
        rgba(18, 18, 18, 0.92);
}

.insight-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--orange);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.insight-box p {
    max-width: 900px;
    margin-bottom: 0;
    color: #dce8ff;
}

.card,
.package,
.legal-card {
    padding: 24px;
}

.premium-card {
    min-height: 190px;
    background:
        linear-gradient(180deg, rgba(0, 242, 210, 0.055), transparent),
        rgba(24, 24, 24, 0.9);
}

.card mark {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    background: rgba(0, 242, 210, 0.1);
    color: var(--cyan);
    font-weight: 900;
}

.card h3,
.package h3,
.legal-card h2 {
    margin-bottom: 8px;
    color: var(--white);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.package h3 {
    color: var(--cyan);
    text-transform: uppercase;
}

.feature-table {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: rgba(24, 24, 24, 0.78);
}

.feature-table span {
    min-height: 58px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #dce8ff;
}

.feature-table span::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 10px;
    flex: 0 0 auto;
    background: var(--orange);
}

.package ul,
.legal-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.package li,
.legal-card li {
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.package li::before {
    content: "+";
    margin-right: 10px;
    color: var(--orange);
    font-weight: 900;
}

.package-btn {
    margin-top: 20px;
    width: 100%;
}

.notice {
    padding: 20px;
    border-left: 5px solid var(--orange);
    background: rgba(255, 157, 0, 0.08);
    color: #ffd799;
}

.lowkey {
    padding-top: 34px;
}

.page-title {
    padding: 58px 0 30px;
}

.how-hero {
    background:
        linear-gradient(180deg, rgba(0, 242, 210, 0.055), transparent 36%),
        var(--black);
}

.how-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 30px;
    align-items: center;
}

.how-hero-grid h1 {
    max-width: 760px;
}

.how-hero-grid p {
    max-width: 720px;
    color: #dce8ff;
}

.how-summary-panel {
    min-height: 250px;
    padding: 28px;
    display: grid;
    align-content: center;
    border: 1px solid var(--strong-line);
    background:
        linear-gradient(145deg, rgba(0, 242, 210, 0.11), rgba(255, 157, 0, 0.08)),
        rgba(18, 18, 18, 0.94);
    box-shadow: var(--soft-shadow);
}

.how-summary-panel span {
    width: max-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    background: rgba(0, 242, 210, 0.1);
    color: var(--cyan);
    font-weight: 900;
    text-transform: uppercase;
}

.how-summary-panel strong {
    margin-bottom: 12px;
    color: var(--orange);
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.how-summary-panel p {
    margin-bottom: 0;
    color: #dce8ff;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: flow;
}

.process-flow article {
    position: relative;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(0, 242, 210, 0.06), transparent),
        rgba(24, 24, 24, 0.92);
}

.process-flow article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 14px;
    height: 2px;
    background: var(--orange);
}

.process-flow mark {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 9px;
    background: rgba(255, 157, 0, 0.14);
    color: var(--orange);
    font-weight: 900;
}

.process-flow h3 {
    color: var(--white);
    text-transform: uppercase;
}

.process-flow p {
    color: var(--muted);
}

.logic-stack {
    display: grid;
    gap: 12px;
}

.logic-stack article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(0, 242, 210, 0.06), transparent 42%),
        rgba(24, 24, 24, 0.92);
}

.logic-stack span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 157, 0, 0.14);
    color: var(--orange);
    font-weight: 950;
}

.logic-stack h3 {
    margin-bottom: 6px;
    color: var(--white);
    text-transform: uppercase;
}

.logic-stack p {
    max-width: 900px;
    margin-bottom: 0;
    color: var(--muted);
}

.proximity-diagram {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.proximity-diagram article {
    position: relative;
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(24, 24, 24, 0.92);
}

.proximity-diagram h3 {
    color: var(--white);
}

.proximity-diagram p {
    color: var(--muted);
}

.proximity-line {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--lime), var(--orange), var(--red));
}

.graph-explainer {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 18px;
    align-items: stretch;
}

.graph-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(18, 18, 18, 0.95);
    background-size: 100% 46px, 58px 100%;
}

.graph-card::before {
    content: "SIGNAL HISTORY";
    position: absolute;
    top: 16px;
    left: 18px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
}

.graph-trace {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 68px;
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0 18%, var(--orange) 18% 34%, var(--red) 34% 52%, var(--orange) 52% 70%, var(--lime) 70% 100%);
    box-shadow:
        0 -28px 0 -1px rgba(255, 157, 0, 0.95),
        120px -62px 0 -1px rgba(255, 38, 38, 0.95),
        240px -88px 0 -1px rgba(255, 38, 38, 0.95),
        360px -46px 0 -1px rgba(255, 157, 0, 0.95);
}

.graph-pulse {
    position: absolute;
    bottom: 68px;
    width: 12px;
    background: var(--red);
    box-shadow: 0 0 22px rgba(255, 38, 38, 0.4);
}

.graph-pulse-one {
    left: 18%;
    height: 58px;
}

.graph-pulse-two {
    left: 42%;
    height: 102px;
}

.graph-pulse-three {
    left: 50%;
    height: 118px;
}

.graph-pulse-four {
    left: 76%;
    height: 70px;
    background: var(--orange);
}

.faq-list,
.legal-stack {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 18px 20px;
}

.faq-item h2 {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 1.18rem;
}

footer {
    padding: 30px 0 42px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.result-card {
    width: min(640px, 100%);
    padding: 34px;
    border-top: 4px solid var(--cyan);
    background: rgba(24, 24, 24, 0.95);
}

.result-card h1 {
    color: var(--cyan);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.result-card p {
    color: var(--muted);
}

.admin-text-card {
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(24, 24, 24, 0.94);
}

.admin-text-card h2 {
    color: var(--cyan);
}

.admin-text-card p {
    color: var(--muted);
}

.admin-text-card pre {
    margin: 0;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
    color: #dce8ff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.94rem;
    line-height: 1.55;
    white-space: pre-wrap;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

@media (max-width: 920px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 0;
    }

    .links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .hero-grid,
    .how-hero-grid,
    .process-flow,
    .proximity-diagram,
    .graph-explainer,
    .split,
    .signup-wide,
    .compact-signup,
    .pro-signup,
    .signup-form-grid,
    .pro-fields {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .process-flow article:not(:last-child)::after,
    .proximity-line {
        display: none;
    }

    .status-grid-4,
    .version-options {
        grid-template-columns: 1fr;
    }

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

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 12px;
    }

    .interest-options,
    .signup-fields,
    .inline-fields,
    .advert-line {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: min(100% - 24px, 1120px);
    }

    .hero,
    .page-title {
        padding-top: 36px;
    }

    .button-row {
        grid-template-columns: 1fr 1fr;
    }

    .data-grid {
        grid-template-columns: 1fr 1fr;
    }

    .alert-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .section {
        padding: 46px 0;
    }

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

    .footer-grid {
        display: block;
    }

    .video-modal {
        padding: 12px;
    }

    .video-modal-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-close {
        width: 100%;
    }

}
