:root {
    --bg: #040a12;
    --bg-deep: #02070d;
    --panel: #091421;
    --panel-2: #0d1a29;
    --panel-3: #111f30;
    --line: #1d3044;
    --line-soft: rgba(132, 178, 220, 0.15);
    --text: #f7fbff;
    --muted: #8fa8bf;
    --blue: #42b5ff;
    --green: #29df96;
    --red: #ff6868;
    --gold: #f2c85d;
    --header-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 8%, rgba(50, 142, 214, 0.13), transparent 25rem),
        radial-gradient(circle at 83% 22%, rgba(29, 202, 135, 0.08), transparent 24rem),
        linear-gradient(rgba(73, 116, 153, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 116, 153, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, #030913, #07111b 36%, #040a12 72%, #02070d);
    background-size: auto, auto, 54px 54px, 54px 54px, auto;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.site-shell {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid rgba(108, 162, 208, 0.17);
    background: rgba(3, 9, 17, 0.9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(73, 211, 233, 0.32));
}

.site-brand span {
    white-space: nowrap;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a {
    position: relative;
    padding: 24px 0;
    color: #b8c9d8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.home-language-switch {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
}

.home-language-switch a {
    display: grid;
    min-width: 30px;
    height: 27px;
    place-items: center;
    border-radius: 999px;
    color: #9fb0c4;
    font-size: .66rem;
    font-weight: 800;
    text-decoration: none;
}

.home-language-switch a.active {
    color: #07131f;
    background: #38d9e6;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 4px;
    background: #dce9f4;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.button-primary {
    color: #04120c;
    background: linear-gradient(135deg, #7bde90, #25dfa1);
    box-shadow: 0 12px 32px rgba(31, 219, 148, 0.18);
}

.button-ghost,
.button-download {
    border-color: #294157;
    background: rgba(7, 16, 27, 0.76);
}

.button-small {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 12px;
}

.button-blue {
    background: linear-gradient(135deg, #2b70ff, #37aef2);
    box-shadow: 0 12px 30px rgba(51, 132, 255, 0.22);
}

.session-pill {
    padding: 8px 12px;
    border: 1px solid rgba(41, 223, 150, 0.25);
    border-radius: 999px;
    color: #8df3c3;
    background: rgba(41, 223, 150, 0.08);
    font-size: 11px;
    font-weight: 800;
}

.hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(620px, 1.17fr);
    gap: clamp(36px, 5vw, 82px);
    align-items: center;
    padding-block: 72px 46px;
}

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

.release-pill,
.section-label,
.download-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(66, 181, 255, 0.28);
    border-radius: 999px;
    color: #7bcaff;
    background: rgba(35, 123, 190, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin: 18px 0 8px;
    font-size: clamp(46px, 5vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-kicker {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: clamp(17px, 1.65vw, 24px);
    font-weight: 700;
}

.hero-description {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.hero-checks,
.feature-list,
.tier-card ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.hero-checks {
    display: grid;
    gap: 9px;
}

.hero-checks li,
.feature-list li,
.tier-card li {
    position: relative;
    padding-left: 24px;
    color: #c7d6e3;
    font-size: 13px;
}

.hero-checks li::before,
.feature-list li::before,
.tier-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

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

.platform-line {
    margin: 14px 0 0;
    color: #627d94;
    font-size: 11px;
}

.cockpit-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #21364a;
    border-radius: 14px;
    background:
        radial-gradient(circle at 80% 10%, rgba(34, 210, 145, 0.08), transparent 18rem),
        #08131f;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.03);
}

.cockpit-topbar {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    border-bottom: 1px solid #1a2c3e;
}

.cockpit-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.cockpit-brand img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.bridge-live {
    color: #73eab5;
    font-size: 10px;
    font-weight: 800;
}

.bridge-live i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.cockpit-time {
    color: #7690a6;
    font-size: 9px;
}

.cockpit-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 175px;
    gap: 10px;
    padding: 12px;
}

.chart-panel,
.signal-preview {
    min-width: 0;
    border: 1px solid #172a3c;
    border-radius: 9px;
    background: #06101b;
}

.chart-toolbar {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-bottom: 1px solid #162a3d;
}

.chart-toolbar span {
    padding: 4px 7px;
    border: 1px solid #233b50;
    border-radius: 5px;
    color: #cfe0ee;
    font-size: 9px;
}

.chart-toolbar small {
    margin-left: auto;
    color: #5f7b92;
    font-size: 8px;
}

.hero-chart {
    display: block;
    width: 100%;
    height: auto;
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 8px;
    color: #58748c;
    font-size: 8px;
}

.signal-preview {
    padding: 10px;
}

.quote-grid {
    display: grid;
    gap: 5px;
}

.quote-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 8px;
    border-radius: 6px;
    background: #091725;
}

.quote-grid span {
    color: #8ea5ba;
    font-size: 9px;
}

.quote-grid div:first-child span {
    color: var(--red);
}

.quote-grid div:nth-child(2) span {
    color: var(--green);
}

.quote-grid strong {
    font-size: 10px;
}

.signal-preview h3 {
    margin: 12px 0 7px;
    font-size: 11px;
}

.signal-preview dl {
    margin: 0;
}

.signal-preview dl div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid #16293a;
}

.signal-preview dt,
.signal-preview dd {
    margin: 0;
    font-size: 8px;
}

.signal-preview dt {
    color: #7891a8;
}

.signal-preview dd {
    color: var(--green);
    font-weight: 800;
}

.cockpit-stats {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    margin: 0 12px 12px;
    overflow: hidden;
    border: 1px solid #182b3d;
    border-radius: 8px;
}

.cockpit-stats div {
    padding: 10px 12px;
    border-right: 1px solid #182b3d;
}

.cockpit-stats div:last-child {
    border-right: 0;
}

.cockpit-stats span,
.cockpit-stats small {
    display: block;
    color: #6f899e;
    font-size: 8px;
    font-weight: 500;
}

.cockpit-stats strong {
    color: #dce9f4;
    font-size: 10px;
}

.cockpit-stats strong:first-letter,
.cockpit-stats .ready {
    color: var(--green);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 82px;
    overflow: hidden;
    border: 1px solid #1b3044;
    border-radius: 11px;
    background: rgba(7, 16, 27, 0.78);
}

.trust-strip > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    border-right: 1px solid #1b3044;
}

.trust-strip > div:last-child {
    border-right: 0;
}

.trust-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(66, 181, 255, 0.4);
    border-radius: 50%;
    color: var(--blue);
    background: rgba(29, 112, 177, 0.12);
}

.trust-icon.live {
    color: var(--green);
}

.trust-strip p {
    min-width: 0;
    margin: 0;
}

.trust-strip strong,
.trust-strip small {
    display: block;
}

.trust-strip strong {
    overflow: hidden;
    color: #dfeaf3;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-strip small {
    margin-top: 2px;
    color: #718ba1;
    font-size: 9px;
}

.section-block,
.product-showcase {
    padding-block: 76px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading .section-label {
    margin-inline: auto;
}

.section-heading h2,
.feature-copy h2 {
    margin: 13px 0 8px;
    color: #f8fbff;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p,
.feature-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.workflow-grid article {
    position: relative;
    min-height: 164px;
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid #1c3146;
    border-radius: 10px;
    background: linear-gradient(145deg, #0b1725, #08121e);
}

.workflow-grid article:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -20px;
    z-index: 2;
    color: #9bb2c5;
    font-size: 20px;
}

.step-number {
    position: absolute;
    top: 15px;
    left: 16px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.workflow-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid #24405a;
    border-radius: 8px;
    color: #d4e5f4;
    background: #07121e;
    font-size: 36px;
}

.candle-icon {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.candle-icon i {
    width: 7px;
    height: 32px;
    border-radius: 2px;
    background: var(--green);
    box-shadow: 0 -9px 0 -3px var(--green), 0 9px 0 -3px var(--green);
}

.candle-icon i:nth-child(2) {
    height: 22px;
    background: var(--red);
    box-shadow: 0 -9px 0 -3px var(--red), 0 9px 0 -3px var(--red);
}

.workflow-grid h3,
.protection-grid h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.workflow-grid p,
.protection-grid p {
    margin: 0;
    color: #7f99b0;
    font-size: 11px;
}

.product-showcase {
    display: grid;
    gap: 22px;
}

.feature-stage {
    min-height: 460px;
    display: grid;
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid #1c3146;
    border-radius: 13px;
    background:
        radial-gradient(circle at 85% 12%, rgba(55, 151, 219, 0.09), transparent 28rem),
        #08131f;
}

.feature-stage-reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
}

.feature-copy {
    padding: clamp(30px, 4.5vw, 68px);
}

.feature-copy h2 {
    font-size: clamp(32px, 3.3vw, 54px);
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
}

.feature-visual {
    min-width: 0;
    margin: 28px;
    overflow: hidden;
    border: 1px solid #1a3045;
    border-radius: 10px;
    background: #06101a;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.mini-chart-head {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #1b3044;
}

.mini-chart-head span {
    padding: 4px 8px;
    border: 1px solid #29435a;
    border-radius: 5px;
    color: #bcd0df;
    font-size: 9px;
}

.mini-chart-head strong {
    margin-left: auto;
    color: var(--green);
    font-size: 9px;
}

.analysis-visual svg {
    display: block;
    width: 100%;
    height: auto;
}

.override-visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(44, 82, 115, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 82, 115, 0.12) 1px, transparent 1px),
        #06101a;
    background-size: 56px 56px;
}

.override-chart-line {
    position: absolute;
    right: -5%;
    bottom: 32%;
    left: 35%;
    height: 2px;
    border-top: 2px dashed #dce9f2;
    transform: rotate(-13deg);
    opacity: 0.65;
}

.override-modal {
    position: relative;
    z-index: 2;
    width: min(320px, calc(100% - 32px));
    padding: 18px;
    border: 1px solid #26445e;
    border-radius: 11px;
    background: rgba(6, 16, 27, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.override-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1c3042;
}

.override-head span,
.override-head strong {
    display: block;
}

.override-head span {
    color: #708ba2;
    font-size: 9px;
    text-transform: uppercase;
}

.override-head strong {
    font-size: 13px;
}

.expires {
    color: var(--gold) !important;
}

.override-row,
.override-toggle {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #162a3b;
    font-size: 10px;
}

.override-row span,
.override-toggle span {
    color: #7e97ac;
}

.override-row .buy {
    color: var(--green);
}

.override-toggle i {
    width: 34px;
    height: 18px;
    position: relative;
    border-radius: 999px;
    background: var(--green);
}

.override-toggle i::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

.override-modal button {
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    border: 0;
    border-radius: 7px;
    color: #06110d;
    background: var(--green);
    font-weight: 800;
}

.protection-section {
    padding-top: 54px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    overflow: hidden;
    border: 1px solid #20364b;
    border-radius: 11px;
    background: #20364b;
}

.protection-grid article {
    min-height: 126px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #0a1623;
}

.protection-grid article > span {
    color: #84bdf0;
    font-size: 38px;
    text-align: center;
}

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

.download-card {
    min-height: 380px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    padding: 38px;
    border: 1px solid #256da0;
    border-radius: 12px;
    background:
        radial-gradient(circle at 82% 75%, rgba(31, 120, 255, 0.2), transparent 15rem),
        #071321;
}

.mobile-card {
    border-color: #1b9668;
    background:
        radial-gradient(circle at 82% 74%, rgba(26, 211, 140, 0.14), transparent 15rem),
        #071721;
}

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

.download-copy h3 {
    margin: 10px 0;
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.05;
}

.download-copy p {
    color: var(--muted);
    font-size: 12px;
}

.download-copy small {
    display: block;
    margin-top: 11px;
    overflow-wrap: anywhere;
    color: #6e899f;
    font-size: 9px;
}

.download-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0;
}

.download-tags span {
    padding: 5px 8px;
    border: 1px solid #244158;
    border-radius: 999px;
    color: #adc2d4;
    font-size: 9px;
}

.ea-product-art {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(87, 154, 255, 0.3);
    border-radius: 10px;
    background: linear-gradient(145deg, #10213c, #07101b);
    box-shadow: 0 28px 70px rgba(0, 79, 255, 0.18);
}

.ea-product-art img {
    width: 118px;
    height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 0 26px rgba(35, 214, 235, 0.38));
}

.ea-product-art strong {
    margin-top: 8px;
    color: #6ac5ff;
    font-size: 28px;
}

.ea-product-art span {
    color: #a7c1d6;
    font-size: 12px;
}

.phone-preview {
    width: 210px;
    height: 345px;
    justify-self: end;
    padding: 24px 15px 16px;
    overflow: hidden;
    border: 5px solid #566779;
    border-radius: 29px;
    background: #07101b;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.phone-camera {
    width: 60px;
    height: 8px;
    margin: -15px auto 16px;
    border-radius: 999px;
    background: #1c2a38;
}

.phone-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
}

.phone-brand img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.phone-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 17px;
}

.phone-metrics div,
.phone-signal {
    padding: 10px;
    border: 1px solid #172c3e;
    border-radius: 7px;
    background: #0a1724;
}

.phone-metrics small,
.phone-signal span {
    display: block;
    color: #728ca2;
    font-size: 7px;
}

.phone-metrics strong,
.phone-signal strong {
    font-size: 9px;
}

.phone-signal {
    margin-top: 10px;
}

.phone-signal strong {
    color: var(--green);
}

.phone-signal i {
    display: block;
    height: 70px;
    margin-top: 10px;
    background:
        linear-gradient(155deg, transparent 47%, var(--green) 48% 50%, transparent 51%),
        linear-gradient(25deg, transparent 47%, var(--blue) 48% 50%, transparent 51%);
    opacity: 0.7;
}

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

.tier-card {
    min-width: 0;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    border: 1px solid #27425a;
    border-radius: 11px;
    background: linear-gradient(180deg, #0c1927, #08131f);
}

.tier-card.is-current {
    border-color: var(--green);
    box-shadow: inset 0 3px var(--green), 0 20px 45px rgba(0, 0, 0, 0.2);
}

.tier-bronze {
    border-color: #8d5a35;
}

.tier-silver {
    border-color: #64798d;
}

.tier-gold {
    border-color: #8d7428;
}

.tier-platinum {
    border-color: #634da4;
}

.tier-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-start;
}

.tier-name {
    color: #69c7ff;
    font-size: 14px;
    font-weight: 800;
}

.tier-bronze .tier-name {
    color: #d58d50;
}

.tier-silver .tier-name {
    color: #c0ccd5;
}

.tier-gold .tier-name {
    color: var(--gold);
}

.tier-platinum .tier-name {
    color: #b793ff;
}

.tier-status {
    padding: 4px 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: #7ce9b9;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tier-eyebrow {
    margin-top: 24px;
    color: #758fa5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.tier-card p {
    min-height: 72px;
    color: #9ab0c2;
    font-size: 11px;
}

.tier-card ul {
    display: grid;
    gap: 8px;
    margin: 5px 0 24px;
}

.tier-card li {
    color: #a9bdcc;
    font-size: 10px;
}

.tier-action {
    margin-top: auto;
    padding: 10px;
    border: 1px solid #31506a;
    border-radius: 7px;
    color: #e7f2fa;
    background: #0b1a28;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
}

.tier-card.is-current .tier-action {
    color: #04120c;
    border-color: transparent;
    background: var(--green);
}

.tier-note {
    margin: 15px 0 0;
    color: #718ba2;
    text-align: center;
    font-size: 10px;
}

.risk-disclosure {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 14px;
    margin-block: 34px 72px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 104, 104, 0.55);
    border-radius: 9px;
    background: rgba(83, 21, 28, 0.28);
}

.risk-disclosure > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-weight: 900;
}

.risk-disclosure p {
    margin: 0;
    color: #c2aeb1;
    font-size: 10px;
}

.risk-disclosure strong {
    color: #ff9292;
}

.site-footer {
    border-top: 1px solid #17293a;
    background: #02070d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 54px;
    padding-block: 54px 36px;
}

.footer-brand p {
    max-width: 300px;
    margin: 15px 0 8px;
    color: #71899e;
    font-size: 11px;
}

.footer-brand > span {
    color: #547086;
    font-size: 9px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: #dce8f2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a {
    margin: 4px 0;
    color: #738da3;
    text-decoration: none;
    font-size: 10px;
}

.footer-grid a:hover {
    color: #fff !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px;
    border-top: 1px solid #132331;
    color: #506b82;
    font-size: 9px;
}

section[id],
footer[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 1240px) {
    .hero {
        grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(43px, 5vw, 64px);
    }

    .download-card {
        grid-template-columns: 1fr 190px;
        padding: 28px;
    }

    .phone-preview {
        width: 180px;
        height: 320px;
    }

    .tier-card {
        padding: 21px 16px;
    }
}

@media (max-width: 1080px) {
    :root {
        --header-height: 66px;
    }

    .site-shell {
        width: min(100% - 36px, 980px);
    }

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

    .nav-toggle {
        display: block;
        order: 3;
        justify-self: end;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        max-height: 0;
        display: grid;
        gap: 0;
        overflow: hidden;
        background: rgba(3, 9, 17, 0.98);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        transition: max-height 0.25s ease;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a {
        width: min(100% - 36px, 980px);
        margin-inline: auto;
        padding: 16px 4px;
        border-bottom: 1px solid #142536;
    }

    .primary-nav a::after {
        display: none;
    }

    .nav-actions {
        order: 2;
    }

    .hero {
        min-height: 0;
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

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

    .hero h1 {
        max-width: 760px;
        font-size: clamp(50px, 8vw, 74px);
    }

    .cockpit-card {
        width: 100%;
    }

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

    .trust-strip > div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid #1b3044;
    }

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

    .workflow-grid article:not(:last-child)::after {
        content: "↓";
        right: 50%;
        bottom: -24px;
        transform: translateX(50%);
    }

    .feature-stage,
    .feature-stage-reverse {
        grid-template-columns: 1fr;
    }

    .feature-stage-reverse .feature-visual {
        order: 2;
    }

    .feature-stage-reverse .feature-copy {
        order: 1;
    }

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

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

    .download-card {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .phone-preview {
        width: 210px;
        height: 345px;
    }

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

    .tier-card:last-child {
        grid-column: 1 / -1;
        min-height: 300px;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 28px, 640px);
    }

    .site-brand img {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .site-brand span {
        font-size: 14px;
    }

    .nav-shell {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
    }

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

    .nav-actions .button-small {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .session-pill {
        display: none;
    }

    .hero {
        gap: 34px;
        padding-block: 42px 30px;
    }

    .hero h1 {
        margin-top: 14px;
        font-size: clamp(38px, 12vw, 58px);
    }

    .hero-kicker {
        font-size: 17px;
    }

    .hero-description {
        font-size: 13px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .cockpit-topbar {
        grid-template-columns: 1fr auto;
    }

    .cockpit-time {
        display: none;
    }

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

    .signal-preview {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 10px;
    }

    .signal-preview h3 {
        margin-top: 0;
    }

    .signal-preview dl {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .cockpit-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cockpit-stats div {
        border-bottom: 1px solid #182b3d;
    }

    .cockpit-stats div:nth-child(2n) {
        border-right: 0;
    }

    .cockpit-stats div:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .trust-strip > div {
        border-right: 0;
        border-bottom: 1px solid #1b3044;
    }

    .trust-strip > div:last-child {
        border-bottom: 0;
    }

    .section-block,
    .product-showcase {
        padding-block: 50px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2,
    .feature-copy h2 {
        font-size: clamp(29px, 9vw, 42px);
    }

    .workflow-grid article {
        grid-template-columns: 58px 1fr;
        padding: 22px 17px;
    }

    .workflow-icon {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    .feature-copy {
        padding: 28px 22px;
    }

    .feature-visual {
        margin: 0 14px 14px;
    }

    .feature-stage-reverse .feature-visual {
        margin-top: 0;
    }

    .override-visual {
        min-height: 340px;
    }

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

    .protection-grid article {
        min-height: 112px;
        padding: 20px;
    }

    .download-card {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .ea-product-art {
        min-height: 220px;
    }

    .phone-preview {
        justify-self: center;
    }

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

    .tier-card,
    .tier-card:last-child {
        min-height: 0;
        grid-column: auto;
    }

    .tier-card p {
        min-height: 0;
    }

    .risk-disclosure {
        margin-bottom: 46px;
        padding: 14px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 430px) {
    .site-shell {
        width: calc(100% - 20px);
    }

    .site-brand span {
        max-width: 116px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-actions .button-small {
        max-width: 104px;
        padding-inline: 8px;
        white-space: nowrap;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .hero {
        padding-top: 34px;
    }

    .hero h1 {
        font-size: clamp(35px, 11.5vw, 48px);
    }

    .release-pill,
    .section-label,
    .download-label {
        font-size: 8px;
    }

    .cockpit-topbar {
        padding-inline: 10px;
    }

    .cockpit-brand strong {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bridge-live {
        font-size: 8px;
    }

    .chart-toolbar small,
    .chart-axis {
        display: none;
    }

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

    .signal-preview dl {
        grid-column: auto;
        grid-row: auto;
    }

    .cockpit-stats {
        margin-inline: 8px;
    }

    .feature-copy {
        padding: 24px 17px;
    }

    .feature-visual {
        margin-inline: 8px;
    }

    .download-copy .button {
        width: 100%;
    }

    .phone-preview {
        width: min(210px, 86vw);
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
