@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-cyrillic-variable.woff2") format("woff2");
  unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --page: #070908;
  --paper: #0b0e0c;
  --ink: #eceeec;
  --muted: #8d9891;
  --line: rgba(255, 255, 255, 0.1);
  --soft: rgba(255, 255, 255, 0.045);
  --cyan: #65e6b4;
  --cyan-dark: #39c993;
  --green: #65e6b4;
  --green-dark: #16a878;
  --happ: #f3f5f3;
  --yellow: #d6f87a;
  --danger: #ef7777;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

body,
button,
a {
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__pair {
  display: flex;
  min-width: 62px;
}

.brand__pair img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--paper);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(15, 24, 34, 0.13);
}

.brand__pair img + img {
  margin-left: -14px;
}

.brand > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.brand strong {
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.site-header nav a,
.site-footer nav a {
  color: #334352;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--cyan-dark);
}

.site-header nav .nav-cta {
  padding: 11px 15px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  padding-bottom: 32px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  line-height: 1.58;
}

.eyebrow,
.label {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--cyan-dark);
  box-shadow: 0 12px 30px rgba(8, 122, 169, 0.24);
}

.button--primary:hover {
  background: #05688f;
}

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

.button--secondary:hover {
  border-color: #8697a6;
}

.button--dark {
  color: #fff;
  background: var(--happ);
}

.button--green {
  color: #fff;
  background: var(--green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--cyan-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 82px);
  border-radius: 8px;
  color: #fff;
  background: #101821;
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  right: -6%;
  bottom: -18%;
  width: 55%;
  height: 80%;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  background: #142938;
  content: "";
  transform: rotate(-8deg);
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__copy {
  max-width: 650px;
}

.hero__apps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #8ba0b0;
  font-size: 20px;
}

.hero__apps img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.hero .eyebrow {
  color: #70dcff;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: #c4d1dc;
  font-size: clamp(18px, 2vw, 22px);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: transparent;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  display: grid;
  gap: 4px;
}

.hero__facts strong {
  font-size: 17px;
}

.hero__facts span {
  color: #90a5b5;
  font-size: 13px;
}

.hero__visual {
  min-height: 520px;
}

.device-window {
  position: absolute;
  top: 42px;
  right: 0;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.device-window__bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid #d4dee5;
  background: #fff;
}

.device-window__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a7b7c3;
}

.device-window__bar span:first-child {
  background: #e16f69;
}

.device-window__bar span:nth-child(2) {
  background: var(--yellow);
}

.device-window__bar span:last-child {
  background: var(--green);
}

.device-window__content {
  padding: 24px;
  color: var(--ink);
}

.device-window__content > p {
  margin-bottom: 14px;
  font-weight: 800;
}

.mini-app-option {
  display: grid;
  width: 100%;
  min-height: 78px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid #ced9e0;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.mini-app-option img {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  object-fit: cover;
}

.mini-app-option span {
  display: grid;
  gap: 3px;
}

.mini-app-option strong {
  font-size: 17px;
}

.mini-app-option small {
  overflow-wrap: anywhere;
  color: var(--muted);
}

.mini-app-option b {
  font-size: 20px;
}

.mini-app-option.is-active {
  border-color: var(--cyan);
  background: #e6f6fd;
}

.mini-app-option--incy.is-active {
  border-color: var(--green);
  background: #eaf8ee;
}

.connection-state {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding: 12px;
  border-top: 1px solid #d6e0e6;
}

.connection-state > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 201, 78, 0.13);
}

.connection-state p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.connection-state small {
  color: var(--muted);
}

.hero__phone {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: -105px;
  width: 205px;
  height: auto;
  border: 8px solid #111;
  border-radius: 34px;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.44);
  transform: rotate(4deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip p {
  display: grid;
  gap: 3px;
  min-height: 88px;
  margin: 0;
  padding: 20px 24px;
  background: var(--paper);
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(62px, 9vw, 108px) clamp(18px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: 0;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section__hint {
  margin-top: 22px;
  color: var(--muted);
}

.section__hint a {
  color: var(--cyan-dark);
  font-weight: 750;
}

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

.app-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-top-width: 5px;
  border-radius: 8px;
  background: var(--paper);
}

.app-card--happ {
  border-top-color: var(--happ);
}

.app-card--incy {
  border-top-color: var(--green);
}

.app-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.app-card__head img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 8px;
  object-fit: cover;
}

.app-card__head .label {
  margin-bottom: 4px;
}

.app-card__head h3 {
  margin: 0;
  font-size: 30px;
}

.app-card > p {
  color: var(--muted);
}

.platform-line {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 750;
}

.app-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.device-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.device-tabs button {
  min-height: 58px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
  font-weight: 750;
}

.device-tabs button[aria-selected="true"] {
  border-color: var(--cyan-dark);
  color: #fff;
  background: var(--cyan-dark);
}

.device-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.device-result__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
}

.device-result__item img {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  object-fit: cover;
}

.device-result__item span {
  display: grid;
  gap: 2px;
}

.device-result__item small {
  color: var(--muted);
}

.device-result__item b {
  color: var(--cyan-dark);
  font-size: 21px;
}

.step-row {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.step-row--four {
  grid-template-columns: repeat(4, 1fr);
}

.step-row li {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-row li > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #fff;
  background: var(--cyan-dark);
  font-weight: 850;
}

.step-row p {
  margin: 0;
  color: var(--muted);
}

.proof-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.proof-flow img {
  width: 100%;
  aspect-ratio: 0.46;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  object-position: top;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.value-grid article {
  padding: 28px;
  background: var(--paper);
}

.value-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.faq__list {
  max-width: 880px;
}

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

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

.faq summary {
  position: relative;
  padding: 22px 46px 22px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 17px;
  right: 0;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cyan-dark);
  content: "+";
  font-size: 22px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 24px 0 0;
  padding: clamp(34px, 6vw, 62px);
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.final-cta > div {
  max-width: 720px;
}

.final-cta .eyebrow {
  color: #70dcff;
}

.final-cta h2 {
  font-size: clamp(28px, 3.7vw, 46px);
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: #b7c6d2;
}

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

.page-hero,
.article-hero {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: center;
  gap: 50px;
  padding: clamp(44px, 8vw, 86px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-hero > div:first-child,
.article-hero > div:first-child {
  max-width: 760px;
}

.page-hero h1,
.article-hero h1 {
  font-size: clamp(40px, 5vw, 66px);
}

.page-hero > div:first-child > p:not(.eyebrow),
.article-hero > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero--happ {
  border-top: 6px solid var(--happ);
}

.page-hero--incy {
  border-top: 6px solid var(--green);
}

.app-portrait {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
}

.app-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
}

.app-portrait p {
  display: grid;
  gap: 4px;
  margin: 0;
  text-align: center;
}

.app-portrait strong {
  font-size: 26px;
}

.app-portrait span {
  color: var(--muted);
  font-size: 13px;
}

.download-groups {
  display: grid;
  gap: 22px;
}

.download-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.download-group__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.download-group__title img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

.download-group__title .label {
  margin-bottom: 2px;
}

.download-group__title h3 {
  margin: 0;
  font-size: 26px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.download-item {
  display: grid;
  min-width: 0;
  min-height: 76px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #f8fafb;
  text-decoration: none;
}

.download-item:hover {
  border-color: var(--cyan);
  background: #edf8fd;
}

.download-item span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.download-item strong,
.download-item small {
  overflow-wrap: anywhere;
}

.download-item small {
  color: var(--muted);
}

.download-item b {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: var(--cyan-dark);
}

.download-group__source {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.download-group__source a {
  color: var(--cyan-dark);
  font-weight: 750;
}

.split-info,
.warning,
.fallback,
.safety {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 50px;
}

.split-info > div:last-child p,
.warning p,
.fallback li,
.safety p {
  color: var(--muted);
}

.warning,
.fallback,
.safety {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 18px;
  border: 1px solid #cddbe3;
  border-radius: 8px;
  background: #eaf5fa;
}

.platform-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.platform-cloud span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--page);
  font-weight: 800;
}

.page-hero--compare {
  border-top: 6px solid var(--cyan);
}

.compare-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.compare-icons img {
  width: 116px;
  height: 116px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(15, 30, 40, 0.13);
}

.compare-icons span {
  color: var(--muted);
  font-weight: 800;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
}

.compare-table__row > * {
  min-width: 0;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.compare-table__row > *:last-child {
  border-right: 0;
}

.compare-table__row:last-child > * {
  border-bottom: 0;
}

.compare-table__head {
  color: #fff;
  background: var(--ink);
}

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

.decision article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.decision article > img {
  width: 86px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
}

.decision h2 {
  font-size: 28px;
}

.article-hero {
  display: block;
}

.article-hero > p {
  max-width: 760px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--cyan-dark);
  text-decoration: none;
}

.source-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps li {
  display: grid;
  min-height: 370px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.52fr);
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 36px 36px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.guide-steps li > div {
  align-self: center;
  padding-bottom: 36px;
}

.guide-steps li > div > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--cyan-dark);
  font-weight: 850;
}

.guide-steps h2 {
  font-size: 34px;
}

.guide-steps p {
  color: var(--muted);
}

.guide-steps a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.guide-steps img {
  width: min(100%, 320px);
  max-height: 420px;
  align-self: end;
  justify-self: center;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: top;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.related-links a {
  display: grid;
  min-height: 86px;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  text-decoration: none;
}

.related-links span {
  color: var(--cyan-dark);
  font-size: 13px;
}

.prose {
  max-width: 870px;
}

.prose h2 {
  margin-top: 40px;
  font-size: 30px;
}

.prose p {
  color: var(--muted);
}

.prose a {
  color: var(--cyan-dark);
  font-weight: 750;
}

.error-page {
  margin-bottom: 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 48px 0;
}

.site-footer > div > p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  justify-content: flex-end;
}

.site-footer__note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header nav {
    gap: 13px;
  }

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

  .hero__visual {
    width: min(100%, 620px);
    min-height: 470px;
    justify-self: center;
  }

  .trust-strip,
  .step-row,
  .step-row--four,
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .device-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .app-portrait {
    grid-template-columns: auto 1fr;
    justify-items: start;
  }

  .app-portrait img {
    width: 96px;
    height: 96px;
  }

  .split-info {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

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

  .site-header .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .site-header nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    padding: 10px;
  }

  .site-header nav .nav-cta {
    text-align: center;
  }

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

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .hero,
  .page-hero,
  .article-hero {
    min-height: 0;
    padding: 34px 22px;
  }

  .hero {
    gap: 26px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions .button,
  .section__actions .button {
    width: 100%;
  }

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

  .hero__facts li {
    padding-right: 8px;
  }

  .hero__facts strong {
    font-size: 15px;
  }

  .hero__facts span {
    font-size: 11px;
  }

  .hero__visual {
    min-height: 350px;
  }

  .device-window {
    position: relative;
    top: 0;
    width: 100%;
  }

  .device-window__content {
    padding: 16px;
  }

  .mini-app-option {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .mini-app-option img {
    width: 44px;
    height: 44px;
  }

  .mini-app-option small {
    font-size: 11px;
  }

  .hero__phone {
    display: none;
  }

  .trust-strip,
  .app-grid,
  .device-result,
  .value-grid,
  .decision,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    min-height: 74px;
  }

  .section {
    padding: 58px 12px;
  }

  .app-card {
    padding: 20px;
  }

  .device-tabs {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .device-tabs button {
    min-width: 0;
  }

  .step-row,
  .step-row--four,
  .download-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .proof-flow {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .proof-flow img {
    width: 72vw;
    max-width: 290px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .final-cta {
    display: grid;
  }

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

  .page-hero > div:first-child > p:not(.eyebrow),
  .article-hero > p:not(.eyebrow) {
    font-size: 17px;
  }

  .app-portrait {
    grid-template-columns: 76px 1fr;
    padding: 18px;
  }

  .app-portrait img {
    width: 76px;
    height: 76px;
  }

  .app-portrait strong {
    font-size: 22px;
  }

  .download-group {
    padding: 16px;
  }

  .platform-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-cloud span {
    min-height: 52px;
    font-size: 12px;
  }

  .compare-icons {
    justify-content: flex-start;
  }

  .compare-icons img {
    width: 84px;
    height: 84px;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table__row {
    min-width: 640px;
  }

  .decision article {
    grid-template-columns: 64px 1fr;
    padding: 20px;
  }

  .decision article > img {
    width: 64px;
    height: 64px;
  }

  .decision h2 {
    font-size: 25px;
  }

  .guide-steps li {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 18px 0;
  }

  .guide-steps li > div {
    padding-bottom: 16px;
  }

  .guide-steps h2 {
    font-size: 29px;
  }

  .guide-steps img {
    width: 210px;
    max-height: 390px;
  }

  .warning,
  .fallback,
  .safety {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  .button {
    transition: none;
  }
}

/* Dark network direction: Happ first, INCY as a fallback. */

html {
  background: #070908;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: #070908;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
}

#network-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  z-index: 40;
  min-height: 58px;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(11, 15, 12, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 10px;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(101, 230, 180, 0.2);
  border-radius: 7px;
  background: rgba(101, 230, 180, 0.08);
}

.brand__mark img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.brand strong {
  color: #f6f8f6;
  font-size: 15px;
  font-weight: 800;
}

.brand small {
  color: #79857d;
  font-size: 10px;
  text-transform: uppercase;
}

.site-header nav {
  gap: clamp(12px, 2vw, 28px);
}

.site-header nav a,
.site-footer nav a {
  color: #8d9891;
  font-size: 12px;
  font-weight: 650;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--green);
}

.site-header nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(101, 230, 180, 0.4);
  border-radius: 8px;
  color: #062318;
  background: var(--green);
}

main {
  padding-top: clamp(34px, 6vw, 76px);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  color: #f0f3f0;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 780;
}

.eyebrow,
.label {
  color: var(--green);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 720;
  text-transform: lowercase;
}

.hero {
  min-height: min(760px, calc(100vh - 104px));
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(30px, 5vw, 84px);
  padding: clamp(36px, 4.5vw, 68px) 0 clamp(54px, 7vw, 96px);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.hero::after {
  display: none;
}

.hero__copy {
  max-width: 690px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: #a6b0a9;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 680;
  text-transform: lowercase;
}

.hero__badge img {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 88px);
  font-weight: 820;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--green);
}

.hero__lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #a8b1ab;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}

.hero__actions {
  margin-top: 30px;
}

.button {
  min-height: 50px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary,
.button--green {
  border-color: var(--green);
  color: #062318;
  background: var(--green);
  box-shadow: 0 14px 36px rgba(101, 230, 180, 0.16);
}

.button--primary:hover,
.button--green:hover,
.site-header nav .nav-cta:hover {
  border-color: #91f0cc;
  color: #041b12;
  background: #91f0cc;
  box-shadow: 0 0 0 4px rgba(101, 230, 180, 0.1), 0 18px 40px rgba(101, 230, 180, 0.2);
}

.button--dark,
.button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: #e9eeea;
  background: rgba(255, 255, 255, 0.035);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: #e9eeea;
  background: rgba(255, 255, 255, 0.035);
}

.hero__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.hero__downloads a {
  color: #8d9891;
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
}

.hero__downloads a::after {
  margin-left: 7px;
  color: var(--green);
  content: "↗";
}

.hero__downloads a:hover {
  color: #fff;
}

.hero__facts {
  display: grid;
  max-width: 480px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero__facts li {
  min-height: 86px;
  align-content: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(12, 16, 13, 0.72);
  backdrop-filter: blur(12px);
}

.hero__facts strong {
  color: var(--green);
  font-size: 22px;
}

.hero__facts span {
  color: #78837c;
  font-size: 11px;
}

.hero__visual {
  min-height: 520px;
}

.hero-app-mark {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 36px;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 12, 10, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(4deg);
  backdrop-filter: blur(16px);
}

.hero-app-mark img {
  width: 104px;
  height: 104px;
  border-radius: 8px;
}

.connection-console {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 66px;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(101, 230, 180, 0.2);
  border-radius: 8px;
  background: rgba(8, 12, 9, 0.78);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.connection-console__head {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.connection-console__head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(101, 230, 180, 0.9);
  animation: connection-pulse 2s ease-in-out infinite;
}

.connection-console__head p,
.connection-console__head b {
  margin: 0;
  color: #87938b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 560;
}

.connection-console__body {
  display: grid;
  gap: 15px;
  padding: 24px 20px;
}

.connection-console__body p {
  margin: 0;
  color: #8d9891;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.connection-console__body i {
  margin-right: 7px;
  color: var(--green);
  font-style: normal;
}

.alternative-float {
  position: absolute;
  z-index: 4;
  right: 238px;
  bottom: 18px;
  display: grid;
  min-width: 206px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(10, 13, 11, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.alternative-float img {
  border-radius: 7px;
}

.alternative-float p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.alternative-float strong {
  font-size: 13px;
}

.alternative-float span {
  color: #7e8a82;
  font-size: 10px;
}

@keyframes connection-pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-strip {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip p {
  min-height: 92px;
  background: rgba(9, 12, 10, 0.82);
  backdrop-filter: blur(12px);
}

.trust-strip strong {
  color: #e8ede9;
}

.trust-strip span,
.section__intro > p:not(.eyebrow),
.app-card > p,
.platform-line,
.step-row p,
.value-grid p,
.faq details p,
.final-cta p,
.page-hero > div:first-child > p:not(.eyebrow),
.article-hero > p:not(.eyebrow),
.split-info p,
.download-group__source,
.source-note,
.prose p,
.prose li {
  color: var(--muted);
}

.section {
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.section__intro {
  max-width: 760px;
}

.section__intro h2 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.04;
}

.app-grid--priority {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.app-card,
.value-grid article,
.step-row li,
.download-group,
.download-item,
.related-links a,
.decision article,
.warning,
.fallback,
.safety,
.app-portrait,
.faq details {
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(10, 13, 11, 0.78);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.app-card--happ {
  border-color: rgba(101, 230, 180, 0.34);
  background: rgba(20, 46, 35, 0.52);
}

.app-card--incy {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 10, 0.72);
}

.app-card__head img,
.download-group__title img,
.app-portrait img,
.compare-icons img,
.decision article > img {
  border-radius: 8px;
}

.text-link,
.section__hint a,
.download-group__source a,
.prose a {
  color: var(--green);
}

.device-tabs {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.device-tabs button {
  color: #8d9891;
  background: transparent;
}

.device-tabs button[aria-selected="true"] {
  color: #062318;
  background: var(--green);
}

.device-result__item {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(10, 13, 11, 0.8);
}

.device-result__item--primary {
  border-color: rgba(101, 230, 180, 0.36);
  background: rgba(20, 46, 35, 0.55);
}

.device-result__item--fallback {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 10, 0.72);
}

.device-result__item small {
  color: #98a59d;
}

.step-row li > span,
.value-grid article > span {
  color: var(--green);
  background: rgba(101, 230, 180, 0.1);
}

.fallback-story {
  display: grid;
  gap: 0;
}

.fallback-story__copy {
  display: grid;
  max-width: 860px;
  gap: 18px;
}

.fallback-story__copy > p {
  margin-bottom: 0;
}

.fallback-story__copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.fallback-story__title {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
}

.fallback-story__title img {
  border-radius: 8px;
}

.fallback-story__title h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}

.fallback-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.fallback-steps > li {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 22px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(9, 12, 10, 0.74);
}

.fallback-step__copy {
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.fallback-step__copy > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: #062318;
  background: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.fallback-step__copy h3,
.fallback-step__copy p {
  margin: 0;
}

.fallback-step__copy h3 {
  font-size: 18px;
  line-height: 1.25;
}

.fallback-step__copy p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fallback-step__phone {
  width: min(100%, 224px);
  aspect-ratio: 520 / 1130;
  justify-self: center;
  overflow: hidden;
  border: 5px solid #151a16;
  border-radius: 24px;
  background: #eef2f8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.fallback-step__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero,
.article-hero,
.final-cta {
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(9, 12, 10, 0.78);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.page-hero--happ,
.page-hero--incy,
.page-hero--compare {
  background: rgba(9, 12, 10, 0.78);
}

.final-cta .button--primary {
  color: #062318;
  background: var(--green);
}

.download-grid,
.related-links,
.value-grid,
.step-row {
  gap: 12px;
}

.download-item:hover,
.related-links a:hover {
  border-color: rgba(101, 230, 180, 0.38);
  background: rgba(20, 46, 35, 0.48);
}

.compare-table,
.compare-table__row,
.guide-steps,
.guide-steps li {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(9, 12, 10, 0.74);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__note {
  border-color: rgba(255, 255, 255, 0.08);
}

.motion-ready .section,
.motion-ready .trust-strip,
.motion-ready .final-cta {
  opacity: 0.88;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.motion-ready .section.is-visible,
.motion-ready .trust-strip.is-visible,
.motion-ready .final-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  }

  .app-grid--priority {
    grid-template-columns: minmax(0, 1fr);
  }

  .fallback-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    isolation: isolate;
    min-height: 56px;
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-toggle span {
    background: #dce4de;
  }

  .site-header nav {
    z-index: 60;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(100%, 360px);
    gap: 2px;
    padding: 10px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #090c0a;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(18px);
  }

  .site-header nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 6px;
    color: #c2cbc5;
  }

  .site-header nav a:hover {
    color: #eff4f0;
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header nav .nav-cta {
    justify-content: center;
    margin-top: 5px;
  }

  main {
    padding-top: 22px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 34px 0 46px;
  }

  .hero__copy,
  .hero__visual {
    width: 100%;
    min-width: 0;
  }

  .hero__badge {
    margin-bottom: 23px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .hero__actions .button {
    width: auto;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero__downloads {
    gap: 15px;
    min-width: 0;
    flex-wrap: wrap;
  }

  .hero__facts {
    max-width: none;
    min-width: 0;
  }

  .hero__facts li {
    min-height: 80px;
    padding: 12px 9px;
  }

  .hero__visual {
    min-height: 340px;
    margin-top: 12px;
  }

  .hero-app-mark {
    top: 0;
    right: 10px;
    width: 94px;
    height: 94px;
  }

  .hero-app-mark img {
    width: 76px;
    height: 76px;
  }

  .connection-console {
    right: 0;
    bottom: 48px;
    width: calc(100% - 24px);
  }

  .connection-console__body {
    gap: 12px;
    padding: 20px 16px;
  }

  .connection-console__body p {
    font-size: 10px;
  }

  .alternative-float {
    right: auto;
    bottom: 0;
    left: 0;
    min-width: 190px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section__intro h2,
  .fallback-story__title h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .fallback-story__title {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .fallback-story__title h2 {
    min-width: 0;
  }

  .fallback-story__title img {
    width: 54px;
    height: 54px;
  }

  .fallback-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .fallback-steps > li {
    grid-template-columns: minmax(0, 1fr) 132px;
    align-items: center;
    gap: 14px;
    padding: 16px;
  }

  .fallback-step__copy {
    min-height: 0;
  }

  .fallback-step__phone {
    width: 132px;
    border-width: 3px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .connection-console__head span {
    animation: none;
  }

  .motion-ready .section,
  .motion-ready .trust-strip,
  .motion-ready .final-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
