:root {
  --bg: #fff9f4;
  --surface: #fffdf9;
  --surface-soft: #f7efe6;
  --ink: #2f2520;
  --muted: #766a61;
  --green: #31422c;
  --green-2: #49633f;
  --mint: #dff1df;
  --blush: #ffe4de;
  --cream: #fff3dc;
  --gold: #c59a4a;
  --berry: #a84545;
  --line: #e8dcd1;
  --shadow: 0 28px 80px rgba(55, 63, 45, 0.16);
  --shadow-soft: 0 16px 44px rgba(55, 63, 45, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

html[dir="ltr"] {
  direction: ltr;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.94), rgba(255, 249, 244, 1)),
    repeating-linear-gradient(135deg, rgba(49, 66, 44, 0.035) 0 1px, transparent 1px 18px);
  color: var(--ink);
  font-family: "Noto Sans Hebrew", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  background:
    linear-gradient(90deg, rgba(223, 241, 223, 0.8), rgba(255, 228, 222, 0.72), rgba(255, 243, 220, 0.78));
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: fixed;
  z-index: 20;
}

.site-loader {
  align-items: center;
  background: var(--green);
  display: grid;
  inset: 0;
  justify-items: center;
  position: fixed;
  z-index: 200;
}

.loader-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--green);
  inset: 0;
  position: absolute;
}

.loader-brand {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  opacity: 0;
  padding: 18px 26px;
  transform: translateY(16px);
  z-index: 2;
}

.loader-brand img {
  height: 78px;
  object-fit: contain;
  width: 190px;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.skip-link {
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  inset: 14px 14px auto auto;
  padding: 10px 16px;
  position: fixed;
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-inline: 24px;
  width: 100%;
}

.site-header {
  inset: 18px 0 auto;
  position: fixed;
  z-index: 50;
}

.nav {
  align-items: center;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(232, 220, 209, 0.78);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(55, 63, 45, 0.11);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding-block: 8px;
}

@supports (backdrop-filter: blur(18px)) {
  .nav {
    backdrop-filter: blur(18px);
  }
}

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

.brand-mark {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(49, 66, 44, 0.16);
  height: 52px;
  width: 52px;
}

.brand-logo {
  height: 58px;
  object-fit: contain;
  width: 150px;
}

.nav-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease-out;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav-cta {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: background 180ms ease-out, box-shadow 180ms ease-out;
}

.nav-cta svg {
  height: 19px;
  width: 19px;
}

.nav-cta:hover {
  background: #24351f;
  box-shadow: 0 12px 28px rgba(49, 66, 44, 0.2);
}

.nav-actions {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.language-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
}

.language-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 36px;
  padding: 0 12px;
  transition: background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.language-toggle button[aria-pressed="true"] {
  background: var(--green);
  box-shadow: 0 8px 20px rgba(49, 66, 44, 0.16);
  color: #fff;
}

.hero {
  min-height: 940px;
  overflow: hidden;
  padding: 190px 0 92px;
  position: relative;
}

.ambient-lines {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.ambient-lines span {
  background: linear-gradient(90deg, transparent, rgba(49, 66, 44, 0.2), rgba(197, 154, 74, 0.24), transparent);
  border-radius: 999px;
  display: block;
  height: 1px;
  left: -12%;
  position: absolute;
  transform: rotate(-18deg);
  width: 62%;
}

.ambient-lines span:nth-child(1) {
  top: 26%;
}

.ambient-lines span:nth-child(2) {
  top: 48%;
  width: 78%;
}

.ambient-lines span:nth-child(3) {
  top: 72%;
  width: 54%;
}

.hero-bg {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-bg::before {
  background:
    linear-gradient(120deg, rgba(255, 249, 244, 0.04), rgba(255, 249, 244, 0.84) 43%, rgba(255, 249, 244, 0.98) 72%),
    linear-gradient(0deg, rgba(255, 249, 244, 1), rgba(255, 249, 244, 0) 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 3;
}

.hero-wash {
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.72), transparent 38%),
    linear-gradient(315deg, rgba(255, 228, 222, 0.72), transparent 34%);
  inset: 0;
  opacity: 0.78;
  position: absolute;
  z-index: 1;
}

.hero-shot {
  border-radius: 48px;
  box-shadow: var(--shadow);
  opacity: 0;
  position: absolute;
}

.hero-shot-main {
  height: 820px;
  left: max(24px, calc((100vw - 1180px) / 2 + 40px));
  object-fit: cover;
  top: 126px;
  transform: rotate(-3deg);
  width: 378px;
  z-index: 2;
}

.hero-shot-alt {
  height: 630px;
  left: max(230px, calc((100vw - 1180px) / 2 + 260px));
  object-fit: cover;
  top: 252px;
  transform: rotate(4deg);
  width: 290px;
  z-index: 1;
}

html[dir="ltr"] .hero-bg::before {
  background:
    linear-gradient(240deg, rgba(255, 249, 244, 0.04), rgba(255, 249, 244, 0.84) 43%, rgba(255, 249, 244, 0.98) 72%),
    linear-gradient(0deg, rgba(255, 249, 244, 1), rgba(255, 249, 244, 0) 28%);
}

html[dir="ltr"] .hero-shot-main {
  left: auto;
  right: max(24px, calc((100vw - 1180px) / 2 + 40px));
}

html[dir="ltr"] .hero-shot-alt {
  left: auto;
  right: max(230px, calc((100vw - 1180px) / 2 + 260px));
}

.hero-content {
  position: relative;
  z-index: 5;
}

.kicker,
.section-label {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0;
}

.kicker {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}

.kicker svg {
  height: 18px;
  width: 18px;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 26px 0 24px;
  max-width: 720px;
  overflow: hidden;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  margin: 0 0 34px;
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-hero-preview {
  display: none;
}

.store-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(55, 63, 45, 0.08);
  color: var(--green);
  display: inline-flex;
  gap: 13px;
  min-height: 64px;
  min-width: 202px;
  overflow: hidden;
  padding: 12px 18px;
  position: relative;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.store-button::before,
.feature-card::before,
.screen-card::before,
.trust-links a::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.76), transparent 31%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease-out;
}

.store-button:hover::before,
.feature-card:hover::before,
.screen-card:hover::before,
.trust-links a:hover::before {
  opacity: 1;
}

.store-button:hover {
  border-color: rgba(49, 66, 44, 0.34);
  box-shadow: 0 18px 42px rgba(55, 63, 45, 0.13);
  transform: translateY(-2px);
}

.store-button svg {
  height: 28px;
  width: 28px;
}

.store-button-primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.store-button small {
  display: block;
  font-size: 12px;
  line-height: 1.1;
  opacity: 0.78;
}

.store-button strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

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

.hero-stats div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 220, 209, 0.8);
  border-radius: 22px;
  padding: 18px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  margin: 2px 0 0;
}

.screen-strip,
.features-section,
.how-section,
.trust-section,
.final-cta {
  padding: 94px 0;
}

.screen-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 243, 220, 0.26) 42%, rgba(255, 255, 255, 0));
  overflow: hidden;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.how-layout h2,
.trust-copy h2,
.final-content h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 8px 0 0;
}

.screens-stage {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.8fr);
  margin-inline: auto;
  max-width: 1280px;
  padding-inline: 24px;
}

.screens-copy {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(232, 220, 209, 0.78);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.screens-copy h3 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 8px 0 14px;
}

.screens-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.screens-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 18px 6px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.screens-row::-webkit-scrollbar {
  display: none;
}

.screen-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 330px;
  margin: 0;
  overflow: hidden;
  padding: 12px;
  position: relative;
  scroll-snap-align: center;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.screen-card:hover {
  border-color: rgba(49, 66, 44, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.screen-card-large {
  flex-basis: 390px;
}

.screen-card img {
  aspect-ratio: 1320 / 2868;
  border-radius: 28px;
  object-fit: cover;
  width: 100%;
}

.screen-card figcaption {
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  padding: 16px 10px 8px;
  text-align: center;
}

.features-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(223, 241, 223, 0.3));
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.feature-card:hover {
  border-color: rgba(49, 66, 44, 0.32);
  box-shadow: 0 20px 54px rgba(55, 63, 45, 0.12);
  transform: translateY(-3px);
}

.feature-icon {
  align-items: center;
  background: var(--mint);
  border-radius: 18px;
  color: var(--green);
  display: inline-grid;
  height: 56px;
  margin-bottom: 22px;
  place-items: center;
  width: 56px;
}

.feature-icon svg {
  height: 27px;
  width: 27px;
}

.feature-icon-blush {
  background: var(--blush);
  color: var(--berry);
}

.feature-icon-gold {
  background: var(--cream);
  color: #8b6420;
}

.feature-icon-mint {
  background: #e4f5f1;
  color: #2c6b5d;
}

.feature-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.feature-card p,
.how-layout p,
.timeline p,
.trust-copy p,
.final-content p {
  color: var(--muted);
  margin: 0;
}

.how-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.86fr 1.14fr;
}

.how-layout > div > p:last-child {
  font-size: 20px;
  margin-top: 18px;
  max-width: 520px;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
  grid-template-columns: auto 1fr;
  padding: 24px;
}

.timeline li span {
  align-items: center;
  background: var(--green);
  border-radius: 16px;
  color: #fff;
  display: grid;
  font-weight: 900;
  grid-row: span 2;
  height: 52px;
  place-items: center;
  width: 52px;
}

.timeline strong {
  font-size: 23px;
  line-height: 1.2;
}

.trust-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(49, 66, 44, 0.98), rgba(73, 99, 63, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  border-radius: 42px;
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-block: 48px;
}

.trust-panel .section-label,
.trust-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-copy h2 {
  color: #fff;
}

.trust-links {
  display: grid;
  gap: 14px;
}

.trust-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 900;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px 20px;
  position: relative;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.trust-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.trust-links svg {
  height: 28px;
  width: 28px;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0), rgba(223, 241, 223, 0.42));
  text-align: center;
}

.final-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.final-content p {
  font-size: 20px;
  margin: 14px 0 28px;
  max-width: 660px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 34px 0;
}

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

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

.legal-page {
  max-width: 920px;
  padding: 120px 24px 90px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 38px;
}

.legal-card h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.legal-card h2 {
  color: var(--ink);
  margin: 34px 0 8px;
}

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

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

.legal-topbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

html[dir="ltr"] .legal-card ul {
  padding-left: 24px;
  padding-right: 0;
}

:focus-visible {
  outline: 3px solid rgba(197, 154, 74, 0.75);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    inset: 10px 0 auto;
  }

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

  .nav-actions {
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 64px;
  }

  .hero-bg {
    display: none;
  }

  .ambient-lines {
    display: none;
  }

  .hero-content {
    margin-top: 0;
  }

  .mobile-hero-preview {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow);
    display: block;
    margin: 34px auto 0;
    max-width: 420px;
    padding: 10px;
    width: min(100%, 420px);
  }

  .mobile-hero-preview img {
    border-radius: 26px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 92px);
  }

  .hero-stats,
  .feature-grid,
  .how-layout,
  .trust-panel,
  .screens-stage {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .shell {
    padding-inline: 18px;
  }

  .nav {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-logo {
    height: 48px;
    width: 118px;
  }

  .brand-mark {
    height: 44px;
    width: 44px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .language-toggle button {
    font-size: 12px;
    min-height: 34px;
    padding: 0 9px;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .kicker {
    font-size: 14px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .store-button {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats dt {
    font-size: 19px;
  }

  .screen-strip,
  .features-section,
  .how-section,
  .trust-section,
  .final-cta {
    padding: 62px 0;
  }

  .screens-row {
    padding-inline: 18px;
  }

  .screens-copy {
    padding: 24px;
  }

  .screen-card,
  .screen-card-large {
    flex-basis: min(78vw, 330px);
  }

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

  .feature-card,
  .timeline li {
    padding: 22px;
  }

  .trust-panel {
    border-radius: 30px;
    padding-block: 30px;
  }

  .trust-links a {
    font-size: 17px;
  }

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

  .legal-page {
    padding-top: 48px;
  }

  .legal-card {
    border-radius: 28px;
    padding: 26px;
  }
}

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