:root {
  --ty-purple: #6d28d9;
  --ty-pink: #ec4899;
  --ty-ink: #24172f;
  --ty-muted: #6f6179;
  --ty-soft: #fff7fb;
  --ty-line: rgba(109, 40, 217, 0.16);
  --ty-white: #ffffff;
  --ty-shadow: 0 24px 70px rgba(109, 40, 217, 0.14);
  --ty-radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ty-ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(236, 72, 153, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(109, 40, 217, 0.16), transparent 28rem),
    linear-gradient(180deg, #fffafd 0%, #f8f2ff 48%, #fff 100%);
  font-family: Heebo, "Playpen Sans Hebrew", Arial, sans-serif;
  line-height: 1.65;
  text-align: right;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

.page-shell {
  overflow: hidden;
}

.page {
  width: min(1120px, calc(100vw - 28px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 56px 0 42px;
  text-align: center;
}

.glow {
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(680px, 90vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 64%);
  transform: translateX(-50%);
  pointer-events: none;
}

.wm-logo {
  width: min(260px, 70vw);
  margin-bottom: 8px;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--ty-purple);
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--ty-ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  font-weight: 900;
}

.hero-sub,
.section-heading .sub,
.caption,
.about-card p,
.coach-card p {
  color: var(--ty-muted);
}

.hero-sub {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 600;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: var(--ty-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(109, 40, 217, 0.2);
}

.cta.primary,
.cta.secondary {
  background: linear-gradient(135deg, var(--ty-pink), #a855f7 58%, var(--ty-purple));
  color: var(--ty-white);
}

.hero-timer,
.timer-stack {
  padding: 14px 18px;
  border: 1px solid var(--ty-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(36, 23, 47, 0.08);
}

.timer-label,
.timer-note,
.timer-stack p {
  margin: 0;
  color: var(--ty-muted);
  font-weight: 700;
}

.timer-value {
  color: var(--ty-purple);
  font-family: "Space Grotesk", Heebo, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  direction: ltr;
}

.timer-value.large {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ty-line), transparent);
}

section {
  padding: 76px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 900;
}

.section-heading .sub {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 1.12rem;
}

.gallery,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.result-card,
.pillar-card,
.about-card,
.calendar-card,
.coach-card {
  border: 1px solid var(--ty-line);
  border-radius: var(--ty-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--ty-shadow);
}

.result-card {
  position: relative;
  overflow: hidden;
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ty-purple);
  font-weight: 900;
}

.caption {
  min-height: 96px;
  margin: 0;
  padding: 16px;
  font-weight: 600;
}

.hero-trust,
.about-card,
.coach-card {
  margin-top: 28px;
}

.hero-trust-logos {
  width: min(680px, 100%);
  margin: 0 auto;
}

.intro,
.pillars {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(18px, calc(50vw - 560px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(248, 242, 255, 0.7));
}

.hero-whatsapp {
  overflow: hidden;
  margin-top: 26px;
}

.whatsapp-marquee {
  overflow: hidden;
  direction: ltr;
  cursor: grab;
}

.whatsapp-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.whatsapp-marquee.is-paused .whatsapp-track,
.whatsapp-marquee:hover .whatsapp-track {
  animation-play-state: paused;
}

.whatsapp-item {
  width: min(300px, 72vw);
  flex: 0 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ty-white);
  box-shadow: var(--ty-shadow);
}

.pillar-card {
  padding: 24px;
}

.pillar-card h3 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
}

.pillar-card ul,
.coach-card ul {
  margin: 0;
  padding: 0 20px 0 0;
  color: var(--ty-muted);
}

.icon-badge img {
  width: 68px;
}

.divider {
  display: none;
}

.about-card,
.coach-card {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
}

.timer-stack.center {
  width: fit-content;
  margin: 18px auto;
}

.calendar-card {
  overflow: hidden;
  padding: 10px;
  background: var(--ty-white);
}

.calendar-slot {
  min-height: 680px;
}

.calendar-loading,
.calendar-note {
  margin: 18px;
  color: var(--ty-muted);
  text-align: center;
  font-weight: 700;
}

.calendar-iframe {
  min-height: 900px;
  border-radius: 22px;
  background: var(--ty-white);
}

.calendar-fallback {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 38px 18px;
  text-align: center;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 78vh;
  }

  .gallery,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .cta {
    width: 100%;
  }

  .calendar-slot {
    min-height: 760px;
  }
}
