:root {
  color-scheme: light;
  --orange: #ed6e38;
  --orange-dark: #c84c1d;
  --orange-soft: #fbe8dd;
  --green: #40ab8c;
  --green-soft: #dff3ec;
  --blue: #3d85db;
  --blue-soft: #e1edfb;
  --ink: #202124;
  --muted: #62666d;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --white: #ffffff;
  --line: #dedbd3;
  --dark: #222326;
  --content: 1180px;
}

:root[data-theme-resolved="dark"] {
  color-scheme: dark;
  --orange-dark: #ff8a58;
  --orange-soft: #47291e;
  --green-soft: #173d34;
  --blue-soft: #1c314b;
  --ink: #f4f2ed;
  --muted: #b9babd;
  --paper: #18191b;
  --surface: #232427;
  --line: #3b3c40;
  --dark: #101113;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(16px);
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.topbar-actions,
.nav-links,
.lang-links {
  display: flex;
  align-items: center;
}

.topbar-actions {
  min-width: 0;
  gap: 20px;
}

.nav-links {
  gap: 28px;
}

.nav-links a,
.mobile-menu a {
  color: #4f5359;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--orange-dark);
}

.nav-garage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a.nav-garage,
.mobile-menu a.nav-garage,
.footer-links a.garage-link {
  color: var(--orange, #ed6e38);
}

.nav-garage::after {
  content: "↗";
  font-size: 13px;
  line-height: 1;
}

.lang-links {
  gap: 7px;
  color: #888b90;
  font-size: 12px;
  font-weight: 750;
}

.lang-links a {
  text-decoration: none;
}

.lang-links a.active {
  color: var(--orange-dark);
}

.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  appearance: none;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  box-shadow: none;
  transition: transform 160ms ease, color 160ms ease;
}

.theme-toggle:hover {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  box-shadow: none;
}

.theme-toggle-icon {
  position: relative;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
}

.theme-icon {
  grid-area: 1 / 1;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.72) rotate(-12deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon-light {
  opacity: 1;
  transform: scale(1) rotate(0);
}

:root[data-theme-resolved="dark"] .theme-icon-light {
  opacity: 0;
  transform: scale(0.72) rotate(12deg);
}

:root[data-theme-resolved="dark"] .theme-icon-dark {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.theme-auto-mark {
  position: absolute;
  right: -7px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  display: none;
  place-items: center;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 7px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(32, 33, 36, 0.18);
}

:root[data-theme="system"] .theme-auto-mark {
  display: grid;
}

.theme-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: 80px;
  line-height: 0.94;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-title-support {
  display: block;
  max-width: 560px;
  margin-top: 22px;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 650;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-button {
  width: 148px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #1f2022;
  border-radius: 8px;
  padding: 8px 11px;
  background: #17181a;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(23, 24, 26, 0.12);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

a.store-button:hover {
  transform: translateY(-2px);
  background: #292a2d;
  border-color: #292a2d;
}

.store-button-soon {
  border-color: #b9b6ae;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.store-logo {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.store-logo-play {
  width: 23px;
  height: 23px;
}

.store-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1;
}

.store-copy small {
  color: inherit;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.store-copy strong {
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.availability {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  color: #777a80;
  font-size: 13px;
}

.availability-ios,
.availability-android {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.availability-ios::before,
.availability-android::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.availability-ios::before {
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.availability-android::before {
  background: #f6c445;
  box-shadow: 0 0 0 4px rgba(246, 196, 69, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  width: 254px;
  aspect-ratio: 1206 / 2622;
  border: 7px solid #17181a;
  border-radius: 34px;
  background: #17181a;
  box-shadow: 0 28px 65px rgba(31, 32, 34, 0.22);
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 278px;
  transform: translateX(-50%);
}

.phone-left {
  z-index: 1;
  top: 76px;
  left: 0;
  transform: rotate(-7deg);
}

.phone-right {
  z-index: 2;
  top: 76px;
  right: 0;
  transform: rotate(7deg);
}

@keyframes hero-phone-main-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(48px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes hero-phone-left-in {
  from {
    opacity: 0;
    transform: translateX(-90px) rotate(-16deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-7deg) scale(1);
  }
}

@keyframes hero-phone-right-in {
  from {
    opacity: 0;
    transform: translateX(90px) rotate(16deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(7deg) scale(1);
  }
}

.motion-ready .hero-visual:not(.is-entering) .phone-main {
  opacity: 0;
  transform: translateX(-50%) translateY(48px) scale(0.92);
}

.motion-ready .hero-visual:not(.is-entering) .phone-left {
  opacity: 0;
  transform: translateX(-90px) rotate(-16deg) scale(0.9);
}

.motion-ready .hero-visual:not(.is-entering) .phone-right {
  opacity: 0;
  transform: translateX(90px) rotate(16deg) scale(0.9);
}

.motion-ready .hero-visual.is-entering .phone-main {
  animation: hero-phone-main-in 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .hero-visual.is-entering .phone-left {
  animation: hero-phone-left-in 1050ms 130ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .hero-visual.is-entering .phone-right {
  animation: hero-phone-right-in 1050ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-note {
  position: absolute;
  z-index: 5;
  right: 4px;
  bottom: 30px;
  width: 178px;
  border-left: 4px solid var(--green);
  padding: 11px 12px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.14);
  color: #55595e;
  font-size: 12px;
  line-height: 1.4;
}

.visual-note strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 18px 28px;
  color: #565a60;
  font-size: 14px;
  font-weight: 650;
}

.trust-list li:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.trust-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.trust-list li:nth-child(1) .trust-icon,
.trust-list li:nth-child(4) .trust-icon {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.trust-list li:nth-child(2) .trust-icon {
  background: var(--green-soft);
  color: #16775d;
}

.trust-list li:nth-child(3) .trust-icon {
  background: var(--blue-soft);
  color: #2565b2;
}

.section {
  padding: 112px 0;
}

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

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.section h2 {
  margin: 0;
  max-width: 680px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-tabs {
  border-right: 1px solid var(--line);
}

.feature-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 28px 26px 28px 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.feature-tab:last-child {
  border-bottom: 0;
}

.feature-tab-index {
  color: #97999d;
  font-size: 12px;
  font-weight: 800;
}

.feature-tab strong {
  font-size: 19px;
}

.feature-tab-arrow {
  color: #a2a3a6;
  font-size: 20px;
}

.feature-tab[aria-selected="true"] {
  color: var(--orange-dark);
  background: #fff8f3;
}

.feature-tab[aria-selected="true"] .feature-tab-index,
.feature-tab[aria-selected="true"] .feature-tab-arrow {
  color: var(--orange);
}

.feature-panel-wrap {
  position: relative;
  overflow: hidden;
  background: #eeece6;
}

.feature-panel {
  min-height: 620px;
  display: none;
  grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 1.2fr);
  align-items: center;
  gap: 52px;
  padding: 48px 52px;
}

.feature-panel.is-active {
  display: grid;
}

.feature-panel-copy h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.2;
}

.feature-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-points {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #43474c;
  font-size: 14px;
  font-weight: 650;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.feature-device {
  width: min(100%, 282px);
  justify-self: center;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1206 / 2622;
  border: 7px solid #17181a;
  border-radius: 35px;
  background: #17181a;
  box-shadow: 0 28px 50px rgba(32, 33, 36, 0.23);
}

.feature-device img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 690px;
}

.story-phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  width: 284px;
  aspect-ratio: 1206 / 2622;
  border: 7px solid #17181a;
  border-radius: 36px;
  background: #17181a;
  box-shadow: 0 28px 55px rgba(32, 33, 36, 0.2);
}

.story-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.story-phone:first-child {
  z-index: 2;
  top: 0;
  left: 0;
}

.story-phone:last-child {
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 254px;
}

.story-copy h2 {
  margin-bottom: 26px;
}

.story-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.story-item {
  min-height: 145px;
  padding: 23px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.story-item:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}

.story-item:nth-child(even) {
  padding-left: 28px;
}

.story-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.story-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.steps-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.steps-heading .section-number {
  color: #ff9163;
}

.steps-heading p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #b9babd;
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #4b4d51;
  border-bottom: 1px solid #4b4d51;
}

.step {
  min-height: 300px;
  padding: 36px 34px;
  border-right: 1px solid #4b4d51;
}

.step:last-child {
  border-right: 0;
}

.step-index {
  display: block;
  margin-bottom: 72px;
  color: #ff9163;
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.step p {
  margin: 0;
  color: #b9babd;
  font-size: 15px;
  line-height: 1.7;
}

.utility-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.utility-lead,
.utility-list {
  padding: 46px;
}

.utility-lead {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--orange);
  color: var(--white);
}

.utility-lead h3 {
  max-width: 510px;
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}

.utility-lead p {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.utility-tag {
  font-size: 13px;
  font-weight: 800;
}

.utility-list {
  display: grid;
  align-content: center;
  gap: 0;
}

.utility-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.utility-item:last-child {
  border-bottom: 0;
}

.utility-item-index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.utility-item h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.utility-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 112px;
}

.faq-copy h2 {
  margin-bottom: 20px;
}

.faq-copy p {
  margin: 0;
  color: var(--muted);
}

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

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

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

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 2px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 400;
}

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

.faq-answer {
  padding: 0 56px 26px 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.download {
  padding: 88px 0;
  background: #e6f1ed;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.download h2 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
}

.download p {
  margin: 18px 0 0;
  color: #59625f;
  font-size: 17px;
}

.download .button-primary {
  min-width: 210px;
}

.store-buttons-download {
  justify-content: flex-end;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 62px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 70px;
  padding-bottom: 52px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 750;
}

.footer-brand-row img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #b9babd;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-title {
  margin-bottom: 8px;
  color: #8f9195;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  color: #dadadd;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff9163;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #44464a;
  padding-top: 24px;
  color: #96989c;
  font-size: 12px;
}

:root[data-theme-resolved="dark"] .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(24, 25, 27, 0.94);
}

:root[data-theme-resolved="dark"] .nav-links a,
:root[data-theme-resolved="dark"] .mobile-menu a,
:root[data-theme-resolved="dark"] .lang-links,
:root[data-theme-resolved="dark"] .availability,
:root[data-theme-resolved="dark"] .trust-list li,
:root[data-theme-resolved="dark"] .visual-note {
  color: var(--muted);
}

:root[data-theme-resolved="dark"] .nav-links a.nav-garage,
:root[data-theme-resolved="dark"] .mobile-menu a.nav-garage {
  color: var(--orange, #ed6e38);
}

:root[data-theme-resolved="dark"] .store-button-soon {
  border-color: #55575c;
  background: #202124;
}

:root[data-theme-resolved="dark"] .visual-note {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

:root[data-theme-resolved="dark"] .feature-tab[aria-selected="true"] {
  background: rgba(237, 110, 56, 0.11);
}

:root[data-theme-resolved="dark"] .feature-panel-wrap {
  background: #1d1e20;
}

:root[data-theme-resolved="dark"] .feature-points {
  color: #d9d9dc;
}

:root[data-theme-resolved="dark"] .download {
  background: #1d332d;
}

:root[data-theme-resolved="dark"] .download p {
  color: #bdc9c5;
}

:root[data-theme-resolved="dark"] .phone,
:root[data-theme-resolved="dark"] .feature-device,
:root[data-theme-resolved="dark"] .story-phone {
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero-title-support {
    font-size: 27px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone {
    width: 216px;
  }

  .phone-main {
    width: 250px;
  }

  .section h2 {
    font-size: 42px;
  }

  .feature-panel {
    gap: 28px;
    padding-inline: 32px;
  }

  .story-grid {
    gap: 60px;
  }

  .story-phone {
    width: 250px;
  }

  .story-phone:last-child {
    width: 220px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, var(--content));
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #c9c6bf;
    border-radius: 5px;
    padding: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon span {
    position: relative;
    width: 18px;
    display: block;
  }

  .menu-icon {
    height: 14px;
  }

  .menu-icon span {
    position: absolute;
    left: 0;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
  }

  .menu-icon span:nth-child(1) { top: 0; }
  .menu-icon span:nth-child(2) { top: 6px; }
  .menu-icon span:nth-child(3) { top: 12px; }

  .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-menu.is-open {
    max-height: 420px;
    padding: 14px 18px 24px;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    padding: 16px 4px;
    font-size: 16px;
  }

  .hero {
    padding-top: 48px;
  }

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

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 570px;
    margin: 6px auto 0;
  }

  .phone {
    width: 230px;
  }

  .phone-main {
    width: 266px;
  }

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

  .trust-list li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-list li:nth-child(3),
  .trust-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-tab {
    min-height: 92px;
    border-right: 1px solid var(--line);
    padding: 18px;
  }

  .feature-tab:nth-child(even) {
    border-right: 0;
  }

  .feature-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .feature-tab-index,
  .feature-tab-arrow {
    display: none;
  }

  .feature-tab strong {
    font-size: 16px;
  }

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

  .story-visual {
    width: min(100%, 520px);
    min-height: 650px;
    margin-inline: auto;
  }

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

  .step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #4b4d51;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step-index {
    margin-bottom: 30px;
  }

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

  .utility-lead {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-copy {
    position: static;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .download .button-primary {
    justify-self: start;
  }

  .store-buttons-download {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar-actions {
    gap: 8px;
  }

  .lang-links {
    gap: 5px;
  }

  .store-button {
    width: 145px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--content));
  }

  .topbar {
    height: 68px;
  }

  .topbar-actions {
    gap: 11px;
  }

  .brand {
    font-size: 18px;
  }

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

  .mobile-menu {
    inset: 68px 0 auto;
  }

  .hero {
    padding: 38px 0 54px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-title-support {
    margin-top: 17px;
    font-size: 23px;
  }

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

  .hero-actions {
    align-items: stretch;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
  }

  .phone {
    width: 156px;
    border-width: 5px;
    border-radius: 24px;
  }

  .phone img {
    border-radius: 19px;
  }

  .phone-main {
    width: 184px;
  }

  .phone-left,
  .phone-right {
    top: 58px;
  }

  .phone-left {
    left: -22px;
  }

  .phone-right {
    right: -22px;
  }

  .visual-note {
    right: 0;
    bottom: 0;
    width: 154px;
  }

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

  .trust-list li,
  .trust-list li:first-child {
    min-height: 78px;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 8px;
  }

  .trust-list li:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

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

  .section h2,
  .download h2 {
    font-size: 34px;
  }

  .section-intro,
  .story-copy > p,
  .steps-heading p {
    font-size: 16px;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .feature-tab,
  .feature-tab:nth-child(even),
  .feature-tab:nth-last-child(-n + 2) {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-tab:last-child {
    border-bottom: 0;
  }

  .feature-panel,
  .feature-panel.is-active {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 32px 20px 42px;
  }

  .feature-panel-copy h3 {
    font-size: 25px;
  }

  .feature-device {
    grid-row: 1;
    width: 210px;
    border-width: 5px;
    border-radius: 27px;
  }

  .feature-device img {
    border-radius: 21px;
  }

  .story-grid {
    gap: 40px;
  }

  .story-visual {
    min-height: 500px;
  }

  .story-phone {
    width: 210px;
    border-width: 5px;
    border-radius: 28px;
  }

  .story-phone img {
    border-radius: 22px;
  }

  .story-phone:last-child {
    width: 185px;
  }

  .story-list {
    grid-template-columns: 1fr;
  }

  .story-item,
  .story-item:nth-child(odd),
  .story-item:nth-child(even) {
    min-height: auto;
    border-right: 0;
    padding: 20px 0;
  }

  .step {
    padding: 30px 8px;
  }

  .utility-lead,
  .utility-list {
    padding: 32px 22px;
  }

  .utility-lead {
    min-height: 330px;
  }

  .utility-lead h3 {
    font-size: 29px;
  }

  .faq-item summary {
    padding-right: 42px;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 24px;
  }

  .download {
    padding: 64px 0;
  }

  .download .button-primary {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .topbar .container {
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .topbar-actions {
    gap: 6px;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready .hero-visual .phone {
    opacity: 1;
    animation: none;
  }

  .motion-ready .hero-visual .phone-main {
    transform: translateX(-50%);
  }

  .motion-ready .hero-visual .phone-left {
    transform: rotate(-7deg);
  }

  .motion-ready .hero-visual .phone-right {
    transform: rotate(7deg);
  }
}
