:root {
  --bg: #0a0f1d;
  --bg-2: #0d1424;
  --surface: #131c30;
  --surface-2: #182238;
  --text: #e9eef7;
  --text-strong: #ffffff;
  --muted: #94a3b8;
  --muted-2: #6b7894;
  /* Aligned with shared branding (amber) — see /branding/svgblack + gen_app_icon.cjs */
  --accent: #ffc107;
  --accent-2: #ffd24a;
  --accent-dim: #c79100;
  --accent-soft: rgba(255, 193, 7, 0.14);
  --card: #1a2438;
  --card-2: #202c44;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.6),
    0 10px 30px -15px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 10px 30px -20px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue",
    Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-drawer-open {
  overflow: hidden;
}

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

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      ellipse 80% 55% at 80% -10%,
      rgba(255, 193, 7, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 0% 10%,
      rgba(91, 124, 250, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 110%,
      rgba(199, 145, 0, 0.12),
      transparent 50%
    ),
    var(--bg);
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0;
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: nowrap;
}

.header-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  text-decoration: none;
}

.brand-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px -6px rgba(255, 193, 7, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: color 0.15s, background-color 0.15s;
}

.nav a:hover {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.04);
}

.nav .nav-cta {
  margin-inline-start: 0.5rem;
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 600;
  padding: 0.55rem 0.95rem;
}

.nav .nav-cta:hover {
  background: linear-gradient(135deg, #ffe082, var(--accent-2));
  color: #1a1a1a;
}

/* Language switcher */
.header-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 0.45rem 2rem 0.45rem 0.65rem;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  max-width: 11rem;
}

.lang-select:hover {
  border-color: rgba(255, 193, 7, 0.35);
  background-color: rgba(255, 193, 7, 0.08);
}

.lang-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-select option {
  background: #131c30;
  color: var(--text);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.site-header.nav-open .nav-backdrop {
  display: block;
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none !important;
  }

  .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

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

  .header-cluster {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: min(100%, 12rem);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(19rem, 88vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 4.75rem 1.15rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    background: color-mix(in oklab, var(--bg-2) 97%, black);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 60;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  [dir="rtl"] .nav {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--border);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(-105%);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
  }

  .nav .nav-cta {
    margin-inline-start: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Sections / typography ---------- */
.section {
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-strong);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 193, 7, 0.05);
  }
}

.hero h1 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-strong);
}

.grad {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 50%, #ff8f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 540px;
}

@media (max-width: 920px) {
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 920px) {
  .hero-ctas {
    justify-content: center;
  }
}

.trust-row {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .trust-row {
    justify-content: center;
  }
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-row span {
  color: var(--accent);
}

/* ---------- Store badges (Google Play–style) ----------
   Live Play URL is set in site.js (PLAY_STORE_URL) on anchors.play-store-badge */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1rem 0.65rem 0.9rem;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: inherit;
  min-width: 188px;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 20px -10px rgba(0, 0, 0, 0.6);
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 193, 7, 0.4);
  background: #1a2236;
}

.store-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.badge-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.badge-pre {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.badge-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 2px;
}

.store-badge-mock {
  background: transparent;
  color: var(--muted);
  border-style: dashed;
  cursor: default;
}

.store-badge-mock:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- Phone mockups ---------- */
.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .hero-visual {
    min-height: 480px;
    margin-top: 1.5rem;
  }
}

.halo {
  position: absolute;
  inset: 10% -5% 10% 0;
  background: radial-gradient(
      circle at 70% 35%,
      rgba(255, 193, 7, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 145, 0, 0.16),
      transparent 60%
    );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(160deg, #0d1322, #1a2236);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 14px;
  z-index: 1;
}

.phone-front {
  transform: rotate(-3deg);
}

.phone-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-15%, -45%) rotate(7deg) scale(0.85);
  opacity: 0.95;
  z-index: 0;
  filter: saturate(0.85);
}

@media (max-width: 720px) {
  .phone-back {
    display: none;
  }
  .phone-front {
    transform: none;
  }
  .phone {
    width: 260px;
    height: 520px;
  }
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #05080f;
  border-radius: 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0e1626 0%, #131c30 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 36px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Screens grid (smaller, no rotation) */
.phone-screen-card {
  width: 240px;
  height: 480px;
  transform: none;
}

/* ---------- Faux app UI ---------- */
.ui-appbar {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 6px;
}

.ui-burger,
.ui-search {
  width: 18px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    var(--muted) 0,
    var(--muted) 2px,
    transparent 2px,
    transparent 6px,
    var(--muted) 6px,
    var(--muted) 8px,
    transparent 8px,
    transparent 12px,
    var(--muted) 12px,
    var(--muted) 14px
  );
  opacity: 0.8;
}

.ui-search {
  background: none;
  border: 2px solid var(--muted);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
  justify-self: end;
  opacity: 0.7;
}

.ui-search::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: var(--muted);
  bottom: -3px;
  right: -3px;
  transform: rotate(45deg);
  border-radius: 1px;
}

.ui-title {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.ui-search-bar {
  margin: 4px 4px 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.ui-search-icon {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  position: relative;
}

.ui-search-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 1.5px;
  background: var(--muted);
  bottom: -2px;
  right: -2px;
  transform: rotate(45deg);
  border-radius: 1px;
}

.ui-placeholder {
  color: var(--muted-2);
  font-size: 11px;
}

.ui-chips,
.ui-tabs {
  display: flex;
  gap: 6px;
  padding: 2px 4px;
  flex-wrap: wrap;
}

.ui-chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.ui-chip-on {
  color: #1a1a1a;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

.ui-tab {
  padding: 4px 8px 6px;
  font-size: 10px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.ui-tab-on {
  color: var(--accent);
  border-color: var(--accent);
}

.ui-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ui-item {
  display: grid;
  grid-template-columns: 32px 1fr 14px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.ui-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  position: relative;
  flex-shrink: 0;
}

.ui-avatar::after {
  /* tiny minaret silhouette using a CSS shape */
  content: "";
  position: absolute;
  width: 6px;
  height: 14px;
  background: #1a1a1a;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  border-radius: 50% 50% 2px 2px / 60% 60% 2px 2px;
  opacity: 0.85;
}

.ui-avatar-2 {
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
}

.ui-avatar-3 {
  background: linear-gradient(135deg, #5b7cfa, #3849b1);
}

.ui-avatar-4 {
  background: linear-gradient(135deg, #ec407a, #ad1457);
}

.ui-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ui-line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  width: 100%;
}

.ui-line-title {
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14));
}

.ui-line-sub {
  height: 6px;
  width: 65%;
  opacity: 0.75;
}

.w-90 { width: 90%; }
.w-85 { width: 85%; }
.w-80 { width: 80%; }
.w-75 { width: 75%; }
.w-70 { width: 70%; }
.w-65 { width: 65%; }
.w-60 { width: 60%; }
.w-55 { width: 55%; }
.w-50 { width: 50%; }
.w-45 { width: 45%; }

.ui-trail {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--muted);
  border-top: 2px solid var(--muted);
  transform: rotate(45deg);
  opacity: 0.6;
}

.ui-fab {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(255, 193, 7, 0.7);
}

/* Event-detail mock */
.ui-event-hero {
  margin: 4px 4px 0;
  padding: 14px 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18), rgba(91, 124, 250, 0.14));
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ui-event-tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ui-event-title {
  display: block;
  height: 12px;
  width: 80%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

.ui-event-sub {
  display: block;
  height: 7px;
  width: 60%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
}

.ui-event-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 0 4px;
  border-bottom: 1px solid var(--border);
}

.ui-icon-pin,
.ui-icon-clock,
.ui-icon-people {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
}

.ui-icon-clock {
  border-radius: 50%;
}

.ui-icon-people {
  border-radius: 4px;
}

.ui-event-cta {
  margin: auto 4px 4px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.ui-feed-card {
  margin: 0 4px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-feed-meta {
  display: block;
  height: 6px;
  width: 35%;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.7;
}

/* ---------- Features grid ---------- */
.features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.35);
  box-shadow: 0 16px 40px -24px rgba(255, 193, 7, 0.35),
    var(--shadow-card);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Screens ---------- */
.section-screens {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 100%
  );
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: end;
  justify-items: center;
}

@media (max-width: 900px) {
  .screens-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.screen {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}

.screen-mid {
  transform: translateY(-1.5rem);
}

@media (max-width: 900px) {
  .screen-mid {
    transform: none;
  }
}

.screen figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 240px;
}

/* ---------- CTA ---------- */
.section-cta {
  padding: 3rem 0 6rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
      135deg,
      rgba(255, 193, 7, 0.14),
      rgba(91, 124, 250, 0.06) 60%,
      transparent
    ),
    linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 760px) {
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.cta-text h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta-text p {
  margin: 0;
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .cta-buttons {
    justify-content: center;
  }
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.25rem 1.1rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.faq-list details[open] {
  border-color: rgba(255, 193, 7, 0.3);
  background: var(--card-2);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list a {
  color: var(--accent);
  text-decoration: none;
}

.faq-list a:hover {
  text-decoration: underline;
}

/* ---------- Contact ---------- */
.section-contact {
  padding-top: 1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
      135deg,
      rgba(255, 193, 7, 0.10),
      rgba(91, 124, 250, 0.06) 60%,
      transparent
    ),
    linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 820px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.contact-info .kicker {
  margin-bottom: 0.6rem;
}

.contact-info h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.contact-info .section-lead {
  margin: 0 0 1.4rem;
}

.contact-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.contact-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(255, 193, 7, 0.2);
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, background-color 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.contact-form select option {
  background: #1a2438;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-2);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.18);
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status[data-kind="error"] {
  color: #ff8a8a;
}

.form-status[data-kind="ok"] {
  color: var(--accent-2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 0.25rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
  box-shadow: 0 10px 24px -12px rgba(255, 193, 7, 0.6);
}

.btn-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffe082, var(--accent-2));
  box-shadow: 0 14px 30px -12px rgba(255, 193, 7, 0.7);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-submit:active {
  transform: translateY(0);
}

.form-hint {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.85rem;
  flex: 1;
  min-width: 220px;
}

.form-hint a {
  color: var(--accent);
  text-decoration: none;
}

.form-hint a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .store-badge {
    min-width: 0;
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-hint {
    min-width: 0;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-tag {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-nav h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  font-weight: 600;
}

.footer-nav a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.footer-bottom .copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .eyebrow .dot {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
