:root {
  color-scheme: dark;
  --bg: #07080b;
  --bg-soft: #0d1017;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --surface-subtle: rgba(255, 255, 255, 0.038);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f8fb;
  --muted: #a9afbc;
  --soft: #d6d9e2;
  --red: #ff173d;
  --red-dark: #b90f2b;
  --cyan: #3bd8e8;
  --green: #43e68a;
  --shadow: 0 28px 88px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 80px;
  --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 23, 61, 0.22), transparent 32rem),
    radial-gradient(circle at 88% 20%, rgba(59, 216, 232, 0.14), transparent 30rem),
    linear-gradient(180deg, #08090d 0%, #07080b 42%, #0b0e14 100%);
  color: var(--text);
  font-family: var(--font-family);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 70%);
}

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

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

body.has-mobile-app-banner {
  padding-bottom: 0;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 112px) 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 11, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(255, 23, 61, 0.18);
}

.header-actions,
.store-links,
.hero-points,
.premium-list {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.language-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.language-link:hover,
.language-link.is-active {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.language-link img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.store-links {
  flex-wrap: wrap;
  gap: 12px;
}

.store-links a {
  display: inline-flex;
  height: 48px;
  align-items: center;
  border-radius: 8px;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-links a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-links img {
  width: auto;
  height: 48px;
}

.store-links-header {
  margin-left: 10px;
}

.store-links-header a,
.store-links-header img {
  height: 38px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(84px, 9vw, 124px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -12rem;
  width: min(52rem, 80vw);
  height: min(52rem, 80vw);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 23, 61, 0.13), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 8vw, 108px);
}

.hero-copy h1 {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(3.2rem, 7.2vw, 6.25rem);
  font-weight: 820;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin-top: 24px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.free-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(67, 230, 138, 0.28);
  border-radius: 8px;
  background: rgba(67, 230, 138, 0.08);
  color: #bdf8d6;
  font-size: 0.84rem;
  font-weight: 780;
  margin: 0 0 18px;
  padding: 8px 12px;
}

.hero-copy .free-pill {
  margin-top: 0;
  color: #bdf8d6;
  font-size: 0.84rem;
  line-height: 1.2;
}

.inline-pill {
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 0.95rem;
  font-weight: 780;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button-primary {
  border: 1px solid rgba(255, 23, 61, 0.64);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 23, 61, 0.18);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

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

.hero-stores {
  margin-top: 34px;
}

.hero-points {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
}

.hero-points li {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 8px 12px;
}

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

.product-shot {
  position: relative;
  width: min(390px, 92vw);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #101218;
  box-shadow: var(--shadow);
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.product-shot img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
}

.floating-widget {
  position: absolute;
  z-index: 3;
  display: grid;
  max-width: 260px;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 16, 23, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.floating-widget strong {
  color: var(--text);
  font-size: 1rem;
}

.floating-widget span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.widget-label,
.section-number {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-race {
  top: 58px;
  left: -28px;
}

.standings-widget {
  right: -10px;
  bottom: 116px;
}

.split-layout,
.widget-grid,
.premium-panel,
.footer-grid,
.highlight-panel {
  display: grid;
  align-items: start;
  gap: 48px;
}

.split-layout {
  grid-template-columns: 0.74fr 1.26fr;
}

.section-copy h2,
.section-heading h2,
.premium h2,
.pricing h2,
.notifications h2,
.final-cta h2 {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 790;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p,
.premium p,
.notifications p,
.final-cta p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

.free-core,
.notifications,
.pricing {
  position: relative;
}

.free-core::before,
.notifications::before,
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-50%);
}

.muted-copy {
  color: #c5c9d3;
}

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

.info-card,
.feature-card,
.premium-panel,
.final-panel,
.mock-widget,
.media-card,
.compare-card,
.price-card,
.highlight-panel,
.screenshot-grid figure {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.info-card {
  min-height: 190px;
  padding: 24px;
}

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

.compact-grid .info-card {
  min-height: 132px;
  padding: 19px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), var(--surface-subtle));
  box-shadow: none;
}

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.22), rgba(59, 216, 232, 0.14)),
    #151922;
  position: relative;
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid currentColor;
  color: var(--red);
}

.calendar-icon::after {
  border-radius: 3px;
  box-shadow: inset 0 7px 0 rgba(255, 23, 61, 0.35);
}

.race-icon::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.track-icon::after {
  inset: 12px 8px;
  border-radius: 50%;
  transform: rotate(-20deg);
}

.time-icon::after {
  border-radius: 50%;
  box-shadow: inset 6px -5px 0 transparent;
}

.info-card h3,
.feature-card h3,
.mock-widget strong {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.2;
}

.info-card p,
.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.media-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(148px, 0.64fr) minmax(0, 1fr);
  align-items: stretch;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: contain;
  object-position: top center;
  border-right: 1px solid var(--border);
  background: #101218;
}

.feature-shot,
.gallery-shot,
.favorite-banner {
  width: 100%;
  height: 100%;
}

.feature-shot--contain,
.gallery-shot {
  object-fit: contain;
}

.feature-shot--cover-safe {
  object-fit: contain;
  object-position: center;
}

.media-card div {
  display: grid;
  align-content: end;
  padding: 24px;
}

.media-card h3,
.compare-card h3,
.price-card h3,
.screenshot-grid figcaption {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

.media-card p,
.compare-card p,
.price-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.widgets {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.widget-grid {
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
}

.widget-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock-widget {
  min-height: 156px;
  padding: 21px;
  box-shadow: none;
}

.mock-widget.wide {
  grid-column: 1 / -1;
  min-height: 196px;
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.16), rgba(59, 216, 232, 0.1)),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
}

.mock-widget span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mock-widget strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.mock-widget p {
  margin-top: 8px;
  color: var(--soft);
}

.mock-widget.accent {
  border-color: rgba(255, 23, 61, 0.32);
}

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

.media-side {
  display: grid;
  justify-items: start;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #101218;
  box-shadow: var(--shadow);
}

.screenshot-frame--phone {
  display: grid;
  justify-items: center;
  width: min(260px, 100%);
  padding: 12px 12px 0;
}

.screenshot-frame--compact {
  width: min(220px, 100%);
  margin-top: 28px;
}

.screenshot-frame--phone img {
  max-height: 360px;
  object-fit: contain;
  object-position: top center;
}

.screenshot-frame figcaption {
  width: calc(100% + 24px);
  margin-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 720;
  padding: 10px 12px 12px;
  text-align: center;
}

.widget-phone-frame {
  justify-self: start;
}

.highlight-panel {
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  padding: clamp(26px, 4.8vw, 54px);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 198, 61, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 23, 61, 0.1), rgba(59, 216, 232, 0.04)),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
}

.favorite-banner-frame {
  width: 100%;
  max-height: 430px;
  padding: 10px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
}

.favorite-banner {
  width: 100%;
  border-radius: 8px;
  max-height: 410px;
  object-fit: contain;
  object-position: center;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 12px;
}

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

.compare-card,
.price-card {
  padding: 28px;
}

.premium-card,
.price-card:nth-child(2) {
  border-color: rgba(255, 23, 61, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.12), transparent 44%),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
}

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

.feature-card {
  min-height: 238px;
  padding: 24px;
}

.feature-card img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 28px;
  object-fit: cover;
}

.premium {
  padding-top: clamp(54px, 7vw, 82px);
}

.premium-panel {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  padding: clamp(34px, 5.4vw, 66px);
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.premium-list {
  flex-direction: column;
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  list-style: none;
}

.premium-list li {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-weight: 650;
  padding: 13px 15px 13px 40px;
  position: relative;
}

.premium-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 23, 61, 0.12);
}

.pricing {
  padding-top: clamp(54px, 7vw, 82px);
}

.pricing .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  width: min(760px, 100%);
  margin: 0 auto;
}

.price-card strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

.price-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

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

.screenshot-grid figure {
  overflow: hidden;
}

.screenshot-grid img {
  width: 100%;
  height: clamp(380px, 34vw, 520px);
  object-fit: contain;
  object-position: top center;
  background: #101218;
}

.mobile-app-banner {
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 13, 19, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  padding: 11px;
}

.mobile-app-banner[hidden] {
  display: none;
}

.mobile-app-banner img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(255, 23, 61, 0.2);
}

.mobile-app-banner__copy {
  min-width: 0;
}

.mobile-app-banner__copy strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.15;
}

.mobile-app-banner__copy p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.mobile-app-banner__cta,
.mobile-app-banner__stores a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 11px;
  white-space: nowrap;
}

.mobile-app-banner__stores {
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.mobile-app-banner__stores a {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.mobile-app-banner.is-unknown-platform {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.mobile-app-banner.is-unknown-platform .mobile-app-banner__cta {
  display: none;
}

.mobile-app-banner.is-unknown-platform .mobile-app-banner__stores {
  display: flex;
}

.mobile-app-banner__close {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
}

.screenshot-grid figcaption {
  border-top: 1px solid var(--border);
  padding: 13px 16px 15px;
}

.final-cta {
  padding-top: clamp(54px, 7vw, 82px);
}

.final-panel {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 23, 61, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
}

.final-panel .store-links {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.site-footer p {
  max-width: 640px;
  font-size: 0.9rem;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--text);
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--red);
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .store-links-header {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .widget-grid,
  .premium-panel,
  .footer-grid,
  .highlight-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 84px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .section-copy p,
  .premium p,
  .final-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stores,
  .hero-points,
  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 76px;
  }

  .next-race {
    top: 22px;
    left: max(0px, calc(50% - 250px));
  }

  .standings-widget {
    right: max(0px, calc(50% - 260px));
    bottom: 18px;
  }

  .section-copy,
  .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .media-side,
  .highlight-panel {
    justify-items: center;
  }

  .widget-phone-frame {
    justify-self: center;
  }

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

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

  .footer-contact {
    justify-items: start;
  }
}

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

  body::before {
    background-size: 38px 38px;
  }

  .section-pad {
    padding: 64px 0;
  }

  body.has-mobile-app-banner {
    padding-bottom: 92px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand span {
    display: none;
  }

  .language-link {
    min-height: 38px;
    padding: 8px 9px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 66px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .store-links {
    justify-content: center;
  }

  .store-links a,
  .store-links img {
    height: 43px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points li {
    font-size: 0.84rem;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .product-shot {
    width: min(340px, 100%);
  }

  .screenshot-frame--compact {
    width: min(190px, 100%);
  }

  .screenshot-frame--phone img {
    max-height: 310px;
  }

  .favorite-banner-frame {
    max-height: none;
    padding: 8px;
  }

  .favorite-banner {
    max-height: 280px;
  }

  .floating-widget {
    position: static;
    max-width: none;
    margin: 12px auto 0;
  }

  .info-grid,
  .feature-grid,
  .widget-showcase,
  .compact-grid,
  .compare-grid,
  .pricing-grid,
  .overview-grid,
  .premium-list {
    grid-template-columns: 1fr;
  }

  .info-card,
  .feature-card {
    min-height: auto;
  }

  .mock-widget.wide {
    grid-column: auto;
  }

  .premium-panel,
  .final-panel {
    padding: 30px 22px;
  }

  .footer-grid {
    text-align: left;
  }

  .media-card {
    grid-template-columns: minmax(118px, 0.48fr) minmax(0, 1fr);
  }

  .media-card img {
    min-height: 260px;
  }

  .screenshot-grid img {
    height: 430px;
  }

  .mobile-app-banner.is-visible {
    display: grid;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .header-actions {
    gap: 6px;
  }

  .language-link {
    font-size: 0.75rem;
  }

  .hero-copy h1,
  .section-copy h2,
  .section-heading h2,
  .premium h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
  }

  .store-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points li {
    text-align: center;
  }

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

  .mini-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card img {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .screenshot-grid img {
    height: 460px;
  }

  .mobile-app-banner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mobile-app-banner__cta {
    grid-column: 2 / 3;
    width: fit-content;
    margin-top: 8px;
  }

  .mobile-app-banner__close {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .mobile-app-banner__copy {
    align-self: center;
  }

  .mobile-app-banner.is-unknown-platform .mobile-app-banner__stores {
    grid-column: 2 / 4;
  }
}
