:root {
  color-scheme: light;
  --ink: #17211d;
  --forest: #183a2b;
  --forest-2: #28543d;
  --moss: #5f7e58;
  --fern: #12a454;
  --orange: #ff6b18;
  --orange-deep: #bd4b12;
  --sky: #2f80c9;
  --red: #d73d3d;
  --paper: #fffdf8;
  --paper-soft: #f3f0e7;
  --mist: #eef4ef;
  --line: #d9e1d7;
  --muted: #65736a;
  --muted-dark: #435149;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow: 0 18px 46px rgba(23, 33, 29, 0.13);
  --soft-shadow: 0 10px 24px rgba(23, 33, 29, 0.08);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(243, 240, 231, 0.86), rgba(255, 253, 248, 0.92) 420px),
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1080px, calc(100% - 32px));
  min-height: 58px;
  margin: 12px auto 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  color: #fff;
  background: rgba(21, 35, 31, 0.74);
  box-shadow: 0 16px 42px rgba(12, 22, 18, 0.22);
  backdrop-filter: blur(16px);
}

.brand-link,
.top-nav,
.store-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
}

.brand-link img {
  width: 38px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.top-nav {
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  scrollbar-width: none;
  white-space: nowrap;
}

.top-nav::-webkit-scrollbar {
  display: none;
}

.top-nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.top-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.store-links {
  gap: 8px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
}

.language-switch a {
  color: inherit;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.language-switch .is-active {
  color: var(--forest);
  background: #fff;
}

.store-button {
  display: grid;
  gap: 2px;
  min-width: 106px;
  min-height: 38px;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 1;
}

.store-button span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.store-button strong {
  font-size: 13px;
}

.store-button-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.store-button-muted {
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
}

.store-button-muted span,
.store-button-muted strong {
  color: rgba(255, 255, 255, 0.84);
}

.hero-section {
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  min-height: clamp(560px, 72svh, 760px);
  max-height: none;
  margin: -76px 0 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #111c17;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 16, 13, 0.76) 0%, rgba(9, 16, 13, 0.38) 44%, rgba(9, 16, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(9, 16, 13, 0.22) 0%, rgba(9, 16, 13, 0.68) 100%);
}

.hero-section::after {
  inset: auto 0 0;
  z-index: 1;
  height: 86px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.7));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin-left: max(24px, calc((100vw - 1080px) / 2));
  padding: 150px 34px 70px 0;
}

.kicker {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: 58px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 500px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 520;
}

.hero-actions {
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.primary-action {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 107, 24, 0.28);
}

.primary-action:hover {
  background: #f05d10;
}

.secondary-action {
  color: var(--orange-deep);
  border: 1px solid rgba(255, 107, 24, 0.26);
  background: #fff0e5;
}

.ghost-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.intro-panel,
.screens-section,
.content-band,
.split-proof,
.expect-section,
.support-preview,
.support-hero,
.support-grid,
.faq-section,
.legal-hero,
.legal-notice,
.legal-layout {
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
}

.intro-panel,
.screens-section,
.content-band,
.split-proof,
.expect-section,
.support-preview,
.support-hero,
.legal-hero {
  scroll-margin-top: 88px;
}

.intro-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(217, 225, 215, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.intro-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.intro-copy p,
.section-heading p,
.feature-card p,
.proof-copy p,
.expect-grid p,
.support-preview p,
.support-hero p,
.support-card p,
.faq-section p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
  font-weight: 500;
}

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

.intro-facts article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: var(--mist);
}

.reason-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.reason-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.reason-icon-live {
  color: #0d8b46;
  background: #ddf5e6;
}

.reason-icon-gray {
  color: #627086;
  background: #e9eef5;
}

.reason-icon-detail {
  color: var(--orange-deep);
  background: #fff1df;
}

.reason-icon-trip {
  color: #0b93c7;
  background: #e2f5fb;
}

.intro-facts strong {
  color: var(--forest);
  font-size: 15px;
}

.intro-facts span {
  color: var(--muted-dark);
  line-height: 1.4;
  font-size: 13px;
  font-weight: 500;
}

.screens-section,
.content-band,
.split-proof,
.expect-section,
.support-preview,
.support-hero,
.faq-section {
  margin-top: 48px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 20px;
}

.screen-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.screen-feature,
.screen-row,
.screen-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.screen-feature {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
}

.screen-feature-image {
  position: relative;
  display: block;
  width: 100%;
  height: 420px;
  padding: 0;
  border: 0;
  appearance: none;
  overflow: hidden;
  background: #eef4ef;
  cursor: zoom-in;
}

.screen-feature-image:focus-visible,
.screen-row:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(247, 118, 38, 0.38);
  outline-offset: 3px;
}

.screen-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top;
}

.screen-zoom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #19332a;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 28px rgba(24, 40, 31, 0.18);
}

.screen-zoom-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screen-feature-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.screen-feature-copy p:not(.kicker),
.screen-row p,
.screen-note p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 450;
}

.screen-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.screen-row {
  width: 100%;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.screen-row:hover,
.screen-row.is-active {
  border-color: rgba(247, 118, 38, 0.42);
  background: #fffaf4;
}

.screen-row:hover {
  transform: translateY(-1px);
}

.screen-row.is-active {
  box-shadow: 0 22px 48px rgba(54, 74, 60, 0.14);
}

.screen-row img {
  width: 94px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  background: #eef4ef;
}

.screen-row div {
  display: grid;
  gap: 5px;
}

.screen-row span,
.screen-note span {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.screen-row h3 {
  font-size: 16px;
  line-height: 1.2;
}

.screen-note {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  width: min(760px, 100%);
  margin-top: 12px;
  padding: 12px;
  background: #f8faf8;
}

.screen-note img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82);
}

.screen-note div {
  display: grid;
  gap: 4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 24, 19, 0.9);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(92vw, 560px);
  max-height: 90vh;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.has-lightbox {
  overflow: hidden;
}

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

.feature-card,
.expect-grid article,
.support-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 204px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-weight: 950;
}

.feature-nature .feature-icon {
  color: #fff;
  background: var(--fern);
}

.feature-parking .feature-icon {
  color: #fff;
  background: var(--orange);
}

.feature-water .feature-icon {
  color: #fff;
  background: var(--sky);
}

.feature-alert .feature-icon {
  color: #fff;
  background: var(--red);
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 58, 43, 0.97), rgba(31, 49, 45, 0.96)),
    url("./img/cover.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-media img {
  width: min(300px, 100%);
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
  object-position: top;
  border: 7px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.proof-copy {
  display: grid;
  gap: 14px;
}

.proof-copy h2 {
  max-width: 720px;
}

.proof-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 92px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  font-size: 14px;
  line-height: 1.42;
  font-weight: 520;
}

.check-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(247, 118, 38, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.check-list li:nth-child(2) .check-icon {
  background: rgba(58, 133, 185, 0.82);
}

.check-list li:nth-child(3) .check-icon {
  background: rgba(42, 151, 111, 0.82);
}

.check-list li:nth-child(4) .check-icon {
  background: rgba(191, 139, 54, 0.82);
}

.check-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.expect-grid article {
  min-height: 178px;
  background: linear-gradient(180deg, #fff, #f9fbf7);
}

.expect-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.support-preview {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 107, 24, 0.22);
  border-radius: var(--radius-lg);
  background: #fff7ef;
}

.support-preview div {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 106px;
  margin-top: 80px;
  padding: 24px max(24px, calc((100vw - 1080px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #15231f;
}

.site-footer img {
  width: 138px;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.support-hero {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 48px;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 35, 31, 0.94), rgba(40, 84, 61, 0.82)),
    url("./img/cover.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-hero h1 {
  max-width: 780px;
  font-size: 42px;
}

.support-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.support-card h2 {
  font-size: 22px;
}

.support-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.faq-section {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 19px 22px;
  font-size: 17px;
  font-weight: 850;
}

details p {
  padding: 0 22px 22px;
}

.legal-page {
  padding-top: 40px;
}

.legal-hero {
  display: grid;
  gap: 14px;
  padding: 38px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 35, 31, 0.95), rgba(255, 107, 24, 0.72)),
    url("./img/cover.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.privacy-hero {
  background:
    linear-gradient(135deg, rgba(21, 35, 31, 0.95), rgba(47, 128, 201, 0.68)),
    url("./img/cover.png") center / cover no-repeat;
}

.legal-hero h1 {
  max-width: 820px;
  font-size: 42px;
}

.legal-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 520;
}

.legal-updated {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.legal-notice {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 107, 24, 0.28);
  border-radius: var(--radius-md);
  color: #8a3a06;
  background: #fff4e8;
}

.legal-notice span {
  color: #6f4a32;
  line-height: 1.5;
  font-weight: 500;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.legal-toc {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.legal-toc a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--orange-deep);
  background: #fff4ea;
}

.legal-card {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.legal-card h2 {
  margin-top: 14px;
  font-size: 25px;
  scroll-margin-top: 120px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #4f5b54;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.legal-card a {
  color: var(--orange-deep);
  font-weight: 850;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.legal-table > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
}

.legal-table strong,
.legal-table span {
  padding: 16px;
  background: #fff;
}

.legal-table strong {
  color: var(--ink);
}

.legal-table span {
  color: #4f5b54;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .store-links {
    flex-wrap: wrap;
  }

  .hero-section {
    min-height: 620px;
    margin-top: 16px;
  }

  .hero-copy {
    width: min(500px, 100%);
    margin-left: 0;
    padding: 0 26px 30px;
  }

  .intro-panel,
  .split-proof,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .intro-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .screen-feature {
    grid-template-rows: auto auto;
  }

  .screen-feature img {
    height: 100%;
  }

  .screen-feature-image {
    height: 330px;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .check-list,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .support-preview,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: relative;
    top: 8px;
    z-index: 30;
    align-items: start;
    width: calc(100% - 20px);
    margin: 8px auto 0;
    padding: 10px;
    border-radius: 18px;
  }

  .home-page .site-header {
    position: absolute;
    left: 10px;
    margin: 0;
  }

  .brand-link img {
    width: 36px;
    height: 28px;
  }

  .top-nav {
    gap: 4px;
    font-size: 13px;
  }

  .top-nav a {
    padding: 8px 10px;
  }

  .language-switch {
    min-height: 34px;
    padding: 2px;
    font-size: 11px;
  }

  .language-switch a,
  .language-switch span {
    min-width: 28px;
    min-height: 26px;
    padding: 0 7px;
  }

  .store-button {
    min-width: 112px;
  }

  .hero-section {
    width: 100%;
    min-height: 620px;
    margin-top: 0;
    padding: 0;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding: 0 18px 42px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

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

  .intro-panel,
  .screens-section,
  .content-band,
  .split-proof,
  .expect-section,
  .support-preview,
  .support-hero,
  .legal-hero,
  .legal-notice,
  .legal-layout,
  .support-grid,
  .faq-section {
    width: calc(100% - 24px);
  }

  .intro-panel,
  .split-proof,
  .support-preview,
  .support-hero,
  .legal-hero,
  .legal-card {
    padding: 18px;
  }

  .intro-panel {
    margin-top: 28px;
  }

  .screens-section,
  .content-band,
  .split-proof,
  .expect-section,
  .support-preview,
  .support-hero,
  .faq-section {
    margin-top: 40px;
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }

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

  .screen-feature img {
    height: 100%;
  }

  .screen-feature-image {
    height: 280px;
  }

  .screen-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .screen-row {
    flex: 0 0 282px;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    min-height: 106px;
    padding: 9px;
    scroll-snap-align: start;
  }

  .screen-row img {
    width: 78px;
    height: 88px;
  }

  .screen-row h3 {
    font-size: 15px;
  }

  .screen-row p,
  .screen-note p {
    font-size: 13px;
    line-height: 1.42;
  }

  .screen-note {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 10px;
  }

  .screen-note img {
    width: 58px;
    height: 58px;
  }

  .proof-media img {
    border-width: 7px;
    border-radius: 28px;
  }

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

  .feature-card,
  .expect-grid article,
  .support-card {
    min-height: 0;
    padding: 20px;
  }

  .proof-media {
    display: grid;
    justify-items: center;
  }

  .site-footer {
    margin-top: 60px;
  }

  .legal-page {
    padding-top: 28px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-card h2 {
    font-size: 22px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
  }
}
