:root {
  color-scheme: light dark;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eaf1f7;
  --text: #132333;
  --muted: #5d6e7d;
  --primary: #12304a;
  --primary-strong: #0a2032;
  --accent: #27a6a1;
  --accent-soft: #d9f4f1;
  --border: #d6e0e8;
  --success: #147a4f;
  --warning: #8a5a10;
  --shadow: 0 18px 60px rgba(18, 48, 74, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
  --focus: 0 0 0 3px rgba(39, 166, 161, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #08131d;
    --surface: #102231;
    --surface-soft: #0d1c29;
    --text: #eff6fb;
    --muted: #b4c2cf;
    --primary: #d7edf4;
    --primary-strong: #ffffff;
    --accent: #53c7c0;
    --accent-soft: #173f40;
    --border: #274052;
    --success: #67d8a8;
    --warning: #f0c36d;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: none; box-shadow: var(--focus); }
.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 32px), var(--shell)); margin-inline: auto; }
.narrow { max-width: 780px; }
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-block-end: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-block-size: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  inline-size: 42px;
  block-size: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), #256e9d);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(39, 166, 161, 0.26);
}
.site-nav { display: flex; justify-content: center; gap: 8px; }
.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 13px;
  border-radius: 10px;
  font-weight: 650;
}
.nav-link:hover, .nav-link.active { background: var(--surface); color: var(--text); }
.language-control select {
  min-block-size: 42px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  color: var(--text);
  padding-inline: 12px 34px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  inline-size: 44px;
  block-size: 44px;
}
.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(64px, 10vw, 128px);
  background:
    radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 76%, transparent), transparent);
}
[dir="rtl"] .hero { background-position: 15% 20%, center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}
.hero-copy h1, .page-hero h1, .app-detail-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 7vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
[dir="rtl"] .hero-copy h1, [dir="rtl"] .page-hero h1, [dir="rtl"] .app-detail-hero h1 { letter-spacing: 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
[dir="rtl"] .eyebrow { letter-spacing: 0; }
.hero-text, .page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
}
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 26px; }
.button {
  min-block-size: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
}
.button.primary { background: var(--primary); color: var(--bg); }
@media (prefers-color-scheme: dark) { .button.primary { color: #07121a; } }
.button.secondary { background: var(--surface); border-color: var(--border); color: var(--text); }
.button.ghost { background: transparent; border-color: var(--border); color: var(--text); }
.button.disabled { background: var(--surface-soft); color: var(--muted); border-color: var(--border); cursor: not-allowed; }
.button:hover:not(.disabled) { transform: translateY(-1px); }
.hero-panel {
  position: relative;
  min-block-size: 390px;
  display: grid;
  place-items: center;
}
.hero-logo {
  inline-size: clamp(160px, 26vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 34%;
  background: linear-gradient(145deg, #153d59, var(--accent));
  color: #fff;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
}
[dir="rtl"] .hero-logo { transform: rotate(7deg); }
.orbit { position: absolute; border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 50%; }
.orbit-one { inline-size: 340px; block-size: 340px; }
.orbit-two { inline-size: 430px; block-size: 250px; transform: rotate(28deg); }
.section { padding-block: clamp(58px, 8vw, 100px); }
.section-soft { background: var(--surface-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-block-end: 30px; }
.section-heading h2, .section h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.035em; }
[dir="rtl"] .section-heading h2, [dir="rtl"] .section h2 { letter-spacing: 0; }
.section-heading p { margin: 0; color: var(--muted); }
.text-link { color: var(--accent); font-weight: 800; text-decoration: none; white-space: nowrap; }
.app-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.app-card {
  min-inline-size: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(18, 48, 74, 0.06);
}
.app-card-top { display: flex; align-items: center; gap: 16px; }
.app-icon {
  inline-size: 76px;
  block-size: 76px;
  border-radius: 20px;
  object-fit: cover;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}
.app-card h3 { margin: 7px 0 0; font-size: 1.35rem; line-height: 1.2; }
.app-card > p { flex: 1; color: var(--muted); }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-block-size: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}
.status-pill.available { color: var(--success); background: color-mix(in srgb, var(--success) 14%, transparent); }
.status-pill.soon { color: var(--warning); background: color-mix(in srgb, var(--warning) 16%, transparent); }
.catalog-note { margin-block-start: 20px; color: var(--muted); font-size: 0.9rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-block-start: 28px; }
.value-card { padding: 26px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); }
.value-index { color: var(--accent); font-weight: 900; }
.value-card h3 { margin-block: 12px 8px; }
.value-card p { margin: 0; color: var(--muted); }
.ad-slot {
  min-block-size: clamp(90px, 14vw, 180px);
  display: grid;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--accent) 52%, var(--border));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  text-align: center;
  padding: 20px;
}
.ad-slot[data-ad-hidden="true"] { display: none; }
.page-hero, .app-detail-hero { padding-block: clamp(58px, 8vw, 96px); background: linear-gradient(180deg, var(--surface-soft), transparent); }
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); }
.app-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: center; }
.app-detail-icon-wrap { inline-size: clamp(190px, 26vw, 300px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 32%; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.app-detail-icon { inline-size: 72%; block-size: 72%; object-fit: cover; border-radius: 25%; }
.back-link { display: inline-block; margin-block-end: 22px; color: var(--muted); text-decoration: none; font-weight: 700; }
.detail-content { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 54px; }
.feature-list { padding-inline-start: 1.25rem; margin: 18px 0 0; }
.feature-list li + li { margin-block-start: 12px; }
.faq-list { display: grid; gap: 14px; margin-block-start: 24px; }
details { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-md); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); }
.content-card { padding: clamp(22px, 4vw, 34px); border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); }
.content-card h2 { margin-block-start: 0; }
.legal-stack { display: grid; gap: 18px; }
.meta-line { font-size: 0.9rem !important; }
.site-footer { padding-block: 54px 24px; border-block-start: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; }
.footer-grid p { color: var(--muted); max-width: 620px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; align-content: start; }
.footer-grid a { text-decoration: none; color: var(--muted); }
.footer-bottom { margin-block-start: 28px; padding-block-start: 18px; border-block-start: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; }
.root-redirect main { min-block-size: 100vh; display: grid; place-items: center; padding: 24px; }
.redirect-card { width: min(100%, 520px); padding: 44px; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.redirect-card .brand-mark { margin-inline: auto; }
.language-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-block-start: 24px; }

@media (max-width: 920px) {
  .app-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { min-block-size: 300px; }
  .app-detail-grid { grid-template-columns: 1fr; }
  .app-detail-icon-wrap { grid-row: 1; }
  .detail-content { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline: 16px;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .language-control { justify-self: end; }
  .language-control select { max-inline-size: 128px; }
  .section-heading { align-items: start; flex-direction: column; }
  .app-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .shell { width: min(calc(100% - 22px), var(--shell)); }
  .header-inner { gap: 8px; }
  .brand span:last-child { display: none; }
  .hero-copy h1 { font-size: clamp(2.3rem, 15vw, 3.6rem); }
  .hero-panel { min-block-size: 250px; }
  .orbit-one { inline-size: 250px; block-size: 250px; }
  .orbit-two { inline-size: 300px; block-size: 170px; }
  .card-actions .button, .hero-actions .button { inline-size: 100%; }
  .app-card { padding: 20px; }
  .redirect-card { padding: 30px 20px; }
}

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