:root {
    --ink: #0d1830;
    --ink-soft: #4c5870;
    --navy: #071225;
    --navy-2: #0b1930;
    --navy-3: #112342;
    --paper: #f5f7fb;
    --white: #ffffff;
    --line: #dce2ec;
    --orange: #ff5a1f;
    --orange-dark: #dd4010;
    --pink: #df287c;
    --cyan: #38c6ff;
    --success: #22c77a;
    --shadow: 0 24px 70px rgba(9, 21, 46, .14);
    --shadow-sm: 0 12px 34px rgba(9, 21, 46, .09);
    --container: min(1160px, calc(100% - 40px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
input,
select,
textarea {
    font: inherit;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--orange);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 76px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(7, 18, 37, .82);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.scrolled {
    background: rgba(7, 18, 37, .96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    position: relative;
    z-index: 2;
    width: 220px;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav > a:not(.button) {
    position: relative;
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
    color: var(--white);
}

.main-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button svg {
    width: 20px;
    height: 20px;
}

.button-sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
}

.button-lg {
    min-height: 54px;
    padding: 15px 24px;
    font-size: 15px;
}

.button-primary,
.button-header {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(255, 90, 31, .23);
}

.button-primary:hover,
.button-header:hover {
    color: var(--white);
    background: var(--orange-dark);
    box-shadow: 0 15px 34px rgba(255, 90, 31, .32);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .05);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .1);
}

.button-outline {
    color: var(--ink);
    border-color: #bdc7d7;
    background: var(--white);
}

.button-outline:hover {
    color: var(--orange-dark);
    border-color: var(--orange);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #ffc0a9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--orange-dark);
}

.status-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(34, 199, 122, .13);
}

.hero {
    position: relative;
    min-height: 820px;
    padding: 168px 0 0;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    background: var(--navy-2);
    content: "";
}

.hero-art {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 18, 37, .26);
    background-image: url("/assets/site/hero-network.png");
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    opacity: .95;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
    align-items: center;
    gap: 70px;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(46px, 5.5vw, 76px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: .99;
}

.hero-copy h1 span {
    color: #ff9b76;
}

.hero-lead {
    max-width: 625px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

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

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 28px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-list svg {
    width: 17px;
    height: 17px;
    color: var(--success);
    stroke-width: 3;
}

.hero-product {
    position: relative;
    min-width: 0;
    padding-bottom: 64px;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.product-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: #e9edf3;
    box-shadow: 0 42px 100px rgba(0, 0, 0, .52), 0 0 0 8px rgba(255, 255, 255, .04);
}

.product-window-screenshot {
    padding: 7px;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .92);
}

.software-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #f4f4f4;
}

.software-caption {
    max-width: 520px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, .53);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    padding: 13px 16px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 10px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    line-height: 1.35;
    backdrop-filter: blur(14px);
}

.floating-card span {
    color: var(--ink-soft);
    font-size: 11px;
}

.floating-card-a {
    top: -30px;
    right: -24px;
}

.floating-card-b {
    right: 34px;
    bottom: 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(34, 199, 122, .13);
}

.hero-footnote {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 120px;
    margin-top: 72px;
    color: rgba(255, 255, 255, .78);
}

.hero-footnote span {
    padding-right: 18px;
    color: #ff9b76;
    border-right: 1px solid rgba(255, 255, 255, .18);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-footnote strong {
    font-size: 15px;
}

.section {
    padding: 118px 0;
}

.section-light {
    background: var(--paper);
}

.section-dark {
    color: var(--white);
    background: var(--navy);
}

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

.section-heading h2,
.showcase-copy h2,
.faq-intro h2,
.cta-content h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(35px, 4.3vw, 58px);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.section-heading > p,
.faq-intro > p {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.heading-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 60px;
}

.heading-split > p {
    margin: 0 0 4px;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.centered p {
    margin-inline: auto;
}

.dark-heading > p {
    color: rgba(255, 255, 255, .62);
}

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

.feature-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 6px 20px rgba(8, 24, 54, .035);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    border-color: #bdc9da;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.feature-card-highlight {
    color: var(--white);
    border-color: var(--navy-3);
    background: var(--navy-3);
}

.feature-card-highlight p {
    color: rgba(255, 255, 255, .66) !important;
}

.feature-card h3 {
    margin: 22px 0 10px;
    font-size: 20px;
    letter-spacing: -.02em;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--orange);
    border: 1px solid #ffd3c3;
    border-radius: 12px;
    background: #fff5f1;
}

.feature-card-highlight .icon-box {
    color: #ffb397;
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 0 80px;
    padding: 1px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .1);
    list-style: none;
}

.steps li {
    min-height: 210px;
    padding: 34px;
    background: var(--navy-2);
}

.step-number {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
}

.steps h3 {
    margin: 34px 0 10px;
    font-size: 21px;
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
}

.registration-showcase {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(340px, 1.18fr);
    align-items: center;
    gap: 62px;
    margin: 0 0 100px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 10%, rgba(236, 103, 28, .18), transparent 38%),
        var(--navy-2);
}

.registration-copy h2 {
    margin: 16px 0 18px;
    font-size: clamp(32px, 3.6vw, 48px);
}

.registration-copy > p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
    line-height: 1.75;
}

.registration-media {
    width: 100%;
    max-width: 540px;
    justify-self: end;
}

.product-window-registration {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35), 0 0 0 8px rgba(255, 255, 255, .03);
}

.check-list-compact {
    margin-bottom: 0;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    align-items: center;
    gap: 80px;
}

.product-window-large {
    box-shadow: 0 40px 90px rgba(0, 0, 0, .38);
}

.showcase-copy h2 {
    font-size: clamp(34px, 3.8vw, 50px);
}

.interface-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 4px;
}

.interface-tabs span {
    padding: 8px 11px;
    color: #ffd0bf;
    border: 1px solid rgba(255, 139, 96, .3);
    border-radius: 999px;
    background: rgba(236, 103, 28, .1);
    font-size: 12px;
    font-weight: 800;
}

.interface-note {
    margin: -3px 0 27px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1.6;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0;
    padding: 0;
    color: rgba(255, 255, 255, .72);
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--success);
    stroke-width: 3;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ff9b76;
    font-weight: 800;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

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

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 410px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(9, 21, 46, .04);
}

.price-card.featured {
    color: var(--white);
    border-color: var(--navy-3);
    background: var(--navy-3);
    box-shadow: 0 24px 60px rgba(9, 21, 46, .2);
}

.popular-label {
    align-self: flex-start;
    margin: -30px -30px 25px;
    padding: 9px 18px;
    color: var(--white);
    background: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.price-card h3 {
    margin: 0;
    font-size: 22px;
}

.period {
    margin: 3px 0 22px;
    color: var(--ink-soft);
    font-size: 14px;
}

.featured .period,
.featured .payment-note,
.featured li {
    color: rgba(255, 255, 255, .65);
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    white-space: nowrap;
}

.price small {
    padding-top: 9px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
}

.price strong {
    font-size: clamp(35px, 4vw, 48px);
    letter-spacing: -.05em;
    line-height: 1;
}

.payment-note {
    min-height: 44px;
    margin: 12px 0 16px;
    color: var(--ink-soft);
    font-size: 13px;
}

.price-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 25px;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 14px;
    list-style: none;
}

.featured ul {
    border-color: rgba(255, 255, 255, .12);
}

.price-card li::before {
    margin-right: 8px;
    color: var(--success);
    content: "✓";
    font-weight: 900;
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.pricing-disclaimer {
    max-width: 760px;
    margin: 28px auto 0;
    color: var(--ink-soft);
    font-size: 13px;
    text-align: center;
}

.section-faq {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 90px;
}

.faq-intro {
    align-self: start;
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.faq-intro .button {
    margin-top: 26px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: grid;
    grid-template-columns: 1fr 24px;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    list-style: none;
}

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

.accordion summary span {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion summary span::before,
.accordion summary span::after {
    position: absolute;
    top: 9px;
    left: 3px;
    width: 14px;
    height: 2px;
    background: var(--orange);
    content: "";
    transition: transform .2s ease;
}

.accordion summary span::after {
    transform: rotate(90deg);
}

.accordion details[open] summary span::after {
    transform: rotate(0);
}

.accordion details > div {
    overflow: hidden;
}

.accordion details p {
    max-width: 680px;
    margin: -4px 0 25px;
    color: var(--ink-soft);
}

.cta-section {
    padding: 0 0 80px;
    background: var(--white);
}

.cta-panel {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.cta-art {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 18, 37, .16);
    background-image: url("/assets/site/cta-streams.png");
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 470px;
    max-width: 680px;
    padding: 70px;
}

.cta-content h2 {
    font-size: clamp(38px, 4.6vw, 62px);
}

.cta-content > p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .65);
}

.responsible-use {
    max-width: 900px;
    margin: 24px auto 0;
    color: #687286;
    font-size: 12px;
    text-align: center;
}

.site-footer {
    padding: 72px 0 22px;
    color: rgba(255, 255, 255, .66);
    background: #050d1b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, .7fr);
    gap: 50px;
}

.footer-brand img {
    width: 220px;
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0 0;
    font-size: 14px;
}

.footer-grid h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.download-toast {
    position: fixed;
    z-index: 1200;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    align-items: center;
    gap: 12px;
    width: min(390px, calc(100% - 28px));
    padding: 16px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .14);
    background: var(--navy-3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(25px);
    transition: opacity .25s ease, transform .25s ease;
}

.download-toast.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--orange);
    font-size: 22px;
    font-weight: 900;
}

.download-toast div {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.download-toast small {
    color: rgba(255, 255, 255, .62);
}

.download-toast button {
    padding: 0;
    color: rgba(255, 255, 255, .7);
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.subpage-header {
    position: relative;
    color: var(--white);
    background: var(--navy);
}

.legal-hero {
    padding: 154px 0 76px;
    color: var(--white);
    background: var(--navy);
}

.legal-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: -.05em;
    line-height: 1;
}

.legal-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: 18px;
}

.legal-content {
    padding: 82px 0 110px;
    background: var(--paper);
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 740px);
    justify-content: center;
    gap: 72px;
}

.legal-nav {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
}

.legal-nav a {
    padding: 9px 0;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}

.legal-nav a:hover {
    color: var(--orange-dark);
}

.legal-article {
    padding: 52px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.legal-article section + section {
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.legal-article h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -.025em;
}

.legal-article h3 {
    margin: 28px 0 10px;
    font-size: 18px;
}

.legal-article p,
.legal-article li {
    color: var(--ink-soft);
}

.legal-article ul {
    display: grid;
    gap: 8px;
    padding-left: 21px;
}

.legal-note {
    margin: 0 0 35px;
    padding: 18px 20px;
    color: var(--ink-soft);
    border-left: 4px solid var(--orange);
    background: #fff5f1;
    font-size: 14px;
}

.simple-page {
    display: grid;
    min-height: 100vh;
    color: var(--white);
    background: var(--navy);
    place-items: center;
}

.simple-page-card {
    width: min(700px, calc(100% - 32px));
    text-align: center;
}

.simple-page-code {
    color: var(--orange);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .18em;
}

.simple-page h1 {
    margin: 15px 0;
    font-size: clamp(44px, 8vw, 78px);
    letter-spacing: -.055em;
    line-height: 1;
}

.simple-page p {
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .65);
}

.purchase-hero {
    padding: 160px 0 96px;
    color: var(--white);
    background: var(--navy);
}

.purchase-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    align-items: center;
    gap: 90px;
}

.purchase-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(45px, 6vw, 74px);
    letter-spacing: -.055em;
    line-height: 1;
}

.purchase-hero h1 span {
    color: #ff9b76;
}

.purchase-hero-grid > div > p {
    max-width: 680px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .67);
    font-size: 18px;
}

.purchase-summary {
    padding: 38px;
    color: var(--ink);
    border-top: 4px solid var(--orange);
    background: var(--white);
    box-shadow: 0 34px 80px rgba(0, 0, 0, .35);
}

.summary-label {
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.purchase-summary h2 {
    margin: 12px 0 2px;
    font-size: 30px;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.purchase-summary p,
.purchase-summary small {
    color: var(--ink-soft);
}

.summary-price {
    margin: 22px 0 3px;
    color: var(--ink);
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.purchase-summary ul {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 20px 0 0;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    list-style: none;
}

.purchase-summary li::before {
    margin-right: 9px;
    color: var(--success);
    content: "✓";
    font-weight: 900;
}

.purchase-steps {
    padding: 110px 0;
    background: var(--paper);
}

.purchase-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    list-style: none;
}

.purchase-step-grid li {
    min-height: 270px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.purchase-step-grid li:last-child {
    border: 0;
}

.purchase-step-grid li > span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.purchase-step-grid h3 {
    margin: 52px 0 9px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.purchase-step-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.purchase-security {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 26px;
    max-width: 860px;
    margin: 56px auto 0;
    padding: 32px;
    border-left: 4px solid var(--success);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.purchase-security h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.purchase-security p {
    margin: 0;
    color: var(--ink-soft);
}

.purchase-cta {
    padding-top: 80px;
}

@media (max-width: 1050px) {
    .main-nav {
        gap: 18px;
    }

    .main-nav > a:not(.button) {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
        gap: 40px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 6vw, 62px);
    }

    .showcase {
        gap: 45px;
    }

    .registration-showcase {
        gap: 38px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, .7fr);
        gap: 28px;
    }
}

@media (max-width: 820px) {
    :root {
        --container: min(100% - 32px, 680px);
    }

    .site-header {
        height: 68px;
    }

    .brand {
        width: 190px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 68px 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 16px 28px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        background: var(--navy);
        box-shadow: 0 30px 50px rgba(0, 0, 0, .35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > a:not(.button) {
        display: block;
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .main-nav > a:not(.button)::after {
        display: none;
    }

    .main-nav .button {
        margin-top: 18px;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .hero-art {
        background-color: rgba(7, 18, 37, .5);
        background-image: url("/assets/site/hero-network.png");
        background-position: 62% center;
    }

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

    .hero-product {
        width: calc(100% - 20px);
        margin-inline: auto;
        transform: none;
    }

    .hero-footnote {
        margin-top: 66px;
    }

    .section {
        padding: 90px 0;
    }

    .heading-split,
    .registration-showcase,
    .showcase,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .heading-split {
        gap: 22px;
    }

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

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

    .steps li {
        display: grid;
        grid-template-columns: 54px 1fr;
        min-height: 0;
        padding: 27px;
    }

    .steps h3 {
        margin-top: 0;
    }

    .showcase {
        gap: 55px;
    }

    .registration-media {
        max-width: 560px;
        justify-self: center;
    }

    .faq-layout {
        gap: 54px;
    }

    .faq-intro {
        position: static;
    }

    .cta-content {
        padding: 55px 40px;
    }

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

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

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .purchase-step-grid li:nth-child(2) {
        border-right: 0;
    }

    .purchase-step-grid li:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    :root {
        --container: calc(100% - 24px);
    }

    .brand {
        width: 165px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 12vw, 52px);
    }

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

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

    .trust-list {
        display: grid;
        gap: 10px;
    }

    .hero-product {
        width: 100%;
    }

    .floating-card-a {
        top: -36px;
        right: 8px;
    }

    .floating-card-b {
        right: 8px;
    }

    .hero-footnote {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
    }

    .hero-footnote span {
        padding: 0;
        border: 0;
    }

    .section {
        padding: 76px 0;
    }

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

    .section-heading h2,
    .showcase-copy h2,
    .faq-intro h2,
    .cta-content h2 {
        font-size: clamp(33px, 10vw, 45px);
    }

    .section-heading > p,
    .faq-intro > p {
        font-size: 16px;
    }

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

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

    .steps {
        margin-bottom: 60px;
    }

    .steps li {
        grid-template-columns: 42px 1fr;
        padding: 23px 20px;
    }

    .registration-showcase {
        margin-bottom: 72px;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .registration-copy h2 {
        font-size: clamp(31px, 10vw, 42px);
    }

    .price-card {
        min-height: 390px;
    }

    .accordion summary {
        font-size: 16px;
    }

    .cta-panel,
    .cta-content {
        min-height: 520px;
    }

    .cta-art {
        background-color: rgba(7, 18, 37, .48);
        background-image: url("/assets/site/cta-streams.png");
        background-position: 70% center;
    }

    .cta-content {
        justify-content: flex-start;
        padding: 52px 24px;
    }

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

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .legal-hero {
        padding: 130px 0 62px;
    }

    .legal-content {
        padding: 50px 0 75px;
    }

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

    .legal-article {
        padding: 28px 22px;
    }

    .download-toast {
        right: 14px;
        bottom: 14px;
    }

    .purchase-hero {
        padding: 130px 0 72px;
    }

    .purchase-hero h1 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .purchase-summary {
        padding: 28px;
    }

    .purchase-steps {
        padding: 76px 0;
    }

    .purchase-step-grid {
        grid-template-columns: 1fr;
    }

    .purchase-step-grid li {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .purchase-step-grid li:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .purchase-step-grid h3 {
        margin-top: 28px;
    }

    .purchase-security {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
