@font-face {
  font-family: 'Halvar Breitschrift';
  src: local('Halvar Breitschrift'),
       url('../assets/fonts/HalvarBreit-Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Halvar Breitschrift';
  src: local('Halvar Breitschrift Medium'), local('Halvar Breitschrift-Medium'),
       url('../assets/fonts/HalvarBreit-Md.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Halvar Breitschrift';
  src: local('Halvar Breitschrift Bold'), local('Halvar Breitschrift-Bold'),
       url('../assets/fonts/HalvarBreit-Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Halvar Breitschrift';
  src: local('Halvar Breitschrift ExtraBold'), local('Halvar Breitschrift-ExtraBold'),
       url('../assets/fonts/HalvarBreit-XBd.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Halvar Breitschrift';
  src: local('Halvar Breitschrift Black'), local('Halvar Breitschrift-Black'),
       url('../assets/fonts/HalvarBreit-Blk.ttf') format('truetype');
  font-weight: 850;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #080808;
  --bg-soft: #0f0f0f;
  --panel: #141414;
  --panel-light: #1a1a1a;
  --lime: #d6e44a;
  --lime-soft: #e4ed86;
  --text: #f5f5f0;
  --muted: #9c9c96;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius-xl: 52px;
  --radius-lg: 36px;
  --radius-md: 26px;
  --font-display: "Halvar Breitschrift", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --font-body: "Halvar Breitschrift", Inter, "Segoe UI", Arial, sans-serif;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; outline: 0; font: inherit; }
a:focus-visible, button:focus-visible { outline: 0; filter: brightness(1.12); }
iconify-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; width: 1em; height: 1em; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.ambient { display: none; }
.ambient--one { width: 420px; height: 420px; top: 220px; right: 4%; background: rgba(214, 228, 74, .07); }
.ambient--two { width: 480px; height: 480px; top: 1050px; left: -280px; background: rgba(214, 228, 74, .04); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 0;
  width: 100%;
  transition: transform .3s ease;
}
.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 8px 10px 8px 22px;
  border-radius: 24px;
  background: rgba(14, 14, 14, .82);
  backdrop-filter: blur(24px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-name { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 800; letter-spacing: -.035em; }
.brand-badge { display: inline-flex; align-items: center; justify-content: center; margin-left: 5px; padding: 3px 9px; border-radius: 999px; background: var(--lime); color: var(--bg); font-family: var(--font-display); font-size: 0.76em; font-weight: 850; line-height: 1; letter-spacing: 0; vertical-align: middle; transform: translateY(-0.08em); }
.brand-logo { display: block; width: 34px; height: 34px; flex: 0 0 auto; }
.desktop-nav { display: flex; gap: 32px; color: #bdbdb7; font-size: 15px; }
.header-cta { justify-self: end; }
.menu-button { display: none; }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 2px 10px 0 26px;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease;
}
.button--compact { min-height: 50px; padding-left: 20px; font-size: 13px; }
.button--primary { background: var(--lime); color: #111111; }
.button--ghost { background: #181818; color: var(--text); }
.hero-actions .button--ghost { padding-inline: 26px; }
.button-arrow { display: grid; flex-shrink: 0; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--lime); color: #111111; font-size: 18px; }
.button-arrow iconify-icon { width: auto; height: auto; font-size: 20px; }
.button-arrow--dark { background: #111111; color: var(--lime); }

.section-shell { min-height: 820px; padding-top: 154px; }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
.hero h1 { max-width: 720px; margin-bottom: 26px; font-size: 52px; font-weight: 800; line-height: 1.05; letter-spacing: -.04em; text-transform: uppercase; }
.hero h1 span { color: var(--lime); }
.hero-lead { max-width: 620px; margin-bottom: 32px; color: #b2b2ac; font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; align-items: center; gap: 24px; margin-top: 52px; }
.meta-item { display: flex; flex-direction: column; }
.meta-item strong { font-family: var(--font-display); font-size: 18px; }
.meta-item span { color: #7d7d77; font-size: 13px; }
.meta-divider { display: none; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 700px; }
.hero-visual::before { display: none; }
.orbit { display: none; }
.orbit--outer { width: 590px; height: 590px; }
.orbit--inner { width: 460px; height: 460px; }
.phones-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-img {
  position: absolute;
  height: auto;
  user-select: none;
  pointer-events: none;
  object-fit: contain;
}
.phone-img--android {
  width: 390px;
  left: 10px;
  top: 10px;
  z-index: 1;
  filter: brightness(0.42) contrast(1.05);
}
.phone-img--ios {
  width: 420px;
  right: 0;
  bottom: 10px;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

.section { padding-top: 150px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 56px; }
.section-kicker, .product-label { display: inline-block; margin-bottom: 21px; color: var(--lime); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.section-heading h2, .protocol-copy h2, .final-cta h2 { max-width: 760px; margin-bottom: 0; font-size: 24px; font-weight: 780; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.section-heading > p { max-width: 420px; margin-bottom: 8px; color: var(--muted); font-size: 15px; }
.section-heading--center { flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.section-heading--center h2 { max-width: 850px; }
.section-heading--center > p { margin: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 380px; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: var(--panel); }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(255,255,255,.035), transparent 35%); pointer-events: none; }
.feature-card--wide { grid-column: span 2; }
.feature-card--lime { background: var(--lime); color: #111111; }
.feature-number { position: absolute; top: 29px; right: 31px; color: rgba(255,255,255,.38); font-size: 13px; font-weight: 800; }
.feature-card--lime .feature-number { color: rgba(17,17,17,.42); }
.feature-content { position: relative; z-index: 2; max-width: 400px; }
.feature-icon { display: grid; width: 64px; height: 64px; margin-bottom: 76px; place-items: center; border-radius: 20px; background: rgba(255,255,255,.06); color: var(--lime); }
.feature-icon iconify-icon { width: auto; height: auto; font-size: 24px; transform: scale(1.5); }
.feature-card--lime .feature-icon { background: rgba(17,17,17,.08); color: #111111; }
.feature-card h3 { margin-bottom: 12px; font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.feature-card p { max-width: 400px; margin-bottom: 0; color: var(--muted); }
.feature-card--lime p { color: rgba(17,17,17,.68); }
.card-arrow { position: absolute; right: 26px; bottom: 26px; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: #111111; color: var(--lime); font-size: 24px; }
.card-arrow iconify-icon { transform: scale(1.15); }
.route-map { position: absolute; right: 40px; bottom: 52px; display: flex; align-items: center; }
.route-node { display: grid; z-index: 2; width: 84px; height: 84px; place-items: center; border-radius: 50%; background: #1d1d1d; color: var(--lime); font-size: 24px; font-weight: 800; }
.route-point { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); }
.route-line { width: 82px; height: 1px; background: repeating-linear-gradient(90deg,var(--lime) 0 5px,transparent 5px 10px); }
.speed-meter { position: absolute; right: 28px; bottom: 30px; left: 28px; display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: 6px; }
.speed-meter strong { font-size: 24px; line-height: 1; }
.speed-meter span { color: var(--muted); font-size: 13px; }
.speed-line { grid-column: 1 / -1; height: 5px; margin-top: 12px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }
.speed-line i { display: block; width: 88%; height: 100%; border-radius: inherit; background: var(--lime); }
.feature-card--devices { min-height: 310px; }
.feature-card--devices .feature-icon { margin-bottom: 52px; }
.device-list { position: absolute; right: 30px; bottom: 34px; display: flex; flex-wrap: wrap; max-width: 330px; justify-content: flex-end; gap: 8px; }
.device-list span { padding: 11px 16px; border-radius: 99px; background: var(--panel-light); color: #c9c9c3; font-size: 13px; }

.products-section { margin-top: 150px; padding-block: 130px; border-radius: 64px; background: #0f0f0f; }
.product-switcher { position: relative; display: grid; max-width: 840px; margin: 0 auto 70px; grid-template-columns: repeat(3, 1fr); padding: 6px; border-radius: 999px; background: #090909; }
.product-tab { position: relative; z-index: 2; min-height: 60px; padding: 0 18px; border-radius: 999px; background: transparent; color: #8b8b85; cursor: pointer; font-weight: 700; transition: color .3s ease; }
.product-tab.is-active { color: #111111; }
.tab-index { margin-right: 8px; font-size: 13px; opacity: .65; }
.switcher-indicator { position: absolute; z-index: 1; top: 6px; bottom: 6px; left: 6px; width: calc((100% - 12px) / 3); border-radius: 999px; background: var(--lime); transition: transform .42s cubic-bezier(.2,.8,.2,1); }
.product-intro { display: flex; align-items: end; justify-content: space-between; gap: 50px; min-height: 135px; margin-bottom: 28px; }
.product-label { margin-bottom: 12px; }
.product-intro h3 { margin-bottom: 0; font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.product-intro p { max-width: 490px; margin-bottom: 0; color: var(--muted); }
.pricing-viewport { overflow: hidden; }
.pricing-track { display: flex; width: 100%; will-change: transform; }
.pricing-slide { display: grid; width: 100%; min-width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.price-card { position: relative; display: flex; min-width: 0; min-height: 500px; flex-direction: column; padding: 30px; border-radius: var(--radius-lg); background: #171717; }
.price-card--popular { background: var(--lime); color: #111111; }
.popular-badge { position: absolute; top: 20px; right: 20px; padding: 8px 11px; border-radius: 99px; background: #111111; color: var(--lime); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.price-name { margin-bottom: 10px; color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-card--popular .price-name, .price-card--popular .price-description { color: rgba(17,17,17,.62); }
.price-period { margin-bottom: 0; font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.04em; }
.price-row { display: flex; align-items: center; gap: 10px; margin: 22px 0 18px; }
.price-badge { display: inline-flex; align-items: center; justify-content: center; width: max-content; padding: 12px 22px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); font-family: var(--font-display); font-size: 24px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--text); }
.price-card--popular .price-badge { background: #111111; color: var(--lime); }
.price-discount { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px; background: var(--lime); color: #111111; font-family: var(--font-display); font-size: 15px; font-weight: 850; line-height: 1; letter-spacing: -.02em; }
.price-card--popular .price-discount { background: #111111; color: var(--lime); }
.price-description { min-height: 48px; margin-bottom: 25px; color: var(--muted); font-size: 15px; }
.price-features { display: grid; gap: 13px; margin: 0 0 30px; padding: 24px 0 0; list-style: none; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.price-features li > iconify-icon { width: auto; height: auto; flex: 0 0 auto; color: var(--lime); font-size: 20px; }
.price-card--popular .price-features li > iconify-icon { color: #111111; }
.price-button { display: flex; min-height: 54px; align-items: center; justify-content: space-between; margin-top: auto; padding: 0 9px 0 22px; border-radius: 999px; background: #212121; color: var(--text); font-weight: 750; line-height: 1; cursor: pointer; transition: transform .16s ease; }
.price-button iconify-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--lime); color: #111111; font-size: 20px; }
.price-card--popular .price-button { background: #111111; color: var(--lime); }

.protocol-panel { position: relative; display: grid; min-height: 630px; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; overflow: hidden; padding: 66px; border-radius: var(--radius-xl); background: var(--panel); }
.protocol-panel::before { display: none; }
.protocol-copy { position: relative; z-index: 2; }
.protocol-copy h2 { margin-bottom: 26px; font-size: 24px; }
.protocol-copy p { max-width: 510px; margin-bottom: 32px; color: var(--muted); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; color: var(--lime); font-weight: 700; }
.text-link span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: rgba(214,228,74,.1); }
.text-link iconify-icon { width: auto; height: auto; font-size: 20px; }
.globe-visual { position: relative; z-index: 2; width: min(420px, 100%); aspect-ratio: 1; justify-self: center; display: flex; align-items: center; justify-content: center; }
.globe-svg { width: 100%; height: 100%; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)); animation: floatGlobe 8s ease-in-out infinite alternate; }
.globe-badge { position: absolute; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: rgba(20, 20, 20, 0.92); border: 1px solid var(--line-strong); backdrop-filter: blur(14px); color: var(--text); font-size: 13px; font-weight: 700; }
.globe-badge iconify-icon { color: var(--lime); font-size: 18px; }
@keyframes floatGlobe { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-8px) rotate(3deg); } }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step-card { position: relative; min-height: 390px; padding: 27px; border-radius: var(--radius-lg); background: var(--panel); }
.step-number { color: #70706a; font-size: 13px; font-weight: 800; }
.step-visual { display: flex; height: 170px; align-items: center; justify-content: center; margin: 35px 0 25px; }
.step-card h3 { margin-bottom: 9px; font-size: 24px; letter-spacing: -.04em; }
.step-card p { margin: 0; color: var(--muted); }
.step-visual iconify-icon { width: auto; height: auto; color: var(--lime); font-size: 24px; transform: scale(2.65); }

.faq-section { padding-bottom: 150px; }
.faq-list { display: grid; gap: 8px; }
.faq-item { overflow: hidden; border-radius: 24px; background: var(--panel); }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: flex-start; gap: 12px; padding: 24px; background: transparent; color: var(--text); cursor: pointer; text-align: left; }
.faq-item button span { font-family: var(--font-display); font-size: 20px; font-weight: 650; letter-spacing: -.03em; }
.faq-item button i { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--panel-light); color: var(--lime); transition: transform .3s ease, background .3s ease; }
.faq-item button i iconify-icon { width: auto; height: auto; font-size: 20px; }
.faq-item.is-open button i { background: var(--lime); color: #111111; transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s cubic-bezier(.2,.8,.2,1); }
.faq-answer-inner { min-height: 0; overflow: hidden; }
.faq-answer p { margin: 0; max-width: 760px; padding: 0 24px 24px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.button:active, .price-button:active, .product-tab:active, .menu-button:active, .connect-button:active { transform: scale(1.02); }

.final-cta { position: relative; display: flex; min-height: 530px; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; margin-bottom: 70px; padding: 70px 24px; border-radius: var(--radius-xl); background: #181818; text-align: center; }
.cta-glow { display: none; }
.cta-mark { position: absolute; top: 42%; left: 50%; display: flex; width: 230px; height: 230px; align-items: center; justify-content: center; opacity: .07; transform: translate(-50%,-50%) scale(1.8); }
.cta-mark span { position: absolute; width: 28px; height: 170px; border-radius: 60px; background: var(--lime); transform: rotate(35deg) translateX(-25px); }
.cta-mark span:last-child { transform: rotate(35deg) translateX(25px); }
.final-cta > *:not(.cta-glow):not(.cta-mark) { position: relative; z-index: 2; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p { max-width: 520px; margin-bottom: 30px; color: #adada7; font-size: 15px; }

.site-footer { padding: 22px 0 30px; }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding: 38px 0 45px; }
.footer-links { display: flex; gap: 28px; color: #a2a29c; font-size: 15px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 24px; color: #676762; font-size: 13px; }
.footer-bottom > div { display: flex; align-items: center; gap: 28px; }
.footer-bottom a { white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1180px) {
  .pricing-slide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; background: #101010; }
  .header-inner .brand { min-width: 0; }
  .header-cta { display: none; }
  .menu-button { position: relative; display: block; width: 48px; height: 48px; flex: 0 0 auto; justify-self: end; border-radius: 50%; background: #1b1b1b; }
  .menu-button span { position: absolute; left: 50%; top: 50%; margin-top: -0.5px; margin-left: -9px; width: 18px; height: 1px; background: var(--text); transition: transform .3s ease; }
  .menu-button span:first-child { transform: translateY(-4px); }
  .menu-button span:last-child { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
  .mobile-menu { position: absolute; z-index: 1; top: 74px; left: 24px; right: 24px; display: block; padding: 22px; border-radius: 26px; background: #111111; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: grid; gap: 8px; }
  .mobile-menu a { padding: 16px 18px; border-radius: 16px; background: #1a1a1a; font-size: 18px; }
  .hero { gap: 15px; }
  .hero h1 { font-size: 38px; }
  .hero-visual { transform: scale(.87); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card--wide { grid-column: span 1; }
  .route-map { opacity: .35; right: -50px; }
  .device-list { position: static; justify-content: flex-start; margin-top: 30px; }
  .pricing-slide { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card--popular { transform: none; }
  .protocol-panel { grid-template-columns: 1fr; }
  .protocol-copy { max-width: 730px; }
  .globe-visual { margin-top: 20px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { top: 8px; right: 0; width: auto; }
  .header-inner { min-height: 58px; padding: 5px 6px 5px 16px; border-radius: 20px; }
  .menu-button { width: 46px; height: 46px; }
  .mobile-menu { top: 64px; left: 14px; right: 14px; }
  .button { gap: 12px; }
  .button-arrow { width: 32px; height: 32px; font-size: 16px; }
  .button-arrow iconify-icon { font-size: 16px; }
  .section-shell { padding-top: 120px; }
  .hero { display: flex; min-height: auto; flex-direction: column; align-items: center; text-align: center; }
  .hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
  .hero-copy::before {
    content: "";
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: rgba(214, 228, 74, 0.22);
    filter: blur(85px);
    pointer-events: none;
    z-index: -1;
  }
  .hero h1 { font-size: 30px; text-align: center; margin-inline: auto; }
  .hero-lead { font-size: 14px; text-align: center; margin-inline: auto; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; width: 100%; text-align: center; }
  .meta-item { align-items: center; text-align: center; }
  .meta-item:last-child { grid-column: 1 / -1; justify-self: center; }
  .meta-divider { display: none; }
  .hero-visual { display: none; }
  .section { padding-top: 100px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 38px; }
  .section-heading h2, .protocol-copy h2, .final-cta h2 { font-size: 24px; }
  .section-heading > p { font-size: 15px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { min-height: 210px; padding: 16px; border-radius: 20px; }
  .feature-card--wide { grid-column: span 1; }
  .feature-number { top: 14px; right: 14px; font-size: 11px; }
  .feature-icon { width: 42px; height: 42px; margin-bottom: 20px; border-radius: 12px; }
  .feature-icon iconify-icon { transform: scale(1.1); }
  .feature-card h3 { font-size: 15px; margin-bottom: 6px; line-height: 1.15; }
  .feature-card p { font-size: 12px; line-height: 1.35; }
  .route-map { display: none; }
  .card-arrow { width: 32px; height: 32px; right: 14px; bottom: 14px; font-size: 16px; }
  .speed-meter { left: 16px; right: 16px; bottom: 14px; }
  .speed-meter strong { font-size: 16px; }
  .speed-meter span { font-size: 10px; }
  .feature-card--devices { min-height: 210px; }
  .feature-card--devices .feature-icon { margin-bottom: 20px; }
  .device-list { position: static; margin-top: 12px; max-width: 100%; justify-content: flex-start; gap: 4px; }
  .device-list span { padding: 4px 8px; font-size: 10px; }
  .products-section { margin-top: 100px; padding-block: 95px; border-radius: 38px; }
  .product-switcher { grid-template-columns: 1fr; gap: 5px; margin-bottom: 50px; border-radius: 28px; }
  .product-tab { min-height: 52px; }
  .switcher-indicator { top: 6px; bottom: auto; width: calc(100% - 12px); height: calc((100% - 22px) / 3); transition: transform .42s cubic-bezier(.2,.8,.2,1); }
  .product-intro { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 32px; }
  .product-intro h3 { font-size: 24px; }
  .price-card { min-height: 475px; border-radius: 30px; }
  .protocol-panel { min-height: 0; padding: 38px 24px 55px; border-radius: 36px; }
  .globe-visual { transform: scale(.9); margin-top: 10px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 365px; border-radius: 30px; }
  .faq-section { padding-bottom: 100px; }
  .faq-item button span { font-size: 20px; }
  .final-cta { min-height: 500px; margin-bottom: 45px; border-radius: 36px; }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 35px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom > div { flex-wrap: wrap; gap: 12px 20px; }
}

/* Legal Pages Styling */
.legal-shell { padding-top: 154px; padding-bottom: 120px; }
.legal-header { margin-bottom: 32px; }
.legal-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.03em; }
.legal-card { padding: 42px 48px; border-radius: var(--radius-xl); background: var(--panel); border: none; line-height: 1.65; color: var(--muted); }
.legal-card h2 { color: var(--text); font-size: 18px; margin-top: 30px; margin-bottom: 12px; font-weight: 800; letter-spacing: -.02em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { margin-bottom: 16px; color: #a2a29c; font-size: 14px; }
.legal-card ul, .legal-card ol { margin-bottom: 18px; padding-left: 22px; color: #a2a29c; }
.legal-card li { margin-bottom: 8px; font-size: 13.5px; }
.legal-card strong { color: var(--text); font-weight: 700; }

@media (max-width: 760px) {
  .legal-shell { padding-top: 120px; padding-bottom: 80px; }
  .legal-header h1 { font-size: 24px; }
  .legal-card { padding: 24px 18px; border-radius: 20px; }
  .legal-card h2 { font-size: 16px; margin-top: 24px; }
  .legal-card p, .legal-card li { font-size: 13px; }
}

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

/* --- Чекаут --- */
.checkout-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 4, 4, .74);
  backdrop-filter: blur(6px);
  animation: overlayIn .15s ease;
}
.checkout-overlay.is-open { display: flex; }
.checkout-overlay.is-closing { animation: overlayOut .15s ease forwards; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes overlayOut { from { opacity: 1; } to { opacity: 0; } }
.checkout-card {
  width: 100%;
  max-width: 420px;
  padding: 28px 24px;
  border-radius: 36px;
  background: var(--panel);
  animation: checkoutIn .15s cubic-bezier(0, 0, 0.2, 1);
}
.checkout-overlay.is-closing .checkout-card { animation: checkoutOut .15s cubic-bezier(0, 0, 0.2, 1) forwards; }
@keyframes checkoutIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes checkoutOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.96); } }
.checkout-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.checkout-head h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.checkout-head span { color: var(--muted); font-size: 13px; }
.checkout-close { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #202020; color: var(--text); font-size: 18px; cursor: pointer; }
.checkout-close:hover { background: #2a2a2a; }
.checkout-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 16px 20px; border-radius: 20px; background: var(--panel-light); }
.checkout-total span { color: var(--muted); font-size: 14px; }
.checkout-total strong { font-family: var(--font-display); font-size: 26px; font-weight: 850; letter-spacing: -.03em; }
.checkout-methods { display: grid; gap: 10px; margin-bottom: 18px; }
.checkout-method { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 20px; background: var(--panel-light); color: var(--text); font-family: inherit; font-size: 14px; font-weight: 650; text-align: left; cursor: pointer; transition: background .25s ease, box-shadow .25s ease; }
.checkout-method iconify-icon { color: var(--lime); font-size: 22px; }
.checkout-method small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 500; }
.checkout-method.is-active { background: #232316; box-shadow: inset 0 0 0 1px rgba(214, 228, 74, 0.4); }
.checkout-submit { width: 100%; justify-content: center; min-height: 54px; padding: 2px 22px 0; font-size: 14px; cursor: pointer; }
.checkout-note { margin: 14px 0 0; color: rgba(255,255,255,0.22); font-size: 10px; line-height: 1.5; text-align: center; }
.checkout-note a { color: rgba(255,255,255,0.22); text-decoration: none; }
.checkout-error { margin: 0 0 14px; padding: 12px 16px; border-radius: 16px; background: rgba(255, 92, 92, .12); color: #ff8b8b; font-size: 13px; }

/* --- Баннер Telegram-канала --- */
.tg-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  padding: 20px 28px;
  border-radius: 28px;
  background: linear-gradient(120deg, #229ed9 0%, #46b6f2 56%, #91dafa 100%);
  color: #ffffff;
  cursor: pointer;
}
.tg-banner:focus-visible {
  outline: 2px solid #7dd6ff;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(70, 182, 242, .24);
}
.profile-main .tg-banner {
  margin-top: 14px;
}
.tg-banner::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.tg-banner-copy { position: relative; z-index: 1; min-width: 0; }
.tg-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
}
.tg-banner h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.tg-banner p { margin: 0; max-width: 460px; font-size: 12px; line-height: 1.4; opacity: .9; }
.tg-banner-side { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.tg-banner-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 45, 67, .94);
  color: #ffffff;
  font-size: 31px;
}
.tg-banner .button {
  min-height: 46px;
  padding: 2px 7px 0 19px;
  background: rgba(9, 45, 67, .94);
  color: #ffffff;
  font-size: 12px;
}
.tg-banner .button-arrow { background: #ffffff; color: #229ed9; }

@media (max-width: 860px) {
  .app-view[data-view="home"] { display: flex; flex-direction: column; }
  .app-view[data-view="home"] .page-heading { order: 1; }
  .app-view[data-view="home"] .tg-banner { order: 2; }
  .app-view[data-view="home"] .access-panel { order: 3; }

  .profile-main .tg-banner {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0 0 14px;
    padding: 17px 18px;
    border-radius: 20px;
  }
  .tg-banner::after {
    right: -86px;
    bottom: -96px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, .17);
  }
  .tg-banner-copy { position: relative; z-index: 1; max-width: 185px; }
  .tg-banner-kicker {
    display: inline-flex;
    margin-bottom: 4px;
    font-size: 8px;
  }
  .tg-banner h3 { margin: 0; font-size: 18px; line-height: 1.05; }
  .tg-banner p { display: none; }
  .tg-banner-mark {
    position: absolute;
    z-index: 1;
    right: -20px;
    bottom: -26px;
    display: grid;
    width: 160px;
    height: 160px;
    background: rgba(9, 45, 67, .94);
    color: #ffffff;
    font-size: 78px;
  }
  .tg-banner-side { position: static; margin: 12px 0 0; }
  .tg-banner .button {
    position: relative;
    z-index: 2;
    min-height: 42px;
    padding: 1px 6px 0 14px;
    font-size: 11px;
  }
  .tg-banner .button-arrow {
    width: 32px;
    height: 32px;
  }
}
