:root {
  color-scheme: light;
  --bg: #f6f4f7;
  --bg-soft: #fbfafc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-strong: #121214;
  --surface-alt: #f0edf3;
  --border: rgba(28, 28, 30, 0.08);
  --border-strong: rgba(28, 28, 30, 0.14);
  --text: #17171a;
  --text-secondary: #5c5c65;
  --text-muted: #8f8f99;
  --accent: #dc4444;
  --accent-soft: rgba(220, 68, 68, 0.12);
  --success: #34c759;
  --shadow-soft: 0 20px 48px rgba(18, 18, 20, 0.08);
  --shadow-strong: 0 30px 90px rgba(13, 13, 15, 0.12);
  --radius-shell: 38px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --content-width: min(1280px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Heebo", "Noto Sans Hebrew", sans-serif;
  direction: rtl;
  text-align: start;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 96, 96, 0.18), transparent 28%),
    radial-gradient(circle at 0% 25%, rgba(220, 68, 68, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfbfd 0%, var(--bg) 35%, #efebf2 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: var(--content-width);
  margin: 20px auto;
  padding: 14px 14px 40px;
  border-radius: var(--radius-shell);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow-strong);
  overflow: clip;
}

.landing-page .site-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 56px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 12;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 38px rgba(16, 16, 18, 0.08);
}

.landing-page .site-header,
.landing-page .hero-grid,
.landing-page .section-heading,
.landing-page .value-grid,
.landing-page .screen-block,
.landing-page .steps-grid,
.landing-page .utility-grid,
.landing-page .cta-card,
.landing-page .footer {
  width: min(1180px, calc(100vw - 40px));
  margin-inline: auto;
}

.landing-page .site-header {
  margin-top: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 16px 34px rgba(220, 68, 68, 0.18);
}

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-nav a,
.header-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-link--filled {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--surface-strong);
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 18, 20, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.section {
  width: 100%;
  padding: 18px;
}

.landing-page .section {
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
}

.hero-section {
  display: grid;
  gap: 26px;
}

.landing-page .hero-section {
  padding-top: 28px;
  padding-bottom: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.hero-product {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-product__icon {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(220, 68, 68, 0.18);
}

.hero-product__copy {
  display: grid;
  gap: 6px;
}

.hero-product__copy strong {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-brand-gradient {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #f06060 0%, #dc4444 48%, #ff8c66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.hero-product__copy > span:last-child {
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  text-align: start;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead,
.hero-copy p,
.section-heading p,
.screen-copy p,
.value-card p,
.step-card p,
.utility-card p,
.cta-copy p {
  margin: 0;
  text-align: start;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-lead {
  max-width: 42ch;
  font-size: 1rem;
}

.hero-footnote {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.store-badge {
  min-width: 192px;
  min-height: 64px;
  padding: 12px 18px;
  display: inline-grid;
  align-content: center;
  justify-items: start;
  border-radius: 20px;
  border: 1px solid #1b1b1d;
  background: #111114;
  color: #fff;
}

.store-badge--light {
  border-color: #d7d2da;
  background: #fff;
  color: #101012;
}

.store-badge__overline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

.store-badge__title {
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 740px;
}

.section-panel,
.screen-block,
.utility-card,
.cta-card,
.legal-card {
  box-shadow: var(--shadow-soft);
}

.device-mock {
  position: relative;
  width: min(360px, 100%);
  box-shadow: none;
  background: none;
  filter: drop-shadow(0 22px 40px rgba(17, 17, 20, 0.14));
}

.device-mock--iphone {
  aspect-ratio: 1406 / 2822;
}

.device-mock--pixel {
  aspect-ratio: 1620 / 3136;
}

.device-mock__composite {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-device {
  position: absolute;
  margin: 0;
}

.hero-device--front {
  inset-inline-start: 118px;
  inset-block-start: 18px;
  width: min(360px, calc(100% - 88px));
}

.hero-device--back {
  inset-inline-start: 0;
  inset-block-start: 172px;
  width: min(286px, calc(100% - 180px));
  transform: rotate(-8deg);
}

.trust-item strong,
.screen-copy h2,
.value-card h3,
.step-card h3,
.utility-card h3,
.cta-copy h2 {
  text-align: start;
}

.section-panel,
.screen-block,
.cta-card {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
}

.section-panel {
  padding: 28px;
}

.landing-page .section-panel {
  padding: 84px 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
  box-shadow: none;
}

.landing-page .screen-section {
  padding: 88px 0;
}

.landing-page .utility-section {
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.landing-page .cta-section {
  padding: 96px 0 64px;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  max-width: 19ch;
  text-align: start;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading--compact h2 {
  max-width: none;
}

.value-grid,
.steps-grid,
.utility-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.step-card,
.utility-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
}

.value-card--accent {
  background: linear-gradient(180deg, rgba(220, 68, 68, 0.1), rgba(255, 255, 255, 0.88));
}

.value-card__number {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.screen-section {
  display: grid;
  gap: 22px;
}

.screen-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.screen-block--dark {
  border-color: #27272b;
  background: linear-gradient(180deg, #161619, #111114);
}

.screen-block--dark .screen-copy h2,
.screen-block--dark .screen-copy p,
.screen-block--dark .screen-points li {
  color: #fff;
}

.screen-block--dark .screen-copy p,
.screen-block--dark .screen-points li {
  color: rgba(255, 255, 255, 0.72);
}

.screen-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.screen-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.screen-points {
  margin: 0;
  padding-right: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
}

.screen-art {
  justify-self: center;
  width: min(380px, 100%);
  display: grid;
  place-items: center;
}

.screen-art .device-mock {
  width: 100%;
}

.screen-art--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(560px, 100%);
  padding: 0;
  background: none;
  box-shadow: none;
  align-items: end;
}

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

.step-card__index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--accent);
  font-weight: 800;
}

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

.landing-page .utility-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.utility-card {
  background: rgba(255, 255, 255, 0.78);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-color: #27272b;
  background: linear-gradient(180deg, #141417, #0f0f12);
}

.cta-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.cta-copy h2,
.cta-copy p {
  color: #fff;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.footer {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}

.footer-links a,
.footer p {
  color: var(--text-secondary);
  text-align: start;
}

.footer p {
  margin: 0;
  line-height: 1.7;
}

.legal-main {
  display: grid;
  gap: 22px;
}

.legal-hero {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 16px 18px 8px;
}

.legal-hero h1 {
  margin: 0;
  text-align: start;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-hero p,
.legal-card p,
.legal-card li {
  text-align: start;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

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

.legal-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
}

.legal-card h2 {
  margin: 0 0 12px;
  text-align: start;
}

.legal-card ul {
  margin: 0;
  padding-right: 18px;
}

.legal-card li + li {
  margin-top: 8px;
}

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

.back-link {
  color: var(--text-secondary);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .screen-block,
  .cta-card,
  .value-grid,
  .steps-grid,
  .utility-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    justify-items: center;
    gap: 18px;
    padding-top: 20px;
  }

  .hero-device {
    position: relative;
    inset: auto;
    margin: 0;
  }

  .hero-device--back {
    width: min(300px, 68%);
    transform: translateX(-36px) rotate(-7deg);
  }

  .hero-device--front {
    width: min(360px, 82%);
    margin-top: -140px;
    z-index: 1;
  }

  .screen-art--dual {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100vw - 16px, 960px);
    margin: 8px auto 18px;
    padding: 10px 8px 26px;
    border-radius: 26px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-product {
    display: grid;
    justify-items: start;
  }

}

@media (max-width: 640px) {
  :root {
    --content-width: calc(100vw - 8px);
  }

  .section {
    padding: 14px 10px;
  }

  .hero-copy h1,
  .section-heading h2,
  .screen-copy h2,
  .cta-copy h2,
  .legal-hero h1 {
    max-width: none;
  }

  .store-badges,
  .cta-actions {
    width: 100%;
  }

  .store-badge {
    min-width: 0;
    width: 100%;
  }

  .hero-visual {
    gap: 16px;
  }

  .hero-device {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .hero-device--front {
    margin-top: 0;
  }

  .hero-product__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .screen-art--dual {
    grid-template-columns: 1fr;
  }

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