:root {
  --bg: #f5f6f3;
  --bg-soft: #fbfbf8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --line: rgba(59, 76, 136, 0.12);
  --line-strong: rgba(73, 105, 225, 0.2);
  --text: #15203a;
  --muted: #5f6981;
  --brand: #4969e1;
  --brand-deep: #2840a6;
  --accent: #f7b64b;
  --accent-soft: rgba(247, 182, 75, 0.18);
  --shadow: 0 24px 60px rgba(34, 48, 92, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(247, 182, 75, 0.2), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(73, 105, 225, 0.15), transparent 28%),
    linear-gradient(180deg, #f8f8f4 0%, #eff2fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
.brand-name,
.store-name {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 248, 244, 0.78);
  border-bottom: 1px solid rgba(21, 32, 58, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(73, 105, 225, 0.18);
}

.brand-name,
.brand-tag {
  display: block;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.brand-tag {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: #3f4960;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.nav-cta,
.store-card,
.feature-card,
.split-panel,
.screen-card,
.trust-cards article,
.faq-list details,
.coming-soon {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-cta {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.store-card:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 28px;
}

.eyebrow,
.section-label,
.coming-label {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: #111b33;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.store-card {
  min-width: 210px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 180ms ease, border-color 180ms ease;
}

.store-card.primary {
  background: linear-gradient(135deg, #4969e1 0%, #3350c5 100%);
  color: #fff;
  border-color: transparent;
}

.store-card.primary .store-label {
  color: rgba(255, 255, 255, 0.74);
}

.store-topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  flex: 0 0 auto;
}

.store-card:not(.primary) .store-icon {
  background: rgba(73, 105, 225, 0.08);
}

.store-icon svg {
  width: 26px;
  height: 26px;
}

.store-icon.google svg {
  width: 28px;
  height: 28px;
}

.store-card:hover {
  border-color: var(--line-strong);
}

.store-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.store-name {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-points span,
.proof-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(73, 105, 225, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: #33405f;
  font-size: 0.92rem;
  font-weight: 600;
}

.coming-soon {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 255, 0.78)),
    var(--surface);
}

.coming-soon h2 {
  margin: 0;
  font-size: 1.7rem;
  color: #16203b;
}

.coming-soon p:last-child {
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  min-height: 780px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
}

.orb-one {
  top: 80px;
  right: -20px;
  width: 260px;
  height: 260px;
  background: rgba(247, 182, 75, 0.28);
}

.orb-two {
  left: 20px;
  bottom: 40px;
  width: 320px;
  height: 320px;
  background: rgba(73, 105, 225, 0.18);
}

.phone-stack {
  position: absolute;
  inset: 0;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  background: #101423;
  border: 10px solid rgba(255, 255, 255, 0.95);
  border-radius: 42px;
  box-shadow: 0 34px 80px rgba(29, 42, 87, 0.26);
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-card-main {
  top: 26px;
  left: 76px;
  width: min(100%, 350px);
  aspect-ratio: 1290 / 2796;
  transform: rotate(-8deg);
}

.phone-card-side {
  top: 0;
  right: 26px;
  width: min(100%, 290px);
  aspect-ratio: 1290 / 2796;
  transform: rotate(8deg);
}

.phone-card-bottom {
  bottom: 8px;
  right: 100px;
  width: min(100%, 260px);
  aspect-ratio: 1290 / 2796;
  transform: rotate(2deg);
}

.proof-strip,
.features,
.split-section,
.screens,
.trust-section,
.faq {
  padding: 56px 0;
}

.proof-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.proof-strip {
  padding-top: 12px;
}

.proof-grid h2,
.section-heading h2,
.split-panel h2,
.trust-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  color: #12203d;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.feature-grid,
.screens-grid,
.trust-cards {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.screen-card,
.trust-cards article,
.split-panel,
.faq-list details {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
}

.feature-card {
  padding: 28px;
}

.feature-card h3,
.trust-cards h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #18233f;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #a06600;
  font-size: 0.85rem;
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.split-panel {
  padding: 34px;
}

.steps,
.pro-list {
  margin: 24px 0 0;
  padding-left: 20px;
}

.steps li,
.pro-list li {
  margin-bottom: 16px;
}

.steps strong {
  color: #17233f;
}

.highlight-panel {
  background:
    radial-gradient(circle at top right, rgba(247, 182, 75, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 255, 0.9));
}

.screens-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  align-items: start;
}

.screen-card {
  padding: 18px;
  max-width: 360px;
  width: 100%;
  justify-self: center;
}

.screen-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1290 / 2796;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(28, 42, 85, 0.18);
  object-fit: contain;
}

.screen-card figcaption {
  padding: 18px 10px 6px;
  color: var(--muted);
  line-height: 1.7;
}

.screen-card strong {
  display: block;
  margin-bottom: 6px;
  color: #17223f;
  font-size: 1.15rem;
}

.trust-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-cards article {
  padding: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #16213d;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 18px 0 42px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(21, 32, 58, 0.08);
}

.brand-footer img {
  width: 48px;
  height: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  color: #3f4960;
}

.footer-credit {
  padding-top: 14px;
  text-align: center;
}

.footer-credit a {
  color: #6a738c;
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--brand);
}

html[dir="rtl"] .steps,
html[dir="rtl"] .pro-list {
  padding-left: 0;
  padding-right: 20px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .proof-grid,
  .trust-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 700px;
    max-width: 640px;
    margin: 0 auto;
  }

  .phone-card-main {
    left: 48px;
  }

  .phone-card-bottom {
    right: 60px;
  }

  .feature-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .nav {
    min-height: 78px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .feature-grid,
  .screens-grid,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .screen-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand-tag,
  .nav-cta {
    display: none;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-card {
    width: 100%;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-card {
    border-width: 8px;
    border-radius: 30px;
  }

  .phone-card-main {
    left: 10px;
    width: 52%;
  }

  .phone-card-side {
    right: 0;
    width: 44%;
  }

  .phone-card-bottom {
    right: 44px;
    width: 40%;
  }

  .feature-card,
  .split-panel,
  .screen-card,
  .trust-cards article,
  .faq-list details,
  .coming-soon {
    border-radius: 24px;
  }

  .feature-card,
  .split-panel,
  .trust-cards article {
    padding: 24px;
  }
}
