@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --color-primary: #2f5bff;
  --color-accent: #7aefff;
  --color-text: #101529;
  --color-muted: #687086;
  --color-white: #ffffff;
  --color-deep: #071342;
  --color-surface: #f3f6fc;
  --color-border: rgba(16, 21, 41, 0.1);
  --container: 1180px;
  --shadow-phone: 0 34px 90px rgba(0, 11, 54, 0.38);
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background: #fafbfe;
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 12px 16px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.business-panel :focus-visible,
.download-section :focus-visible {
  outline-color: var(--color-accent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  color: var(--color-white);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-compact {
  background-color: rgba(7, 19, 66, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.site-nav {
  position: relative;
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a,
.language-toggle {
  opacity: 0.86;
  transition: opacity 150ms ease;
}

.desktop-nav a:hover,
.language-toggle:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.language-picker {
  position: relative;
}

.language-toggle,
.menu-toggle {
  border: 0;
  padding: 0;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 650;
}

.language-toggle img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 172px;
  padding: 8px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 17, 72, 0.28);
}

.language-menu button,
.language-menu a {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active,
.language-menu a:hover,
.language-menu a.is-active {
  color: var(--color-primary);
  background: #edf3ff;
}

.language-menu a {
  display: flex;
  align-items: center;
}

.language-menu a:focus-visible {
  outline: 3px solid rgba(0, 87, 255, 0.3);
  outline-offset: 1px;
}

.language-fallback {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-fallback a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-download {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

.nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 17, 72, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle img {
  width: 25px;
  filter: brightness(0) invert(1);
}

.menu-toggle[aria-expanded="false"] .menu-close-icon,
.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  padding: 18px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 17, 72, 0.32);
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 650;
}

.mobile-menu a:last-child {
  margin-top: 8px;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
  border: 0;
  border-radius: 12px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: stretch;
  color: var(--color-white);
  background-color: var(--color-deep);
  background-image: url("/assets/hero-background-desktop.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-inner {
  min-height: 720px;
  padding-top: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 18px 0 70px;
}

.section-label {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--color-accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.hero h1 > span:first-child {
  white-space: normal;
}

.hero-accent {
  margin-top: 12px;
  color: var(--color-accent);
}

.hero-body {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

.store-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-download-option {
  position: relative;
  display: inline-flex;
}

.store-link {
  display: inline-flex;
  min-height: 54px;
  transition:
    transform 150ms ease,
    filter 150ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.store-link img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.store-qr-popover {
  display: none;
}

.store-disclosure {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .store-qr-popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 18px);
    z-index: 20;
    width: 180px;
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text);
    text-align: center;
    background: var(--color-white);
    border: 1px solid rgba(0, 87, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 17, 72, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition:
      opacity 160ms ease,
      visibility 160ms ease,
      transform 160ms ease;
  }

  .store-qr-popover::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 14px;
    height: 14px;
    content: "";
    background: var(--color-white);
    border-right: 1px solid rgba(0, 87, 255, 0.12);
    border-bottom: 1px solid rgba(0, 87, 255, 0.12);
    transform: translate(-50%, -7px) rotate(45deg);
  }

  .store-qr-popover > img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    border-radius: 10px;
  }

  .store-qr-popover strong {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .store-qr-popover > span {
    margin-top: 3px;
    color: #6f7480;
    font-size: 12px;
    line-height: 1.3;
  }

  .store-download-option:hover .store-qr-popover,
  .store-download-option:focus-within .store-qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.hero-visual {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}

.hero-product-image {
  width: min(100%, 270px);
  height: auto;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  box-shadow: var(--shadow-phone);
  transform: none;
}

.value-section {
  padding: 96px 0 104px;
  background: var(--color-white);
}

.value-section > .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: stretch;
}

.section-heading h2,
.story-copy h2,
.business-panel h2,
.privacy-inner h2,
.download-copy h2,
.support-inner h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.story-copy > p:last-child,
.privacy-inner > div > p,
.download-copy > p,
.business-panel > p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.value-heading > p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
}

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

.benefit-item {
  min-width: 0;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--color-surface);
  border: 1px solid rgba(47, 91, 255, 0.08);
  border-radius: 20px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  border-radius: 15px;
}

.benefit-icon img {
  width: 23px;
  filter: brightness(0) invert(1);
}

.benefit-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.benefit-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-stories {
  padding: 96px 0 104px;
  background: var(--color-surface);
}

.product-stories > .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(16, 21, 41, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(20, 30, 72, 0.07);
}

.story-media {
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(122, 239, 255, 0.4), transparent 45%),
    linear-gradient(145deg, #e9eeff, #f8faff);
}

.story-media img {
  width: min(78%, 276px);
  max-height: 380px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 24px 60px rgba(32, 36, 66, 0.2);
}

.story-copy {
  padding: 30px 30px 34px;
}

.story-copy h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.story-copy > p:last-child {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
}

.story-copy .section-label {
  margin-bottom: 16px;
  font-size: 11px;
}

.business-section {
  padding: 96px 0 48px;
  background: #fafbfe;
}

.business-panel {
  padding: 64px 68px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(122, 239, 255, 0.2), transparent 34%),
    var(--color-deep);
  border-radius: 30px;
}

.business-panel h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.9rem);
}

.business-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.business-panel .section-label {
  color: var(--color-accent);
}

.privacy-section {
  padding: 72px 0 104px;
  background: #fafbfe;
}

.privacy-inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 54px 58px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
}

.privacy-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  border-radius: 50%;
}

.privacy-icon img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.privacy-inner h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
}

.privacy-inner > div > p {
  max-width: 760px;
  margin: 26px 0 0;
}

.text-link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 750;
}

.text-link img,
.support-email img {
  width: 18px;
}

.download-section {
  padding: 0 0 104px;
  color: var(--color-white);
  background: #fafbfe;
}

.download-inner {
  padding: 70px 68px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 72px;
  background:
    radial-gradient(circle at 92% 14%, rgba(122, 239, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #244fe8, #2f5bff 58%, #466eff);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(47, 91, 255, 0.2);
}

.download-copy h2 {
  max-width: 700px;
}

.download-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.qr-card {
  margin: 0;
  padding: 18px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 18px;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
}

.qr-card figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.support-section {
  padding: 72px 0;
  background: #fafbfe;
}

.support-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.support-inner h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.5rem);
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.site-footer {
  padding: 44px 0;
  color: #596171;
  background: #f2f5fb;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: var(--color-text);
  font-size: 20px;
}

.footer-brand .brand-icon {
  width: 34px;
  height: 34px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}

.faq-hero {
  padding: 176px 0 100px;
  color: var(--color-white);
  background-color: var(--color-deep);
  background-image: url("/assets/hero-background-desktop.webp");
  background-position: center;
  background-size: cover;
}

.faq-hero-inner {
  max-width: 940px;
}

.faq-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.faq-hero-inner > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.faq-section {
  padding: 92px 0 124px;
  background: var(--color-surface);
}

.faq-list {
  max-width: 960px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(32, 36, 46, 0.05);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  content: "+";
  background: #edf3ff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

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

.faq-answer {
  padding: 0 72px 30px 30px;
  border-top: 1px solid var(--color-border);
}

.faq-answer p {
  margin: 24px 0 0;
  color: #626977;
  font-size: 17px;
  line-height: 1.75;
}

.faq-action {
  min-height: 46px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.faq-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.22);
}

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

  .site-nav {
    gap: 26px;
  }

  .desktop-nav {
    gap: 25px;
  }

  .language-toggle > span:last-child {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.68fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 6.1vw, 5.4rem);
  }

  .hero-product-image {
    width: min(100%, 270px);
    transform: none;
  }

  .value-section > .container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .business-panel {
    gap: 56px;
    padding: 64px;
  }

  .download-inner {
    gap: 58px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-download {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero-inner {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 118px;
    grid-template-columns: 1fr;
    align-items: start;
    text-align: center;
  }

  .hero-copy {
    padding: 10px 0 0;
  }

  .hero h1,
  .hero-body {
    margin-inline: auto;
  }

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

  .hero-visual {
    align-self: end;
  }

  .hero-product-image {
    width: min(70vw, 270px);
    height: auto;
    transform: none;
  }

  .product-stories > .container {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(300px, 72vw);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding-bottom: 18px;
  }

  .story {
    scroll-snap-align: start;
  }

  .business-panel,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .qr-grid {
    max-width: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  html {
    scroll-padding-top: 76px;
  }

  .site-nav {
    min-height: 76px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-toggle {
    padding: 0 8px;
  }

  .language-toggle img {
    display: none;
  }

  .mobile-menu {
    top: 72px;
  }

  .faq-hero {
    padding: 136px 0 74px;
  }

  .faq-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .faq-section {
    padding: 56px 0 80px;
  }

  .faq-item summary {
    min-height: 76px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 24px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 106px;
    gap: 30px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11.2vw, 3.3rem);
    line-height: 0.96;
  }

  .hero h1 > span:first-child {
    white-space: normal;
  }

  .hero-body {
    margin-top: 26px;
    font-size: 1.06rem;
  }

  .store-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .store-link,
  .store-link img {
    height: 46px;
    min-height: 46px;
  }

  .store-disclosure {
    max-width: 340px;
    margin: 16px auto 0;
    line-height: 1.5;
  }

  .hero-product-image {
    width: min(68vw, 250px);
    height: auto;
    border-radius: 26px;
    transform: none;
  }

  .value-section {
    padding: 80px 0 86px;
  }

  .value-section > .container {
    gap: 44px;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .story-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }

  .business-panel h2,
  .privacy-inner h2,
  .download-copy h2,
  .support-inner h2 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-item {
    padding: 22px;
    flex-direction: row;
    gap: 18px;
  }

  .product-stories {
    padding: 76px 0 80px;
  }

  .product-stories > .container {
    width: 100%;
    grid-auto-columns: minmax(286px, 84vw);
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .story-media {
    height: 340px;
  }

  .story-media img {
    width: min(76%, 238px);
    max-height: 322px;
    border-radius: 24px 24px 0 0;
  }

  .story-copy > p:last-child,
  .privacy-inner > div > p,
  .download-copy > p,
  .business-panel > p {
    font-size: 16px;
  }

  .business-section,
  .privacy-section {
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .business-panel {
    width: min(100% - 24px, var(--container));
    padding: 42px 28px;
    gap: 28px;
    border-radius: 22px;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 26px;
  }

  .privacy-icon {
    width: 68px;
    height: 68px;
  }

  .privacy-icon img {
    width: 32px;
  }

  .qr-grid {
    display: none;
  }

  .download-section {
    padding-bottom: 80px;
  }

  .download-inner {
    width: min(100% - 24px, var(--container));
    padding: 48px 28px;
    border-radius: 24px;
  }

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

  .download-copy .store-actions {
    justify-content: center;
  }

  .support-section {
    padding: 62px 0;
  }

  .support-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .support-email {
    min-height: 44px;
    font-size: 1.1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px 24px;
  }
}

@media (max-width: 420px) {
  .store-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .store-link,
  .store-link img {
    height: 43px;
    min-height: 43px;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }
}

@media (max-width: 340px) {
  .store-link,
  .store-link img {
    height: 41px;
    min-height: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Localized copy must wrap naturally at every viewport. */
.hero h1 { font-size: clamp(2.6rem, 4.7vw, 4.6rem); line-height: 1.05; }
.hero-art-caption { max-width: 350px; margin: 18px 0; font-size: 18px; font-weight: 650; text-align: center; }
.image-language-note { max-width: 350px; margin: 12px 0 0; color: #e2e8ff; font-size: 14px; text-align: center; }
.screenshot-note { padding-top: 18px; padding-bottom: 24px; color: #505766; font-size: 14px; }
.store-disclosure { color: #d5ddf4; font-size: 14px; }
.content-section, .reviews-section { padding: 48px 0; }
.content-section h2, .reviews-section h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.12; margin: 0 0 24px; }
.content-section p:not(.section-label) { max-width: 850px; font-size: 18px; line-height: 1.65; color: #505766; }
.business-panel > a { grid-column: 1 / -1; justify-self: start; }

/* Keep supporting information compact, without crowding the main product story. */
html[data-page="home"] .business-section { padding: 56px 0 24px; }
html[data-page="home"] .business-panel { padding: 40px 44px; gap: 24px 40px; }
html[data-page="home"] .business-panel > .text-link { margin-top: 0; color: #7aefff; }
html[data-page="home"] .content-section { padding: 32px 0; }
html[data-page="home"] .content-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: 48px;
  align-items: start;
}
html[data-page="home"] .content-section .section-label { grid-column: 1; margin: 0 0 12px; }
html[data-page="home"] .content-section h2 { grid-column: 1; margin: 0; font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1.2; }
html[data-page="home"] .content-section p:not(.section-label) { grid-column: 2; grid-row: 1 / span 2; margin: 0; font-size: 16px; line-height: 1.65; }
html[data-page="home"] .privacy-section { padding: 16px 0 40px; }
html[data-page="home"] .privacy-inner { padding: 32px 36px; grid-template-columns: 48px minmax(0, 1fr); gap: 24px; border-radius: 24px; }
html[data-page="home"] .privacy-icon { width: 48px; height: 48px; }
html[data-page="home"] .privacy-icon img { width: 24px; }
html[data-page="home"] .privacy-inner h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1.2; }
html[data-page="home"] .privacy-inner > div > .section-label { margin: 0 0 10px; }
html[data-page="home"] .privacy-inner > div > p:not(.section-label) { margin-top: 16px; font-size: 16px; line-height: 1.65; }
html[data-page="home"] .privacy-inner .text-link { margin-top: 16px; min-height: 44px; }
html[data-page="home"] .download-section { padding: 32px 0; }
html[data-page="home"] .download-inner { padding: 44px; gap: 40px; box-shadow: 0 16px 40px rgba(47, 91, 255, 0.12); }
html[data-page="home"] .support-section { padding: 0 0 32px; }
html[data-page="home"] .support-inner { padding-top: 28px; border-top: 1px solid var(--color-border); align-items: center; gap: 24px; }
html[data-page="home"] .support-inner .section-label { margin-bottom: 8px; }
html[data-page="home"] .support-inner h2 { font-size: clamp(1.5rem, 2vw, 2rem); }
html[data-page="home"] .support-email { font-size: clamp(1.1rem, 1.8vw, 1.5rem); min-height: 44px; }
html[data-page="home"] .site-footer { padding: 24px 0; }
@media (max-width: 767px) {
  html[data-page="home"] .business-section { padding: 32px 0 16px; }
  html[data-page="home"] .business-panel { padding: 28px 24px; gap: 20px; }
  html[data-page="home"] .content-section { padding: 24px 0; }
  html[data-page="home"] .content-section > .container { grid-template-columns: 1fr; }
  html[data-page="home"] .content-section p:not(.section-label) { grid-column: 1; grid-row: auto; margin-top: 16px; }
  html[data-page="home"] .privacy-section { padding: 8px 0 32px; }
  html[data-page="home"] .privacy-inner { padding: 24px; grid-template-columns: 1fr; gap: 16px; }
  html[data-page="home"] .download-section { padding: 24px 0; }
  html[data-page="home"] .download-inner { padding: 32px 24px; gap: 24px; }
  html[data-page="home"] .support-section { padding-bottom: 24px; }
  html[data-page="home"] .support-inner { padding-top: 24px; align-items: flex-start; gap: 12px; }
}
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review-card { margin: 0; padding: 28px; border: 1px solid #d9e0eb; border-radius: 20px; }
.review-card blockquote { margin: 0 0 20px; font-size: 18px; line-height: 1.6; }
.review-card figcaption { font-size: 14px; color: #505766; line-height: 1.65; }
.review-card a { display: inline-flex; align-items: center; min-height: 44px; color: #0057cc; text-decoration: underline; }
.supplied-reviews { background: #f3f6fc; }
.supplied-reviews .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.supplied-reviews .review-card { background: #fff; border-top: 3px solid #2f5bff; }
.supplied-reviews blockquote { font-size: clamp(1.125rem, 2vw, 1.4rem); line-height: 1.6; }
.supplied-reviews figcaption { margin-top: 20px; }
@media (max-width: 767px) { .supplied-reviews .review-grid { grid-template-columns: 1fr; } }
.store-link { align-items: center; }
.store-link img[src*="google-play-"] { height: 72px; margin: -9px -9px; }
.store-link img[src*="app-store-"] { height: 54px; }
.section-label, .story-copy .section-label { font-size: 14px; }
.language-toggle { min-width: 44px; justify-content: center; }
.language-toggle > span[data-active-language] { display: inline; }
@media (max-width: 767px) {
  .hero, .faq-hero { background-image: url("/assets/hero-background-mobile.webp"); }
  .hero h1 { font-size: clamp(2.1rem, 9.2vw, 3.2rem); }
  .hero-product-image { height: auto; width: min(68vw, 250px); transform: none; }
  .hero-visual { padding-bottom: 28px; }
  .hero-art-caption { font-size: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .store-link, .store-link img[src*="app-store-"] { min-height: 44px; height: 44px; }
  .store-link img[src*="google-play-"] { height: 59px; min-height: 59px; margin: -7px; }
}

/* Approved brand palette — September 2026. */
:root {
  --color-primary: #4654e8;
  --color-accent: #a5eaf2;
  --color-deep: #101638;
  --color-surface: #f5f7fb;
  --color-text: #171c30;
  --color-muted: #626b80;
  --color-border: rgba(23, 28, 48, .10);
}
body,
.business-section,
.content-section,
.privacy-section,
.reviews-section,
.download-section,
.support-section,
.site-footer { background: var(--color-surface); }
.site-header.is-compact { background-color: rgba(16, 22, 56, .94); }
.hero {
  background-color: var(--color-deep);
  background-image: linear-gradient(rgba(16,22,56,.30), rgba(16,22,56,.30)), url('/assets/hero-background-desktop.webp');
}
.hero-body { color: #e0e5f2; }
.store-disclosure { color: #cbd3e6; }
.benefit-item { border-color: var(--color-border); }
.story { box-shadow: 0 14px 36px rgba(23, 28, 48, .055); }
.story-media { background: #edf2f8; }
.story-media img { border-color: rgba(255,255,255,.7); box-shadow: 0 16px 38px rgba(23,28,48,.10); }
.business-panel {
  color: var(--color-text);
  background: linear-gradient(115deg, #e7ecff 0%, #eaf1ff 48%, #edf8fc 100%);
  border: 1px solid #d8e2f5;
}
.privacy-inner { border-color: #dce4f3; }
.business-panel > p { color: var(--color-muted); }
.business-panel .section-label,
html[data-page="home"] .business-panel > .text-link { color: var(--color-primary); }
.business-panel :focus-visible { outline-color: var(--color-primary); }
.content-section p:not(.section-label),
.review-card figcaption { color: var(--color-muted); }
.supplied-reviews { background: var(--color-surface); }
.supplied-reviews .review-card { border-top-color: var(--color-primary); }
.review-card a { color: var(--color-primary); }
.download-inner {
  background: linear-gradient(115deg, #3041bd 0%, #3446c8 62%, #3b4dcb 100%);
}
html[data-page="home"] .download-inner { box-shadow: 0 14px 38px rgba(32,49,125,.10); }
.download-copy > p { color: #e0e6ff; }
.download-copy > .section-label { color: var(--color-accent); }
.language-menu a:hover,
.language-menu a.is-active,
.language-menu button:hover,
.language-menu button.is-active { background: #edf0fc; }
@media(max-width: 767px) {
  .hero { background-image: linear-gradient(rgba(16,22,56,.30), rgba(16,22,56,.30)), url('/assets/hero-background-mobile.webp'); }
}
