:root {
    --ink: #07121f;
    --ink-soft: #0d1d2c;
    --paper: #f4f6f2;
    --paper-warm: #eceee7;
    --white: #fff;
    --muted: #60707f;
    --line: rgba(7, 18, 31, .12);
    --line-light: rgba(255, 255, 255, .13);
    --cyan: #62e6dd;
    --cyan-deep: #17b9b4;
    --amber: #ffc85a;
    --coral: #ff7a68;
    --radius: 26px;
    --shell: min(1180px, calc(100vw - 48px));
    --shadow: 0 30px 80px rgba(7, 18, 31, .12);
}

.brand > span:last-child small {
    margin-left: .18em;
    color: currentColor;
    font-size: .42em;
    font-weight: 800;
    letter-spacing: .03em;
}

/* Modern replacement for legacy database-driven instruction pages */
.modern-how-page {
    padding: clamp(10px, 2vw, 24px);
}

.modern-how-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.modern-how-heading > span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff4d4;
    color: #8d5c00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.modern-how-heading h1 {
    margin: 16px 0 13px;
    color: #071d2c;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .96;
}

.modern-how-heading p {
    max-width: 620px;
    margin: 0;
    color: #687984;
    font-size: 16px;
    line-height: 1.7;
}

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

.modern-how-grid article {
    display: grid;
    min-height: 190px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(7, 29, 44, .09);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 190, 56, .13), transparent 12rem),
        #fff;
}

.modern-how-grid article > span {
    color: #d7dfe3;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
}

.modern-how-grid article:nth-child(2) > span,
.modern-how-grid article:nth-child(4) > span {
    color: #b6d9f5;
}

.modern-how-grid h2 {
    margin: 1px 0 10px;
    color: #071d2c;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.modern-how-grid p {
    margin: 0;
    color: #687984;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 720px) {
    .modern-how-page {
        padding: 0;
    }

    .modern-how-heading {
        margin-bottom: 26px;
    }

    .modern-how-grid {
        grid-template-columns: 1fr;
    }

    .modern-how-grid article {
        min-height: 0;
        padding: 22px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

svg {
    display: block;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-stuck,
.site-header.is-solid {
    position: fixed;
    background: rgba(7, 18, 31, .9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand > span:last-child > span {
    color: var(--amber);
}

.brand-mark {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--amber), #ffae3e);
    color: var(--ink);
    box-shadow: 0 9px 30px rgba(255, 200, 90, .22);
}

.brand-mark svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 40px);
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .02em;
    transition: color .2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--cyan);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

.language-switcher a {
    display: grid;
    width: 31px;
    height: 27px;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.language-switcher a.is-active {
    background: var(--white);
    color: var(--ink);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button svg,
.text-link svg,
.package-card > svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.button-small {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 12px;
}

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

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

.button-primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 14px 34px rgba(255, 200, 90, .18);
}

.button-primary:hover {
    background: #ffd477;
    box-shadow: 0 18px 40px rgba(255, 200, 90, .25);
}

.button-link {
    padding-inline: 8px;
    color: rgba(255, 255, 255, .82);
}

.play-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.play-icon svg {
    width: 18px;
    fill: currentColor;
    stroke: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
}

.menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
}

.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    padding: 162px 0 50px;
    background:
        radial-gradient(circle at 72% 38%, rgba(22, 132, 145, .26), transparent 31%),
        linear-gradient(145deg, #06111d 0%, #0a1d2c 52%, #07131e 100%);
    color: var(--white);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .4) 0 1px, transparent 1.2px),
        radial-gradient(circle at 80% 16%, rgba(255, 255, 255, .35) 0 1px, transparent 1.4px),
        radial-gradient(circle at 62% 78%, rgba(255, 255, 255, .25) 0 1px, transparent 1.4px);
    background-position: 0 0, 40px 70px, 90px 30px;
    background-size: 170px 170px, 220px 220px, 260px 260px;
    content: "";
    opacity: .35;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, black 22%, black 70%, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    opacity: .65;
}

.hero-glow-one {
    top: 120px;
    right: -180px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(98, 230, 221, .18), transparent 68%);
}

.hero-glow-two {
    bottom: -260px;
    left: 18%;
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 200, 90, .1), transparent 68%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr);
    gap: 54px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.live-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 122, 104, .13);
}

.hero h1 {
    max-width: 660px;
    margin: 24px 0 24px;
    font-size: clamp(52px, 6.2vw, 88px);
    font-weight: 780;
    letter-spacing: -.065em;
    line-height: .96;
}

.hero h1 span {
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, var(--amber), #ff926d 48%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 530px;
    margin: 0;
    color: rgba(255, 255, 255, .63);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    margin-left: -7px;
    border: 2px solid var(--ink-soft);
    border-radius: 50%;
    background: #163247;
    color: var(--white);
    font-size: 8px;
    font-weight: 850;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: var(--cyan-deep);
}

.avatar-stack span:last-child {
    background: var(--amber);
    color: var(--ink);
}

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

.signal-stage {
    position: relative;
    min-height: 510px;
    perspective: 1000px;
    transform: translate3d(calc(var(--pointer-x, 0) * 5px), calc(var(--pointer-y, 0) * 5px), 0);
    transition: transform .2s ease-out;
}

.signal-stage::before {
    position: absolute;
    top: 13%;
    right: 4%;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(98, 230, 221, .09);
    border-radius: 50%;
    content: "";
    box-shadow: inset 0 0 80px rgba(98, 230, 221, .04);
}

.orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.orbit-one {
    top: 36px;
    right: -30px;
    width: 520px;
    height: 330px;
}

.orbit-two {
    top: 94px;
    right: 18px;
    width: 410px;
    height: 250px;
}

.orbit span {
    position: absolute;
    top: 17%;
    right: 12%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
}

.satellite {
    position: absolute;
    z-index: 4;
    top: 16px;
    right: 36px;
    width: 180px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .3));
    animation: satellite-float 6s ease-in-out infinite;
}

.sat-panel {
    fill: rgba(98, 230, 221, .15);
    stroke: var(--cyan);
    stroke-width: 1.2;
}

.sat-body {
    fill: #152d3f;
    stroke: rgba(255, 255, 255, .42);
    stroke-width: 1.3;
}

.sat-line {
    fill: none;
    stroke: rgba(255, 255, 255, .35);
    stroke-linecap: round;
    stroke-width: 1;
}

.sat-dish {
    fill: rgba(255, 200, 90, .22);
    stroke: var(--amber);
    stroke-width: 1.3;
}

.sat-accent {
    fill: var(--amber);
}

@keyframes satellite-float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

.screen-card {
    position: absolute;
    z-index: 3;
    top: 128px;
    right: 32px;
    width: min(470px, 88%);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(24, 50, 67, .88), rgba(9, 23, 35, .9));
    box-shadow: 0 45px 100px rgba(0, 0, 0, .37), inset 0 1px rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    transform: rotateY(-5deg) rotateX(2deg);
}

.screen-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 5px 12px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.screen-topline > span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.screen-topline i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 12px var(--coral);
}

.screen-preview {
    position: relative;
    display: flex;
    min-height: 230px;
    align-items: flex-end;
    overflow: hidden;
    padding: 26px;
    border-radius: 20px;
    background:
        linear-gradient(to top, rgba(4, 12, 20, .86), transparent 70%),
        radial-gradient(circle at 70% 35%, #ffb35e 0 4%, transparent 5%),
        linear-gradient(145deg, #143c55, #442d5c 52%, #d8645d);
}

.screen-preview::before,
.screen-preview::after {
    position: absolute;
    right: -9%;
    bottom: -45%;
    width: 78%;
    height: 85%;
    border-radius: 50% 50% 0 0;
    background: #0d2736;
    content: "";
    transform: rotate(-8deg);
}

.screen-preview::after {
    right: 35%;
    bottom: -58%;
    width: 65%;
    background: #101c35;
    transform: rotate(11deg);
}

.preview-orb {
    position: absolute;
    top: 32px;
    right: 50px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe3a7, var(--amber) 35%, #ef785f 80%);
    box-shadow: 0 0 50px rgba(255, 182, 95, .38);
}

.preview-copy {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
}

.preview-copy small {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.preview-copy strong {
    font-size: 20px;
    font-weight: 700;
}

.progress {
    height: 3px;
    overflow: hidden;
    margin-top: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
}

.progress i {
    display: block;
    width: 64%;
    height: 100%;
    border-radius: inherit;
    background: var(--amber);
}

.channel-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 13px;
    background: rgba(255, 255, 255, .035);
}

.channel.is-active {
    border-color: rgba(98, 230, 221, .25);
    background: rgba(98, 230, 221, .08);
}

.channel span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: var(--cyan);
    font-size: 8px;
    font-weight: 800;
}

.channel b {
    font-size: 10px;
    font-weight: 650;
}

.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 15px;
    background: rgba(10, 27, 40, .86);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .26);
    backdrop-filter: blur(14px);
}

.floating-chip > svg {
    width: 25px;
    fill: rgba(255, 200, 90, .2);
    stroke: var(--amber);
    stroke-width: 1.3;
}

.floating-chip > span:last-child {
    display: flex;
    flex-direction: column;
}

.floating-chip b {
    color: var(--white);
    font-size: 11px;
}

.floating-chip small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .48);
    font-size: 8px;
}

.chip-quality {
    bottom: 34px;
    left: 0;
    animation: chip-float 5s ease-in-out infinite;
}

.chip-support {
    top: 194px;
    right: -28px;
    animation: chip-float 5s 1.3s ease-in-out infinite;
}

.support-pulse {
    width: 25px;
    height: 25px;
    border: 6px solid rgba(98, 230, 221, .13);
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(98, 230, 221, .3);
}

@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.quick-facts {
    position: relative;
    z-index: 3;
    display: grid;
    margin-top: 62px;
    border-top: 1px solid rgba(255, 255, 255, .11);
    grid-template-columns: repeat(3, 1fr);
}

.quick-facts > div {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px 0 5px;
}

.quick-facts > div + div {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, .11);
}

.quick-facts strong {
    color: var(--amber);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.quick-facts span {
    max-width: 150px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    line-height: 1.4;
}

.content-ribbon {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.ribbon-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 30px;
    animation: ribbon 24s linear infinite;
}

.ribbon-track span {
    color: #52616d;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ribbon-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber);
}

@keyframes ribbon {
    to { transform: translateX(-35%); }
}

.section {
    padding: 116px 0;
}

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

.section-heading.centered {
    display: flex;
    max-width: 720px;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--cyan-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section h2,
.final-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 730;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.section-heading > p,
.section-heading.centered p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
}

.step-card {
    position: relative;
    min-height: 340px;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .25s ease, transform .25s ease;
}

.step-card:hover {
    z-index: 2;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.step-number {
    color: #a2acb4;
    font-family: Georgia, serif;
    font-size: 14px;
    font-style: italic;
}

.step-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin: 57px 0 35px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--cyan);
    box-shadow: 0 16px 30px rgba(7, 18, 31, .14);
}

.step-card:nth-child(even) .step-icon {
    background: var(--amber);
    color: var(--ink);
}

.step-icon svg,
.bento-icon svg {
    width: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.step-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: -.025em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.section-benefits {
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.section-benefits .section-kicker {
    color: var(--amber);
}

.section-benefits .section-heading p {
    color: rgba(255, 255, 255, .5);
}

.bento-grid {
    display: grid;
    grid-auto-rows: minmax(235px, auto);
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
}

.bento-card {
    position: relative;
    display: flex;
    min-height: 235px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    grid-column: span 4;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
    transition: border-color .25s ease, transform .25s ease;
}

.bento-card:hover {
    border-color: rgba(98, 230, 221, .34);
    transform: translateY(-4px);
}

.bento-wide {
    min-height: 330px;
    grid-column: span 8;
    background:
        radial-gradient(circle at 76% 30%, rgba(98, 230, 221, .15), transparent 30%),
        rgba(255, 255, 255, .04);
}

.bento-tall {
    grid-row: span 2;
    grid-column: span 4;
    background:
        radial-gradient(circle at 50% 78%, rgba(255, 200, 90, .13), transparent 38%),
        rgba(255, 255, 255, .04);
}

.bento-copy {
    position: relative;
    z-index: 2;
    max-width: 430px;
}

.card-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bento-card h3 {
    max-width: 470px;
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -.035em;
}

.bento-card p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.65;
}

.signal-chart {
    position: absolute;
    top: 58px;
    right: 25px;
    display: flex;
    height: 120px;
    align-items: flex-end;
    gap: 7px;
    transform: skewY(-8deg);
}

.signal-chart span {
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(to top, rgba(98, 230, 221, .14), var(--cyan));
    box-shadow: 0 0 15px rgba(98, 230, 221, .12);
}

.signal-chart span:nth-child(1) { height: 24%; }
.signal-chart span:nth-child(2) { height: 42%; }
.signal-chart span:nth-child(3) { height: 31%; }
.signal-chart span:nth-child(4) { height: 62%; }
.signal-chart span:nth-child(5) { height: 48%; }
.signal-chart span:nth-child(6) { height: 78%; }
.signal-chart span:nth-child(7) { height: 68%; }
.signal-chart span:nth-child(8) { height: 93%; }
.signal-chart span:nth-child(9) { height: 75%; }
.signal-chart span:nth-child(10) { height: 100%; }
.signal-chart span:nth-child(11) { height: 88%; }

.mini-dashboard {
    position: absolute;
    right: 28px;
    bottom: 150px;
    left: 28px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    transform: rotate(-2deg);
}

.mini-dash-head {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.mini-dash-head i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.mini-dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
}

.mini-dash-row span {
    width: 48%;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
}

.mini-dash-row b {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .13);
}

.mini-dash-row.is-bright {
    background: rgba(255, 200, 90, .12);
}

.mini-dash-row.is-bright span,
.mini-dash-row.is-bright b {
    background: var(--amber);
}

.bento-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    color: var(--amber);
}

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

.package-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

.package-card {
    position: relative;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    color: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.package-card:hover {
    z-index: 2;
    box-shadow: 0 25px 55px rgba(7, 18, 31, .18);
    transform: translateY(-8px) rotate(-.4deg);
}

.package-vip { background: linear-gradient(155deg, #152637, #4e314d); }
.package-family { background: linear-gradient(155deg, #186d76, #123942); }
.package-sport { background: linear-gradient(155deg, #b95843, #5d2631); }
.package-cinema { background: linear-gradient(155deg, #4a3d82, #1b2543); }

.package-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-top small {
    color: rgba(255, 255, 255, .6);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.package-top i {
    font-family: Georgia, serif;
    font-size: 12px;
    font-style: italic;
    opacity: .5;
}

.package-art {
    position: relative;
    display: block;
    height: 210px;
    margin: 18px -24px 5px;
}

.package-art::before {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.package-art::after {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 92px;
    height: 92px;
    border-radius: 34% 66% 62% 38% / 40% 35% 65% 60%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .08));
    box-shadow: 0 25px 50px rgba(0, 0, 0, .18);
    content: "";
    transform: translateX(-50%) rotate(35deg);
}

.package-family .package-art::after {
    border-radius: 50% 50% 24% 24%;
    background: linear-gradient(145deg, var(--amber), rgba(255, 255, 255, .16));
}

.package-sport .package-art::after {
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #fff, #d7e3e7 45%, #8ba2ab);
}

.package-cinema .package-art::after {
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.34) 13% 20%, transparent 21% 79%, rgba(255,255,255,.34) 80% 87%, transparent 88%),
        linear-gradient(145deg, #ed9b62, #923e71);
    transform: translateX(-50%) rotate(-8deg);
}

.package-art i {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 50%;
}

.package-art i:nth-child(1) {
    top: 26px;
    left: 28px;
    width: 28px;
    height: 28px;
}

.package-art i:nth-child(2) {
    right: 35px;
    bottom: 38px;
    width: 44px;
    height: 44px;
}

.package-art i:nth-child(3) {
    bottom: 17px;
    left: 56px;
    width: 9px;
    height: 9px;
    background: var(--amber);
    border: 0;
}

.package-card strong {
    position: relative;
    z-index: 2;
    font-size: 24px;
    letter-spacing: -.03em;
}

.package-card > span:not(.package-top):not(.package-art) {
    position: relative;
    z-index: 2;
    margin-top: 6px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.package-card > svg {
    position: absolute;
    right: 24px;
    bottom: 27px;
}

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

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

.faq-intro p {
    max-width: 380px;
    margin: 24px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan-deep);
    font-size: 13px;
    font-weight: 750;
}

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

.text-link:hover svg {
    transform: translateX(4px);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 650;
    list-style: none;
}

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

.faq-list summary i {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
}

.faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.faq-list details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 600px;
    margin: -5px 45px 28px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background: var(--cyan);
    color: var(--ink);
}

.final-cta::before {
    position: absolute;
    top: -170px;
    right: 11%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(7, 18, 31, .14);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(7, 18, 31, .025), 0 0 0 140px rgba(7, 18, 31, .02);
}

.final-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.final-cta .section-kicker {
    color: rgba(7, 18, 31, .55);
}

.button-light {
    flex: 0 0 auto;
    background: var(--ink);
    color: var(--white);
}

.site-footer {
    padding: 78px 0 26px;
    background: var(--ink);
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: 35px;
    grid-template-columns: 1.6fr .8fr .8fr 1.2fr;
    padding-bottom: 60px;
}

.footer-grid > div:first-child p {
    max-width: 220px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, .67);
    font-size: 12px;
    transition: color .2s ease;
}

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

.footer-action {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.footer-action > span {
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}

.footer-action .text-link {
    color: var(--amber);
}

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

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Inner public pages */
.public-inner {
    min-height: 100vh;
    background:
        radial-gradient(circle at 90% 0, rgba(98, 230, 221, .12), transparent 30%),
        var(--paper);
}

.inner-main {
    min-height: 70vh;
    padding: 150px 0 90px;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.inner-card {
    min-height: 420px;
    padding: clamp(28px, 6vw, 75px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.inner-card .section-kicker {
    color: var(--cyan-deep);
}

.inner-card h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: -.055em;
    line-height: 1.04;
}

.inner-lead {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 44px;
}

.contact-card {
    display: flex;
    min-height: 160px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    border-radius: 22px;
    background: var(--paper);
    transition: transform .2s ease, background .2s ease;
}

.contact-card:hover {
    background: var(--paper-warm);
    transform: translateY(-3px);
}

.contact-card small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-card strong {
    margin-top: 8px;
    color: var(--ink);
    font-size: 17px;
}

.contact-schedule {
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
}

.inner-faq-list {
    margin-top: 45px;
}

.inner-faq-item {
    padding: 25px 0;
    border-top: 1px solid var(--line);
}

.inner-faq-item .date {
    color: var(--cyan-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.inner-faq-item h2 {
    margin: 8px 0 12px;
    font-size: 22px;
}

.inner-faq-item .coment {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1060px) {
    .desktop-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-bottom: 45px;
    }

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

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

    .signal-stage {
        width: min(620px, 100%);
        margin: -10px auto 0;
    }

    .quick-facts {
        margin-top: 20px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1.3fr .7fr .7fr;
    }

    .footer-action {
        padding: 25px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100% - 32px, 1180px);
        --radius: 22px;
    }

    .header-inner {
        min-height: 72px;
    }

    .header-actions .button {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        position: fixed;
        z-index: 40;
        inset: 72px 0 0;
        display: flex;
        visibility: hidden;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        padding: 45px 24px;
        background: rgba(7, 18, 31, .98);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }

    .menu-open .mobile-nav {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .mobile-nav a {
        font-size: 19px;
        font-weight: 650;
    }

    .hero {
        padding-top: 126px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(48px, 15vw, 68px);
    }

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

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .button-primary {
        width: 100%;
    }

    .signal-stage {
        min-height: 440px;
    }

    .screen-card {
        top: 110px;
        right: 4%;
        width: 92%;
        transform: none;
    }

    .screen-preview {
        min-height: 190px;
    }

    .satellite {
        top: 3px;
        right: 4px;
        width: 145px;
    }

    .chip-support {
        top: 172px;
        right: -3px;
    }

    .chip-quality {
        bottom: 5px;
        left: -2px;
    }

    .quick-facts {
        grid-template-columns: 1fr;
    }

    .quick-facts > div {
        padding: 16px 0;
    }

    .quick-facts > div + div {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .11);
        border-left: 0;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading,
    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .section h2,
    .final-cta h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

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

    .step-card {
        min-height: 270px;
    }

    .step-icon {
        margin: 34px 0 25px;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-card,
    .bento-wide,
    .bento-tall {
        min-height: 300px;
    }

    .bento-tall {
        min-height: 480px;
    }

    .signal-chart {
        top: 36px;
        opacity: .65;
    }

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

    .package-card {
        min-height: 365px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }

    .final-cta {
        padding: 72px 0;
    }

    .button-light {
        width: 100%;
    }

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

    .footer-grid > div:first-child,
    .footer-action {
        grid-column: 1 / -1;
    }

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

    .inner-main {
        padding: 120px 0 65px;
    }

    .inner-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

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

@media (max-width: 420px) {
    .channel b {
        display: none;
    }

    .floating-chip small {
        display: none;
    }

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

    .footer-grid > * {
        grid-column: 1 !important;
    }
}

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

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

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