:root {
    --ink: #080d1c;
    --ink-soft: #101832;
    --panel: rgba(17, 27, 56, 0.72);
    --panel-solid: #121d3b;
    --panel-light: rgba(255, 255, 255, 0.055);
    --line: rgba(169, 189, 255, 0.16);
    --line-strong: rgba(127, 157, 255, 0.32);
    --text: #f5f7ff;
    --text-soft: #b7c1db;
    --text-muted: #7f8ba9;
    --primary: #8a7dff;
    --primary-light: #b9b2ff;
    --secondary: #4dd9ff;
    --mint: #61edc7;
    --warning: #ffd277;
    --danger: #ff8ba0;
    --gradient: linear-gradient(135deg, #9b8cff 0%, #6e8cff 45%, #45d8ff 100%);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --nav-height: 78px;
    --font: "Avenir Next", Avenir, "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--ink);
    font-family: var(--font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(138, 125, 255, 0.2), transparent 34%),
        radial-gradient(circle at 90% 26%, rgba(77, 217, 255, 0.13), transparent 30%),
        linear-gradient(180deg, #080d1c 0%, #0a1125 50%, #080d1c 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 16px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--secondary);
    border-radius: 10px;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    border-bottom: 1px solid transparent;
    background: rgba(8, 13, 28, 0.72);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(8, 13, 28, 0.92);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(185, 178, 255, 0.55);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.brand-mark::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(77, 217, 255, 0.7);
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 43px;
    height: 13px;
    border: 1px solid rgba(77, 217, 255, 0.55);
    border-radius: 50%;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.brand-name small {
    color: var(--text-muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 13px;
    color: var(--text-soft);
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.89rem;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--text);
    background: var(--panel-light);
}

.nav-cta {
    margin-left: 5px;
    color: #090e1e !important;
    background: var(--text) !important;
}

.nav-cta:hover {
    background: var(--secondary) !important;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    color: var(--text);
    background: var(--panel-light);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-icon {
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: grid;
    align-items: center;
    padding: 72px 0 88px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(72vw, 900px);
    aspect-ratio: 1;
    top: -42%;
    right: -20%;
    border: 1px solid rgba(138, 125, 255, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(138, 125, 255, 0.028),
        0 0 0 180px rgba(77, 217, 255, 0.018);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.8fr);
    align-items: center;
    gap: clamp(44px, 7vw, 100px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    padding: 7px 13px;
    color: var(--primary-light);
    border: 1px solid rgba(138, 125, 255, 0.28);
    border-radius: 999px;
    background: rgba(138, 125, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 14px rgba(97, 237, 199, 0.75);
}

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

h1,
h2,
h3 {
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    font-weight: 850;
}

.gradient-text {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 32px;
    color: var(--text-soft);
    font-size: clamp(1.08rem, 1.6vw, 1.27rem);
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    color: #080d1c;
    background: var(--gradient);
    box-shadow: 0 15px 40px rgba(110, 140, 255, 0.25);
}

.button-primary:hover {
    box-shadow: 0 20px 50px rgba(77, 217, 255, 0.25);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line);
    background: var(--panel-light);
}

.button-secondary:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.09);
}

.button-arrow {
    font-size: 1.15rem;
    line-height: 1;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-light);
}

.product-orbit {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.orbit-ring {
    position: absolute;
    width: min(100%, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(138, 125, 255, 0.22);
    border-radius: 50%;
    transform: rotate(-18deg) scaleY(0.56);
    box-shadow:
        0 0 60px rgba(138, 125, 255, 0.1),
        inset 0 0 44px rgba(77, 217, 255, 0.04);
}

.orbit-ring::before,
.orbit-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.orbit-ring::before {
    width: 13px;
    height: 13px;
    top: 29%;
    left: -3px;
    background: var(--secondary);
    box-shadow: 0 0 22px rgba(77, 217, 255, 0.9);
}

.orbit-ring::after {
    width: 8px;
    height: 8px;
    right: 10%;
    bottom: 17%;
    background: var(--primary-light);
    box-shadow: 0 0 18px rgba(185, 178, 255, 0.8);
}

.phone {
    position: relative;
    z-index: 2;
    width: min(76vw, 300px);
    min-height: 532px;
    padding: 13px;
    border: 1px solid rgba(185, 178, 255, 0.28);
    border-radius: 44px;
    background: linear-gradient(145deg, rgba(34, 45, 82, 0.9), rgba(11, 18, 40, 0.98));
    box-shadow: var(--shadow), 0 0 70px rgba(138, 125, 255, 0.16);
    transform: rotate(2.5deg);
}

.phone::before {
    content: "";
    position: absolute;
    z-index: 4;
    width: 82px;
    height: 22px;
    top: 20px;
    left: 50%;
    border-radius: 999px;
    background: #080c19;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    min-height: 504px;
    padding: 58px 24px 25px;
    overflow: hidden;
    border-radius: 33px;
    background:
        radial-gradient(circle at 50% 34%, rgba(138, 125, 255, 0.2), transparent 35%),
        linear-gradient(180deg, #111a37, #0b1229);
}

.phone-screen::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    top: 82px;
    left: 50%;
    border: 1px solid rgba(77, 217, 255, 0.1);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 34px rgba(138, 125, 255, 0.025), 0 0 0 70px rgba(77, 217, 255, 0.015);
}

.phone-brand {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.connection-control {
    position: relative;
    z-index: 2;
    width: 152px;
    height: 152px;
    display: grid;
    margin: 0 auto 38px;
    place-items: center;
    border: 1px solid rgba(97, 237, 199, 0.32);
    border-radius: 50%;
    background: rgba(97, 237, 199, 0.06);
    box-shadow: 0 0 0 12px rgba(97, 237, 199, 0.025), 0 0 40px rgba(97, 237, 199, 0.12);
}

.connection-control::before {
    content: "";
    width: 74px;
    height: 74px;
    border: 2px solid var(--mint);
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(97, 237, 199, 0.12);
}

.connection-control::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 29px;
    top: 48px;
    border-radius: 3px;
    background: var(--mint);
    box-shadow: 0 0 11px rgba(97, 237, 199, 0.72);
}

.phone-status {
    position: relative;
    z-index: 2;
    margin-bottom: 6px;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 800;
}

.phone-caption {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.76rem;
}

.location-chip {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    color: var(--text-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.78rem;
    font-weight: 700;
}

.location-chip strong {
    color: var(--text);
}

.trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(13, 21, 45, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
}

.trust-item {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 27px;
    border-left: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 0;
}

.trust-item strong {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 0.95rem;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.trust-label {
    color: var(--primary-light) !important;
    font-size: 0.75rem !important;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-compact {
    padding: 82px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.kicker {
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 4.5vw, 4.4rem);
    font-weight: 830;
}

.section-heading p,
.split-copy > p,
.cta-panel > p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 1.05rem;
}

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

.feature-card {
    position: relative;
    min-height: 290px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(19, 29, 61, 0.82), rgba(12, 20, 43, 0.74));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -75px;
    bottom: -85px;
    border: 1px solid rgba(138, 125, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(138, 125, 255, 0.025);
}

.feature-number {
    display: inline-flex;
    margin-bottom: 58px;
    color: var(--primary-light);
    font-size: 0.77rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.feature-card p {
    max-width: 480px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.step-index {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border-radius: 14px;
    background: var(--gradient);
    font-size: 0.86rem;
    font-weight: 900;
}

.step h3 {
    margin: 1px 0 7px;
    font-size: 1.06rem;
    letter-spacing: -0.02em;
}

.step p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.disclosure-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(97, 237, 199, 0.24);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 85% 10%, rgba(97, 237, 199, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(18, 40, 55, 0.88), rgba(11, 23, 42, 0.92));
}

.disclosure-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 50px;
    padding: clamp(34px, 6vw, 70px);
}

.disclosure-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.disclosure-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px rgba(97, 237, 199, 0.7);
}

.disclosure-panel h2 {
    margin: 20px 0 0;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 830;
}

.disclosure-copy {
    align-self: center;
}

.disclosure-copy p {
    color: var(--text-soft);
    font-size: 1rem;
}

.disclosure-points {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.disclosure-points li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.disclosure-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: 900;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 8vw, 86px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 90%, rgba(77, 217, 255, 0.16), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(138, 125, 255, 0.2), transparent 34%),
        #111a36;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    max-width: 780px;
    margin-inline: auto;
}

.cta-panel > p {
    max-width: 660px;
    margin: 0 auto 30px;
}

.cta-panel .button-row {
    justify-content: center;
}

.site-footer {
    padding: 58px 0 32px;
    border-top: 1px solid var(--line);
    background: rgba(6, 10, 22, 0.46);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 50px;
    padding-bottom: 42px;
}

.footer-about {
    max-width: 480px;
}

.footer-about .brand {
    margin-bottom: 18px;
}

.footer-about p,
.footer-contact {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-heading {
    margin-bottom: 15px;
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: var(--text-muted);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

/* Policy and support pages */
.page-hero {
    position: relative;
    padding: 92px 0 64px;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 480px;
    height: 480px;
    top: -270px;
    right: -120px;
    border: 1px solid rgba(138, 125, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(138, 125, 255, 0.025), 0 0 0 150px rgba(77, 217, 255, 0.014);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 850;
}

.page-hero .page-lead {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--text-soft);
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}

.summary-card {
    min-height: 142px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel-light);
}

.summary-card .summary-mark {
    width: 10px;
    height: 10px;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 18px rgba(77, 217, 255, 0.5);
}

.summary-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.88rem;
}

.summary-card span {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.policy-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 820px);
    align-items: start;
    justify-content: space-between;
    gap: clamp(42px, 8vw, 100px);
}

.policy-toc {
    position: sticky;
    top: calc(var(--nav-height) + 28px);
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(16, 24, 50, 0.62);
}

.policy-toc strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.policy-toc nav {
    display: grid;
    gap: 3px;
}

.policy-toc a {
    padding: 7px 9px;
    color: var(--text-muted);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 700;
}

.policy-toc a:hover {
    color: var(--text);
    background: var(--panel-light);
}

.policy-content {
    min-width: 0;
}

.policy-section {
    padding: 0 0 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 820;
}

.policy-section h3 {
    margin: 28px 0 10px;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
    display: grid;
    gap: 9px;
    padding-left: 22px;
}

.policy-section a,
.inline-link {
    color: var(--secondary);
    text-underline-offset: 3px;
}

.policy-section strong {
    color: var(--text);
}

.notice {
    margin: 24px 0;
    padding: 20px 22px;
    color: var(--text-soft);
    border: 1px solid rgba(77, 217, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(77, 217, 255, 0.055);
    font-size: 0.91rem;
}

.notice strong {
    color: var(--secondary);
}

.notice-mint {
    border-color: rgba(97, 237, 199, 0.22);
    background: rgba(97, 237, 199, 0.055);
}

.notice-mint strong {
    color: var(--mint);
}

.data-table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.data-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.data-table th,
.data-table td {
    padding: 15px 17px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.data-table th {
    color: var(--text);
    background: rgba(138, 125, 255, 0.08);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.data-table td {
    color: var(--text-soft);
}

.data-table td:first-child {
    color: var(--text);
    font-weight: 750;
}

.contact-card {
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(138, 125, 255, 0.1), rgba(77, 217, 255, 0.04));
}

.contact-card p {
    margin-bottom: 7px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

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

.support-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel-light);
}

.support-card .card-label {
    display: inline-block;
    margin-bottom: 46px;
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.support-card h2,
.support-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.support-card a {
    color: var(--secondary);
    font-size: 0.86rem;
    font-weight: 750;
    text-underline-offset: 3px;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 750;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--primary-light);
    font-size: 1.35rem;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 21px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.deletion-steps {
    counter-reset: deletion;
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.deletion-step {
    counter-increment: deletion;
    position: relative;
    padding: 22px 22px 22px 74px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--panel-light);
}

.deletion-step::before {
    content: counter(deletion, decimal-leading-zero);
    position: absolute;
    width: 38px;
    height: 38px;
    top: 22px;
    left: 20px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border-radius: 11px;
    background: var(--gradient);
    font-size: 0.75rem;
    font-weight: 900;
}

.deletion-step h2,
.deletion-step h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
}

.deletion-step p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 980px) {
    :root { --nav-height: 70px; }

    .menu-toggle {
        display: grid;
    }

    .nav-links {
        position: fixed;
        inset: var(--nav-height) 0 auto;
        max-height: calc(100vh - var(--nav-height));
        display: grid;
        gap: 5px;
        padding: 18px 20px 26px;
        overflow-y: auto;
        border-bottom: 1px solid var(--line);
        background: rgba(8, 13, 28, 0.98);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        min-height: 48px;
        padding-inline: 14px;
    }

    .nav-cta {
        justify-content: center;
        margin: 8px 0 0;
    }

    .hero {
        padding-top: 66px;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero .button-row,
    .hero-meta {
        justify-content: center;
    }

    .product-orbit {
        min-height: 540px;
    }

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

    .trust-item:nth-child(3) {
        border-left: 0;
    }

    .trust-item:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .split,
    .disclosure-inner {
        grid-template-columns: 1fr;
    }

    .disclosure-inner {
        gap: 28px;
    }

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

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-toc {
        position: static;
    }

    .policy-toc nav {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-name small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 54px 0 76px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .button-row,
    .button {
        width: 100%;
    }

    .product-orbit {
        min-height: 500px;
    }

    .phone {
        width: 268px;
        min-height: 490px;
    }

    .phone-screen {
        min-height: 463px;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-grid,
    .feature-grid,
    .summary-grid,
    .support-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .section {
        padding: 86px 0;
    }

    .section-compact {
        padding: 64px 0;
    }

    .feature-card {
        min-height: 250px;
        padding: 27px;
    }

    .feature-number {
        margin-bottom: 42px;
    }

    .step {
        grid-template-columns: 42px 1fr;
        gap: 13px;
        padding: 17px;
    }

    .step-index {
        width: 42px;
        height: 42px;
    }

    .page-hero {
        padding: 70px 0 48px;
    }

    .page-hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.3rem);
    }

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

    .policy-section {
        padding-bottom: 38px;
        margin-bottom: 38px;
    }

    .footer-grid > :last-child {
        grid-column: auto;
    }

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

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

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

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