:root {
  --ink: #102b24;
  --ink-soft: #4e665e;
  --green: #09634e;
  --green-deep: #063d32;
  --green-night: #032d26;
  --mint: #dff4e9;
  --mint-soft: #edf8f2;
  --cream: #f8f6ef;
  --paper: #fffef9;
  --line: #dce5df;
  --amber: #d99b24;
  --shadow: 0 28px 70px rgb(14 54 44 / 13%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; scroll-padding-top: 98px; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 5%, rgb(188 232 210 / 40%), transparent 28rem),
    linear-gradient(180deg, #fcfbf7 0%, var(--cream) 100%);
}

a { color: inherit; }

button { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ebb33e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 9px;
  left: 9px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-night);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 68px);
  border-bottom: 1px solid rgb(16 43 36 / 8%);
  background: rgb(248 246 239 / 90%);
  backdrop-filter: blur(18px);
}

.site-header.scrolled { box-shadow: 0 10px 34px rgb(13 55 44 / 8%); }

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.brand-mark-surface {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 3px;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  background: #fff8e8;
  box-shadow: 0 8px 24px rgb(9 99 78 / 25%);
}

.brand-mark { display: block; width: 100%; height: 100%; object-fit: contain; }

.brand-name { display: flex; gap: 7px; align-items: baseline; }
.brand-name strong { font-size: 21px; letter-spacing: -.04em; }
.brand-name small { color: var(--ink-soft); font-size: 9px; font-weight: 850; letter-spacing: .18em; }

.site-nav {
  display: flex;
  gap: clamp(7px, 1.4vw, 24px);
  align-items: center;
  justify-content: center;
}

.site-nav a {
  position: relative;
  padding: 9px 3px;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transition: right .18s ease, left .18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--green-deep); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 3px; left: 3px; }

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

.header-web,
.header-download {
  padding: 11px 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}

.header-web { color: #fff; background: var(--green); }
.header-download { border-color: #bdcec5; color: var(--green-deep); background: #fffef9; cursor: pointer; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  min-height: min(790px, calc(100vh - 78px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0 94px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #19a87d;
  box-shadow: 0 0 0 5px rgb(25 168 125 / 12%);
}

.eyebrow.light { color: #9bd7bd; }

.hero h1 {
  max-width: 760px;
  margin: 17px 0 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.3vw, 84px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.052em;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.brand-spelling {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.latest-download-note {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.latest-download-note code {
  color: var(--green-deep);
  font-size: inherit;
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 11px 30px rgb(9 99 78 / 23%); }
.button-primary:hover { background: var(--green-deep); box-shadow: 0 14px 34px rgb(9 99 78 / 28%); }
.button-secondary { border-color: #cbd9d1; color: var(--green-deep); background: rgb(255 254 249 / 70%); }
.button-secondary:hover { background: #fff; }

.android-download-dialog {
  width: min(900px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 90px rgb(3 45 38 / 28%);
}

.android-download-dialog::backdrop {
  background: rgb(3 32 27 / 67%);
  backdrop-filter: blur(5px);
}

.android-dialog-panel { position: relative; padding: clamp(27px, 5vw, 46px); }

.android-dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--mint-soft);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.android-dialog-close:hover { color: var(--green-deep); background: var(--mint); }

.android-dialog-panel h2 {
  max-width: 610px;
  margin: 13px 48px 14px 0;
  font-family: Georgia, serif;
  font-size: clamp(33px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.android-dialog-description {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.android-channel-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 27px;
}

.android-channel-card {
  display: flex;
  min-height: 390px;
  padding: 23px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--mint-soft);
}

.android-channel-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.android-channel-badge {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}

.android-channel-kind {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 850;
}

.android-channel-card h3 {
  margin: 20px 0 5px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.android-channel-version {
  margin-bottom: 13px;
  color: var(--green-deep);
  font-size: 15px;
  letter-spacing: .01em;
}

.android-channel-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.android-channel-card > .android-install-note {
  margin-top: 12px;
  font-size: 11px;
}

.android-channel-status {
  min-height: 36px;
  margin: 15px 0 9px;
  color: #76500a;
  font-size: 12px;
  font-weight: 750;
}

.android-channel-status.ok { color: var(--green); }
.android-channel-status.error { color: #9d2c20; }

.android-channel-download {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: var(--green);
  box-shadow: 0 9px 22px rgb(9 99 78 / 18%);
  font-size: 12px;
}

.android-channel-download:hover { background: var(--green-deep); }
.android-channel-download:disabled { opacity: .64; cursor: wait; transform: none; }

.android-store-status {
  display: flex;
  width: 100%;
  margin-top: 12px !important;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 11px !important;
}

.android-store-status strong { color: #76500a; font-size: 10px; }

.android-owner-auth {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(330px, 1.28fr);
  gap: 22px;
  margin-top: 16px;
  padding: 21px;
  border: 1px solid #d6c38f;
  border-radius: 18px;
  background: #fff9e9;
}

.android-owner-auth[hidden] { display: none; }
.android-owner-auth-copy { min-width: 0; }
.android-owner-auth-copy h3 { margin: 12px 0 7px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.android-owner-auth-copy p { margin: 0 0 12px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.android-owner-auth-copy > strong { color: var(--green-deep); font-size: 12px; }

.android-owner-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.android-owner-fields label { display: grid; gap: 6px; color: var(--ink-soft); font-size: 11px; font-weight: 800; }
.android-owner-fields input {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 10px 11px;
  border: 1px solid #c8d4cd;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.android-owner-fields input:focus { border-color: var(--green); outline: 3px solid rgb(9 99 78 / 13%); }
.android-owner-privacy { margin: 10px 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.android-owner-submit { min-height: 44px; padding: 10px 15px; color: #fff; background: var(--green-deep); font-size: 11px; }
.android-owner-submit:disabled { opacity: .64; cursor: wait; transform: none; }
.android-owner-status { min-height: 18px; margin: 8px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.android-owner-status.ok { color: var(--green); font-weight: 750; }
.android-owner-status.error { color: #9d2c20; font-weight: 750; }

.android-legacy-download {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 17px 19px;
  border: 1px dashed #c7d2cc;
  border-radius: 16px;
  background: #faf9f4;
}

.android-legacy-download > div { min-width: 0; }
.android-legacy-download > div > strong { display: block; margin-top: 8px; font-size: 13px; }
.android-legacy-download p { margin: 5px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.android-stable-badge { padding: 5px 8px; border-radius: 999px; color: #fff; background: #426c60; font-size: 9px; font-weight: 900; letter-spacing: .04em; }
.android-legacy-download > .android-stable-download { min-height: 44px; flex: 0 0 auto; padding: 10px 14px; border-color: #aebfb6; color: var(--green-deep); background: #fff; font-size: 11px; font-weight: 850; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.trust-list li::before { margin-right: 7px; color: var(--green); content: "✓"; font-weight: 900; }

.product-scene {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.product-scene::before {
  position: absolute;
  z-index: -2;
  inset: 50px 18px 30px;
  border-radius: 46% 54% 42% 58% / 57% 40% 60% 43%;
  background: linear-gradient(145deg, #ccecdc, #eaf6ed 56%, #f2dfae);
  content: "";
  filter: drop-shadow(0 35px 55px rgb(13 76 60 / 13%));
}

.orbit { position: absolute; z-index: -1; border: 1px solid rgb(9 99 78 / 17%); border-radius: 50%; }
.orbit-one { inset: 8px 5px 35px 12px; transform: rotate(12deg); }
.orbit-two { inset: 65px 55px 3px 38px; transform: rotate(-18deg); }

.phone-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  min-height: 520px;
  padding: 17px;
  transform: translate(-50%, -50%) rotate(-2deg);
  border: 7px solid var(--green-night);
  border-radius: 38px;
  background: #fbfcf8;
  box-shadow: 0 34px 60px rgb(6 57 46 / 24%);
}

.phone-top { display: flex; justify-content: space-between; align-items: center; height: 20px; }
.phone-top span { width: 61px; height: 14px; margin-left: 80px; border-radius: 999px; background: var(--green-night); }
.phone-top i { width: 6px; height: 6px; border-radius: 50%; background: #25a77e; }
.phone-brand { display: flex; gap: 8px; align-items: center; margin-top: 17px; }
.phone-brand-surface { display: grid; width: 31px; height: 31px; padding: 2px; place-items: center; border-radius: 10px 10px 10px 4px; background: #fff8e8; }
.phone-brand-surface img { display: block; width: 100%; height: 100%; object-fit: contain; }
.phone-brand > span { display: grid; font-size: 12px; font-weight: 850; }
.phone-brand small { color: var(--ink-soft); font-size: 8px; font-weight: 600; }
.phone-welcome { display: grid; gap: 5px; margin: 28px 0 18px; }
.phone-welcome small { color: var(--ink-soft); font-size: 10px; }
.phone-welcome strong { font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.phone-grid span { display: grid; gap: 6px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.phone-grid b { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; color: var(--green); background: var(--mint); font-size: 10px; }
.phone-grid small { color: var(--ink-soft); font-size: 9px; font-weight: 750; }
.phone-message { display: flex; gap: 9px; align-items: center; margin-top: 14px; padding: 13px; border-radius: 14px; color: #fff; background: var(--green); }
.phone-message > i { width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: #72c6a5; }
.phone-message span { display: grid; gap: 2px; }
.phone-message b { font-size: 10px; }
.phone-message small { color: #d9eee5; font-size: 8px; }

.feature-card {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 210px;
  padding: 15px;
  border: 1px solid rgb(16 43 36 / 8%);
  border-radius: 17px;
  background: rgb(255 254 249 / 94%);
  box-shadow: 0 17px 40px rgb(16 43 36 / 14%);
  backdrop-filter: blur(10px);
}

.feature-card > div { display: grid; gap: 3px; }
.feature-card small { color: var(--ink-soft); font-size: 9px; }
.feature-card strong { font-size: 12px; }
.feature-icon { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--green); background: var(--mint); font-size: 12px; font-weight: 900; }
.feature-icon.amber { color: #76500a; background: #f8e6b8; }
.card-chat { top: 74px; left: -5px; }
.card-market { right: -4px; bottom: 90px; }
.status-dot { width: 8px; height: 8px; margin-left: auto; border-radius: 50%; background: #1baa7d; box-shadow: 0 0 0 4px rgb(27 170 125 / 13%); }
.scene-note { position: absolute; right: 48px; bottom: 7px; margin: 0; color: var(--ink-soft); font-size: 10px; font-weight: 750; letter-spacing: .04em; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.information { padding: 105px 0 118px; border-top: 1px solid var(--line); }

.section-heading { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(300px, 1.18fr); gap: 15px 65px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.section-heading > p:last-child { margin: 0; color: var(--ink-soft); line-height: 1.65; }

.information-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.information-grid article { min-height: 265px; padding: 27px; border: 1px solid var(--line); border-radius: 21px; background: rgb(255 254 249 / 73%); transition: transform .18s ease, box-shadow .18s ease; }
.information-grid article:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgb(16 43 36 / 8%); }
.number { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: var(--green); background: var(--mint); font-size: 10px; font-weight: 900; }
.information-grid h3 { margin: 72px 0 10px; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.information-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.62; }

.networks {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  padding: clamp(50px, 7vw, 80px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgb(66 160 125 / 33%), transparent 18rem),
    var(--green-night);
  box-shadow: 0 30px 70px rgb(3 45 38 / 16%);
}

.networks h2 { max-width: 660px; margin: 13px 0 19px; font-family: Georgia, serif; font-size: clamp(37px, 4.4vw, 57px); font-weight: 500; line-height: 1.03; letter-spacing: -.035em; }
.networks-copy > p:last-child { max-width: 660px; margin: 0; color: #cfe7dd; line-height: 1.68; }
.network-state { display: flex; gap: 16px; padding: 24px; border: 1px solid rgb(205 241 225 / 18%); border-radius: 22px; background: rgb(255 255 255 / 7%); }
.shield { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border: 1px solid #77c6a7; border-radius: 15px 15px 15px 5px; color: #abebd1; font-size: 19px; font-weight: 900; }
.network-state strong { font-size: 16px; }
.network-state p { margin: 8px 0 0; color: #cfe7dd; font-size: 13px; line-height: 1.55; }

.customer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  padding: 130px 0;
}

.customer h2,
.admin-section h2 { margin: 13px 0 20px; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 62px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }
.customer-copy > p { max-width: 660px; margin: 0 0 26px; color: var(--ink-soft); line-height: 1.7; }
.customer code { padding: 2px 6px; border-radius: 5px; color: var(--green-deep); background: var(--mint); font-size: .88em; }
.customer-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.download-note { display: block; max-width: 560px; margin-top: 13px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.customer-rules { padding: 31px; border: 1px solid var(--line); border-radius: 25px; background: var(--paper); box-shadow: var(--shadow); }
.customer-rules h3 { margin: 0 0 23px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.customer-rules ul { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.customer-rules li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; color: var(--ink-soft); line-height: 1.45; }
.customer-rules li > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 11px; color: var(--green); background: var(--mint); font-size: 11px; font-weight: 900; }

.admin-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(38px, 7vw, 100px);
  padding: clamp(52px, 7vw, 80px);
  border-radius: 34px 34px 8px 34px;
  color: #fff;
  background: linear-gradient(135deg, #073f34, #052f29);
}

.admin-content > p { margin: 0 0 27px; color: #cfe5dc; line-height: 1.7; }
.admin-content ol { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.admin-content li { display: grid; grid-template-columns: 100px 1fr; gap: 14px; padding: 15px; border: 1px solid rgb(255 255 255 / 10%); border-radius: 13px; background: rgb(255 255 255 / 5%); }
.admin-content li strong { color: #a7e2ca; font-size: 12px; }
.admin-content li span { color: #e0f0e9; font-size: 13px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 90px auto 0;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
}

.site-footer p { margin: 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.site-footer > a:last-child { justify-self: end; color: var(--green); font-size: 12px; font-weight: 800; text-decoration: none; }
.footer-brand .brand-mark-surface { width: 34px; height: 34px; border-radius: 11px 11px 11px 4px; }
.footer-brand .brand-name strong { font-size: 17px; }

@media (max-width: 1050px) {
  .site-header { gap: 20px; }
  .brand-name { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr); }
  .product-scene { transform: scale(.92); }
}

@media (max-width: 850px) {
  html { scroll-padding-top: 128px; }
  .site-header { grid-template-columns: 1fr auto; }
  .brand-name { display: flex; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 74px; }
  .hero-copy { max-width: 730px; }
  .product-scene { width: min(560px, 100%); margin: -20px auto 0; transform: none; }
  .section-heading { grid-template-columns: 1fr; }
  .information-grid { grid-template-columns: 1fr; }
  .information-grid article { min-height: auto; }
  .information-grid h3 { margin-top: 34px; }
  .networks, .customer, .admin-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 570px) {
  .site-header { min-height: 68px; padding: 10px 14px; }
  .brand-name { display: none; }
  .brand-mark-surface { width: 39px; height: 39px; }
  .header-actions { gap: 5px; }
  .header-web, .header-download { padding: 10px 9px; font-size: 11px; }
  .site-nav { gap: 17px; margin: 0 -14px; padding: 3px 14px 1px; }
  .hero, .section, .site-footer { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(44px, 14vw, 65px); }
  .hero-actions, .customer-actions { display: grid; }
  .android-dialog-panel { padding: 27px 18px 20px; }
  .android-dialog-panel h2 { margin-right: 42px; }
  .android-channel-options { grid-template-columns: 1fr; }
  .android-channel-card { min-height: 370px; }
  .android-owner-auth { grid-template-columns: 1fr; }
  .android-owner-fields { grid-template-columns: 1fr; }
  .android-legacy-download { align-items: flex-start; flex-direction: column; }
  .trust-list { display: grid; gap: 9px; }
  .product-scene { min-height: 520px; }
  .product-scene::before { inset: 38px 0 30px; }
  .phone-preview { width: 240px; min-height: 475px; transform: translate(-50%, -50%) rotate(-2deg) scale(.91); }
  .feature-card { min-width: 175px; padding: 12px; }
  .card-chat { top: 62px; left: 0; }
  .card-market { right: 0; bottom: 70px; }
  .scene-note { right: 10px; }
  .information { padding: 82px 0 90px; }
  .networks, .admin-section { width: calc(100% - 20px); padding: 35px 24px; border-radius: 26px; }
  .customer { padding: 90px 0; }
  .customer-rules { padding: 23px; }
  .admin-content li { grid-template-columns: 1fr; gap: 5px; }
  .site-footer { margin-top: 65px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
