﻿:root {
  color-scheme: light;
  --ink: #102235;
  --muted: #5a6878;
  --paper: #f4f8ff;
  --surface: #ffffff;
  --line: #d7e3f1;
  --accent: #006dff;
  --mint: #23d18b;
  --amber: #ffb21f;
  --coral: #ff5a7a;
  --lime: #b8f23a;
  --deep: #07192d;
  --shadow: 0 24px 80px rgba(0, 74, 173, 0.16);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3f8ff;
  --muted: #a9b8ca;
  --paper: #07111f;
  --surface: #101d2e;
  --line: #263a55;
  --accent: #3aa7ff;
  --mint: #3ee7a0;
  --amber: #ffc44d;
  --coral: #ff6b8a;
  --lime: #c9ff4b;
  --deep: #040a13;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.40);
}

* {
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 109, 255, 0.08), transparent 420px),
    var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(244, 248, 255, 0.88);
  border-bottom: 1px solid rgba(0, 109, 255, 0.12);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .topbar {
  background: rgba(7, 18, 31, 0.9);
  border-bottom-color: var(--line);
}

:root[data-theme="dark"] .brand {
  color: var(--ink);
}

.brand,
.nav,
.actions,
.site-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--deep);
  font-weight: 950;
}

.brand-icon {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep), var(--accent));
  border-radius: 12px;
  font-size: 0.82rem;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  gap: clamp(16px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--mint), var(--amber));
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-controls {
  gap: 8px;
}

.language-select,
.theme-toggle {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 900;
}

.language-select {
  padding: 0 12px;
}

.theme-toggle {
  display: grid;
  width: 40px;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
}

.hero {
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) 76px;
  background:
    linear-gradient(120deg, rgba(0, 109, 255, 0.16), rgba(35, 209, 139, 0.12) 48%, rgba(255, 178, 31, 0.12)),
    var(--paper);
}

:root[data-theme="dark"] .hero {
  background:
    linear-gradient(120deg, rgba(0, 109, 255, 0.20), rgba(35, 209, 139, 0.12) 48%, rgba(255, 90, 122, 0.10)),
    var(--paper);
}

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

.label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--deep);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--lime) 38%, var(--surface));
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.hero p,
.section-title p,
.app-card p,
.value-grid p,
.suggestion-grid p,
.timeline p,
.faq-list p,
.contact p {
  color: var(--muted);
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-stats {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 14px 38px rgba(0, 109, 255, 0.08);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.actions {
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #0047b8);
  box-shadow: 0 12px 28px rgba(0, 109, 255, 0.22);
}

.btn.secondary {
  color: var(--deep);
  background: var(--surface);
  border-color: var(--line);
}

:root[data-theme="dark"] .btn.secondary {
  color: var(--ink);
}

.btn.light {
  color: var(--deep);
  background: #ffffff;
}

.btn.store {
  color: #ffffff;
  background: linear-gradient(135deg, #00a8ff, var(--accent) 58%, #08489f);
  box-shadow: 0 12px 28px rgba(0, 109, 255, 0.25);
}

.btn.outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.hero-art {
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 338px);
  aspect-ratio: 9 / 18.6;
  padding: 14px;
  border: 10px solid #07192d;
  border-radius: 36px;
  background: #07192d;
  box-shadow: var(--shadow), 0 0 0 8px rgba(184, 242, 58, 0.12);
}

.speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: #293748;
  transform: translateX(-50%);
}

.screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 44px 18px 18px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 109, 255, 0.10), transparent 42%),
    #edf7ff;
}

.screen-header,
.conversion-card,
.chart {
  border: 1px solid rgba(16, 34, 53, 0.08);
  border-radius: 8px;
  background: var(--surface);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #0b5a3d;
  border: 1px solid #cbeedc;
  border-radius: 8px;
  background: #e8f8ef;
  font-size: 0.82rem;
  font-weight: 900;
}

.screen-header small,
.conversion-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
}

.conversion-card {
  padding: 18px;
}

.conversion-card strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
}

.conversion-card.result {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--coral));
}

.conversion-card.result span {
  color: rgba(255, 255, 255, 0.74);
}

.swap-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  align-self: center;
  color: #07192d;
  background: var(--lime);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(184, 242, 58, 0.34);
}

.chart {
  display: flex;
  height: 104px;
  min-height: 100px;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
}

.chart i {
  display: block;
  flex: 1;
  min-height: 22px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--amber), var(--coral));
}

.chart i:nth-child(1) { height: 42%; }
.chart i:nth-child(2) { height: 70%; }
.chart i:nth-child(3) { height: 54%; }
.chart i:nth-child(4) { height: 84%; }
.chart i:nth-child(5) { height: 64%; }

.section {
  padding: 84px clamp(18px, 5vw, 72px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.app-card,
.value-grid article,
.suggestion-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.app-card {
  display: flex;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
}

.main-app {
  box-shadow: 0 18px 60px rgba(16, 34, 53, 0.08);
}

.app-mark {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--coral) 58%, var(--amber));
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 950;
}

.app-mark.muted {
  color: var(--deep);
  background: #e8eef4;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #0b5a3d;
  background: #dff6eb;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.pill.soft {
  color: #73500f;
  background: #fff0d0;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 4px;
}

.meta-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 70%, var(--paper));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.app-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 24px;
}

.app-detail-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-card li {
  position: relative;
  padding-left: 24px;
}

.app-card li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 950;
}

.store-preview {
  margin-top: 42px;
}

.preview-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.preview-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.preview-heading p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
}

.screenshot-rail {
  display: grid;
  grid-auto-columns: minmax(218px, 260px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 10px 2px 12px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.screenshot-rail::-webkit-scrollbar {
  display: none;
}

.preview-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.rail-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 950;
}

.screenshot-card {
  scroll-snap-align: start;
  margin: 0;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 34, 53, 0.12);
}

.screenshot-card figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
}

.suggestion-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-section,
.compare-section,
.language-section,
.waitlist-section,
.changelog-section,
.legal-quick-section,
.testimonials-section,
.press-section {
  background: var(--surface);
}

.waitlist-card,
.press-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 114, 217, 0.08), rgba(36, 164, 124, 0.08)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(16, 34, 53, 0.07);
}

.waitlist-card p,
.press-card p {
  max-width: 760px;
  color: var(--muted);
}

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

.audience-grid article,
.launch-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.audience-grid span,
.launch-grid .step {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-grid p,
.launch-grid p,
.compare-table span,
.language-card p,
.trust-card p {
  color: var(--muted);
}

.trust-section {
  background: var(--paper);
}

.trust-card,
.language-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(16, 34, 53, 0.07);
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list span {
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 70%, var(--paper));
  font-weight: 900;
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.compare-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
}

.compare-table div + div {
  border-top: 1px solid var(--line);
}

.launch-section {
  background: var(--paper);
}

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

.step.done {
  color: var(--mint);
}

.step.active {
  color: var(--accent);
}

.step.next {
  color: var(--amber);
}

.language-toggle,
.language-pills {
  display: flex;
  gap: 8px;
  justify-self: end;
  flex-wrap: wrap;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.language-toggle button,
.language-pills span {
  min-width: 56px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 950;
}

.language-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.language-toggle .active {
  color: #ffffff;
  background: var(--deep);
}

.changelog-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.version-badge {
  display: grid;
  min-height: 70px;
  place-items: center;
  color: #ffffff;
  border-radius: 8px;
  background: var(--deep);
  font-weight: 950;
}

.changelog-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.changelog-card li::before {
  position: absolute;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 950;
}

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

.legal-quick-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-quick-grid p {
  color: var(--muted);
}

.testimonials-section {
  background: var(--paper);
}

.testimonials-section .section-title {
  padding: clamp(26px, 5vw, 44px);
  border: 1px dashed rgba(16, 34, 53, 0.24);
  border-radius: 8px;
  background: var(--surface);
}

.press-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-kit-preview {
  display: grid;
  width: min(100%, 620px);
  margin: 32px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-kit-preview img {
  width: 100%;
  display: block;
}

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

.identity-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 114, 217, 0.08), rgba(36, 164, 124, 0.08)),
    var(--surface);
}

.logo-placeholder {
  display: grid;
  width: 160px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 53, 0.12);
  border-radius: 26px;
  background: var(--deep);
  box-shadow: 0 18px 50px rgba(16, 34, 53, 0.16);
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-card p {
  max-width: 720px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(11, 114, 217, 0.34), rgba(36, 164, 124, 0.18)),
    var(--deep);
}

.product-hero .label {
  color: #9ce0c9;
}

.product-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.product-hero .btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.product-details {
  background: #ffffff;
}

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

.suggestion-grid article {
  padding: 24px;
}

.suggestion-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 950;
}

.value-section {
  background: var(--paper);
}

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

.value-grid article {
  padding: 26px;
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--amber);
  font-weight: 950;
}

.philosophy-section {
  color: #ffffff;
  background: var(--deep);
}

.philosophy-section .label {
  color: #9ce0c9;
}

.philosophy-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.philosophy-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.philosophy-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #9ce0c9;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.philosophy-card h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.philosophy-card p,
.philosophy-card li {
  color: rgba(255, 255, 255, 0.74);
}

.featured-philosophy {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(11, 114, 217, 0.30), rgba(36, 164, 124, 0.18)),
    rgba(255, 255, 255, 0.07);
}

.values-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-card li {
  padding-left: 18px;
  border-left: 3px solid var(--mint);
}

.values-card strong {
  color: #ffffff;
}

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

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

.timeline article {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.timeline article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--mint);
  content: "";
}

.timeline span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep);
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 84px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--deep), #003b8f 58%, var(--accent));
}

.contact .label {
  color: #9ce0c9;
}

.contact h2 {
  max-width: 820px;
}

.contact p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, transparent), transparent),
    var(--surface);
  border-top: 1px solid var(--line);
}

.footer a {
  font-weight: 900;
}

.footer-credits {
  display: grid;
  gap: 4px;
}

.footer-office {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-office strong {
  color: var(--ink);
  font-weight: 950;
}

.footer-office address {
  font-style: normal;
}

.footer-office-divider {
  color: color-mix(in srgb, var(--ink) 38%, transparent);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-policies span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.footer-policies a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, var(--paper));
  font-size: 0.86rem;
}


.heart {
  color: #ff1f4f;
  font-size: 1rem;
  line-height: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.social-links span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 900;
}

.social-links span {
  color: #93a0ad;
}

/* DivisaX announcement screen */
.promo-video-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  gap: clamp(24px, 5vw, 46px);
  align-items: center;
  margin: 34px 0 40px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 248, 238, 0.78)),
    var(--surface);
  box-shadow: 0 22px 70px rgba(16, 34, 53, 0.08);
}

.promo-video-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.promo-video-copy h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.promo-video-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.promo-video-copy .btn {
  justify-self: start;
  margin-top: 4px;
}

.shorts-screen {
  position: relative;
  display: grid;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, #06101d, #102235 58%, #07192d),
    #07192d;
  box-shadow: 0 22px 54px rgba(16, 34, 53, 0.24);
}

.shorts-screen iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  background: #000;
}

.legal {
  width: min(100%, 900px);
  padding: 72px clamp(18px, 5vw, 72px);
}

.legal h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal p {
  color: var(--muted);
}

.legal a {
  color: var(--accent);
  font-weight: 900;
}


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

.app-hub-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(16, 34, 53, 0.08);
}

.app-hub-details > summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  cursor: pointer;
  list-style: none;
}

.app-hub-details > summary::-webkit-details-marker {
  display: none;
}

.app-hub-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--coral) 58%, var(--amber));
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 950;
}

.app-hub-summary-copy {
  display: grid;
  min-width: 0;
}

.app-hub-summary-copy .label {
  margin-bottom: 6px;
}

.app-hub-title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 950;
}

.app-hub-description {
  max-width: 780px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.app-hub-toggle {
  min-width: 86px;
  padding: 10px 14px;
  color: #ffffff;
  border-radius: 8px;
  background: var(--deep);
  font-weight: 950;
  text-align: center;
}

.app-hub-details[open] .app-hub-toggle {
  background: var(--accent);
}

.app-hub-details[open] .app-hub-toggle::before {
  content: "Cerrar";
}

.app-hub-details[open] .app-hub-toggle {
  font-size: 0;
}

.app-hub-details[open] .app-hub-toggle::before {
  font-size: 1rem;
}

.app-hub-content {
  display: grid;
  gap: 34px;
  padding: 0 clamp(22px, 4vw, 36px) clamp(22px, 4vw, 36px);
}

.app-hub-card {
  box-shadow: none;
}

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

.app-hub-grid article,
.app-hub-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 82%, var(--paper));
}

.app-hub-grid p,
.app-hub-panel p {
  color: var(--muted);
}

.app-hub-grid .btn {
  margin-top: 8px;
}

.app-hub-panel .section-title {
  margin-bottom: 22px;
}

.app-hub-panel .section-title h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.app-hub-faq {
  margin-top: -8px;
}

.app-store-section {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--surface) 38%),
    var(--surface);
}

.storefront-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.storefront-header h2 {
  margin-bottom: 12px;
}

.storefront-header p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.store-search {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 76%, var(--paper));
  color: var(--muted);
}

.store-search span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  color: #ffffff;
  font-weight: 950;
}

.store-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 850;
}

.store-search input::placeholder {
  color: var(--muted);
}

.store-empty {
  margin: 10px 4px 0;
  color: var(--muted);
  font-weight: 850;
}

.store-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 18px;
  white-space: nowrap;
}

.store-tabs span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, var(--paper));
  color: var(--muted);
  font-weight: 950;
}

.store-tabs .active {
  color: #07192d;
  background: linear-gradient(135deg, var(--lime), var(--amber));
  border-color: transparent;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.featured-app-panel {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 109, 255, 0.16), rgba(35, 209, 139, 0.12) 58%, rgba(255, 178, 31, 0.14)),
    var(--surface);
  box-shadow: 0 18px 60px rgba(0, 109, 255, 0.12);
}

.featured-copy {
  padding: 26px;
}

.featured-copy h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.featured-copy p {
  color: var(--muted);
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.store-meta span,
.store-rating {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
}

.store-meta span {
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.featured-preview {
  padding: 0 28px 28px;
}

.featured-preview img {
  display: block;
  width: min(100%, 220px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(16, 34, 53, 0.16);
}

.store-app-shelf {
  min-width: 0;
}

.store-shelf-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.store-shelf-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.store-app-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 390px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 4px 12px;
  scroll-padding-inline: 4px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.store-app-grid::-webkit-scrollbar {
  display: none;
}

.store-app-card {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, transparent), transparent 52%),
    var(--surface);
  box-shadow: 0 12px 42px rgba(0, 74, 173, 0.08);
  scroll-snap-align: start;
}

.store-app-link,
.store-card-static {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.store-app-link {
  color: inherit;
  text-decoration: none;
}

.store-app-link:hover,
.store-app-link:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.store-app-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--coral) 58%, var(--amber));
  border-radius: 16px;
  font-size: 1.8rem;
  font-weight: 950;
}

.store-app-icon.muted {
  color: var(--deep);
  background: color-mix(in srgb, var(--surface) 68%, var(--paper));
}

.store-app-info {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.store-app-name {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

.store-app-subtitle {
  color: var(--muted);
  font-weight: 750;
}

.store-open {
  display: inline-flex;
  min-width: 72px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07192d;
  background: var(--lime);
  font-weight: 950;
}

.store-open.muted {
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 70%, var(--paper));
}

.locked {
  opacity: 0.82;
}

.app-store-detail {
  display: grid;
  gap: 26px;
}

.app-page-detail {
  background: var(--surface);
}

.store-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 78%, var(--paper));
}

.store-detail-hero h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.store-detail-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.launch-countdown {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, transparent), color-mix(in srgb, var(--mint) 7%, transparent)),
    var(--surface);
  box-shadow: 0 16px 46px rgba(0, 109, 255, 0.09);
}

.launch-countdown h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.launch-countdown p {
  margin: 0;
  color: var(--muted);
}

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

.countdown-grid div {
  min-width: 0;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
  text-align: center;
}

.countdown-grid strong,
.countdown-grid span {
  display: block;
}

.countdown-grid strong {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1;
}

.countdown-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.countdown-status {
  grid-column: 1 / -1;
  padding-top: 2px;
  font-size: 0.9rem;
  font-weight: 850;
}

.store-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.store-stat-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.store-stat-row strong,
.store-stat-row span {
  display: block;
}

.store-stat-row strong {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.store-stat-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.app-section-nav {
  position: sticky;
  top: 78px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 38px rgba(16, 34, 53, 0.08);
}

.app-section-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.app-section-nav a:hover,
.app-section-nav a:focus-visible {
  color: #07192d;
  background: var(--lime);
  border-color: transparent;
}

.compact-preview {
  margin-top: 0;
}

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

.store-detail-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.store-detail-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-detail-grid p,
.store-detail-grid li {
  color: var(--muted);
}

.store-detail-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}
@media (max-width: 900px) {
  .hero,
  .app-showcase,
  .value-grid,
  .suggestion-grid,
  .audience-grid,
  .launch-grid,
  .legal-quick-grid,
  .timeline,
  .philosophy-layout,
  .trust-card,
  .language-card,
  .identity-card,
  .waitlist-card,
  .press-card,
  .changelog-card,
  .app-hub-grid {
    grid-template-columns: 1fr;
  }

  .featured-app-panel {
    position: static;
  }

  .featured-philosophy {
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .phone-shell {
    width: min(100%, 310px);
  }

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

  .language-toggle,
  .language-pills {
    justify-self: start;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(210px, 42vw);
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .site-controls {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }

  .app-card,
  .card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-detail-grid {
    grid-template-columns: 1fr;
  }

  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .compare-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .btn {
    width: 100%;
  }

  .actions,
  .contact-actions,
  .press-actions,
  .support-actions {
    width: 100%;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(215px, 76vw);
  }

  .logo-placeholder {
    width: min(100%, 220px);
  }
}

@media (max-width: 420px) {
  .section,
  .contact,
  .product-hero,
  .legal {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-controls {
    gap: 10px;
  }

  .language-select {
    flex: 1;
    min-width: 0;
  }

  .hero-stats div,
  .app-card,
  .audience-grid article,
  .launch-grid article,
  .legal-quick-grid article,
  .value-grid article,
  .suggestion-grid article,
  .timeline article,
  .waitlist-card,
  .trust-card,
  .press-card,
  .language-card,
  .identity-card,
  .changelog-card,
  .philosophy-card,
  .app-hub-grid article,
  .app-hub-panel {
    padding: 20px;
  }
}

/* Store catalog responsive */
@media (max-width: 900px) {
  .storefront-header,
  .store-layout,
  .store-detail-hero,
  .promo-video-panel,
  .store-detail-grid,
  .store-stat-row {
    grid-template-columns: 1fr;
  }

  .promo-video-panel {
    justify-items: center;
    text-align: center;
  }

  .promo-video-copy .btn {
    justify-self: center;
  }

  .shorts-screen {
    width: min(100%, 310px);
  }

  .store-app-grid {
    grid-auto-columns: minmax(285px, 78vw);
  }

  .featured-app-panel {
    position: static;
  }

  .store-detail-hero .actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .store-app-link,
  .store-card-static {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .store-open {
    grid-column: 1 / -1;
    width: 100%;
  }

  .store-search {
    width: 100%;
  }

  .featured-preview img {
    width: min(100%, 190px);
  }
}

@media (max-width: 420px) {
  .store-detail-grid article,
  .store-stat-row div {
    padding: 18px;
  }
}
.translate-widget {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

html[dir="rtl"] .nav,
html[dir="rtl"] .actions,
html[dir="rtl"] .store-tabs,
html[dir="rtl"] .social-links {
  direction: rtl;
}

.app-feedback {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 82%, var(--paper));
}

.feedback-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.feedback-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.feedback-heading p,
.feedback-mode,
.feedback-privacy,
.feedback-empty {
  color: var(--muted);
}

.feedback-summary {
  min-width: 170px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}

.feedback-summary strong,
.feedback-summary span {
  display: block;
}

.feedback-summary strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.feedback-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.feedback-mode {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 850;
}

.feedback-form {
  display: grid;
  gap: 14px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.feedback-form input,
.feedback-form select {
  min-height: 46px;
  padding: 0 12px;
}

.feedback-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 12px;
}

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

.feedback-privacy {
  margin: 0;
  font-size: 0.9rem;
}

.feedback-list {
  display: grid;
  gap: 10px;
}

.feedback-list article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feedback-list strong {
  color: var(--amber);
  letter-spacing: 0.04em;
}

.feedback-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.feedback-list .feedback-author {
  color: var(--ink);
  font-size: 0.95rem;
}

.feedback-list p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .feedback-heading {
    grid-template-columns: 1fr;
  }

  .feedback-summary {
    text-align: left;
  }

  .feedback-actions,
  .feedback-actions .btn {
    width: 100%;
  }
}

.privacy-notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 11, 19, 0.62);
  backdrop-filter: blur(10px);
}

.privacy-notice-card {
  width: min(100%, 720px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-notice-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.privacy-notice-card p,
.privacy-notice-card li {
  color: var(--muted);
}

.privacy-notice-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 20px;
}

.privacy-notice-card strong {
  color: var(--ink);
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 520px) {
  .privacy-notice-actions,
  .privacy-notice-actions .btn {
    width: 100%;
  }
}

.help-card {
  align-content: start;
}

.help-menu {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.help-menu summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #ffffff;
  background: var(--deep);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

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

.help-menu summary::after {
  content: "+";
  font-size: 1.25rem;
}

.help-menu[open] summary::after {
  content: "-";
}

.help-options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.help-options a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 900;
}

.help-options a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.help-email {
  margin-top: 12px;
  font-size: 0.9rem;
}


.help-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--lime) 22%, transparent), color-mix(in srgb, var(--accent) 8%, transparent)),
    var(--paper);
}

.help-app-list {
  max-width: 880px;
}

.help-app-selector {
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 74, 173, 0.10);
}

.help-app-selector > summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.help-app-selector > summary::-webkit-details-marker {
  display: none;
}

.help-app-selector[open] .store-open {
  background: linear-gradient(135deg, var(--lime), var(--amber));
}

.help-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 18px;
}

@media (max-width: 640px) {
  .help-app-selector > summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .help-app-selector .store-open {
    grid-column: 1 / -1;
    width: 100%;
  }

  .help-app-actions,
  .help-app-actions .btn {
    width: 100%;
  }
}


:root[data-theme="dark"] .label {
  color: #dfffe7;
  background: color-mix(in srgb, var(--accent) 28%, var(--surface));
  border-color: color-mix(in srgb, var(--mint) 24%, var(--line));
}

:root[data-theme="dark"] .store-search,
:root[data-theme="dark"] .store-app-card,
:root[data-theme="dark"] .help-app-selector,
:root[data-theme="dark"] .feedback-summary,
:root[data-theme="dark"] .feedback-list article,
:root[data-theme="dark"] .store-detail-grid article {
  background: color-mix(in srgb, var(--surface) 92%, #000000);
}

:root[data-theme="dark"] .btn.store,
:root[data-theme="dark"] .store-open {
  color: #ffffff;
}

:root[data-theme="dark"] .contact {
  background: linear-gradient(135deg, #020812, #062a61 56%, #0059d6);
}

:root[data-theme="dark"] .footer {
  background:
    linear-gradient(180deg, rgba(58, 167, 255, 0.08), transparent),
    var(--surface);
}

/* Professional mobile layout */
@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 300px),
      var(--paper);
  }

  body,
  button,
  input,
  select,
  textarea {
    -webkit-text-size-adjust: 100%;
  }

  .topbar,
  main,
  .footer {
    width: 100%;
    max-width: 100%;
  }

  .topbar {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
  }

  .brand,
  .site-controls,
  .nav,
  .hero-copy,
  .storefront-header,
  .store-layout,
  .store-app-shelf,
  .featured-app-panel,
  .store-detail-hero,
  .launch-countdown,
  .countdown-grid,
  .store-stat-row,
  .app-section-nav,
  .store-preview,
  .store-detail-grid,
  .app-feedback,
  .contact > *,
  .footer > * {
    min-width: 0;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-controls {
    justify-self: end;
    gap: 6px;
  }

  .language-select,
  .theme-toggle {
    min-height: 36px;
  }

  .language-select {
    width: 70px;
    padding: 0 8px;
  }

  .theme-toggle {
    width: 36px;
  }

  .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    overflow: visible;
  }

  .nav a[href="#ventajas"],
  .nav a[href="#filosofia"],
  .nav a[href="#roadmap"],
  .nav a[href="terms.html"],
  .nav a[href="privacy.html"],
  .nav a[href="divisax-terms.html"] {
    display: none;
  }

  .nav a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 6px;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav a::after {
    display: none;
  }

  .hero,
  .section,
  .app-page-detail,
  .contact,
  .footer,
  .legal {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .hero-art {
    display: none;
  }

  .label {
    max-width: 100%;
    min-height: 27px;
    margin-bottom: 10px;
    padding: 0 9px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: normal;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  li,
  a,
  span,
  strong {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.02;
  }

  .hero p,
  .storefront-header p,
  .store-detail-hero p,
  .section-title p {
    font-size: 0.98rem;
  }

  .actions,
  .contact-actions,
  .press-actions,
  .support-actions,
  .help-app-actions,
  .feedback-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 9px;
  }

  .btn,
  .actions .btn,
  .contact-actions .btn,
  .help-app-actions .btn,
  .feedback-actions .btn {
    width: 100%;
    min-height: 45px;
    justify-content: center;
    padding: 0 14px;
    border-radius: 10px;
    line-height: 1.15;
    text-align: center;
  }

  .hero-stats,
  .store-stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .hero-stats div,
  .store-stat-row div {
    min-height: 68px;
    padding: 14px;
    border-radius: 10px;
  }

  .hero-stats strong,
  .store-stat-row strong {
    font-size: 1.25rem;
  }

  .hero-stats span,
  .store-stat-row span {
    font-size: 0.75rem;
  }

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

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2,
  .storefront-header h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .value-grid,
  .timeline,
  .philosophy-layout,
  .suggestion-grid,
  .audience-grid,
  .launch-grid,
  .legal-quick-grid,
  .app-hub-grid,
  .storefront-header,
  .store-layout,
  .store-detail-hero,
  .launch-countdown,
  .countdown-grid,
  .store-detail-grid,
  .feedback-heading,
  .waitlist-card,
  .press-card,
  .trust-card,
  .language-card,
  .identity-card,
  .changelog-card {
    grid-template-columns: 1fr;
  }

  .storefront-header {
    gap: 14px;
    margin-bottom: 14px;
  }

  .store-search {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 10px;
  }

  .store-search span {
    width: 28px;
    height: 28px;
  }

  .store-search input {
    font-size: 0.95rem;
  }

  .store-tabs {
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 14px;
    white-space: nowrap;
  }

  .store-tabs span {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .store-layout {
    gap: 16px;
  }

  .featured-app-panel {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 10px;
  }

  .featured-copy {
    padding: 18px;
  }

  .featured-copy h3 {
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
  }

  .featured-copy p {
    margin-bottom: 0;
    font-size: 0.93rem;
  }

  .featured-preview {
    display: none;
  }

  .store-shelf-heading,
  .preview-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
  }

  .store-shelf-heading h3,
  .preview-heading h3 {
    font-size: 1.45rem;
  }

  .rail-btn {
    width: 38px;
    height: 38px;
  }

  .store-app-grid,
  .screenshot-rail {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 12px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .store-app-grid::-webkit-scrollbar,
  .screenshot-rail::-webkit-scrollbar {
    display: none;
  }

  .store-app-card {
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  .store-app-link,
  .store-card-static {
    display: grid;
    min-height: 136px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
  }

  .store-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .store-open {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 36px;
    border-radius: 10px;
  }

  .app-store-detail {
    gap: 16px;
  }

  .store-detail-hero,
  .launch-countdown,
  .promo-video-panel,
  .store-detail-grid article,
  .app-feedback,
  .feedback-summary,
  .feedback-list article,
  .help-app-selector {
    padding: 18px;
    border-radius: 10px;
  }

  .store-detail-hero h3 {
    font-size: 2rem;
  }

  .store-detail-hero .actions {
    width: 100%;
  }

  .store-detail-grid,
  .store-stat-row,
  .countdown-grid {
    gap: 12px;
  }

  .launch-countdown {
    grid-template-columns: 1fr;
  }

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

  .promo-video-copy h3 {
    font-size: 2rem;
  }

  .promo-video-copy p {
    font-size: 0.95rem;
  }

  .shorts-screen {
    width: min(100%, 280px);
    padding: 8px;
    border-radius: 26px;
  }

  .shorts-screen iframe {
    border-radius: 20px;
  }

  .app-section-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .app-section-nav a {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .screenshot-card {
    flex: 0 0 min(68vw, 245px);
    scroll-snap-align: start;
  }

  .screenshot-card img {
    border-radius: 16px;
  }

  .feedback-form {
    grid-template-columns: 1fr;
  }

  .help-app-selector > summary {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .help-app-selector .store-open {
    grid-column: 1 / -1;
  }

  .contact,
  .footer {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .topbar,
  .hero,
  .section,
  .app-page-detail,
  .contact,
  .footer,
  .legal {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .app-section-nav {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.25rem);
  }

  .store-app-card {
    flex-basis: min(84vw, 300px);
  }

  .screenshot-card {
    flex-basis: min(70vw, 230px);
  }
}

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

  .language-select {
    width: 64px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }
}

/* Privacy dialog mobile safety */
.privacy-notice {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.privacy-notice-card {
  width: min(720px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  overflow-wrap: anywhere;
}

.privacy-notice-card .btn {
  white-space: normal;
}

@media (max-width: 760px) {
  .privacy-notice {
    align-items: start;
    justify-items: start;
    padding: 12px;
  }

  .privacy-notice-card {
    width: min(350px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    padding: 18px;
  }

  .privacy-notice-card h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.05;
  }

  .privacy-notice-card p,
  .privacy-notice-card li {
    font-size: 0.95rem;
  }

  .privacy-notice-card ul {
    gap: 7px;
    margin: 12px 0;
  }

  .privacy-notice-actions {
    margin-top: 16px;
  }
}

/* Final phone containment: one clean column, no horizontal clipping */
@media (max-width: 900px) {
  body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar,
  main,
  .footer {
    width: min(100%, 390px);
    max-width: 390px;
    margin: 0;
  }

  .topbar,
  .hero,
  .section,
  .app-page-detail,
  .contact,
  .footer,
  .legal {
    max-width: 390px;
  }

  .hero > *,
  .section > *,
  .contact > *,
  .footer > *,
  .storefront-header,
  .store-layout,
  .featured-app-panel,
  .store-app-shelf,
  .store-detail-hero,
  .launch-countdown,
  .countdown-grid,
  .store-stat-row,
  .app-section-nav,
  .store-preview,
  .store-detail-grid,
  .app-feedback {
    max-width: 100%;
  }

  .site-controls {
    width: auto;
    max-width: 112px;
  }

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

  .hero h1,
  .section-title h2,
  .storefront-header h2,
  .store-detail-hero h3 {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }
}

/* Compact landscape mode for phones: preserve room for the featured app. */
@media (max-width: 950px) and (max-height: 540px) and (orientation: landscape) {
  body.store-home .topbar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px 22px; }
  body.store-home .brand-icon { width: 44px; height: 44px; }
  body.store-home .brand > span:last-child { font-size: 1rem; }
  body.store-home .nav { display: flex; grid-column: auto; min-width: 0; align-items: center; justify-content: center; gap: 6px; }
  body.store-home .nav-dropdown { width: auto; }
  body.store-home .nav a,
  body.store-home .nav-menu-trigger { min-height: 34px; padding: 0 8px; font-size: 0.74rem; }
  body.store-home .nav-menu-trigger { width: auto; }
  body.store-home .garena-banner-stage { min-height: max(380px, calc(100svh - 68px)); }
  body.store-home .garena-slide-copy { max-width: 560px; gap: 10px; padding: 36px 320px 58px 64px; }
  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 { font-size: clamp(2.2rem, 5.3vw, 3rem); }
  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img { right: 54px; top: 50%; bottom: auto; width: min(31vw, 260px); height: min(64svh, 270px); transform: translateY(-50%); }
  body.store-home .garena-dots { bottom: 20px; }
  body.store-home .garena-arrow { top: 50%; bottom: auto; transform: translateY(-50%); }
}

@media (min-width: 901px) {
  body {
    display: block;
  }
}

/* Visible rails for screenshots and app cards */
.screenshot-rail,
.store-app-grid {
  scrollbar-color: color-mix(in srgb, var(--accent) 72%, var(--mint)) color-mix(in srgb, var(--line) 70%, transparent);
  scrollbar-width: thin;
}

.screenshot-rail::-webkit-scrollbar,
.store-app-grid::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.screenshot-rail::-webkit-scrollbar-track,
.store-app-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 55%, transparent);
}

.screenshot-rail::-webkit-scrollbar-thumb,
.store-app-grid::-webkit-scrollbar-thumb {
  border: 2px solid color-mix(in srgb, var(--surface) 86%, transparent);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
}

.screenshot-rail::-webkit-scrollbar-thumb:hover,
.store-app-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--accent), var(--coral));
}

/* Lean 2026 refresh */
.lean-site {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 360px),
    linear-gradient(90deg, color-mix(in srgb, var(--mint) 10%, transparent), transparent 42%),
    var(--paper);
}

.lean-site .topbar {
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
}

.lean-site .nav {
  gap: 10px;
}

.lean-site .nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.lean-site .nav a:hover {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.lean-site .nav a::after {
  display: none;
}

.lean-hero {
  min-height: min(760px, calc(100vh - 73px));
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(34px, 7vw, 92px);
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(46px, 7vw, 86px);
  background: transparent;
}

.lean-hero h1,
.clean-product h1 {
  max-width: 830px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.96;
}

.lean-hero p,
.clean-product p {
  max-width: 610px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 0.86rem;
  font-weight: 850;
}

.lean-preview {
  justify-self: center;
  width: min(100%, 330px);
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 32px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 90%, transparent), var(--surface)),
    var(--surface);
  box-shadow: var(--shadow);
}

.lean-preview img,
.product-shot img {
  display: block;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

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

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.focus-copy {
  max-width: 560px;
}

.focus-copy p {
  color: var(--muted);
}

.quick-links {
  display: grid;
  gap: 10px;
}

.quick-links a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 54%, var(--line));
  background: var(--surface);
  transform: translateY(-1px);
}

.quick-links strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.quick-links span {
  color: var(--muted);
}

.simple-flow,
.feature-band {
  background: transparent;
}

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

.flow-grid article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.flow-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
}

.flow-grid p {
  color: var(--muted);
}

.help-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clean-product {
  display: grid;
  min-height: min(760px, calc(100vh - 73px));
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, var(--mint) 10%, transparent)),
    var(--paper);
}

.clean-product .label {
  color: var(--deep);
}

.clean-product .btn.secondary {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--surface) 46%, var(--line));
  background: var(--surface);
}

.product-shot {
  width: min(100%, 330px);
  justify-self: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-summary {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.summary-grid div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-left: 3px solid color-mix(in srgb, var(--accent) 76%, var(--mint));
  background: color-mix(in srgb, var(--paper) 70%, var(--surface));
}

.summary-grid strong {
  font-size: 1.08rem;
}

.summary-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 24px);
  align-items: start;
}

.screen-grid figure {
  margin: 0;
}

.screen-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(16, 34, 53, 0.12);
}

.screen-grid figcaption {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.policy-band,
.support-band {
  background: transparent;
}

.wide-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lean-site .contact {
  background:
    linear-gradient(135deg, #07192d, #006dff 58%, #23d18b);
}

:root[data-theme="dark"] .lean-site {
  background:
    linear-gradient(180deg, rgba(58, 167, 255, 0.10), transparent 360px),
    linear-gradient(90deg, rgba(62, 231, 160, 0.08), transparent 42%),
    var(--paper);
}

:root[data-theme="dark"] .app-focus,
:root[data-theme="dark"] .product-summary,
:root[data-theme="dark"] .screenshot-section {
  background: color-mix(in srgb, var(--surface) 88%, #000000);
}

:root[data-theme="dark"] .summary-grid div,
:root[data-theme="dark"] .flow-grid article,
:root[data-theme="dark"] .quick-links a,
:root[data-theme="dark"] .hero-points span {
  background: color-mix(in srgb, var(--surface) 84%, #000000);
}

@media (max-width: 980px) {
  .lean-hero,
  .clean-product,
  .focus-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 900px) {
  .lean-site {
    display: block;
    align-items: initial;
  }

  .lean-site .topbar,
  .lean-site main,
  .lean-site .footer {
    width: 100%;
    max-width: none;
  }

  .lean-site .topbar,
  .lean-site .hero,
  .lean-site .section,
  .lean-site .product-hero,
  .lean-site .contact,
  .lean-site .footer {
    max-width: none;
  }

  .lean-site .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
  }

  .lean-site .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lean-hero,
  .clean-product {
    min-height: auto;
    padding: 34px 14px 44px;
  }

  .lean-hero h1,
  .clean-product h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
    line-height: 1;
  }

  .lean-preview,
  .product-shot {
    justify-self: start;
  }

  .flow-grid,
  .screen-grid,
  .summary-grid,
  .wide-links {
    grid-template-columns: 1fr;
  }

  .help-strip,
  .help-strip .btn {
    width: 100%;
  }
}

/* Professional CTA refresh */
.lean-site .topbar {
  border-bottom-color: color-mix(in srgb, var(--accent) 14%, var(--line));
  box-shadow: 0 10px 34px rgba(16, 34, 53, 0.06);
}

.lean-site .nav a {
  border-color: color-mix(in srgb, var(--accent) 14%, var(--line));
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--accent) 10%, transparent);
}

.lean-site .nav a:hover,
.lean-site .nav a:focus-visible {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--surface);
  outline: 0;
}

.store-shell,
.app-detail-shell,
.compact-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 68px) clamp(16px, 4vw, 36px);
}

.store-shell {
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.store-hero,
.compact-hero,
.app-detail-hero,
.app-store-panel {
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--paper) 56%, var(--surface))),
    var(--surface);
  box-shadow: 0 20px 58px rgba(16, 34, 53, 0.09);
}

.store-hero {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

.store-intro h1,
.compact-hero h1,
.app-detail-copy h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.store-intro p,
.compact-hero p,
.app-detail-copy p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.store-product,
.store-actions a,
.quick-links a,
.support-options a,
.contact-options a {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  text-decoration: none;
}

.store-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: clamp(18px, 3vw, 26px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, #07192d 0%, #0b4fb3 58%, #22b981 100%);
  box-shadow: 0 22px 48px rgba(0, 82, 178, 0.22);
}

.store-product::after,
.store-actions a::after,
.quick-links a::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  content: ">";
  font-size: 1.05rem;
  font-weight: 950;
}

.store-product::after {
  color: #07192d;
  background: #ffffff;
}

.store-product-icon,
.app-icon-large {
  display: grid;
  place-items: center;
  color: #07192d;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  font-weight: 950;
  box-shadow: inset 0 -10px 18px rgba(7, 25, 45, 0.10);
}

.store-product-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.8rem;
}

.store-product-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.store-product-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-product strong {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.store-product-copy > span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.store-product-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #07192d;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 950;
}

.catalog-note {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--amber) 26%, var(--line));
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: color-mix(in srgb, var(--amber) 12%, var(--surface));
}

.catalog-note strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.catalog-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.store-actions,
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.store-actions a,
.quick-links a {
  display: grid;
  min-height: 118px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--paper) 72%, var(--surface)));
  box-shadow: 0 12px 28px rgba(16, 34, 53, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-actions a::before,
.quick-links a::before {
  display: grid;
  width: 42px;
  height: 42px;
  grid-column: 1 / -1;
  place-items: center;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #08489f);
  font-size: 1.05rem;
  font-weight: 950;
}

.store-actions a[href*="support"]::before,
.quick-links a[href*="support"]::before {
  content: "?";
}

.store-actions a[href*="reviews"]::before {
  content: "*";
  background: linear-gradient(135deg, var(--amber), var(--coral));
}

.store-actions a[href*="privacy"]::before,
.quick-links a[href*="privacy"]::before {
  content: "!";
  background: linear-gradient(135deg, #22b981, #0b7d6a);
}

.quick-links a[href*="terms"]::before {
  content: "#";
  background: linear-gradient(135deg, var(--amber), #be7614);
}

.quick-links a[href*="contact"]::before,
.contact-options a[href*="mailto"]::before {
  content: "@";
  background: linear-gradient(135deg, var(--coral), #a73362);
}

.support-options a:nth-child(1)::before {
  content: "!";
  background: linear-gradient(135deg, var(--coral), #a73362);
}

.support-options a:nth-child(2)::before {
  content: "=";
  background: linear-gradient(135deg, var(--accent), #08489f);
}

.support-options a:nth-child(3)::before {
  content: "+";
  background: linear-gradient(135deg, var(--amber), #be7614);
}

.support-options a:nth-child(4)::before {
  content: "?";
  background: linear-gradient(135deg, #22b981, #0b7d6a);
}

.contact-options a[href*="press"]::before {
  content: "i";
  background: linear-gradient(135deg, var(--amber), #be7614);
}

.store-actions strong,
.quick-links strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.15;
}

.store-actions span,
.quick-links span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.store-actions a::after,
.quick-links a::after {
  grid-column: 2;
  grid-row: 2;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  background: var(--surface);
}

.store-product:hover,
.store-product:focus-visible,
.store-actions a:hover,
.store-actions a:focus-visible,
.quick-links a:hover,
.quick-links a:focus-visible {
  transform: translateY(-2px);
}

.store-product:focus-visible,
.store-actions a:focus-visible,
.quick-links a:focus-visible,
.btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 32%, transparent);
  outline-offset: 3px;
}

.store-actions a:hover,
.store-actions a:focus-visible,
.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
  background: var(--surface);
  box-shadow: 0 18px 38px rgba(16, 34, 53, 0.12);
}

.store-device {
  display: grid;
  justify-self: center;
  width: min(100%, 360px);
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.store-device img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

.compact-shell {
  display: grid;
  gap: 18px;
}

.compact-hero {
  padding: clamp(24px, 5vw, 42px);
}

.compact-hero h1 {
  max-width: 820px;
}

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

.support-options a,
.contact-options a {
  min-height: 132px;
}

.app-detail-shell {
  display: grid;
  gap: 20px;
}

.app-detail-hero {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(210px, 0.38fr);
  gap: clamp(18px, 4vw, 32px);
  align-items: center;
  padding: clamp(22px, 5vw, 42px);
}

.app-icon-large {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  font-size: 2.4rem;
}

.app-detail-hero .app-icon-image {
  overflow: hidden;
  padding: 0;
  background: #061524;
  box-shadow: 0 18px 42px rgba(0, 109, 255, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.app-detail-hero .app-icon-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-detail-copy {
  min-width: 0;
}

.app-detail-copy .actions {
  margin-top: 20px;
}

.app-detail-copy .btn {
  min-height: 50px;
  padding: 0 18px;
  box-shadow: 0 10px 24px rgba(16, 34, 53, 0.10);
}

.app-detail-copy .btn.secondary {
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  background: color-mix(in srgb, var(--surface) 94%, var(--paper));
}

.app-detail-meta {
  display: grid;
  gap: 10px;
}

.app-detail-meta div {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
}

.app-detail-meta strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.app-detail-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-store-panel {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  padding: clamp(18px, 4vw, 28px);
}

.app-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

:root[data-theme="dark"] .store-hero,
:root[data-theme="dark"] .compact-hero,
:root[data-theme="dark"] .app-detail-hero,
:root[data-theme="dark"] .app-store-panel,
:root[data-theme="dark"] .store-device,
:root[data-theme="dark"] .store-actions a,
:root[data-theme="dark"] .quick-links a,
:root[data-theme="dark"] .app-detail-meta div {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--deep) 34%, var(--surface))),
    var(--surface);
}

:root[data-theme="dark"] .catalog-note {
  background: color-mix(in srgb, var(--amber) 12%, var(--surface));
}

@media (max-width: 1040px) {
  .store-shell,
  .app-detail-hero {
    grid-template-columns: 1fr;
  }

  .store-device {
    justify-self: start;
    width: min(100%, 300px);
  }

  .app-detail-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .store-shell,
  .app-detail-shell,
  .compact-shell {
    padding: 18px 12px 34px;
  }

  .store-product {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 142px;
  }

  .store-product-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .store-product-action,
  .store-product::after {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .store-product::after {
    display: none;
  }

  .catalog-note,
  .store-actions,
  .quick-links,
  .compact-page .store-actions,
  .app-detail-meta,
  .app-links {
    grid-template-columns: 1fr;
  }

  .store-actions a,
  .quick-links a {
    min-height: 112px;
  }

  .store-device {
    width: min(100%, 250px);
  }

  .app-detail-hero {
    align-items: start;
  }

  .app-detail-copy .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Guided contact flow */
.contact-router {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--paper) 58%, var(--surface))),
    var(--surface);
  box-shadow: 0 20px 58px rgba(16, 34, 53, 0.09);
}

.contact-router-heading h2 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.02;
}

.contact-router-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.problem-picker {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.problem-picker legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 950;
}

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

.problem-choice {
  display: grid;
  min-height: 96px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.problem-choice:hover,
.problem-choice:focus-within {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 34, 53, 0.08);
  transform: translateY(-1px);
}

.problem-choice.is-selected {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 9%, var(--surface)), var(--surface));
  box-shadow: inset 4px 0 0 var(--accent), 0 14px 32px rgba(0, 109, 255, 0.10);
}

.problem-choice input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.problem-choice input:disabled:not(:checked) {
  cursor: not-allowed;
}

.problem-choice span,
.problem-choice strong,
.problem-choice small {
  display: block;
  min-width: 0;
}

.problem-choice strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
}

.problem-choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.selection-status {
  min-height: 28px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 76%, var(--paper));
  font-size: 0.9rem;
  font-weight: 850;
}

[data-selection-state="ready"] .selection-status {
  color: #0b5a3d;
  background: color-mix(in srgb, var(--mint) 18%, var(--surface));
}

[data-selection-state="error"] .selection-status {
  color: #8b1d3f;
  background: color-mix(in srgb, var(--coral) 16%, var(--surface));
}

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

.contact-route {
  display: grid;
  min-height: 162px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--paper) 72%, var(--surface)));
  box-shadow: 0 14px 34px rgba(16, 34, 53, 0.09);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
}

.contact-route:hover,
.contact-route:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  background: var(--surface);
  box-shadow: 0 20px 42px rgba(16, 34, 53, 0.13);
  outline: 0;
  transform: translateY(-2px);
}

.contact-route:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 32%, transparent);
  outline-offset: 3px;
}

.contact-route:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.contact-route:disabled:hover {
  border-color: color-mix(in srgb, var(--accent) 20%, var(--line));
  box-shadow: 0 14px 34px rgba(16, 34, 53, 0.09);
}

.route-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #08489f);
  font-size: 1.25rem;
  font-weight: 950;
}

.route-suggestion .route-mark {
  color: #ffffff;
  background: linear-gradient(135deg, #00a8ff, var(--accent) 58%, #08489f);
}

.route-direct .route-mark {
  background: linear-gradient(135deg, var(--coral), #a73362);
}

.route-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.route-copy strong,
.route-copy span,
.route-copy small {
  display: block;
}

.route-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.14;
}

.route-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.route-copy small {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

:root[data-theme="dark"] .contact-router,
:root[data-theme="dark"] .problem-choice,
:root[data-theme="dark"] .contact-route {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--deep) 34%, var(--surface))),
    var(--surface);
}

:root[data-theme="dark"] .problem-choice.is-selected {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 16%, var(--surface)), var(--surface));
}

@media (max-width: 980px) {
  .contact-route-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-router {
    padding: 18px;
  }

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

  .contact-route {
    min-height: 132px;
    padding: 16px;
  }
}

/* Final layout hardening */
body.lean-site {
  display: block;
  align-items: initial;
  min-width: 320px;
}

.lean-site .topbar {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px max(22px, calc((100vw - 1180px) / 2 + 24px));
}

.lean-site .brand {
  gap: 12px;
  min-width: 0;
  font-size: 1.08rem;
}

.lean-site .brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #061524;
  box-shadow: 0 10px 28px rgba(0, 109, 255, 0.18);
}

.lean-site .brand-icon img {
  object-fit: contain;
}

.lean-site .brand > span:last-child {
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.lean-site .nav {
  justify-content: center;
}

.store-home .store-shell,
.compact-page .compact-shell,
.product-page .app-detail-shell {
  width: min(100% - 32px, 1180px);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.compact-page .compact-shell {
  padding-top: clamp(28px, 4vw, 54px);
}

.compact-page .compact-hero h1,
.store-home .store-intro h1,
.product-page .app-detail-copy h1 {
  max-width: 900px;
  overflow-wrap: normal;
  word-break: normal;
}

.compact-page .compact-hero {
  padding: clamp(22px, 4vw, 38px);
}

.problem-menu {
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(16, 34, 53, 0.08);
}

.problem-menu summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 92%, var(--accent)), color-mix(in srgb, var(--accent) 70%, var(--deep)));
  color: #ffffff;
}

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

.problem-menu summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  grid-column: 3;
  grid-row: 1;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  content: "+";
  font-size: 1.2rem;
  font-weight: 950;
}

.problem-menu[open] summary::after {
  content: "-";
}

.problem-menu summary span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.problem-menu summary strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.problem-menu summary small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 750;
}

.problem-menu summary em {
  grid-column: 2;
  justify-self: end;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.problem-menu .problem-picker {
  padding: 20px;
  background: color-mix(in srgb, var(--paper) 42%, var(--surface));
}

.problem-category {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 13%, var(--line));
  border-radius: 8px;
  background: var(--surface);
}

.problem-category + .problem-category {
  margin-top: 12px;
}

.problem-category h3 {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-category .problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-route-grid {
  align-items: stretch;
}

.contact-route {
  border-width: 1px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--paper) 70%, var(--surface)));
}

@media (max-width: 1040px) {
  .problem-category .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lean-site .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 12px;
  }

  .lean-site .brand-icon {
    width: 46px;
    height: 46px;
  }

  .lean-site .brand > span:last-child {
    font-size: 1rem;
  }

  .store-home .store-shell,
  .compact-page .compact-shell,
  .product-page .app-detail-shell {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .compact-page .compact-hero h1,
  .store-home .store-intro h1,
  .product-page .app-detail-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .problem-menu summary {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .problem-menu summary::after {
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .problem-menu summary em {
    grid-column: 1;
    justify-self: start;
  }

  .problem-menu .problem-picker {
    padding: 14px;
  }

  .problem-category {
    padding: 14px;
  }

  .problem-category .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* Professional contact menu polish */
.compact-page .compact-hero {
  display: grid;
  gap: 14px;
}

.compact-page .compact-hero h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  line-height: 0.96;
}

.compact-page .compact-hero p {
  max-width: 740px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.contact-router {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--paper) 78%, var(--surface))),
    var(--surface);
  box-shadow: 0 24px 70px rgba(10, 28, 48, 0.13);
}

.contact-router-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 96%, var(--accent)), color-mix(in srgb, var(--deep) 76%, var(--accent)));
  color: #ffffff;
}

.contact-router-heading .label {
  width: fit-content;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-router-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 4.1vw, 3.65rem);
  line-height: 0.98;
}

.contact-router-heading p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.contact-router .problem-menu {
  align-self: start;
  margin: clamp(16px, 2.8vw, 24px);
  border-color: color-mix(in srgb, var(--accent) 20%, var(--line));
  box-shadow: 0 18px 46px rgba(10, 28, 48, 0.10);
}

.problem-menu summary {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 94%, #03101f), color-mix(in srgb, var(--deep) 74%, var(--accent)));
}

.problem-menu summary:hover,
.problem-menu summary:focus-visible {
  outline: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 100%, #03101f), color-mix(in srgb, var(--deep) 66%, var(--accent)));
}

.problem-menu .problem-picker {
  gap: 14px;
  padding: clamp(16px, 2.6vw, 22px);
}

.problem-picker legend {
  width: 100%;
  margin: 0 0 2px;
  padding: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.problem-category {
  position: relative;
  padding: 15px;
  border-color: color-mix(in srgb, var(--accent) 14%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, transparent), color-mix(in srgb, var(--paper) 58%, var(--surface)));
}

.problem-category h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--accent) 86%, var(--ink));
}

.problem-category h3::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.problem-choice {
  min-height: 92px;
  padding: 13px;
  border-color: color-mix(in srgb, var(--accent) 14%, var(--line));
  background: var(--surface);
  box-shadow: 0 10px 22px rgba(10, 28, 48, 0.06);
}

.problem-choice input {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-content: center;
  border: 2px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 7px;
  appearance: none;
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.problem-choice input::after {
  width: 6px;
  height: 11px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.problem-choice input:checked {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.problem-choice input:checked::after {
  transform: rotate(45deg) scale(1);
}

.problem-choice input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
  outline-offset: 3px;
}

.problem-choice input:disabled:not(:checked) {
  opacity: 0.42;
}

.problem-choice strong {
  font-size: 0.94rem;
}

.problem-choice small {
  color: color-mix(in srgb, var(--muted) 86%, var(--ink));
}

.selected-problems {
  display: flex;
  min-height: 48px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px dashed color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: 8px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 82%, var(--paper));
  font-size: 0.88rem;
  font-weight: 850;
}

.selected-problems span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--accent) 72%, var(--ink));
  background: color-mix(in srgb, var(--accent) 9%, var(--surface));
  font-size: 0.82rem;
  font-weight: 950;
}

.selection-status {
  border: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
}

.contact-route-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
  padding: clamp(16px, 2.8vw, 24px);
  border-left: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 70%, var(--surface)), color-mix(in srgb, var(--surface) 96%, transparent));
}

.contact-route {
  min-height: 128px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  padding: 17px;
  border-color: color-mix(in srgb, var(--accent) 18%, var(--line));
  background:
    linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--paper) 64%, var(--surface)));
  box-shadow: 0 15px 36px rgba(10, 28, 48, 0.10);
}

.contact-route::after {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #08489f);
  content: "Abrir correo";
  font-size: 0.76rem;
  font-weight: 950;
  white-space: nowrap;
}

.contact-route:disabled::after {
  color: color-mix(in srgb, var(--muted) 80%, var(--ink));
  background: color-mix(in srgb, var(--surface) 72%, var(--paper));
  content: "Elige temas";
}

.contact-route:hover,
.contact-route:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 56%, var(--line));
  box-shadow: 0 22px 50px rgba(10, 28, 48, 0.16);
}

.contact-route:disabled {
  opacity: 0.72;
}

.contact-route:disabled:hover {
  background:
    linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--paper) 64%, var(--surface)));
}

.route-mark {
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 26px rgba(0, 109, 255, 0.18);
}

.route-copy strong {
  font-size: 1rem;
}

.route-copy span {
  font-size: 0.88rem;
}

:root[data-theme="dark"] .contact-router-heading {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 34%),
    linear-gradient(135deg, #071524, color-mix(in srgb, var(--accent) 24%, #071524));
}

:root[data-theme="dark"] .selected-problems {
  background: color-mix(in srgb, var(--deep) 32%, var(--surface));
}

:root[data-theme="dark"] .selected-problems span {
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
}

@media (max-width: 1040px) {
  .contact-router {
    grid-template-columns: 1fr;
  }

  .contact-route-grid {
    border-top: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
    border-left: 0;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .compact-page .compact-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.35rem);
    line-height: 1;
  }

  .contact-router-heading {
    padding: 20px 16px;
  }

  .contact-router-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .contact-router .problem-menu {
    margin: 14px;
  }

  .problem-menu summary {
    padding-right: 58px;
  }

  .problem-choice {
    min-height: 86px;
  }

  .contact-route-grid {
    padding: 0 14px 14px;
  }

  .contact-route {
    min-height: 136px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .contact-route::after {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

/* DivisaX product gallery stability */
.product-page .app-detail-shell {
  gap: clamp(18px, 3vw, 26px);
}

.product-page .app-detail-hero {
  align-items: start;
  padding: clamp(20px, 3.8vw, 34px);
}

.product-page .app-detail-copy h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 4.8vw, 4.45rem);
  line-height: 1;
}

.product-page .app-detail-copy p {
  max-width: 760px;
}

.product-page .app-detail-meta {
  align-self: start;
}

.product-page .app-store-panel {
  overflow: hidden;
}

.product-page .screen-grid {
  align-items: stretch;
}

.product-page .screen-grid figure {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--paper) 74%, var(--surface)));
  box-shadow: 0 18px 44px rgba(10, 28, 48, 0.10);
}

.product-page .screen-grid figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  place-items: center;
  padding: 22px;
  color: var(--muted);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), color-mix(in srgb, var(--paper) 82%, var(--surface)));
  content: attr(data-shot-title) " no disponible";
  font-size: 1rem;
  font-weight: 950;
  text-align: center;
}

.product-page .screen-grid figure.is-missing::before {
  display: grid;
}

.product-page .screen-grid figure.is-missing img {
  opacity: 0;
}

.product-page .screen-grid img {
  border: 0;
  border-radius: 0;
  background: #05070a;
  box-shadow: none;
}

.product-page .screen-grid figcaption {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  background: color-mix(in srgb, var(--surface) 88%, var(--paper));
  text-align: left;
}

@media (max-width: 1040px) {
  .product-page .app-detail-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 7vw, 3.8rem);
  }
}

@media (max-width: 760px) {
  .product-page .app-detail-hero {
    padding: 18px;
  }

  .product-page .app-detail-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

/* Studio landing inspired structure */
.studio-home {
  display: grid;
  gap: 0;
}

.studio-hero,
.studio-section,
.studio-choice,
.studio-metrics,
.studio-process,
.studio-contact-band {
  width: min(100% - 32px, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.studio-hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px) 0 clamp(28px, 5vw, 58px);
}

.studio-hero-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.studio-hero-copy h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: 0.93;
}

.studio-hero-copy p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 650;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.studio-hero-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--paper) 68%, var(--surface)));
  box-shadow: 0 24px 70px rgba(10, 28, 48, 0.13);
}

.studio-panel-top {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.studio-panel-top .app-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  font-size: 1.9rem;
}

.studio-panel-top strong,
.studio-panel-top span {
  display: block;
}

.studio-panel-top strong {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.05;
}

.studio-panel-top span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.studio-hero-panel img {
  display: block;
  width: min(100%, 330px);
  justify-self: center;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background: #05070a;
}

.studio-hero-panel > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 92%, var(--paper));
  font-weight: 950;
}

.studio-section,
.studio-choice,
.studio-process,
.studio-contact-band {
  padding: clamp(40px, 7vw, 76px) 0;
}

.studio-section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.studio-section-heading h2,
.studio-choice h2,
.studio-contact-band h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.6vw, 4.35rem);
  line-height: 0.98;
}

.studio-section-heading p,
.studio-choice p,
.studio-contact-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.studio-card-grid,
.studio-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-service-card,
.studio-step-grid article,
.studio-choice-grid article {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(10, 28, 48, 0.08);
}

.studio-service-card {
  min-height: 260px;
  align-content: start;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.studio-service-card:hover,
.studio-service-card:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  box-shadow: 0 22px 52px rgba(10, 28, 48, 0.14);
  outline: 0;
  transform: translateY(-2px);
}

.studio-service-card.is-featured {
  color: #ffffff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 90%, var(--accent)), color-mix(in srgb, var(--accent) 72%, var(--deep)));
}

.studio-service-card span,
.studio-step-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.studio-service-card.is-featured span,
.studio-service-card.is-featured p,
.studio-service-card.is-featured em {
  color: rgba(255, 255, 255, 0.78);
}

.studio-service-card strong,
.studio-step-grid strong,
.studio-choice-grid strong {
  color: inherit;
  font-size: 1.25rem;
  line-height: 1.08;
}

.studio-service-card p,
.studio-step-grid p,
.studio-choice-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.studio-service-card em {
  align-self: end;
  color: var(--accent);
  font-style: normal;
  font-weight: 950;
}

.studio-choice {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  border-top: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
}

.studio-choice > div:first-child {
  display: grid;
  gap: 16px;
}

.studio-choice > div:first-child .btn {
  justify-self: start;
}

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

.studio-choice-grid article {
  min-height: 150px;
  box-shadow: none;
}

.studio-choice-grid strong {
  color: var(--ink);
}

.studio-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 24px) 0;
}

.studio-metrics div {
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
}

.studio-metrics strong,
.studio-metrics span {
  display: block;
}

.studio-metrics strong {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.studio-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.studio-step-grid article {
  min-height: 210px;
  align-content: start;
}

.studio-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: clamp(30px, 5vw, 54px);
  padding-right: clamp(18px, 4vw, 34px);
  padding-left: clamp(18px, 4vw, 34px);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 92%, var(--accent)), color-mix(in srgb, var(--accent) 60%, var(--deep)));
  color: #ffffff;
}

.studio-contact-band .label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.studio-contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.studio-contact-actions {
  display: grid;
  gap: 10px;
}

.studio-contact-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  font-weight: 950;
  white-space: nowrap;
}

/* DivisaX carousel */
.divisax-carousel {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 95%, transparent), color-mix(in srgb, var(--paper) 72%, var(--surface)));
}

.carousel-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.carousel-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.carousel-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.carousel-stage {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  isolation: isolate;
}

.carousel-stage::before,
.carousel-stage::after {
  position: absolute;
  inset: 22px -12px -18px 22px;
  z-index: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 76%, var(--paper));
  content: "";
}

.carousel-stage::after {
  inset: 42px -22px -30px 42px;
  opacity: 0.55;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 20px 52px rgba(10, 28, 48, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.96);
  transition: opacity 420ms ease, transform 420ms ease;
}

.carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.carousel-slide figcaption {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 950;
}

.carousel-slide.is-missing::before {
  z-index: 3;
}

.carousel-controls {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel-controls > button,
.carousel-dots button {
  display: grid;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.carousel-controls > button {
  width: 42px;
  height: 42px;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 950;
}

.carousel-dots {
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  font-size: 0;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--accent);
}

@media (max-width: 1040px) {
  .studio-hero,
  .studio-choice,
  .studio-contact-band,
  .divisax-carousel {
    grid-template-columns: 1fr;
  }

  .studio-card-grid,
  .studio-step-grid {
    grid-template-columns: 1fr;
  }

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

  .carousel-controls {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .studio-hero,
  .studio-section,
  .studio-choice,
  .studio-metrics,
  .studio-process,
  .studio-contact-band {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .studio-hero {
    min-height: auto;
    padding-top: 28px;
  }

  .studio-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 0.98;
  }

  .studio-actions,
  .studio-contact-actions {
    grid-template-columns: 1fr;
  }

  .studio-actions .btn,
  .studio-contact-actions a {
    width: 100%;
  }

  .studio-metrics,
  .studio-choice-grid {
    grid-template-columns: 1fr;
  }

  .studio-contact-band {
    margin-bottom: 24px;
  }

  .divisax-carousel {
    padding: 16px;
  }

  .carousel-stage {
    width: min(100%, 290px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide {
    transition: none;
  }
}

/* Garena-style home adapted to BLADY A. */
body.store-home {
  background: #ffffff;
}

body.store-home .topbar {
  position: sticky;
  min-height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 34, 53, 0.10);
  box-shadow: 0 8px 24px rgba(10, 28, 48, 0.06);
  backdrop-filter: blur(16px);
}

:root[data-theme="dark"] body.store-home .topbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(16, 34, 53, 0.10);
}

body.store-home .brand > span:last-child,
body.store-home .nav a,
body.store-home .language-select,
body.store-home .theme-toggle {
  color: #102235;
}

body.store-home .nav a {
  min-height: 40px;
  border: 0;
  background: transparent;
}

body.store-home .nav a:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, #ffffff);
}

body.store-home .site-controls {
  color: #102235;
}

.garena-home {
  display: grid;
  background: #ffffff;
}

.garena-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #061524;
}

.garena-banner-stage {
  position: relative;
  min-height: clamp(520px, calc(100vh - 76px), 760px);
}

.garena-banner .carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #061524;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 800ms ease;
}

.garena-banner .carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.garena-banner .carousel-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 21, 36, 0.94) 0%, rgba(6, 21, 36, 0.70) 38%, rgba(6, 21, 36, 0.18) 70%),
    linear-gradient(180deg, rgba(0, 109, 255, 0.18), rgba(35, 209, 139, 0.10));
  content: "";
}

.garena-banner .carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
  opacity: 0.64;
}

.garena-slide-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 720px;
  gap: 16px;
  padding: clamp(92px, 11vw, 140px) max(18px, calc((100vw - 1180px) / 2 + 24px)) 80px;
}

.garena-slide-copy span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garena-slide-copy h1,
.garena-slide-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
}

.garena-slide-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 650;
}

.garena-slide-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(0, 168, 255, 0.62);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #00a8ff, var(--accent) 58%, #08489f);
  box-shadow: 0 16px 34px rgba(0, 109, 255, 0.28);
  font-weight: 950;
}

.garena-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 21, 36, 0.52);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.garena-arrow:hover,
.garena-arrow:focus-visible {
  outline: 0;
  background: color-mix(in srgb, var(--accent) 72%, rgba(6, 21, 36, 0.72));
}

.garena-arrow.is-prev {
  left: max(18px, calc((100vw - 1180px) / 2 + 18px));
}

.garena-arrow.is-next {
  right: max(18px, calc((100vw - 1180px) / 2 + 18px));
}

.garena-dots {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: 0;
  z-index: 3;
  justify-content: center;
}

.garena-dots button {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.58);
}

.garena-dots button.is-active {
  background: #ffffff;
}

.garena-about,
.garena-section,
.garena-platform {
  width: min(100% - 32px, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.garena-about {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(58px, 8vw, 92px) 0 clamp(44px, 7vw, 72px);
  color: #102235;
  text-align: center;
}

.garena-about img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.garena-about h2 {
  max-width: 960px;
  margin: 0;
  color: #102235;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

.garena-about p {
  max-width: 760px;
  margin: 0;
  color: #5a6878;
  font-size: 1.04rem;
  font-weight: 650;
}

.garena-section {
  padding: clamp(46px, 7vw, 78px) 0;
  border-top: 1px solid #e5edf7;
}

.garena-section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.garena-section-heading span,
.garena-platform span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garena-section-heading h2,
.garena-platform h2 {
  margin: 0;
  color: #102235;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
}

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

.garena-feature-grid article {
  display: grid;
  min-height: 210px;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(10, 28, 48, 0.07);
}

.garena-feature-grid strong {
  color: #102235;
  font-size: 1.24rem;
}

.garena-feature-grid p {
  margin: 0;
  color: #5a6878;
  font-weight: 650;
}

.garena-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(38px, 7vw, 72px) 0;
  border-top: 1px solid #e5edf7;
}

.garena-platform > div {
  display: grid;
  gap: 14px;
}

.garena-platform p {
  max-width: 660px;
  margin: 0;
  color: #5a6878;
  font-weight: 650;
}

.garena-platform a {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, #dfe9f5);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #08489f);
  font-weight: 950;
}

.garena-platform img {
  display: block;
  width: min(100%, 360px);
  justify-self: center;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 22px 58px rgba(10, 28, 48, 0.14);
}

.garena-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.garena-link-grid a {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  color: #102235;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 28, 48, 0.06);
  font-weight: 950;
}

.garena-link-grid a:hover,
.garena-link-grid a:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 42%, #dfe9f5);
  color: var(--accent);
  outline: 0;
}

@media (max-width: 1040px) {
  .garena-platform {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body.store-home .topbar {
    min-height: 64px;
  }

  .garena-banner-stage {
    min-height: 560px;
  }

  .garena-slide-copy {
    padding: 92px 18px 78px;
  }

  .garena-slide-copy h1,
  .garena-slide-copy h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .garena-arrow {
    top: auto;
    bottom: 28px;
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
    transform: none;
  }

  .garena-arrow.is-prev {
    left: 18px;
  }

  .garena-arrow.is-next {
    right: 18px;
  }

  .garena-dots {
    bottom: 45px;
  }

  .garena-about,
  .garena-section,
  .garena-platform {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

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

/* Bright Garena-style corrections */
body.store-home .language-select,
body.store-home .theme-toggle,
:root[data-theme="dark"] body.store-home .language-select,
:root[data-theme="dark"] body.store-home .theme-toggle {
  border-color: #d8e4f2;
  color: #102235;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(10, 28, 48, 0.08);
  opacity: 1;
}

body.store-home .language-select option {
  color: #102235;
  background: #ffffff;
}

.garena-banner {
  background:
    radial-gradient(circle at 78% 36%, rgba(58, 167, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #061524 0%, #08345c 48%, #047a88 100%);
}

.garena-banner-stage {
  min-height: clamp(560px, calc(100vh - 76px), 720px);
}

.garena-banner .carousel-slide {
  background:
    radial-gradient(circle at 78% 36%, rgba(58, 167, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #061524 0%, #08345c 50%, #047a88 100%);
}

.garena-banner .carousel-slide::before {
  background:
    linear-gradient(90deg, rgba(6, 21, 36, 0.82) 0%, rgba(6, 21, 36, 0.58) 40%, rgba(6, 21, 36, 0.10) 72%),
    linear-gradient(180deg, rgba(0, 109, 255, 0.05), rgba(35, 209, 139, 0.10));
}

.garena-banner .carousel-slide img {
  inset: auto max(44px, calc((100vw - 1180px) / 2 + 54px)) auto auto;
  top: 50%;
  width: min(38vw, 440px);
  height: min(74vh, 610px);
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  color: transparent;
  filter: saturate(1.26) contrast(1.12) brightness(1.08);
  font-size: 0;
  opacity: 1;
  transform: translateY(-50%);
}

.garena-banner .carousel-slide.is-active img {
  transform: translateY(-50%) scale(1);
}

.garena-banner .garena-slide.is-missing::after {
  position: absolute;
  top: 50%;
  right: max(44px, calc((100vw - 1180px) / 2 + 54px));
  z-index: 2;
  display: grid;
  width: min(38vw, 440px);
  height: min(74vh, 610px);
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 7, 10, 0.72);
  content: attr(data-shot-title);
  font-weight: 950;
  text-align: center;
  transform: translateY(-50%);
}

.garena-slide-copy {
  max-width: 650px;
  padding-left: max(124px, calc((100vw - 1180px) / 2 + 112px));
}

.garena-slide-copy h1,
.garena-slide-copy h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5.8vw, 5.35rem);
  line-height: 0.98;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.garena-slide-copy p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.garena-platform {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
}

.garena-platform-shot {
  position: relative;
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe9f5;
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 22px 58px rgba(10, 28, 48, 0.14);
}

.garena-platform-shot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  place-items: center;
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 24%, rgba(58, 167, 255, 0.36), transparent 34%),
    linear-gradient(135deg, #061524, #08345c 58%, #047a88);
  content: attr(data-shot-title);
  font-weight: 950;
  text-align: center;
}

.garena-platform-shot.is-missing::before {
  display: grid;
}

.garena-platform-shot img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #05070a;
  box-shadow: none;
  justify-self: stretch;
  object-fit: cover;
  object-position: top center;
  color: transparent;
  font-size: 0;
}

.garena-platform > img {
  display: none;
}

@media (max-width: 1040px) {
  .garena-banner .carousel-slide img,
  .garena-banner .garena-slide.is-missing::after {
    right: 28px;
    width: min(34vw, 330px);
    height: min(64vh, 520px);
  }

  .garena-slide-copy {
    padding-left: 82px;
    padding-right: min(39vw, 360px);
  }
}

@media (max-width: 760px) {
  .garena-banner .carousel-slide::before {
    background:
      linear-gradient(180deg, rgba(6, 21, 36, 0.86), rgba(6, 21, 36, 0.54) 54%, rgba(6, 21, 36, 0.20)),
      linear-gradient(180deg, rgba(0, 109, 255, 0.08), rgba(35, 209, 139, 0.10));
  }

  .garena-banner .carousel-slide img,
  .garena-banner .garena-slide.is-missing::after {
    right: 50%;
    top: auto;
    bottom: 84px;
    width: min(62vw, 240px);
    height: min(42vh, 330px);
    transform: translateX(50%);
  }

  .garena-slide-copy {
    max-width: none;
    padding: 76px 18px 390px;
  }

  .garena-slide-copy h1,
  .garena-slide-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .garena-dots {
    bottom: 34px;
  }

  .garena-arrow {
    bottom: 20px;
  }
}

/* Soft visual optimization pass */
:root {
  --soft-shadow: 0 16px 42px rgba(10, 28, 48, 0.08);
  --soft-shadow-strong: 0 22px 58px rgba(10, 28, 48, 0.12);
}

body.store-home .topbar,
.lean-site .topbar {
  box-shadow: 0 8px 26px rgba(10, 28, 48, 0.055);
}

.lean-site .brand-icon {
  box-shadow: 0 10px 24px rgba(0, 109, 255, 0.14);
}

.garena-banner {
  background:
    radial-gradient(circle at 76% 38%, rgba(58, 167, 255, 0.44), transparent 32%),
    linear-gradient(135deg, #061524 0%, #073259 50%, #066d7d 100%);
}

.garena-banner .carousel-slide::before {
  background:
    linear-gradient(90deg, rgba(6, 21, 36, 0.74) 0%, rgba(6, 21, 36, 0.48) 42%, rgba(6, 21, 36, 0.08) 74%),
    linear-gradient(180deg, rgba(0, 109, 255, 0.04), rgba(35, 209, 139, 0.08));
}

.garena-banner .carousel-slide img {
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28);
  filter: saturate(1.34) contrast(1.14) brightness(1.12);
}

.garena-slide-copy {
  gap: 14px;
}

.garena-slide-copy h1,
.garena-slide-copy h2 {
  font-size: clamp(2.65rem, 5.2vw, 4.85rem);
  line-height: 1;
}

.garena-slide-copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.90);
}

.garena-slide-copy a,
.garena-platform a,
.main-mail-card,
.contact-route,
.btn {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.garena-slide-copy a:hover,
.garena-slide-copy a:focus-visible,
.garena-platform a:hover,
.garena-platform a:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 109, 255, 0.22);
}

.garena-about {
  padding-top: clamp(46px, 7vw, 76px);
  padding-bottom: clamp(38px, 6vw, 62px);
}

.garena-about h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.55rem);
  line-height: 1.04;
}

.garena-section,
.garena-platform {
  padding-top: clamp(38px, 6vw, 64px);
  padding-bottom: clamp(38px, 6vw, 64px);
}

.garena-feature-grid article,
.garena-link-grid a,
.main-mail-card,
.contact-router,
.main-contact-panel,
.garena-platform-shot {
  box-shadow: var(--soft-shadow);
}

.garena-feature-grid article:hover,
.garena-link-grid a:hover,
.garena-link-grid a:focus-visible,
.main-mail-card:hover,
.main-mail-card:focus-visible {
  box-shadow: var(--soft-shadow-strong);
}

.garena-feature-grid article,
.garena-link-grid a {
  border-color: #e4ecf6;
}

.garena-platform {
  border-top-color: #edf3fa;
}

.garena-platform-shot {
  border-color: #e1ebf6;
  box-shadow: 0 18px 48px rgba(10, 28, 48, 0.11);
}

.garena-platform-shot img {
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
}

.main-contact-panel {
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--paper) 72%, var(--surface))),
    var(--surface);
}

.main-contact-panel .contact-router-heading {
  border-bottom-color: color-mix(in srgb, var(--accent) 16%, var(--line));
}

.main-mail-section .garena-section-heading {
  max-width: 680px;
}

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

.main-mail-section .main-mail-grid {
  max-width: 720px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-mail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(16px, 3vw, 24px);
}

.main-mail-card {
  display: grid;
  min-height: 176px;
  gap: 9px;
  align-content: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 94%, var(--paper));
}

.main-mail-card:hover,
.main-mail-card:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  outline: 0;
  transform: translateY(-2px);
}

.main-mail-card .route-mark {
  margin-bottom: 4px;
}

.main-mail-card strong,
.main-mail-card span,
.main-mail-card small {
  display: block;
  min-width: 0;
}

.main-mail-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.main-mail-card > span:not(.route-mark) {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.38;
}

.main-mail-card small {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.main-mail-card.route-suggestion {
  border-color: color-mix(in srgb, #00a8ff 34%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, #00a8ff 13%, var(--surface)), color-mix(in srgb, var(--accent) 8%, var(--surface)));
}

.main-mail-card.route-direct {
  border-color: color-mix(in srgb, var(--coral) 28%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--coral) 12%, var(--surface)), color-mix(in srgb, var(--amber) 10%, var(--surface)));
}

.main-mail-card.route-support {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, #00a8ff 14%, var(--surface)), color-mix(in srgb, var(--accent) 10%, var(--surface)));
}

.main-mail-card.route-phone {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 150px;
  cursor: pointer;
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  text-align: left;
  font: inherit;
  background:
    linear-gradient(135deg, color-mix(in srgb, #00a8ff 16%, var(--surface)), color-mix(in srgb, #08489f 10%, var(--surface)));
}

.main-mail-card.route-phone .route-mark,
.phone-support-dialog-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #00a8ff, var(--accent) 58%, #08489f);
}

.main-mail-card.route-phone small {
  color: #0060c8;
}

.phone-support-dialog {
  width: min(100% - 32px, 520px);
  max-height: min(760px, calc(100svh - 32px));
  padding: 0;
  overflow: auto;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.34);
}

.phone-support-dialog::backdrop {
  background: rgba(4, 15, 28, 0.66);
  backdrop-filter: blur(4px);
}

.phone-support-dialog-header,
.phone-support-dialog > p,
.phone-support-dialog dl,
.phone-support-dialog-actions {
  margin: 0;
  padding-right: clamp(20px, 4vw, 30px);
  padding-left: clamp(20px, 4vw, 30px);
}

.phone-support-dialog-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
}

.phone-support-dialog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  font-size: 1.35rem;
}

.phone-support-dialog-header > div > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-support-dialog h2 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.16;
}

.phone-support-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.phone-support-dialog > p {
  padding-top: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.phone-support-dialog dl {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.phone-support-dialog dl > div {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper) 74%, var(--surface));
}

.phone-support-dialog dt {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.phone-support-dialog dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.phone-support-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 24px;
}

.phone-support-dialog-actions .btn {
  min-height: 44px;
  text-decoration: none;
}

.main-mail-card[href*="resenas-divisax"],
.main-mail-card[href*="reviews"] {
  border-color: color-mix(in srgb, var(--amber) 30%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--amber) 14%, var(--surface)), color-mix(in srgb, var(--lime) 8%, var(--surface)));
}

.main-mail-card[href*="privacy"] {
  border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, var(--surface)), color-mix(in srgb, var(--paper) 74%, var(--surface)));
}

.main-mail-card.route-suggestion small {
  color: #0060c8;
}

.main-mail-card.route-direct small {
  color: #9a3157;
}

.main-mail-card[href*="resenas-divisax"] small,
.main-mail-card[href*="reviews"] small {
  color: #9a6500;
}

.main-mail-card.route-suggestion .route-mark {
  color: #ffffff;
  background: linear-gradient(135deg, #00a8ff, var(--accent) 58%, #08489f);
}

.main-mail-card.route-direct .route-mark {
  background: linear-gradient(135deg, var(--coral), #a73362);
}

.main-mail-card[href*="resenas-divisax"] .route-mark,
.main-mail-card[href*="reviews"] .route-mark {
  color: #07192d;
  background: linear-gradient(135deg, var(--amber), var(--lime));
}

.main-mail-card[href*="privacy"] .route-mark {
  background: linear-gradient(135deg, var(--accent), #08489f);
}

.divisax-feedback-panel {
  border-color: color-mix(in srgb, var(--amber) 22%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--amber) 8%, var(--surface)), color-mix(in srgb, var(--mint) 6%, var(--surface))),
    var(--surface);
  box-shadow: var(--soft-shadow);
}

.divisax-feedback-panel .feedback-heading {
  align-items: start;
}

.divisax-feedback-panel .feedback-heading h2 {
  margin-bottom: 8px;
}

.divisax-feedback-panel .feedback-heading p {
  max-width: 680px;
}

.contact-support-note {
  margin: 0 clamp(16px, 3vw, 24px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-support-link {
  justify-self: start;
  margin: 0 clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
}

.support-redirect-panel .contact-mail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.divisax-support-router {
  margin-top: clamp(18px, 3vw, 28px);
}

.divisax-support-router .contact-route-grid.single-route {
  align-content: stretch;
}

.divisax-support-router .contact-route-grid.single-route .contact-route {
  min-height: 142px;
}

.problem-choice,
.contact-route,
.selection-status,
.selected-problems {
  box-shadow: 0 10px 24px rgba(10, 28, 48, 0.055);
}

body.legal-page {
  display: block;
  min-width: 320px;
  color: #102235;
  background: #f7fbff;
}

body.legal-page .topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #d9e7f7;
  box-shadow: 0 8px 28px rgba(10, 28, 48, 0.04);
}

body.legal-page .brand {
  color: #102235;
}

body.legal-page .nav {
  color: #5a6878;
}

body.legal-page .language-select,
body.legal-page .theme-toggle {
  color: #102235;
  background: #ffffff;
  border-color: #d5e3f4;
}

body.legal-page .legal {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) 0;
  background: transparent;
}

body.legal-page .legal h1,
body.legal-page .legal h2 {
  color: #07192d;
}

body.legal-page .legal h1 {
  font-size: clamp(2.35rem, 5.1vw, 4.15rem);
  line-height: 1.02;
}

body.legal-page .legal h2 {
  margin-top: 38px;
}

body.legal-page .legal p {
  max-width: 820px;
  color: #4d6077;
}

body.legal-page .legal a {
  color: #006dff;
}

body.legal-page .footer {
  color: #52657b;
  background: #ffffff;
  border-top-color: #dce9f7;
}

body.legal-page .footer a {
  color: #102235;
}

:root[data-theme="dark"] body.legal-page {
  color: #102235;
  background: #f7fbff;
}

:root[data-theme="dark"] body.legal-page .topbar,
:root[data-theme="dark"] body.legal-page .footer,
:root[data-theme="dark"] body.legal-page .language-select,
:root[data-theme="dark"] body.legal-page .theme-toggle {
  color: #102235;
  background: rgba(255, 255, 255, 0.96);
  border-color: #d5e3f4;
}

:root[data-theme="dark"] body.legal-page .legal h1,
:root[data-theme="dark"] body.legal-page .legal h2,
:root[data-theme="dark"] body.legal-page .brand,
:root[data-theme="dark"] body.legal-page .footer a {
  color: #07192d;
}

:root[data-theme="dark"] body.legal-page .legal p,
:root[data-theme="dark"] body.legal-page .nav,
:root[data-theme="dark"] body.legal-page .footer {
  color: #4d6077;
}

@media (max-width: 1040px) {
  .main-mail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .garena-slide-copy h1,
  .garena-slide-copy h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.05rem);
  }

  .main-mail-grid,
  .contact-mail-grid,
  .support-redirect-panel .contact-mail-grid {
    grid-template-columns: 1fr;
  }

  .main-contact-panel {
    margin-right: 0;
    margin-left: 0;
  }

  .main-mail-card {
    min-height: 148px;
  }

  body.legal-page .topbar,
  body.legal-page .legal,
  body.legal-page .footer {
    width: min(100% - 24px, 390px);
    max-width: 390px;
  }
}

/* Dark mode must win over the light-only store/legal polish. */
:root[data-theme="dark"] body.store-home,
:root[data-theme="dark"] body.store-home .garena-home {
  color: var(--ink);
  background: var(--paper);
}

:root[data-theme="dark"] body.store-home .topbar {
  background: rgba(7, 17, 31, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body.store-home .brand > span:last-child,
:root[data-theme="dark"] body.store-home .nav a,
:root[data-theme="dark"] body.store-home .site-controls {
  color: var(--ink);
}

:root[data-theme="dark"] body.store-home .nav a:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

:root[data-theme="dark"] body.store-home .language-select,
:root[data-theme="dark"] body.store-home .theme-toggle,
:root[data-theme="dark"] body.legal-page .language-select,
:root[data-theme="dark"] body.legal-page .theme-toggle {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] body.store-home .language-select option {
  color: var(--ink);
  background: var(--surface);
}

:root[data-theme="dark"] .garena-about,
:root[data-theme="dark"] .garena-section,
:root[data-theme="dark"] .garena-platform {
  border-top-color: var(--line);
  color: var(--ink);
}

:root[data-theme="dark"] .garena-about h2,
:root[data-theme="dark"] .garena-section-heading h2,
:root[data-theme="dark"] .garena-platform h2,
:root[data-theme="dark"] .garena-feature-grid strong,
:root[data-theme="dark"] .garena-link-grid a,
:root[data-theme="dark"] .main-mail-card strong {
  color: var(--ink);
}

:root[data-theme="dark"] .garena-about p,
:root[data-theme="dark"] .garena-feature-grid p,
:root[data-theme="dark"] .garena-platform p,
:root[data-theme="dark"] .main-mail-card > span:not(.route-mark) {
  color: var(--muted);
}

:root[data-theme="dark"] .garena-feature-grid article,
:root[data-theme="dark"] .garena-link-grid a,
:root[data-theme="dark"] .main-mail-card,
:root[data-theme="dark"] .main-contact-panel,
:root[data-theme="dark"] .garena-platform-shot {
  border-color: var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent), color-mix(in srgb, var(--deep) 28%, var(--surface))),
    var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .main-mail-card.route-suggestion {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, var(--surface)), color-mix(in srgb, var(--deep) 20%, var(--surface))),
    var(--surface);
}

:root[data-theme="dark"] .main-mail-card.route-direct {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--coral) 16%, var(--surface)), color-mix(in srgb, var(--deep) 22%, var(--surface))),
    var(--surface);
}

:root[data-theme="dark"] body.legal-page {
  color: var(--ink);
  background: var(--paper);
}

:root[data-theme="dark"] body.legal-page .topbar,
:root[data-theme="dark"] body.legal-page .footer {
  color: var(--ink);
  background: rgba(7, 17, 31, 0.94);
  border-color: var(--line);
}

/* Store home on phones: keep navigation visible and the app capture below its copy. */
@media (max-width: 760px) {
  body.store-home {
    display: block;
    min-width: 0;
  }

  body.store-home .topbar,
  body.store-home main,
  body.store-home .footer {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  body.store-home .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  body.store-home .nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  body.store-home .nav-dropdown {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.store-home .nav-menu-trigger {
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  body.store-home .app-menu-panel {
    top: 166px;
  }

  body.store-home .garena-banner-stage {
    min-height: 780px;
  }

  body.store-home .garena-slide-copy {
    gap: 13px;
    padding: 48px 20px 390px;
  }

  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 {
    font-size: clamp(2.35rem, 11vw, 2.9rem);
    line-height: 1;
  }

  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img {
    right: 50%;
    top: auto;
    bottom: 96px;
    width: min(70vw, 260px);
    height: min(38vh, 290px);
    transform: translateX(50%) scale(1);
  }

  body.store-home .garena-banner .carousel-slide:not(.is-active) img {
    transform: translateX(50%) scale(0.98);
  }

  body.store-home .garena-dots {
    bottom: 38px;
  }

  body.store-home .garena-arrow {
    bottom: 22px;
  }
}

@media (max-width: 950px) and (max-height: 540px) and (orientation: landscape) {
  body.store-home .topbar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px 22px; }
  body.store-home .brand-icon { width: 44px; height: 44px; }
  body.store-home .brand > span:last-child { font-size: 1rem; }
  body.store-home .nav { display: flex; grid-column: auto; min-width: 0; align-items: center; justify-content: center; gap: 6px; }
  body.store-home .nav-dropdown { width: auto; }
  body.store-home .nav a,
  body.store-home .nav-menu-trigger { min-height: 34px; padding: 0 8px; font-size: 0.74rem; }
  body.store-home .nav-menu-trigger { width: auto; }
  body.store-home .garena-banner-stage { min-height: max(380px, calc(100svh - 68px)); }
  body.store-home .garena-slide-copy { max-width: 560px; gap: 10px; padding: 36px 320px 58px 64px; }
  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 { font-size: clamp(2.2rem, 5.3vw, 3rem); }
  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img { right: 54px; top: 50%; bottom: auto; width: min(31vw, 260px); height: min(64svh, 270px); transform: translateY(-50%); }
  body.store-home .garena-dots { bottom: 20px; }
  body.store-home .garena-arrow { top: 50%; bottom: auto; transform: translateY(-50%); }
}

/* Final landscape priority after all desktop and mobile rules. */
@media (max-width: 950px) and (max-height: 540px) and (orientation: landscape) {
  body.store-home .topbar { display: grid !important; grid-template-columns: auto minmax(0, 1fr) auto !important; gap: 12px !important; align-items: center !important; padding: 10px 22px !important; }
  body.store-home .brand-icon { width: 44px; height: 44px; }
  body.store-home .brand > span:last-child { font-size: 1rem; }
  body.store-home .nav { display: flex !important; grid-column: auto !important; min-width: 0 !important; align-items: center !important; justify-content: center !important; gap: 6px !important; }
  body.store-home .nav-dropdown { width: auto; }
  body.store-home .nav a,
  body.store-home .nav-menu-trigger { min-height: 34px; padding: 0 8px; font-size: 0.74rem; }
  body.store-home .nav-menu-trigger { width: auto; }
  body.store-home .garena-banner-stage { min-height: max(380px, calc(100svh - 68px)) !important; }
  body.store-home .garena-slide-copy { max-width: 560px !important; gap: 10px !important; padding: 36px 320px 58px 64px !important; }
  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 { font-size: clamp(2.2rem, 5.3vw, 3rem); }
  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img { right: 54px !important; top: 50% !important; bottom: auto !important; width: min(31vw, 260px) !important; height: min(64svh, 270px) !important; transform: translateY(-50%) !important; }
  body.store-home .garena-dots { bottom: 20px !important; }
  body.store-home .garena-arrow { top: 50% !important; bottom: auto !important; transform: translateY(-50%) !important; }
}

/* Some iPhone Safari sessions use a desktop-sized layout viewport. */
@media (min-width: 761px) and (max-width: 1040px) {
  body.store-home .garena-banner-stage {
    min-height: 760px;
  }

  body.store-home .garena-slide-copy {
    max-width: 680px;
    gap: 14px;
    padding: 52px clamp(28px, 7vw, 68px) 370px;
  }

  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 {
    font-size: clamp(2.65rem, 5vw, 3.55rem);
    line-height: 1;
  }

  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img {
    right: 50%;
    top: auto;
    bottom: 92px;
    width: min(42vw, 300px);
    height: min(50svh, 340px);
    transform: translateX(50%) scale(1);
  }

  body.store-home .garena-banner .carousel-slide:not(.is-active) img {
    transform: translateX(50%) scale(0.98);
  }

  body.store-home .garena-dots {
    bottom: 36px;
  }

  body.store-home .garena-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

/* DivisaX platform panel: this rule must stay after the desktop screenshot layout. */
@media (max-width: 1040px) {
  body.store-home .garena-platform {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  body.store-home .garena-platform > div {
    width: 100%;
    min-width: 0;
  }

  body.store-home .garena-platform-shot {
    width: min(100%, 300px);
    margin: 0;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.store-home .garena-banner,
  body.store-home .garena-banner-stage,
  body.store-home .carousel-slide,
  body.store-home .garena-slide-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.store-home .garena-slide-copy {
    padding: 48px 20px 390px;
  }

  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2,
  body.store-home .garena-slide-copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  body.store-home .garena-platform {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 42px 20px;
    overflow: hidden;
  }

  body.store-home .garena-platform h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  body.store-home .garena-platform p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1rem;
    line-height: 1.55;
  }

  body.store-home .garena-platform a {
    min-height: 48px;
    max-width: 100%;
    padding: 0 18px;
    text-align: center;
    white-space: normal;
  }

  body.store-home .garena-platform-shot {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 280px;
    aspect-ratio: 9 / 16;
  }

  body.store-home .garena-platform-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

:root[data-theme="dark"] body.legal-page .brand,
:root[data-theme="dark"] body.legal-page .nav,
:root[data-theme="dark"] body.legal-page .footer,
:root[data-theme="dark"] body.legal-page .footer a,
:root[data-theme="dark"] body.legal-page .legal h1,
:root[data-theme="dark"] body.legal-page .legal h2 {
  color: var(--ink);
}

:root[data-theme="dark"] body.legal-page .legal p {
  color: var(--muted);
}

:root[data-theme="dark"] body.legal-page .legal a {
  color: var(--accent);
}

/* Apps and games navigation menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.nav-menu-trigger {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.nav-menu-trigger::after {
  display: none;
}

.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible,
.nav-dropdown.is-open .nav-menu-trigger {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  outline: 0;
}

.nav-menu-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-menu-arrow {
  transform: translateY(1px) rotate(225deg);
}

.app-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: min(430px, calc(100vw - 28px));
  gap: 14px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-radius: 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--surface) 46%),
    var(--surface);
  box-shadow: 0 28px 70px rgba(10, 28, 48, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.app-menu-panel::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-left: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  background: inherit;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.is-open .app-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.app-menu-section {
  display: grid;
  gap: 9px;
}

.app-menu-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-menu-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--accent) 10%, transparent);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.app-menu-item:hover,
.app-menu-item:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  outline: 0;
  transform: translateY(-1px);
}

.app-menu-icon {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
  background: var(--deep);
}

.app-menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-menu-item strong,
.app-menu-item small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-menu-item strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.app-menu-item small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.app-menu-empty {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px dashed color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 14px;
  color: var(--muted);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  font-size: 0.88rem;
  font-weight: 900;
}

.lean-site .nav-menu-trigger {
  border-color: color-mix(in srgb, var(--accent) 14%, var(--line));
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--accent) 10%, transparent);
}

body.store-home .nav-menu-trigger {
  min-height: 40px;
  color: #102235;
}

body.store-home .nav-menu-trigger:hover,
body.store-home .nav-menu-trigger:focus-visible,
body.store-home .nav-dropdown.is-open .nav-menu-trigger {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, #ffffff);
}

:root[data-theme="dark"] .app-menu-panel {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, var(--surface)), color-mix(in srgb, var(--deep) 18%, var(--surface)) 48%),
    var(--surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .app-menu-item,
:root[data-theme="dark"] .app-menu-empty {
  background: color-mix(in srgb, var(--surface) 82%, var(--deep));
}

:root[data-theme="dark"] body.store-home .nav-menu-trigger {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px) {
  .nav-dropdown:hover .nav-menu-arrow {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-dropdown:hover .app-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }
}

@media (max-width: 760px) {
  .nav-dropdown {
    position: static;
  }

  .nav-menu-trigger {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    overflow: hidden;
    padding: 0 6px;
    font-size: 0.78rem;
    text-overflow: ellipsis;
  }

  .nav-menu-trigger span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-menu-arrow {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
  }

  .app-menu-panel {
    position: fixed;
    top: 88px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: min(72vh, 460px);
    overflow: auto;
    transform: translateY(-8px);
  }

  .app-menu-panel::before {
    display: none;
  }

  .nav-dropdown.is-open .app-menu-panel {
    transform: translateY(0);
  }
}

.nav .app-menu-item {
  display: grid;
  min-height: auto;
  grid-template-columns: 48px minmax(0, 1fr);
  justify-content: initial;
  overflow: visible;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 16px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 90%, var(--paper));
  font-size: inherit;
  white-space: normal;
}

.nav .app-menu-item::after {
  display: none;
}

.nav .app-menu-item:hover,
.nav .app-menu-item:focus-visible {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

/* Unified responsive layer: phone layouts must use the available viewport. */
@media (max-width: 900px) {
  html,
  body,
  body.lean-site,
  body.legal-page {
    min-width: 0;
  }

  body,
  body.lean-site,
  body.legal-page {
    display: block;
  }

  body > .topbar,
  body > main,
  body > .footer,
  body.legal-page .topbar,
  body.legal-page .legal,
  body.legal-page .footer {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 760px) {
  body > .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 14px 12px;
  }

  body > .topbar .brand {
    min-width: 0;
  }

  body > .topbar .brand-icon {
    width: 44px;
    height: 44px;
  }

  body > .topbar .site-controls {
    width: auto;
    max-width: none;
    justify-self: end;
  }

  body > .topbar .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    overflow: visible;
  }

  body > .topbar .nav-dropdown {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
  }

  body > .topbar .nav-menu-trigger {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  body > .topbar .nav a {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  body > .topbar .app-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: auto;
    left: 0;
    width: min(360px, calc(100vw - 28px));
    max-height: min(68svh, 460px);
    transform: translateY(-8px);
  }

  body > .topbar .nav-dropdown.is-open .app-menu-panel {
    transform: translateY(0);
  }

  body > .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-office {
    display: grid;
    gap: 2px;
  }

  .footer-office-divider {
    display: none;
  }

  .summary-grid,
  .wide-links,
  .quick-links,
  .garena-feature-grid,
  .garena-link-grid,
  .studio-choice-grid,
  .studio-metrics,
  .flow-grid,
  .app-detail-grid,
  .store-detail-grid {
    grid-template-columns: 1fr;
  }

  body.store-home .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.store-home .nav > a:last-child {
    grid-column: 1 / -1;
  }

  body.store-home .garena-banner-stage {
    min-height: 780px;
  }

  body.store-home .garena-slide-copy {
    gap: 13px;
    padding: 48px 20px 390px;
  }

  body.store-home .garena-slide-copy h1,
  body.store-home .garena-slide-copy h2 {
    font-size: clamp(2.35rem, 11vw, 2.9rem);
    line-height: 1;
  }

  body.store-home .garena-banner .carousel-slide img,
  body.store-home .garena-banner .carousel-slide.is-active img {
    right: 50%;
    top: auto;
    bottom: 96px;
    width: min(70vw, 260px);
    height: min(38svh, 290px);
    transform: translateX(50%) scale(1);
  }

  body.store-home .garena-banner .carousel-slide:not(.is-active) img {
    transform: translateX(50%) scale(0.98);
  }

  body.store-home .garena-dots {
    bottom: 38px;
  }

  body.store-home .garena-arrow {
    bottom: 22px;
  }
}

/* DivisaX official closed-testing guide */
.divisax-download-button {
  position: relative;
  display: inline-grid;
  min-height: 68px;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  justify-content: initial;
  padding: 10px 14px;
  border: 0;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #101820, #172b3d 62%, #0c1117);
  box-shadow: 0 14px 30px rgba(7, 25, 45, 0.24);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.divisax-download-button:hover,
.divisax-download-button:focus-visible {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 25, 45, 0.3);
}

.divisax-download-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: 3px;
}

.play-store-mark {
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
}

.play-store-mark svg {
  display: block;
  width: 32px;
  height: 36px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.25));
}

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

.play-store-eyebrow {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.play-store-copy strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.play-store-status {
  align-self: start;
  padding: 5px 8px;
  border: 1px solid rgba(104, 216, 210, 0.44);
  border-radius: 999px;
  color: #b9fff4;
  background: rgba(35, 209, 139, 0.14);
  font-size: 0.63rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.divisax-testing-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(88svh, 820px);
  overflow: auto;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  border-radius: 24px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(8, 23, 38, 0.35);
}

.divisax-testing-dialog::backdrop {
  background: rgba(5, 18, 31, 0.72);
  backdrop-filter: blur(5px);
}

.testing-dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
}

.testing-dialog-mark,
.testing-step-number {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--deep));
  font-weight: 950;
}

.testing-dialog-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.testing-dialog-header h2 {
  margin: 3px 0 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.15;
}

.testing-dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font: 800 1.6rem/1 sans-serif;
}

.testing-account-warning,
.testing-help-note {
  margin: 20px 22px 0;
  padding: 15px 17px;
  border: 1px solid color-mix(in srgb, #f2a900 48%, var(--line));
  border-radius: 16px;
  background: color-mix(in srgb, #f2a900 10%, var(--paper));
  line-height: 1.5;
}

.testing-account-warning strong,
.testing-account-warning span {
  display: block;
}

.testing-account-warning span {
  margin-top: 4px;
  color: var(--muted);
}

.testing-steps {
  display: grid;
  margin: 10px 22px 0;
  padding: 0;
  list-style: none;
}

.testing-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.testing-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.testing-steps h3 {
  margin: 5px 0 6px;
  font-size: 1.08rem;
}

.testing-steps p {
  margin: 0 0 13px;
  color: var(--muted);
  line-height: 1.55;
}

.testing-steps .btn {
  width: fit-content;
  max-width: 100%;
}

.testing-help-note {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--paper));
}

.testing-dialog-actions {
  display: flex;
  justify-content: flex-end;
  padding: 20px 22px 24px;
}

@media (max-width: 560px) {
  .divisax-download-button {
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .play-store-status {
    grid-column: 2;
    justify-self: start;
    margin-top: -2px;
  }

  .play-store-copy strong {
    white-space: normal;
  }

  .divisax-testing-dialog {
    width: calc(100% - 18px);
    max-height: 92svh;
    border-radius: 20px;
  }

  .testing-dialog-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px;
  }

  .testing-dialog-mark {
    display: none;
  }

  .testing-account-warning,
  .testing-help-note,
  .testing-steps {
    margin-right: 16px;
    margin-left: 16px;
  }

  .testing-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .testing-step-number {
    width: 32px;
    height: 32px;
  }

  .testing-steps .btn,
  .testing-dialog-actions .btn {
    width: 100%;
  }

  .testing-dialog-actions {
    padding: 18px 16px 20px;
  }
}

/* Single document scroller: prevent the header and content from moving as separate layers. */
html {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body,
body.store-home,
body.lean-site,
body.legal-page {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: clip;
  overflow-y: visible;
  position: static;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: auto;
}

body > .topbar,
body > main,
body > .footer {
  overflow-y: visible;
  transform: none;
  contain: none;
}

@supports not (overflow: clip) {
  body,
  body.store-home,
  body.lean-site,
  body.legal-page {
    overflow-x: visible;
  }
}

@media (max-width: 760px) {
  body > .topbar .app-menu-panel {
    max-height: none;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }
}

/* Tablet navigation safety: keep Apps y juegos fully inside the viewport. */
@media (min-width: 761px) and (max-width: 1280px) {
  body > .topbar .app-menu-panel {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    z-index: 1000;
    width: min(520px, calc(100vw - 36px));
    max-height: calc(100dvh - 104px);
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-8px);
  }

  body > .topbar .app-menu-panel::before {
    display: none;
  }

  body > .topbar .nav-dropdown.is-open .app-menu-panel,
  body > .topbar .nav-dropdown:hover .app-menu-panel {
    transform: translateY(0);
  }
}

@media (min-width: 761px) and (max-width: 1280px) and (orientation: landscape) {
  body > .topbar .app-menu-panel {
    top: 72px;
    max-height: calc(100dvh - 88px);
  }
}

/* BLADY A. studio banners: solid blue identity for the three pillars. */
.garena-feature-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  align-content: end;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #063b8f, #006dff);
  box-shadow: 0 20px 44px rgba(0, 78, 181, 0.24);
  isolation: isolate;
}

.garena-feature-grid article:nth-child(2) {
  background: linear-gradient(145deg, #0754bb, #008cff);
}

.garena-feature-grid article:nth-child(3) {
  background: linear-gradient(145deg, #082f68, #005ecf);
}

.garena-feature-grid article::before {
  position: absolute;
  top: -54px;
  right: -32px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.garena-feature-grid article::after {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: #68d8ff;
  box-shadow: 60px 0 0 rgba(255, 255, 255, 0.3);
  content: "";
}

.garena-feature-grid strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.garena-feature-grid p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.6;
}

.garena-feature-grid article:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 26px 54px rgba(0, 78, 181, 0.32);
  transform: translateY(-3px);
}

:root[data-theme="dark"] .garena-feature-grid article,
:root[data-theme="dark"] .garena-feature-grid article:nth-child(2),
:root[data-theme="dark"] .garena-feature-grid article:nth-child(3) {
  border-color: rgba(104, 216, 255, 0.26);
  background: linear-gradient(145deg, #052b64, #0054bd);
}

@media (max-width: 760px) {
  .garena-feature-grid article {
    min-height: 190px;
    border-radius: 19px;
  }
}

/* iOS scroll unity: keep the mobile header in the document flow. */
@media (max-width: 760px) {
  body > .topbar,
  body.store-home > .topbar,
  body.lean-site > .topbar,
  body.legal-page > .topbar {
    position: relative;
    top: auto;
    z-index: 20;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
  }

  body > main {
    position: relative;
    z-index: 1;
  }
}

/* Unified page scroll on every browser and viewport. */
body > .topbar,
body.store-home > .topbar,
body.lean-site > .topbar,
body.legal-page > .topbar {
  position: relative;
  top: auto;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
}

/* NYC — New York City Run */
.app-menu-game .app-menu-icon {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #06152e;
  background-image: url("data:image/jpeg;base64,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");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: .66rem;
  font-weight: 950;
  isolation: isolate;
}

.app-menu-game .app-menu-icon::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  place-items: center;
  background: linear-gradient(145deg, #0678df, #5a37df);
  content: "NYC";
}

.app-menu-game .app-menu-icon img {
  display: none !important;
}

.nyc-main {
  width: min(1380px, calc(100% - 48px));
  margin: 30px auto 70px;
}

.nyc-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(85, 199, 255, .34);
  border-radius: 30px;
  background: #031127;
  box-shadow: 0 34px 80px rgba(1, 20, 56, .3);
}

.nyc-hero-image,
.nyc-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nyc-hero-image {
  object-fit: cover;
  object-position: center;
}

.nyc-hero-shade {
  background: linear-gradient(90deg, rgba(2, 11, 30, .98) 0%, rgba(3, 17, 43, .82) 39%, rgba(3, 16, 40, .15) 73%), linear-gradient(0deg, rgba(1, 8, 23, .54), transparent 55%);
}

.nyc-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(620px, 56%);
  min-height: inherit;
  padding: clamp(42px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.nyc-status,
.nyc-section-tag,
.nyc-home-teaser > div > span {
  color: #79e6ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.nyc-status {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(111, 224, 255, .4);
  border-radius: 999px;
  background: rgba(4, 37, 76, .78);
}

.nyc-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35ecb0;
  box-shadow: 0 0 0 5px rgba(53, 236, 176, .13), 0 0 18px #35ecb0;
}

.nyc-title-icon {
  width: 86px;
  height: 86px;
  margin: 34px 0 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,.34);
}

.nyc-title-icon-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0678df, #5a37df);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.nyc-title-brand {
  margin: 34px 0 18px;
  flex: 0 0 auto;
}

.nyc-eyebrow {
  margin: 0 0 5px;
  color: #bed2ec;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.nyc-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(5.4rem, 12vw, 10rem);
  line-height: .8;
  letter-spacing: -.07em;
  text-shadow: 0 0 35px rgba(36, 195, 255, .42);
}

.nyc-full-name {
  margin: 18px 0 24px;
  color: #55d8ff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nyc-lead {
  max-width: 580px;
  margin: 0 0 30px;
  color: #e6f1ff;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.nyc-primary-cta,
.nyc-waitlist a {
  display: inline-flex;
  gap: 24px;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #031127;
  background: linear-gradient(135deg, #59e4ff, #2c9cff);
  box-shadow: 0 15px 34px rgba(27, 167, 255, .3);
  font-weight: 900;
  text-decoration: none;
}

.nyc-hero-copy > small {
  margin-top: 12px;
  color: #aebfd4;
}

.nyc-intro,
.nyc-progress,
.nyc-waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  margin-top: 70px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 28px;
}

.nyc-intro {
  align-items: center;
  background: linear-gradient(135deg, #062d70, #006fe8);
  color: #fff;
}

.nyc-intro h2,
.nyc-progress h2,
.nyc-waitlist h2 {
  margin: 10px 0 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.nyc-intro > p,
.nyc-progress p,
.nyc-waitlist p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.nyc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.nyc-feature-grid article {
  min-height: 280px;
  padding: 34px;
  border: 1px solid #cfe1f7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 60, 115, .1);
}

.nyc-feature-grid article > span {
  color: #087aed;
  font-weight: 950;
}

.nyc-feature-grid h3 {
  margin: 70px 0 12px;
  color: #09213e;
  font-size: 1.45rem;
}

.nyc-feature-grid p {
  color: #536981;
  line-height: 1.65;
}

.nyc-progress {
  color: #fff;
  background: #06162d;
}

.nyc-progress-list {
  display: grid;
  gap: 14px;
}

.nyc-progress-list article {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(116, 212, 255, .28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 58, 100, .96), rgba(10, 39, 72, .96));
  box-shadow: inset 4px 0 0 #1ba7ff, 0 14px 30px rgba(0, 0, 0, .14);
}

.nyc-progress-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nyc-progress-list article > div span {
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.nyc-progress-list h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: -.015em;
}

.nyc-progress-list p {
  margin: 0;
  color: #b9cae0;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.55;
}

.nyc-progress-list strong {
  padding: 7px 11px;
  border: 1px solid rgba(103, 220, 255, .36);
  border-radius: 999px;
  color: #8ce8ff;
  background: rgba(0, 153, 221, .16);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .03em;
  white-space: nowrap;
}

.nyc-waitlist {
  align-items: center;
  color: #fff;
  background: linear-gradient(125deg, #0057c8, #00347b);
}

.nyc-waitlist > div > span {
  color: #7fe9ff;
  font-weight: 900;
  letter-spacing: .14em;
}

.nyc-waitlist a {
  justify-self: end;
  color: #06417d;
  background: #fff;
}

.nyc-home-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  background: #05152e;
  box-shadow: 0 24px 54px rgba(0, 32, 83, .25);
}

.nyc-home-teaser > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.nyc-home-teaser > div {
  display: flex;
  padding: clamp(34px, 6vw, 72px);
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.nyc-home-teaser h2 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.nyc-home-teaser p {
  color: #cad9ec;
  font-size: 1.08rem;
  line-height: 1.65;
}

.nyc-home-teaser a {
  margin-top: 16px;
  color: #69dcff;
  font-weight: 900;
  text-decoration: none;
}

:root[data-theme="dark"] .nyc-feature-grid article {
  border-color: #21496f;
  background: #091d34;
}

:root[data-theme="dark"] .nyc-feature-grid h3 {
  color: #f2f8ff;
}

:root[data-theme="dark"] .nyc-feature-grid p {
  color: #b7c9dd;
}

@media (max-width: 900px) {
  .nyc-main {
    width: min(100% - 28px, 1380px);
    margin-top: 18px;
  }

  .nyc-hero {
    min-height: 780px;
  }

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

  .nyc-hero-shade {
    background: linear-gradient(0deg, rgba(2, 11, 30, .99) 0%, rgba(2, 11, 30, .78) 57%, rgba(2, 11, 30, .2) 100%);
  }

  .nyc-hero-copy {
    width: auto;
    padding: 34px 26px;
    justify-content: flex-end;
  }

  .nyc-intro,
  .nyc-progress,
  .nyc-waitlist,
  .nyc-home-teaser {
    grid-template-columns: 1fr;
  }

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

  .nyc-feature-grid article {
    min-height: 0;
  }

  .nyc-feature-grid h3 {
    margin-top: 34px;
  }

  .nyc-waitlist a {
    width: 100%;
    justify-self: stretch;
  }

  .nyc-home-teaser > img {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .nyc-main {
    width: min(100% - 20px, 1380px);
  }

  .nyc-hero {
    min-height: 720px;
    border-radius: 22px;
  }

  .nyc-title-icon {
    width: 70px;
    margin-top: 24px;
  }

  .nyc-hero h1 {
    font-size: 5.7rem;
  }

  .nyc-intro,
  .nyc-progress,
  .nyc-waitlist {
    margin-top: 24px;
    padding: 28px 22px;
    border-radius: 20px;
  }
}

/* Compact NYC announcement: detailed information stays on the game page. */
.nyc-home-teaser {
  display: grid;
  min-height: 0;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(77, 198, 255, .28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 0%, rgba(108, 61, 255, .22), transparent 34%),
    linear-gradient(135deg, #06152d, #0a2850);
  box-shadow: 0 18px 42px rgba(3, 34, 79, .2);
}

.nyc-home-mark {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(104, 224, 255, .42);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #0678df, #5a37df);
  box-shadow: inset 0 1px rgba(255,255,255,.32), 0 10px 28px rgba(0, 119, 255, .28);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.nyc-home-copy {
  display: grid;
  gap: 5px;
  padding: 0;
  color: #fff;
}

.nyc-home-copy > span {
  color: #72e4ff;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.nyc-home-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.nyc-home-copy p {
  margin: 0;
  color: #c9d9ec;
  font-size: .98rem;
}

.nyc-home-teaser > a {
  display: inline-flex;
  min-height: 48px;
  gap: 18px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(116, 224, 255, .38);
  border-radius: 12px;
  color: #fff;
  background: rgba(27, 119, 211, .28);
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .nyc-home-teaser {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border-radius: 18px;
  }

  .nyc-home-mark {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .nyc-home-copy > span {
    font-size: .62rem;
  }

  .nyc-home-copy h2 {
    font-size: 1.45rem;
  }

  .nyc-home-copy p {
    font-size: .9rem;
  }

  .nyc-home-teaser > a {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* NYC futuristic concept gallery */
.nyc-world {
  margin-top: 70px;
}

.nyc-world-heading {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin-bottom: 30px;
}

.nyc-world-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.nyc-world-heading p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.nyc-concept-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.nyc-concept-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(64, 194, 255, .28);
  border-radius: 26px;
  background: #06162c;
  box-shadow: 0 24px 52px rgba(2, 27, 70, .22);
  isolation: isolate;
}

.nyc-concept-wide {
  min-height: 620px;
  grid-column: 1 / -1;
}

.nyc-concept-card::after {
  position: absolute;
  inset: 36% 0 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 10, 27, .98), rgba(2, 10, 27, .05));
  content: "";
  pointer-events: none;
}

.nyc-concept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.nyc-concept-card:hover img {
  transform: scale(1.025);
}

.nyc-concept-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
}

.nyc-concept-card figcaption span {
  color: #67e1ff;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.nyc-concept-card figcaption strong {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.nyc-concept-card figcaption p {
  max-width: 610px;
  margin: 0;
  color: #c7d9ee;
  line-height: 1.55;
}

.nyc-concept-note {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: .82rem;
}

.app-menu-icon img[src*="nyc-rush-icon"] {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  .nyc-world {
    margin-top: 38px;
  }

  .nyc-concept-gallery {
    grid-template-columns: 1fr;
  }

  .nyc-concept-wide {
    min-height: 500px;
    grid-column: auto;
  }

  .nyc-concept-card {
    min-height: 460px;
    border-radius: 20px;
  }

  .nyc-concept-card img {
    object-position: 58% center;
  }
}

/* DivisaX editorial layout: clean hierarchy with a deliberate stacked-screenshot effect. */
.product-page .app-store-panel {
  gap: clamp(34px, 6vw, 72px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-page .divisax-carousel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 7vw, 96px);
  overflow: visible;
  padding: clamp(38px, 6vw, 76px);
  border: 0;
  border-radius: 28px;
  color: #f5f9ff;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 133, 255, .18), transparent 26rem),
    linear-gradient(135deg, #071526, #0b2138);
  box-shadow: 0 28px 66px rgba(4, 27, 54, .22);
}

.product-page .carousel-copy {
  gap: 18px;
  align-content: center;
}

.product-page .carousel-copy .label {
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(101, 220, 255, .28);
  border-radius: 999px;
  color: #74e2ff;
  background: rgba(19, 111, 180, .18);
  font-size: .72rem;
  letter-spacing: .12em;
}

.product-page .carousel-copy h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.product-page .carousel-copy p {
  max-width: 680px;
  color: #bdcee2;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600;
  line-height: 1.7;
}

.product-page .carousel-stage {
  width: min(100%, 390px);
  justify-self: end;
}

.product-page .carousel-stage::before,
.product-page .carousel-stage::after {
  display: block;
  inset: 18px -10px -14px 18px;
  border: 1px solid rgba(93, 190, 255, .24);
  border-radius: 20px;
  background: #0b1d31;
  content: "";
  box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
}

.product-page .carousel-stage::after {
  inset: 34px -18px -25px 34px;
  border-color: rgba(93, 190, 255, .14);
  background: #0a192a;
  opacity: .78;
}

.product-page .carousel-slide {
  border: 1px solid rgba(93, 190, 255, .3);
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
}

.product-page .carousel-slide figcaption {
  display: none;
}

.product-page .carousel-controls {
  margin-top: 2px;
}

.product-page .carousel-controls > button {
  width: 46px;
  height: 46px;
  border-color: rgba(104, 213, 255, .26);
  color: #fff;
  background: #102b47;
}

.product-page .carousel-dots button {
  border-color: rgba(104, 213, 255, .34);
  background: transparent;
}

.product-page .carousel-dots button.is-active {
  background: #49cfff;
}

.product-page .divisax-feedback-panel,
.product-page .divisax-support-router {
  margin: 0;
  border-radius: 24px;
  box-shadow: none;
}

.product-page .app-links {
  gap: 14px;
}

.product-page .app-links > a {
  border-radius: 18px;
  box-shadow: none;
}

@media (max-width: 1040px) {
  .product-page .divisax-carousel {
    grid-template-columns: 1fr;
  }

  .product-page .carousel-stage {
    width: min(100%, 360px);
    justify-self: center;
  }

  .product-page .carousel-controls {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .product-page .app-store-panel {
    gap: 30px;
  }

  .product-page .divisax-carousel {
    gap: 30px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .product-page .carousel-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .product-page .carousel-stage {
    width: min(100%, 300px);
    justify-self: center;
  }
}

/* Definitive single-scroll layer. Keep this as the final responsive rule. */
html {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body,
body.store-home,
body.lean-site,
body.legal-page {
  position: static !important;
  height: auto !important;
  min-height: 100% !important;
  overflow-x: clip !important;
  overflow-y: visible !important;
  touch-action: pan-y;
}

body > .topbar,
body.store-home > .topbar,
body.lean-site > .topbar,
body.legal-page > .topbar {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body > main,
body > .footer {
  position: relative;
  height: auto;
  overflow-y: visible !important;
  transform: none !important;
  contain: none !important;
}

@media (max-width: 760px) {
  body > .topbar .app-menu-panel {
    position: absolute;
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: auto;
  }
}

