:root {
    --ink: #0f172a;
    --muted: #5f6b7d;
    --line: #dce4ee;
    --soft-line: #e9eef5;
    --surface: #ffffff;
    --surface-alt: #f4f7fb;
    --surface-blue: #eef5ff;
    --blue: #1478e8;
    --blue-dark: #0d5fc3;
    --blue-deep: #0c3977;
    --green: #16a36a;
    --green-soft: #e9f9f2;
    --navy: #0d1525;
    --warning: #f59e0b;
    --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.07);
    --shadow-md: 0 24px 65px rgba(15, 23, 42, 0.12);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --page: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: #fbfcfe;
    font-family: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
output {
    font: inherit;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

:focus-visible {
    outline: 3px solid rgba(20, 120, 232, 0.35);
    outline-offset: 3px;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(220, 228, 238, 0.82);
    background: rgba(251, 252, 254, 0.9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    width: var(--page);
    min-height: 76px;
    margin-inline: auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.brand img {
    width: 34px;
    height: 34px;
}

.nav-links {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 28px;
    color: #445066;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a,
.footer-inner nav a {
    transition: color 150ms ease;
}

.nav-links a:hover,
.footer-inner nav a:hover {
    color: var(--blue);
}

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

.button {
    display: inline-flex;
    min-height: 44px;
    padding: 0 19px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(20, 120, 232, 0.22);
}

.button-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 13px 30px rgba(20, 120, 232, 0.28);
}

.button-secondary {
    border-color: var(--line);
    color: var(--ink);
    background: #fff;
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: #b9c7d8;
    background: var(--surface-alt);
}

.button-ghost {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.button-large {
    min-height: 54px;
    padding-inline: 24px;
    border-radius: 15px;
    font-size: 15px;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

.hero {
    display: grid;
    min-height: 700px;
    padding-block: 78px 72px;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: clamp(48px, 7vw, 104px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    margin: 0 0 16px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    min-height: 34px;
    padding: 0 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7e7fb;
    border-radius: 999px;
    background: var(--surface-blue);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(22, 163, 106, 0.12);
}

.hero h1,
.section-heading h2,
.account-copy h2,
.final-cta h2 {
    margin: 0;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.048em;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(43px, 5.4vw, 70px);
}

.hero-lead {
    max-width: 675px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

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

.hero-benefits {
    display: flex;
    margin: 26px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: #48556a;
    font-size: 13px;
    font-weight: 600;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.check-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 900;
}

.hero-product {
    position: relative;
    display: flex;
    min-height: 540px;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.hero-product::before {
    content: "";
    position: absolute;
    z-index: -3;
    width: 490px;
    height: 490px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #edf6ff 0, #e6f1ff 44%, #f4f8fd 70%, transparent 71%);
}

.orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(20, 120, 232, 0.13);
    border-radius: 50%;
}

.orbit-one {
    width: 445px;
    height: 445px;
}

.orbit-two {
    width: 355px;
    height: 355px;
}

.phone-frame {
    position: relative;
    width: 270px;
    height: 535px;
    padding: 10px;
    border: 8px solid #dce5ef;
    border-radius: 45px;
    background: #fff;
    box-shadow: 0 30px 75px rgba(32, 68, 111, 0.18);
}

.phone-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 50%;
    width: 74px;
    height: 17px;
    border-radius: 0 0 12px 12px;
    background: #dce5ef;
    transform: translateX(-50%);
}

.phone-screen {
    height: 100%;
    padding: 27px 11px 22px;
    overflow: hidden;
    border-radius: 30px;
    background: #f4f7fb;
}

.phone-brand {
    display: flex;
    height: 39px;
    padding: 0 10px;
    border-radius: 12px;
    align-items: center;
    gap: 7px;
    background: #fff;
    font-size: 10px;
}

.phone-brand img {
    width: 21px;
    height: 21px;
}

.phone-plus {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-left: auto;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #edf5ff;
    font-size: 18px;
}

.phone-screen > h2 {
    margin: 12px 2px 8px;
    font-size: 17px;
    letter-spacing: -0.04em;
}

.balance-card {
    position: relative;
    height: 90px;
    padding: 12px 14px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #1880eb, #0b68d4);
}

.balance-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 125px;
    height: 125px;
    border: 22px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.balance-card span,
.balance-card strong,
.balance-card small,
.balance-card b {
    position: relative;
    z-index: 1;
    display: block;
}

.balance-card > span:first-child {
    opacity: 0.78;
    font-size: 7px;
}

.balance-card strong {
    margin-top: -1px;
    font-size: 23px;
    line-height: 1.3;
}

.balance-card small {
    opacity: 0.8;
    font-size: 7px;
}

.balance-card b {
    position: absolute;
    right: 12px;
    bottom: 11px;
    font-size: 8px;
}

.balance-card .balance-action {
    position: absolute;
    top: 14px;
    right: 12px;
    padding: 5px 8px;
    border-radius: 7px;
    color: var(--blue);
    background: #fff;
    font-size: 7px;
    font-weight: 800;
}

.phone-add {
    display: flex;
    height: 35px;
    margin-top: 8px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    background: var(--navy);
    font-size: 8px;
    font-weight: 700;
}

.phone-add span {
    font-size: 15px;
    font-weight: 400;
}

.access-card {
    margin-top: 8px;
    padding: 9px;
    border: 1px solid #d8e8fa;
    border-radius: 14px;
    background: #fff;
}

.access-basic {
    border-color: #d9eee5;
}

.access-head {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 6px;
    font-size: 9px;
}

.access-head small {
    padding: 3px 6px;
    border-radius: 7px;
    color: var(--blue-dark);
    background: var(--surface-blue);
    font-size: 6px;
}

.access-basic .access-head small {
    color: #087a4c;
    background: var(--green-soft);
}

.access-icon {
    display: grid;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
}

.access-basic .access-icon {
    color: var(--green);
    background: var(--green-soft);
}

.access-icon svg {
    width: 14px;
    height: 14px;
}

.device-row,
.pending-row {
    display: flex;
    min-height: 43px;
    margin-top: 7px;
    padding: 7px 8px;
    border-radius: 10px;
    align-items: center;
    gap: 7px;
    background: #f7f9fc;
}

.device-row > div,
.pending-row > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.device-row strong,
.pending-row strong {
    font-size: 8px;
}

.device-row small,
.pending-row small {
    color: #8590a2;
    font-size: 6px;
}

.device-row small {
    color: var(--green);
}

.device-row small i {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 2px;
    border-radius: 50%;
    background: var(--green);
}

.device-icon {
    position: relative;
    width: 14px;
    height: 21px;
    border: 1.8px solid var(--blue);
    border-radius: 3px;
}

.device-icon::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 3px;
    height: 1px;
    border-radius: 1px;
    background: var(--blue);
    transform: translateX(-50%);
}

.edit-icon {
    width: 22px;
    height: 22px;
    margin-left: auto;
    padding: 4px;
    color: var(--blue);
}

.pending-clock {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid var(--warning);
    border-radius: 50%;
}

.pending-clock::before,
.pending-clock::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 1px;
    height: 5px;
    background: var(--warning);
}

.pending-clock::after {
    transform: rotate(125deg);
    transform-origin: bottom;
}

.pending-actions {
    display: grid;
    margin-top: 6px;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    font-size: 7px;
    text-align: center;
}

.pending-actions b,
.pending-actions span {
    padding: 6px 4px;
    border-radius: 7px;
}

.pending-actions b {
    color: #fff;
    background: var(--green);
}

.pending-actions span {
    color: #087a4c;
    background: var(--green-soft);
}

.home-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 82px;
    height: 4px;
    border-radius: 999px;
    background: #1a2434;
    transform: translateX(-50%);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: grid;
    min-width: 138px;
    padding: 13px 16px;
    border: 1px solid rgba(220, 228, 238, 0.85);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.floating-note span,
.floating-note small {
    color: #7a8799;
    font-size: 10px;
}

.floating-note strong {
    margin: 1px 0;
    font-size: 17px;
}

.note-price {
    top: 65px;
    right: -2px;
}

.note-device {
    bottom: 70px;
    left: -12px;
    grid-template-columns: 10px 1fr;
    column-gap: 7px;
}

.note-device strong,
.note-device small {
    grid-column: 2;
}

.note-status {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(22, 163, 106, 0.1);
}

.proof-bar {
    display: grid;
    margin-bottom: 22px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.proof-bar article {
    display: flex;
    min-height: 54px;
    padding-inline: 22px;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--soft-line);
}

.proof-bar article:last-child {
    border-right: 0;
}

.proof-bar article > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 12px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
    font-size: 14px;
    font-weight: 800;
}

.proof-bar article div {
    display: grid;
}

.proof-bar strong {
    font-size: 13px;
}

.proof-bar small {
    color: var(--muted);
    font-size: 10px;
}

.content-section {
    padding-block: 108px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 46px;
}

.section-heading-wide {
    max-width: 760px;
}

.section-heading h2,
.account-copy h2,
.final-cta h2 {
    font-size: clamp(34px, 4.2vw, 53px);
}

.section-heading > p:last-child,
.account-copy > p,
.final-cta p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

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

.step-card {
    position: relative;
    min-height: 280px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.035);
}

.step-number {
    color: #9cabc0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.step-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-top: 34px;
    border-radius: 16px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
}

.step-icon svg {
    width: 25px;
    height: 25px;
}

.step-card h3,
.access-plan h3,
.calculator h3 {
    margin: 22px 0 0;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.step-card p,
.access-plan > p,
.calculator-copy > p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.pricing-section {
    background: var(--navy);
}

.pricing-section .section-heading h2,
.pricing-section .section-heading > p:last-child,
.pricing-section .section-label {
    color: #fff;
}

.pricing-section .section-heading > p:last-child {
    opacity: 0.67;
}

.pricing-section .section-label {
    opacity: 0.72;
}

.access-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.access-plan {
    position: relative;
    min-height: 322px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: #fff;
    background: #172033;
}

.access-plan-primary {
    background: linear-gradient(145deg, #166fd2 0%, #0e55ac 100%);
}

.access-plan-primary::after,
.access-plan-basic::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 270px;
    height: 270px;
    border: 42px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.plan-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-mark {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-symbol {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.plan-symbol svg {
    width: 23px;
    height: 23px;
}

.access-plan h3 {
    margin-top: 28px;
    font-size: 28px;
}

.access-plan > p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.65);
}

.price-lines {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 28px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-lines div {
    display: grid;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
}

.price-lines strong {
    font-size: 24px;
    letter-spacing: -0.04em;
}

.price-lines span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.calculator {
    display: grid;
    margin-top: 18px;
    padding: 40px;
    border-radius: var(--radius-lg);
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 54px;
    color: var(--ink);
    background: #fff;
}

.calculator .section-label {
    color: var(--blue-dark);
    opacity: 1;
}

.calculator h3 {
    margin-top: 0;
    font-size: 30px;
}

.counter-list {
    margin-top: 28px;
    border-block: 1px solid var(--soft-line);
}

.counter-row {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid var(--soft-line);
}

.counter-row:last-child {
    border-bottom: 0;
}

.counter-row > div:first-child {
    display: grid;
}

.counter-row strong {
    font-size: 15px;
}

.counter-row small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.counter {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 44px 44px 44px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.counter button,
.counter output {
    display: grid;
    height: 44px;
    place-items: center;
}

.counter button {
    padding: 0;
    border: 0;
    background: var(--surface-alt);
    font-size: 22px;
    cursor: pointer;
}

.counter button:hover {
    color: var(--blue);
    background: var(--surface-blue);
}

.counter button:disabled {
    color: #adb7c6;
    cursor: not-allowed;
}

.counter output {
    border-inline: 1px solid var(--line);
    font-size: 15px;
    font-weight: 800;
}

.calculator-result {
    display: flex;
    min-height: 330px;
    padding: 30px;
    border-radius: var(--radius-md);
    flex-direction: column;
    color: #fff;
    background: linear-gradient(145deg, #1478e8, #0d5fc3);
}

.calculator-result > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.calculator-result > strong {
    margin-top: 3px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.calculator-result > small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.daily-price {
    display: flex;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.daily-price b {
    font-size: 17px;
}

.calculator-result p {
    margin: 12px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.calculator-result .button {
    width: 100%;
    margin-top: auto;
    color: var(--blue-dark);
    background: #fff;
    box-shadow: none;
}

.account-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.account-copy > p {
    line-height: 1.7;
}

.feature-list {
    display: grid;
    margin: 34px 0 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.feature-list li {
    display: flex;
    padding: 15px 0;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--soft-line);
}

.feature-list li > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 12px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
    font-size: 10px;
    font-weight: 800;
}

.feature-list li > div {
    display: grid;
}

.feature-list strong {
    font-size: 14px;
}

.feature-list small {
    color: var(--muted);
    font-size: 11px;
}

.account-preview {
    position: relative;
    display: flex;
    min-height: 610px;
    align-items: center;
    justify-content: center;
}

.account-preview::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #e5f1ff 0%, #f3f7fc 62%, transparent 63%);
}

.account-window {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.account-window-head {
    display: flex;
    margin: -4px 0 22px;
    align-items: center;
    gap: 6px;
}

.account-window-head > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d6dfeb;
}

.account-window-head small {
    margin-inline: auto;
    color: #8d98a9;
    font-size: 9px;
}

.account-balance {
    display: grid;
    min-height: 112px;
    padding: 20px;
    border-radius: 19px;
    color: #fff;
    background: linear-gradient(135deg, #1780ec, #0d63cb);
}

.account-balance small,
.account-balance span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.account-balance strong {
    font-size: 30px;
    letter-spacing: -0.04em;
}

.account-add {
    display: flex;
    width: 100%;
    min-height: 47px;
    margin-top: 10px;
    border: 0;
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    background: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.account-add span {
    font-size: 19px;
    font-weight: 400;
}

.account-access-card {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #d9e9fb;
    border-radius: 17px;
    background: #fff;
}

.account-access-card-basic {
    border-color: #d9eee5;
}

.account-access-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-access-head strong {
    font-size: 12px;
}

.account-access-head span {
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--surface-blue);
    font-size: 8px;
}

.account-access-card-basic .account-access-head span {
    color: #087a4c;
    background: var(--green-soft);
}

.mini-device,
.mini-pending {
    display: flex;
    min-height: 51px;
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 12px;
    align-items: center;
    gap: 10px;
    background: #f6f8fb;
}

.mini-device > div,
.mini-pending > div {
    display: grid;
}

.mini-device strong,
.mini-pending strong {
    font-size: 10px;
}

.mini-device small,
.mini-pending small {
    color: var(--green);
    font-size: 8px;
}

.mini-pending small {
    color: var(--muted);
}

.mini-device b {
    margin-left: auto;
    color: var(--blue);
    font-size: 17px;
}

.mini-phone {
    width: 13px;
    height: 21px;
    border: 1.8px solid var(--blue);
    border-radius: 3px;
}

.mini-laptop {
    position: relative;
    width: 21px;
    height: 14px;
    border: 1.8px solid var(--blue);
    border-radius: 3px;
}

.mini-laptop::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -4px;
    left: -3px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
}

.mini-pending > i {
    width: 19px;
    height: 19px;
    border: 2px solid var(--warning);
    border-radius: 50%;
}

.mini-actions {
    display: grid;
    margin-top: 7px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    text-align: center;
}

.mini-actions strong,
.mini-actions span {
    padding: 7px;
    border-radius: 8px;
    font-size: 8px;
}

.mini-actions strong {
    color: #fff;
    background: var(--green);
}

.mini-actions span {
    color: #087a4c;
    background: var(--green-soft);
}

.billing-section {
    background: var(--surface-alt);
}

.billing-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: 80px;
}

.billing-grid .section-heading {
    margin-bottom: 0;
}

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

.billing-examples article {
    min-height: 185px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff;
}

.billing-examples span {
    color: var(--blue-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.billing-examples strong {
    display: block;
    margin-top: 19px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.billing-examples p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.faq-section .section-heading {
    max-width: none;
    text-align: center;
}

.faq-list {
    width: min(100%, 840px);
    margin-inline: auto;
    border-top: 1px solid var(--line);
}

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

.faq-list summary {
    position: relative;
    padding: 25px 50px 25px 0;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
    transition: transform 180ms ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 720px;
    margin: -8px 0 24px;
    color: var(--muted);
    font-size: 14px;
}

.final-cta {
    display: flex;
    min-height: 270px;
    margin-bottom: 90px;
    padding: 48px 54px;
    border-radius: var(--radius-lg);
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    color: #fff;
    background: linear-gradient(135deg, #0f6fd8, #0a55ad);
    box-shadow: 0 25px 60px rgba(20, 120, 232, 0.2);
}

.final-cta .section-label,
.final-cta p {
    color: rgba(255, 255, 255, 0.7);
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 49px);
}

.final-cta .button {
    flex: 0 0 auto;
    color: var(--blue-dark);
    background: #fff;
    box-shadow: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    display: grid;
    min-height: 130px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.footer-inner > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.footer-inner nav {
    display: flex;
    gap: 24px;
    color: #4d596b;
    font-size: 12px;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1080px) {
    .nav-links {
        gap: 17px;
    }

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

    .hero {
        gap: 40px;
    }

    .floating-note {
        display: none;
    }

    .proof-bar {
        grid-template-columns: 1fr 1fr;
    }

    .proof-bar article:nth-child(2) {
        border-right: 0;
    }

    .proof-bar article:nth-child(-n + 2) {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--soft-line);
    }

    .proof-bar article:nth-child(n + 3) {
        padding-top: 16px;
    }

    .billing-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 900px) {
    :root {
        --page: min(100% - 32px, 720px);
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        z-index: 99;
        top: 76px;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - 76px);
        padding: 18px 16px 24px;
        overflow-y: auto;
        border-bottom: 1px solid var(--line);
        gap: 4px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu > a:not(.button) {
        display: flex;
        min-height: 48px;
        padding: 0 10px;
        align-items: center;
        border-bottom: 1px solid var(--soft-line);
        font-weight: 650;
    }

    .mobile-menu .button {
        margin-top: 12px;
    }

    .hero {
        min-height: auto;
        padding-block: 70px 52px;
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

    .hero-product {
        min-height: 565px;
    }

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

    .step-card {
        min-height: auto;
    }

    .step-icon {
        margin-top: 28px;
    }

    .access-plans,
    .calculator,
    .account-section {
        grid-template-columns: 1fr;
    }

    .calculator {
        gap: 28px;
    }

    .account-section {
        gap: 50px;
    }

    .account-copy {
        max-width: 680px;
    }

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

    .footer-inner > p {
        display: none;
    }
}

@media (max-width: 650px) {
    :root {
        --page: calc(100% - 28px);
    }

    .nav-shell {
        min-height: 68px;
    }

    .mobile-menu {
        top: 68px;
        max-height: calc(100vh - 68px);
    }

    .brand {
        font-size: 17px;
    }

    .hero {
        padding-block: 52px 38px;
        gap: 30px;
    }

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

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

    .hero-actions {
        display: grid;
        margin-top: 26px;
    }

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

    .hero-benefits {
        display: grid;
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .hero-product {
        min-height: 520px;
        transform: scale(0.92);
    }

    .hero-product::before {
        width: 390px;
        height: 390px;
    }

    .orbit-one {
        width: 365px;
        height: 365px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .proof-bar {
        padding: 10px 16px;
        grid-template-columns: 1fr;
    }

    .proof-bar article,
    .proof-bar article:nth-child(-n + 2),
    .proof-bar article:nth-child(n + 3) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--soft-line);
    }

    .proof-bar article:last-child {
        border-bottom: 0;
    }

    .content-section {
        padding-block: 78px;
    }

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

    .section-heading h2,
    .account-copy h2 {
        font-size: 35px;
    }

    .section-heading > p:last-child,
    .account-copy > p {
        font-size: 15px;
    }

    .step-card,
    .access-plan {
        padding: 24px;
    }

    .access-plans {
        gap: 12px;
    }

    .access-plan {
        min-height: auto;
    }

    .price-lines {
        grid-template-columns: 1fr;
    }

    .calculator {
        padding: 22px;
        border-radius: 24px;
    }

    .calculator h3 {
        font-size: 25px;
    }

    .counter-row {
        min-height: 96px;
    }

    .counter {
        grid-template-columns: 42px 40px 42px;
    }

    .calculator-result {
        min-height: 310px;
        padding: 25px;
    }

    .account-preview {
        min-height: auto;
    }

    .account-preview::before {
        display: none;
    }

    .account-window {
        padding: 18px;
        border-radius: 22px;
    }

    .billing-examples {
        grid-template-columns: 1fr;
    }

    .billing-examples article {
        min-height: 145px;
    }

    .final-cta {
        display: grid;
        min-height: 330px;
        margin-bottom: 60px;
        padding: 34px 28px;
        align-content: center;
    }

    .final-cta .button {
        width: 100%;
    }

    .footer-inner {
        padding-block: 28px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-inner nav {
        flex-wrap: wrap;
        gap: 13px 20px;
    }
}

@media (max-width: 400px) {
    .hero-product {
        margin-inline: 0;
        transform: scale(0.84);
    }

    .hero-product::before {
        width: 350px;
        height: 350px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 280px;
        height: 280px;
    }

    .counter-row {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .counter {
        grid-template-columns: 44px 44px 44px;
    }
}

@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;
    }
}
