/* Shared visual system for the landing page and legal documents. */
:root {
  --paper: #f7f7f2;
  --ink: #1c211e;
  --muted: #676b64;
  --blue: #234ee8;
  --lime: #e0ed9d;
  --line: #dedfd7;
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
svg {
  display: block;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.04;
}
.brand-icon {
  width: 36px;
  height: 40px;
}
.brand-period {
  color: var(--blue);
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language-switch {
  display: flex;
  gap: 2px;
}
.language-switch button {
  border: 0;
  background: none;
  border-radius: 6px;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.contact-button {
  display: flex;
  gap: 22px;
  align-items: center;
  background: none;
  border: 1px solid var(--ink);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
}
.contact-button:hover {
  background: var(--ink);
  color: white;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 42px;
  padding-top: 52px;
  padding-bottom: 64px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.6;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #234ee810;
}
.hero h1 {
  font-size: clamp(38px, 4.5vw, 65px);
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1.06;
}
.blue-text {
  color: var(--blue);
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-top: 25px;
}
.hero-buttons {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.primary {
  background: var(--blue);
  color: white;
}
.primary:hover {
  background: #153bd0;
}
.button > span:last-child {
  font-size: 20px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-block: 6px;
}
.platform-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 24px;
  flex-wrap: wrap;
}
.platform-symbol {
  font-size: 15px;
}
.note-divider {
  height: 11px;
  width: 1px;
  background: #bfc3b9;
  margin-inline: 4px;
}
.hero-art {
  height: 530px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9ece2;
  isolation: isolate;
}
.art-top,
.art-bottom {
  position: absolute;
  left: 27px;
  right: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 4;
}
.art-top {
  top: 24px;
}
.art-bottom {
  bottom: 20px;
  font-size: 8px;
}
.art-star {
  font-size: 28px;
  font-weight: 400;
}
.orbit {
  position: absolute;
  width: 640px;
  height: 255px;
  border: 1px solid #c5cbb9;
  border-radius: 50%;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%) rotate(-35deg);
  z-index: -1;
}
.orbit-two {
  transform: translate(-50%, -50%) rotate(35deg);
}
.portal {
  width: 255px;
  height: 365px;
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-8deg);
  border-radius: 145px 145px 7px 7px;
  background: #234ee8;
  padding: 13px;
  box-shadow:
    13px 12px 0 #1835ab,
    25px 30px 45px #24306835;
}
.portal-inner {
  position: relative;
  height: 100%;
  border-radius: 130px 130px 0 0;
  overflow: hidden;
  background: linear-gradient(#537bf5, #91b1ff 59%, #ecdfa6 59%);
}
.portal-sun {
  width: 66px;
  height: 66px;
  background: #fff2a1;
  border-radius: 50%;
  position: absolute;
  top: 58px;
  right: 34px;
  box-shadow: 0 0 45px #ffe79170;
}
.portal-horizon {
  position: absolute;
  width: 400px;
  height: 125px;
  border-radius: 50%;
  background: #e5c863;
  top: 199px;
  left: -80px;
  transform: rotate(-10deg);
}
.portal-land {
  position: absolute;
  width: 430px;
  height: 130px;
  background: #eedc91;
  border-radius: 50%;
  top: 246px;
  left: -50px;
  transform: rotate(13deg);
}
.portal-line {
  position: absolute;
  width: 200px;
  height: 160px;
  top: 210px;
  left: 93px;
  border-left: 1px solid #fff9d7;
  transform: rotate(37deg);
}
.portal-word {
  position: absolute;
  top: 144px;
  width: 100%;
  text-align: center;
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 800;
  color: white;
}
.portal-word span {
  display: block;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-top: 2px;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffffff2;
  box-shadow: 0 12px 30px #1c211e0b;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 16px;
  z-index: 5;
}
.location-card {
  left: 24px;
  bottom: 92px;
  transform: rotate(-5deg);
  min-width: 206px;
}
.flag-ua {
  display: inline-block;
  width: 30px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(#2676f4 50%, #f3d550 50%);
  flex-shrink: 0;
}
.small-label {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
}
.floating-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.6;
}
.location-cross {
  margin-left: auto;
  font-size: 21px;
}
.connection-card {
  right: 18px;
  top: 97px;
  transform: rotate(6deg);
  padding: 13px;
}
.connection-icon {
  display: grid;
  place-items: center;
  font-size: 27px;
  width: 36px;
  height: 36px;
  background: var(--lime);
  border-radius: 50%;
}
.connection-card strong {
  font-size: 12px;
}
.service-strip {
  border-block: 1px solid var(--line);
}
.strip-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.strip-inner > .eyebrow {
  color: var(--muted);
  font-size: 9px;
}
.strip-inner > span:not(.eyebrow):not(.strip-star) {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.strip-star {
  font-size: 24px;
  color: #969f7d;
}
.section {
  padding-block: 94px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 38px;
}
.section-heading > div {
  max-width: 620px;
}
.section-heading p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 300px;
}
.section h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.9px;
  margin-top: 18px;
  max-width: 620px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border-radius: 20px;
  padding: 29px;
  background: #eceee6;
  min-width: 0;
}
.feature-blue {
  background: var(--blue);
  color: white;
}
.feature-lime {
  background: var(--lime);
}
.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.3px;
}
.feature-icon {
  font-size: 32px;
  line-height: 1;
  width: 30px;
  height: 32px;
}
.feature h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
  font-weight: 500;
  margin-bottom: 15px;
}
.feature p {
  font-size: 13px;
  line-height: 1.8;
  color: #535b4a;
}
.feature-blue p {
  color: #dbe2ff;
}
.ip-graphic,
.security-graphic,
.speed-graphic {
  height: 120px;
  margin-block: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ip-graphic {
  gap: 12px;
  font-size: 11px;
  letter-spacing: 1px;
}
.ip-line {
  height: 1px;
  flex: 1;
  max-width: 75px;
  background: #ffffff60;
  position: relative;
}
.ip-line:after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -3px;
}
.ip-ua {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
}
.security-graphic > span:first-child {
  background: var(--paper);
  border: 1px solid #d9dccf;
  border-radius: 12px;
  padding: 15px 18px;
  letter-spacing: 4px;
  font-size: 15px;
  white-space: nowrap;
}
.secure-mark {
  margin-left: -12px;
  margin-top: 45px;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  text-align: center;
  font-size: 19px;
}
.speed-graphic {
  gap: 7px;
  align-items: flex-end;
  padding: 20px;
}
.speed-graphic i {
  display: block;
  width: 12px;
  height: 12px;
  background: #889750;
  border-radius: 3px;
}
.speed-graphic i:nth-child(2) {
  height: 18px;
}
.speed-graphic i:nth-child(3) {
  height: 26px;
}
.speed-graphic i:nth-child(4) {
  height: 36px;
}
.speed-graphic i:nth-child(5) {
  height: 47px;
}
.speed-graphic i:nth-child(6) {
  height: 58px;
}
.speed-graphic i:nth-child(7) {
  height: 70px;
}
.speed-graphic i:nth-child(8) {
  height: 83px;
  background: var(--ink);
}
.speed-graphic > span {
  font-size: 38px;
  align-self: center;
  margin-left: 15px;
}
.apps-section {
  background: #eceee7;
}
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-card {
  border-radius: 20px;
  background: var(--paper);
  position: relative;
  min-height: 368px;
  padding: 35px;
  overflow: hidden;
}
.app-info {
  position: relative;
  z-index: 2;
  max-width: 58%;
}
.pill {
  display: inline-block;
  border: 1px solid #c9ccc1;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 600;
}
.app-info h3 {
  font-size: 25px;
  letter-spacing: -1px;
  margin-top: 25px;
  line-height: 1.15;
}
.app-info p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 15px;
  max-width: 230px;
}
.store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  padding: 11px 14px;
  transition: background 0.2s;
}
.store-button:hover {
  background: var(--blue);
}
.play-icon {
  width: 24px;
  height: 27px;
}
.store-button small {
  display: block;
  font-size: 7px;
  letter-spacing: 1px;
  line-height: 1.4;
}
.store-button strong {
  font-size: 18px;
  line-height: 1.1;
}
.store-button > span:last-child {
  font-size: 20px;
  margin-left: 8px;
}
.phone-preview {
  position: absolute;
  width: 155px;
  height: 310px;
  background: #e7ecdd;
  right: 18px;
  bottom: -23px;
  border: 6px solid #282d26;
  border-radius: 28px;
  transform: rotate(12deg);
  box-shadow: 10px 15px 30px #0002;
  padding: 28px 14px;
  text-align: center;
}
.phone-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 9px;
  border-radius: 12px;
  background: #282d26;
}
.device-brand {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
}
.power-symbol {
  margin: 26px auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  width: 62px;
  height: 62px;
  font-size: 28px;
  box-shadow: 0 0 0 8px #234ee812;
}
.phone-country {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.phone-country .flag-ua {
  width: 17px;
  height: 12px;
}
.phone-home {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-top: 18px;
  color: #697257;
}
.tv-card {
  background: #dee5f1;
}
.tv-card .app-info {
  max-width: 63%;
}
.tv-preview {
  position: absolute;
  width: 210px;
  right: -45px;
  bottom: 22px;
  transform: rotate(-8deg);
}
.tv-screen {
  height: 148px;
  border: 7px solid #242a32;
  border-radius: 8px;
  background: #244dde;
  position: relative;
  color: white;
  overflow: hidden;
  padding: 14px;
}
.tv-screen > span {
  font-size: 5px;
  position: relative;
  z-index: 1;
}
.tv-screen > strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  position: relative;
  max-width: 100px;
  margin-top: 23px;
  font-weight: 500;
}
.tv-portal {
  position: absolute;
  right: 8px;
  bottom: -12px;
  width: 72px;
  height: 112px;
  border-radius: 60px 60px 0 0;
  background: linear-gradient(#87afff 55%, #efda8d 55%);
  border: 6px solid #527cf5;
  transform: rotate(8deg);
}
.tv-stand {
  height: 7px;
  width: 75px;
  background: #242a32;
  margin: 10px auto 0;
  border-radius: 4px;
  position: relative;
}
.tv-stand:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 33px;
  height: 16px;
  width: 9px;
  background: #242a32;
}
.preview-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 15px;
}
.how-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.how-section h2 {
  max-width: 330px;
  margin-bottom: 25px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:first-child {
  padding-top: 0;
}
.step-number {
  font-size: 13px;
  color: var(--blue);
  padding-top: 4px;
}
.steps h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 400px;
}
.closing {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--blue);
  color: white;
  border-radius: 20px;
  padding: 44px;
}
.closing-star {
  font-size: 65px;
  line-height: 1;
  color: var(--lime);
}
.closing .eyebrow {
  font-size: 8px;
  color: #e0e6ff;
}
.closing h2 {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 500;
  margin-top: 10px;
}
.closing .button {
  margin-left: auto;
  white-space: nowrap;
}
.light {
  background: var(--paper);
  color: var(--ink);
}
.site-footer {
  margin-top: 75px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}
.footer-top > p {
  font-size: 13px;
  white-space: pre-line;
  color: var(--muted);
  max-width: 200px;
}
.footer-links {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  font-size: 11px;
}
.footer-links button {
  background: none;
  padding: 0;
  border: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 24px 30px;
  color: var(--muted);
  font-size: 9px;
}
dialog {
  border: 0;
  padding: 42px;
  width: calc(100% - 32px);
  max-width: 460px;
  max-height: calc(100dvh - 40px);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}
dialog::backdrop {
  background: #141c26a8;
  backdrop-filter: blur(6px);
}
body.modal-open {
  overflow: hidden;
}
.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 1px solid var(--line);
  background: none;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  font-size: 24px;
  line-height: 1;
}
.dialog-close:hover {
  background: var(--lime);
}
.mail-icon {
  display: grid;
  place-items: center;
  background: var(--lime);
  height: 65px;
  width: 65px;
  border-radius: 50%;
  font-size: 35px;
  margin-top: 28px;
}
dialog h2 {
  font-size: 42px;
  letter-spacing: -1.5px;
  font-weight: 500;
  margin-top: 25px;
}
dialog p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.email-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-block: 20px;
  color: var(--blue);
  font-size: clamp(15px, 4vw, 21px);
  letter-spacing: -0.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.dialog-company {
  margin-top: 22px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
}
.legal-main {
  max-width: 850px;
  padding-block: 70px;
}
.legal-main h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -2px;
  font-weight: 500;
  margin-bottom: 20px;
}
.legal-main h1 + p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 45px;
}
.legal-main section {
  border-top: 1px solid var(--line);
  padding-block: 25px;
}
.legal-main h2 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
}
.legal-main h3 {
  font-size: 17px;
  margin: 18px 0 12px;
}
.legal-main p,
.legal-main li {
  font-size: 15px;
  line-height: 1.85;
  color: #565e55;
}
.legal-main p + p {
  margin-top: 12px;
}
.legal-main ul {
  padding-left: 24px;
}
.legal-main a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-note {
  margin-bottom: 25px !important;
  padding: 15px 18px;
  background: #eceee7;
  border-radius: 10px;
  font-size: 12px !important;
}
@media (min-width: 1450px) {
  .hero {
    padding-block: 75px 85px;
  }
  .hero-art {
    height: 565px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 20px;
  }
  .header-actions {
    gap: 14px;
  }
  .hero {
    gap: 25px;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .hero-art {
    height: 465px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .button {
    padding: 14px 18px;
    gap: 16px;
  }
  .platform-note {
    font-size: 9px;
  }
  .connection-card {
    right: 12px;
    top: 73px;
  }
  .location-card {
    left: 14px;
    bottom: 65px;
  }
  .portal {
    width: 223px;
    height: 330px;
  }
  .portal-word {
    top: 139px;
    font-size: 27px;
  }
  .section h2 {
    font-size: 37px;
  }
  .feature {
    padding: 24px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .app-card {
    padding: 27px;
    min-height: 390px;
  }
  .app-info {
    max-width: 65%;
  }
  .app-info h3 {
    font-size: 23px;
  }
  .phone-preview {
    right: -27px;
  }
  .tv-preview {
    right: -72px;
    bottom: 22px;
  }
  .how-section {
    gap: 70px;
  }
  .closing {
    padding: 32px;
    gap: 18px;
  }
  .closing h2 {
    font-size: 25px;
  }
  .closing-star {
    font-size: 50px;
  }
  .footer-links {
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero h1 {
    font-size: 39px;
    letter-spacing: -2px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-art {
    height: 430px;
  }
  .portal {
    width: 185px;
    height: 292px;
  }
  .portal-word {
    font-size: 23px;
    top: 131px;
  }
  .portal-horizon {
    top: 179px;
  }
  .portal-land {
    top: 220px;
  }
  .portal-sun {
    width: 53px;
    height: 53px;
    top: 50px;
    right: 22px;
  }
  .connection-card {
    top: 56px;
    padding: 10px;
    gap: 8px;
    right: 9px;
  }
  .connection-card strong {
    font-size: 10px;
  }
  .connection-icon {
    width: 29px;
    height: 29px;
  }
  .location-card {
    min-width: 178px;
    padding: 12px;
    bottom: 64px;
  }
  .art-top,
  .art-bottom {
    left: 18px;
    right: 18px;
    font-size: 7px;
  }
  .strip-inner {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 23px;
  }
  .strip-inner > .eyebrow {
    width: 100%;
    text-align: center;
  }
  .strip-inner > span:not(.eyebrow):not(.strip-star) {
    font-size: 14px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    gap: 25px;
  }
  .section h2 {
    font-size: 33px;
  }
  .section-heading p {
    max-width: 245px;
    font-size: 13px;
  }
  .benefits-grid {
    gap: 12px;
  }
  .feature {
    padding: 20px;
  }
  .feature h3 {
    font-size: 19px;
  }
  .feature p {
    font-size: 12px;
  }
  .security-graphic > span:first-child {
    font-size: 10px;
    padding: 12px;
    letter-spacing: 2px;
  }
  .speed-graphic {
    padding: 20px 0;
    gap: 5px;
  }
  .speed-graphic > span {
    margin-left: 3px;
  }
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .app-card {
    min-height: 320px;
    padding: 35px;
  }
  .app-info {
    max-width: 60%;
  }
  .phone-preview {
    right: 50px;
    bottom: -40px;
    width: 155px;
    height: 305px;
  }
  .tv-preview {
    right: 20px;
    width: 245px;
    bottom: 37px;
  }
  .tv-screen {
    height: 169px;
  }
  .tv-card .app-info {
    max-width: 55%;
  }
  .closing {
    flex-wrap: wrap;
    gap: 20px;
  }
  .closing .button {
    margin-left: 70px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 25px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 9px;
  }
  .how-section {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 92px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 78px;
    gap: 10px;
  }
  .brand {
    font-size: 13px;
    gap: 8px;
  }
  .brand-icon {
    width: 29px;
    height: 33px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-switch button {
    padding: 6px;
    font-size: 10px;
  }
  .contact-button {
    padding: 8px 12px;
    font-size: 11px;
    gap: 9px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 38px;
    padding-bottom: 35px;
    gap: 32px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(35px, 9vw, 54px);
    letter-spacing: -1.9px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 440px;
    margin-top: 20px;
  }
  .hero-buttons {
    margin-top: 24px;
    gap: 20px;
  }
  .button {
    font-size: 12px;
    gap: 20px;
  }
  .text-link {
    font-size: 11px;
  }
  .platform-note {
    margin-top: 20px;
    font-size: 9px;
    gap: 7px;
  }
  .hero-art {
    height: 410px;
    max-width: 460px;
    width: 100%;
    align-self: center;
  }
  .portal {
    width: 218px;
    height: 303px;
    top: 48%;
    padding: 11px;
  }
  .portal-word {
    top: 128px;
    font-size: 28px;
  }
  .portal-horizon {
    top: 185px;
  }
  .portal-land {
    top: 229px;
  }
  .connection-card {
    right: 13px;
    top: 69px;
  }
  .location-card {
    bottom: 57px;
    left: 14px;
  }
  .art-bottom {
    bottom: 15px;
  }
  .service-strip .strip-inner {
    gap: 14px;
  }
  .strip-inner > span:not(.eyebrow):not(.strip-star) {
    font-size: 11px;
  }
  .strip-star {
    font-size: 17px;
  }
  .strip-inner > .eyebrow {
    font-size: 8px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading p {
    max-width: 350px;
    margin-top: 20px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .section h2 {
    font-size: 33px;
    letter-spacing: -1.5px;
    margin-top: 13px;
    max-width: 360px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature {
    padding: 25px;
  }
  .feature h3 {
    font-size: 23px;
  }
  .feature p {
    font-size: 14px;
  }
  .ip-graphic,
  .security-graphic,
  .speed-graphic {
    height: 92px;
    margin-block: 8px 18px;
  }
  .security-graphic > span:first-child {
    font-size: 15px;
    padding: 13px 24px;
    letter-spacing: 4px;
  }
  .speed-graphic {
    padding: 4px 20px;
    gap: 8px;
  }
  .speed-graphic i {
    width: 13px;
  }
  .feature-top {
    font-size: 8px;
  }
  .app-card {
    padding: 25px;
    min-height: 363px;
  }
  .app-info,
  .tv-card .app-info {
    max-width: 70%;
  }
  .app-info h3 {
    font-size: 23px;
    max-width: 210px;
  }
  .app-info p {
    max-width: 180px;
    font-size: 13px;
  }
  .store-button {
    padding: 11px 12px;
    gap: 9px;
  }
  .store-button strong {
    font-size: 16px;
  }
  .store-button > span:last-child {
    margin-left: 3px;
  }
  .phone-preview {
    right: -38px;
    width: 133px;
    height: 277px;
    bottom: -25px;
  }
  .device-brand {
    font-size: 8px;
  }
  .phone-home {
    font-size: 14px;
  }
  .tv-preview {
    width: 160px;
    right: -49px;
    bottom: 36px;
  }
  .tv-screen {
    height: 120px;
    padding: 8px;
    border-width: 5px;
  }
  .tv-screen > strong {
    font-size: 17px;
    max-width: 85px;
  }
  .tv-portal {
    width: 52px;
    height: 85px;
  }
  .tv-screen > span {
    font-size: 4px;
  }
  .how-section {
    display: block;
  }
  .steps {
    margin-top: 34px;
  }
  .steps li {
    gap: 22px;
    padding-block: 23px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 13px;
  }
  .closing {
    padding: 27px;
    gap: 20px;
    display: block;
  }
  .closing-star {
    font-size: 48px;
    display: block;
    margin-bottom: 18px;
  }
  .closing h2 {
    font-size: 28px;
    line-height: 1.12;
    margin-top: 13px;
  }
  .closing .button {
    margin-left: 0;
    margin-top: 25px;
  }
  .closing .eyebrow {
    font-size: 7px;
  }
  .site-footer {
    margin-top: 48px;
  }
  .footer-top {
    gap: 25px;
    padding-bottom: 27px;
  }
  .footer-top > p {
    font-size: 11px;
    max-width: 140px;
  }
  .footer-links {
    gap: 20px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    font-size: 8px;
    padding-block: 20px 25px;
  }
  .preview-note {
    font-size: 9px;
  }
  .legal-main {
    padding-block: 40px;
  }
  dialog {
    padding: 30px;
  }
  dialog h2 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
