:root {
  --bg: #f9f4ef;
  --panel: #ffffff;
  --ink: #333333;
  --muted: #666666;
  --brand: #c26935;
  --brand-dark: #a85428;
  --blue: #2f4468;
  --border: #ead8cb;
  --shadow: 0 22px 60px rgba(47, 68, 104, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Poppins, "Open Sans", Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
  font-family:
    "Segoe UI", Tahoma, Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  border-bottom: 1px solid var(--border);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(249, 244, 239, 0.98) 0%,
    rgba(249, 244, 239, 0.95) 48%,
    rgba(249, 244, 239, 0.9) 100%
  );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  gap: 48px;
  padding: 40px 48px;
}

.hero-copy {
  max-width: 720px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 148px;
  height: auto;
}

.eyebrow,
.section-label,
.audience-label {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body[dir="rtl"] .eyebrow,
body[dir="rtl"] .section-label,
body[dir="rtl"] .audience-label {
  letter-spacing: 0;
}

.launch {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.locale-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.locale-button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #555555;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
}

.locale-button.is-active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  color: var(--blue);
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  font-weight: 750;
  line-height: 1.06;
  margin-bottom: 28px;
}

body[dir="rtl"] .hero-copy {
  max-width: 820px;
}

body[dir="rtl"] h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 3.25vw, 3.8rem);
  line-height: 1.18;
  margin-bottom: 24px;
}

body[dir="rtl"] .hero-text {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.68;
}

h2 {
  color: var(--blue);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  color: var(--blue);
  font-size: 1.22rem;
  margin-bottom: 14px;
}

.hero-text {
  max-width: 620px;
  color: #4a4a4a;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 650;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(194, 105, 53, 0.2);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid rgba(194, 105, 53, 0.3);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 48px;
}

.count-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.count-card span {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 750;
  line-height: 1;
}

.count-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[dir="rtl"] .count-card small {
  letter-spacing: 0;
}

.visual-stack {
  position: relative;
  min-height: 620px;
}

.visual {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.visual-main {
  top: 2px;
  right: 0;
  width: 72%;
  height: 560px;
}

.visual-top {
  top: 88px;
  left: 24px;
  width: 224px;
  height: 256px;
}

.visual-bottom {
  bottom: 48px;
  left: 96px;
  width: 256px;
  height: 288px;
}

body[dir="rtl"] .visual-main {
  left: 0;
  right: auto;
}

body[dir="rtl"] .visual-top {
  left: auto;
  right: 24px;
}

body[dir="rtl"] .visual-bottom {
  left: auto;
  right: 96px;
}

.mobile-previews {
  display: none;
}

.section {
  padding: 64px 48px;
}

.section-white {
  background: #ffffff;
}

.section-tint {
  background: var(--bg);
}

.split,
.section > .section-heading,
.feature-grid,
.audience-panel,
.contact-card,
.closing-card {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.section-text {
  color: #5f5f5f;
  font-size: 1.12rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.7;
  padding-inline-start: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  inset-inline-start: 0;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #1d9b64;
}

.image-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.image-triptych img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.image-triptych img:nth-child(2) {
  margin-top: 40px;
  aspect-ratio: 3 / 5;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.contact-card,
.closing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #f4e4d9;
  color: var(--brand-dark);
}

.feature-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.feature-icon-2::before {
  border-radius: 999px;
}

.feature-icon-3::before {
  border-radius: 4px 4px 10px 10px;
}

.feature-icon-4::before {
  transform: rotate(45deg);
}

.feature-icon-5::before {
  width: 22px;
  height: 2px;
  border-width: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.feature-icon-6::before {
  width: 24px;
  height: 14px;
  border-radius: 4px;
}

.feature-card p,
.audience-panel p,
.audience-card p,
.contact-card p,
.closing-card p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}

.audience-panel {
  margin-top: 40px;
}

.audience-panel > div:first-child {
  max-width: 760px;
}

.audience-panel h2,
.contact-card h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.24;
  margin-bottom: 12px;
}

.audience-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.audience-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.audience-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.audience-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #f4e4d9;
  color: var(--brand-dark);
}

.audience-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.audience-icon-2::before {
  border-radius: 999px;
}

.audience-icon-3::before {
  width: 18px;
  height: 2px;
  border-width: 0;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
}

.contact-card .button {
  margin-top: 18px;
}

.closing-card {
  margin-top: 24px;
  padding: 24px;
}

.closing-card h2 {
  font-size: 1.45rem;
}

body[dir="rtl"] .hero-copy,
body[dir="rtl"] .section-heading,
body[dir="rtl"] .split,
body[dir="rtl"] .feature-card,
body[dir="rtl"] .audience-panel,
body[dir="rtl"] .audience-card,
body[dir="rtl"] .contact-card,
body[dir="rtl"] .closing-card {
  text-align: right;
}

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    display: none;
  }

  .mobile-previews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 32px;
  }

  .mobile-previews img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  }

  .mobile-previews img:nth-child(2) {
    margin-top: 20px;
  }

  .split,
  .feature-grid,
  .audience-card-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-grid,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar {
    align-items: flex-start;
    margin-bottom: 46px;
  }

  .brand-lockup {
    width: 100%;
  }

  .logo {
    width: 140px;
  }

  .hero-copy {
    text-align: left;
  }

  body[dir="rtl"] .hero-copy {
    text-align: right;
  }

  h1 {
    font-size: 2.7rem;
  }

  body[dir="rtl"] h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.22;
  }

  body[dir="rtl"] .hero-text {
    font-size: 1.14rem;
    line-height: 1.75;
  }

  .hero-text {
    font-size: 1.18rem;
  }

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

  .image-triptych {
    display: none;
  }
}
