:root {
  color-scheme: dark;
  --black: #000000;
  --surface: #090909;
  --surface-raised: #111111;
  --line: #2b2b2b;
  --line-soft: #1b1b1b;
  --text: #ffffff;
  --muted: #b8b8bd;
  --dim: #a8a8ad;
  --ember: #e65100;
  --ember-bright: #ff761b;
  --content: 1240px;
  --reading: 780px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--black);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 14px;
  transform: translateY(-200%);
  border: 1px solid var(--text);
  border-radius: 6px;
  background: var(--ember);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
  padding: 12px max(20px, calc((100% - var(--content)) / 2));
  border-bottom: 1px solid var(--line-soft);
  background: var(--black);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.desktop-nav a,
.mobile-nav a,
.footer a {
  text-decoration: none;
  transition: color 140ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer a:hover {
  color: var(--text);
}

.header-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 44px);
  min-height: 44px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.lang-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--ember);
  color: var(--black);
}

.no-js .lang-switch {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.header-cta,
.button.primary {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--black);
}

.button.secondary {
  background: var(--surface-raised);
}

.header-cta:hover,
.button.primary:hover {
  border-color: var(--ember-bright);
  background: var(--ember-bright);
}

.button.secondary:hover {
  border-color: var(--muted);
}

.menu-button {
  display: none;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 140ms ease, opacity 140ms ease;
}

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

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

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

.mobile-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 29;
  padding: 12px 20px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--black);
}

.noscript-nav {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .mobile-download {
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid var(--ember);
  border-radius: 8px;
  background: var(--ember);
  color: var(--black);
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, var(--content));
  min-height: min(860px, calc(100svh - 128px));
  margin: 0 auto;
  padding: 64px 20px 54px;
  overflow: clip;
  border-bottom: 1px solid var(--line-soft);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(58%, 650px);
}

.hero-kicker,
.section-kicker,
.option-label,
.quiet-label {
  margin-bottom: 15px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 12px;
  font-size: 76px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.16;
}

.hero-summary {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 18px;
}

.hero-product {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 53%;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  height: auto;
  max-width: none;
  border: 1px solid #303030;
  border-radius: 8px;
  background: var(--surface);
}

.hero-phone-menu {
  right: 32%;
  bottom: -118px;
  z-index: 1;
  width: 305px;
  opacity: 0.72;
}

.hero-phone-dashboard {
  right: 2%;
  bottom: -62px;
  z-index: 2;
  width: 345px;
}

.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.hero-scroll:hover {
  color: var(--text);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-actions.compact {
  margin-top: 0;
}

.store-action {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 174px;
  min-height: 58px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
}

a.store-action {
  color: var(--text);
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}

a.store-action:hover {
  border-color: var(--ember);
  background: var(--surface-raised);
}

.store-action.large {
  min-width: 214px;
  min-height: 68px;
  padding: 10px 14px;
}

.store-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
}

.store-action small,
.store-action strong {
  display: block;
  line-height: 1.12;
}

.store-action small {
  margin-bottom: 3px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 400;
}

.store-action strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 116px 20px;
  border-top: 1px solid var(--line-soft);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 50px;
}

.section-heading.horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: end;
  max-width: none;
}

.section-heading h2,
.download h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading.horizontal h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child,
.section-heading.horizontal > p,
.hosting-footer p,
.download > div > p,
.legal-date {
  color: var(--muted);
}

.section-heading > p:last-child,
.section-heading.horizontal > p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 19px;
}

.feature-rows {
  border-bottom: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(240px, 360px);
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.feature-index {
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
}

.feature-row h3 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

.feature-row p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-row ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-row li {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-shot picture,
.product-shot img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
}

.product-shot img {
  height: auto;
  object-fit: cover;
}

.product-shot figcaption {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 15px;
  border-top: 1px solid var(--line-soft);
}

.product-shot figcaption strong {
  font-size: 14px;
  font-weight: 600;
}

.product-shot figcaption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hosting-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hosting-option {
  min-width: 0;
  padding: 42px 42px 42px 0;
}

.hosting-option + .hosting-option {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.hosting-option h3 {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
}

.hosting-option > p:not(.option-label) {
  max-width: 520px;
  color: var(--muted);
}

.hosting-option dl {
  margin: 30px 0 0;
}

.hosting-option dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}

.hosting-option dt {
  color: var(--dim);
  font-size: 12px;
  font-weight: 500;
}

.hosting-option dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.hosting-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
}

.hosting-footer p {
  max-width: 720px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ember-bright);
  font-weight: 500;
  text-underline-offset: 4px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.trust-points article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-points article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
}

.trust-points h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 600;
}

.trust-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--content)) / 2));
  padding-left: max(20px, calc((100% - var(--content)) / 2));
  background: var(--surface);
}

.download > div:first-child {
  max-width: 700px;
}

.download h2 {
  margin-bottom: 16px;
}

.download > div > p:last-child {
  margin-bottom: 0;
}

.faq {
  padding-bottom: 132px;
}

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

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

.faq summary {
  position: relative;
  min-height: 72px;
  padding: 23px 56px 23px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  content: "+";
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
}

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

.faq details p {
  max-width: 780px;
  padding: 0 56px 24px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 42px 20px 54px;
  border-top: 1px solid var(--line-soft);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--dim);
  font-size: 12px;
}

.legal-page,
.setup-page,
.not-found-page {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 84px 20px 120px;
}

.legal-page {
  width: min(100%, 860px);
}

.legal-page article {
  width: 100%;
}

.legal-page h1,
.setup-page h1,
.not-found-page h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-page h2,
.setup-page h2 {
  margin: 46px 0 14px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-page p,
.legal-page li,
.setup-page p,
.setup-page li,
.not-found-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-page li + li,
.setup-page li + li {
  margin-top: 8px;
}

.legal-page a,
.setup-page a,
.not-found-page a:not(.button) {
  color: var(--ember-bright);
  text-underline-offset: 3px;
}

.legal-date {
  font-size: 14px !important;
}

.setup-hero {
  max-width: 900px;
}

.setup-hero p {
  max-width: 760px;
  font-size: 21px;
}

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

.setup-paths article,
.setup-warning {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.setup-paths article {
  padding: 30px;
}

.setup-paths h2,
.setup-warning h2 {
  margin-top: 0;
}

.setup-paths ol,
.setup-warning ul,
.legal-page ul {
  padding-left: 1.3rem;
}

.setup-warning {
  margin-top: 12px;
  padding: 30px;
}

.not-found-page {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 180px);
}

.not-found-page article {
  max-width: 760px;
}

.not-found-page .hero-actions {
  margin: 26px 0;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

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

  .hero-copy {
    width: min(58%, 590px);
  }

  .hero-product {
    width: 50%;
  }

  .hero-phone-menu {
    width: 270px;
  }

  .hero-phone-dashboard {
    width: 310px;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .js .menu-button {
    display: block;
  }

  .noscript-nav {
    display: block;
  }

  .hero {
    min-height: calc(100svh - 112px);
    padding-top: 50px;
  }

  .hero-copy {
    width: min(64%, 560px);
  }

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

  .hero-lead {
    font-size: 27px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-product {
    right: -36px;
    width: 52%;
  }

  .hero-phone-menu {
    right: 28%;
    width: 230px;
  }

  .hero-phone-dashboard {
    width: 265px;
  }

  .section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .section-heading.horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .feature-row ul {
    grid-column: 2;
    justify-content: flex-start;
  }

  .product-gallery {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--line) transparent;
  }

  .product-shot {
    scroll-snap-align: start;
  }

  .trust-points {
    gap: 18px;
  }

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

@media (max-width: 700px) {
  .site-header {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    align-items: flex-start;
    min-height: calc(100svh - 108px);
    padding: 30px 18px 220px;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 46px;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .hero-summary {
    max-width: 520px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 12px;
  }

  .hero-actions .button {
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }

  .store-actions.compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-actions.compact .store-action {
    min-width: 0;
  }

  .hero-product {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 230px;
  }

  .hero-phone-menu {
    right: auto;
    bottom: -156px;
    left: calc(50% - 170px);
    width: 175px;
  }

  .hero-phone-dashboard {
    right: calc(50% - 170px);
    bottom: -128px;
    width: 185px;
  }

  .hero-scroll {
    display: none;
  }

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

  .hosting-options {
    grid-template-columns: 1fr;
  }

  .hosting-option,
  .hosting-option + .hosting-option {
    padding: 34px 0;
  }

  .hosting-option + .hosting-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hosting-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-points article > span {
    margin-bottom: 14px;
  }

  .download .store-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download .store-action {
    min-width: 0;
  }

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

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

  .setup-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .header-tools {
    gap: 6px;
  }

  .brand,
  .footer-brand {
    font-size: 16px;
  }

  .menu-button {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 24px;
  }

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

  .hero-lead {
    font-size: 23px;
  }

  .store-action {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    min-height: 54px;
    padding: 7px 8px;
  }

  .store-platform {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .store-action strong {
    font-size: 12px;
  }

  .section {
    padding: 76px 18px;
  }

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

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

  .section-heading > p:last-child,
  .section-heading.horizontal > p {
    font-size: 17px;
  }

  .feature-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 26px 0;
  }

  .feature-row h3 {
    font-size: 23px;
  }

  .product-gallery {
    grid-template-columns: repeat(4, minmax(78vw, 1fr));
  }

  .hosting-option h3 {
    font-size: 30px;
  }

  .download .store-actions {
    grid-template-columns: 1fr;
  }

  .download .store-action {
    width: 100%;
  }

  .faq summary {
    min-height: 66px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .legal-page,
  .setup-page,
  .not-found-page {
    padding: 58px 18px 90px;
  }

  .legal-page h1,
  .setup-page h1,
  .not-found-page h1 {
    font-size: 40px;
  }

  .legal-page h2,
  .setup-page h2 {
    font-size: 24px;
  }

  .setup-paths article,
  .setup-warning {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  .brand span {
    display: none;
  }

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

  .hero-actions .button.secondary {
    display: none;
  }

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

  .hero-lead {
    font-size: 21px;
  }
}

@media (max-height: 650px) and (max-width: 700px) {
  .hero {
    min-height: calc(100svh - 104px);
    padding-top: 18px;
    padding-bottom: 132px;
  }

  .hero-kicker {
    margin-bottom: 8px;
  }

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

  .hero-lead {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .hero-summary,
  .hero-actions .button.secondary {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-product {
    height: 128px;
  }

  .hero-phone-menu {
    bottom: -148px;
    left: calc(50% - 132px);
    width: 132px;
  }

  .hero-phone-dashboard {
    right: calc(50% - 132px);
    bottom: -134px;
    width: 138px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
