:root {
  --ink: #11122b;
  --muted: #60627b;
  --blue: #087ff5;
  --purple: #a72cf0;
  --soft-purple: #eee8ff;
  --line: rgba(87, 62, 164, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f6ff;
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  padding: 20px;
  background:
    radial-gradient(circle at 8% 20%, rgba(109, 91, 255, 0.08), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(20, 131, 255, 0.08), transparent 30%),
    #f8f8ff;
}

.page-frame {
  width: min(100%, 1440px);
  min-height: calc(100vh - 40px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(105, 82, 176, 0.08);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(61, 44, 116, 0.13);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(89, 70, 150, 0.04);
  backdrop-filter: blur(16px);
}

.header-logo,
.hero-brand {
  position: relative;
  display: block;
  overflow: hidden;
}

.header-logo {
  width: 186px;
  height: 61px;
}

.header-logo img,
.hero-brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.menu {
  position: absolute;
  left: 34px;
  top: 28px;
}

.menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 10px 8px;
  cursor: pointer;
  list-style: none;
  border-radius: 12px;
  transition: background 160ms ease;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menu summary:hover {
  background: #f4f1ff;
}

.menu summary span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu nav {
  position: absolute;
  top: 51px;
  left: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(35, 22, 80, 0.14);
}

.menu nav a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.menu nav a:hover {
  background: #f5f2ff;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #ffffff 0%, #fcfbff 35%, #eee8ff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(95, 74, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 74, 180, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 680px;
  direction: rtl;
}

.hero-copy {
  align-self: center;
  padding: 58px 70px 96px 32px;
  text-align: right;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 4.8vw, 74px);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-brand {
  width: min(420px, 90%);
  height: 118px;
  margin: 8px -13px -2px 0;
}

.hero-description {
  width: min(100%, 470px);
  margin: 2px 0 26px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 430;
  line-height: 1.65;
}

.hero-description p {
  margin: 0;
}

.hero-description p + p {
  margin-top: 14px;
}

.people-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #292440;
  font-weight: 780;
}

.people-highlight::after {
  position: absolute;
  right: 0;
  bottom: 0.08em;
  left: 0;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: right center;
  animation: draw-brand-underline 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

@keyframes draw-brand-underline {
  to {
    transform: scaleX(1);
  }
}

.description-proof {
  padding: 2px 14px 2px 0;
  color: #3d385b;
  border-right: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--blue), var(--purple)) 1;
  font-weight: 560;
}

.description-proof strong {
  color: #6650df;
  font-weight: 760;
}

.stat-card-mobile {
  display: none;
}

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

.hero-title-divider {
  display: none;
}

.primary-cta {
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(100%, 390px);
  min-height: 62px;
  padding: 12px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 19px;
  background: linear-gradient(105deg, #0689f7 0%, #4665f6 47%, #b72ce9 100%);
  box-shadow:
    0 14px 30px rgba(111, 49, 230, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: 18px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta > span:last-child {
  direction: rtl;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(111, 49, 230, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.primary-cta:focus-visible,
.menu summary:focus-visible,
.menu nav a:focus-visible {
  outline: 3px solid rgba(34, 115, 255, 0.35);
  outline-offset: 3px;
}

.cta-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
}

.cta-note {
  width: min(100%, 390px);
  margin: 12px 0 0;
  color: #797a91;
  font-size: 14px;
  text-align: center;
}

.team-visual {
  position: relative;
  align-self: end;
  height: 100%;
}

.team-visual img {
  position: absolute;
  right: -3%;
  bottom: -4%;
  width: 110%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(51, 38, 90, 0.08));
}

@media (min-width: 1051px) {
  /* Fix: at desktop widths the 1:1 team photo scaled to width:110%
     becomes taller than the hero, and the bottom:-4% anchor let the
     excess overflow upward, cropping heads under .hero's overflow:hidden.
     Anchoring from the top instead keeps the full photo visible and any
     excess height is safely clipped below, out of view. */
  .team-visual img {
    top: 32px;
    bottom: auto;
  }
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-blue {
  top: -160px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(32, 145, 255, 0.14), transparent 68%);
}

.hero-glow-purple {
  right: 22%;
  bottom: -270px;
  width: 720px;
  height: 620px;
  background: radial-gradient(circle, rgba(157, 76, 248, 0.2), transparent 66%);
}

.hero-fade {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  height: 112px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(237, 230, 255, 0.76) 56%, #fff 100%);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fff;
  padding: 80px 0;
}

.testimonials-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-title {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 28px 24px;
  background: var(--soft-purple);
  border: 1px solid #e4eaf3;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-quote {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: right;
}

.testimonial-quote--ltr {
  align-self: stretch;
  direction: ltr;
  text-align: left;
}

.testimonial-name {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

/* ===== PAIN ===== */
.pain {
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 245, 0.08), transparent 38%),
    var(--soft-purple);
  padding: 72px 0;
}

.pain-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-heading {
  margin-bottom: 34px;
  text-align: right;
}

.pain-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 9.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: right;
}

.pain-content {
  text-align: right;
}

.pain-signals {
  border-top: 1px solid rgba(96, 98, 123, 0.18);
}

.pain-signals p {
  position: relative;
  margin: 0;
  padding: 18px 30px 18px 0;
  border-bottom: 1px solid rgba(96, 98, 123, 0.18);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.pain-signals p::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 0 5px rgba(8, 127, 245, 0.07);
}

.pain-core {
  margin-top: 28px;
  padding: 6px 18px 6px 0;
  border-right: 3px solid var(--blue);
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.75;
}

.pain-good-news {
  margin-top: 28px;
  color: var(--blue);
  font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

/* ===== REFRAME ===== */
.reframe {
  position: relative;
  background: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.reframe::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.reframe-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.reframe-heading {
  margin-bottom: 34px;
  text-align: right;
}

.reframe-heading h2 {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.75rem, 8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: right;
}

.reframe-intro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: right;
}

.reframe-content {
  text-align: right;
}

.reframe-statement {
  position: relative;
  margin: 0;
  padding: 22px 20px 22px 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.45;
}

.reframe-statement::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.reframe-statement strong {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.reframe-explanation {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.reframe-explanation p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.8;
  text-align: right;
}

.reframe-proof {
  padding-top: 22px;
  border-top: 1px solid rgba(96, 98, 123, 0.18);
  color: var(--ink);
}

.reframe-proof strong {
  font-weight: 800;
}

/* ===== MISSION ===== */
.mission {
  background: #0b1020;
  color: #fff;
  padding: 80px 0;
}

.mission-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-title {
  margin: 0 0 26px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.mission-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.mission-gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
  color: #d7deea;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: right;
}

/* ===== ACCELERATOR (8020) ===== */
.accelerator {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='560' viewBox='0 0 900 560'%3E%3Cg fill='none' stroke='rgba(167,44,240,0.32)' stroke-width='1'%3E%3Cline x1='40' y1='60' x2='170' y2='150'/%3E%3Cline x1='170' y1='150' x2='130' y2='280'/%3E%3Cline x1='170' y1='150' x2='330' y2='95'/%3E%3Cline x1='330' y1='95' x2='460' y2='190'/%3E%3Cline x1='130' y1='280' x2='280' y2='340'/%3E%3Cline x1='280' y1='340' x2='460' y2='190'/%3E%3Cline x1='460' y1='190' x2='610' y2='125'/%3E%3Cline x1='610' y1='125' x2='740' y2='210'/%3E%3Cline x1='280' y1='340' x2='150' y2='440'/%3E%3Cline x1='610' y1='125' x2='670' y2='40'/%3E%3Cline x1='740' y1='210' x2='830' y2='310'/%3E%3Cline x1='460' y1='190' x2='520' y2='340'/%3E%3Cline x1='520' y1='340' x2='670' y2='400'/%3E%3C/g%3E%3Cg fill='rgba(8,127,245,0.45)'%3E%3Ccircle cx='40' cy='60' r='4'/%3E%3Ccircle cx='330' cy='95' r='4'/%3E%3Ccircle cx='460' cy='190' r='4'/%3E%3Ccircle cx='610' cy='125' r='4'/%3E%3Ccircle cx='740' cy='210' r='4'/%3E%3Ccircle cx='670' cy='40' r='3'/%3E%3Ccircle cx='830' cy='310' r='3'/%3E%3C/g%3E%3Cg fill='rgba(167,44,240,0.5)'%3E%3Ccircle cx='170' cy='150' r='5'/%3E%3Ccircle cx='130' cy='280' r='4'/%3E%3Ccircle cx='280' cy='340' r='5'/%3E%3Ccircle cx='150' cy='440' r='3'/%3E%3Ccircle cx='520' cy='340' r='4'/%3E%3Ccircle cx='670' cy='400' r='3'/%3E%3C/g%3E%3C/svg%3E")
      no-repeat center / cover,
    radial-gradient(circle at 8% 12%, rgba(8, 127, 245, 0.1), transparent 40%),
    radial-gradient(circle at 94% 88%, rgba(167, 44, 240, 0.1), transparent 42%),
    #fff;
}

.accelerator-container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.accelerator-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.accelerator-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--soft-purple);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.accelerator-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.accelerator-number {
  font-size: 1.15em;
  color: var(--ink);
}

.accelerator-brand {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accelerator-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.accelerator-connector {
  position: relative;
  width: 34px;
  height: 2px;
  margin: 0 4px;
  background-image: repeating-linear-gradient(
    to right,
    var(--purple) 0,
    var(--purple) 4px,
    transparent 4px,
    transparent 9px
  );
}

.accelerator-connector::before,
.accelerator-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(167, 44, 240, 0.16);
}

.accelerator-connector::before {
  right: -3px;
}

.accelerator-connector::after {
  left: -3px;
}

.accelerator-card {
  position: relative;
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(61, 44, 116, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.accelerator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(61, 44, 116, 0.14);
}

.accelerator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.accelerator-icon svg {
  width: 18px;
  height: 18px;
}

.accelerator-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.accelerator-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* inline term tooltip, e.g. "בורסת הקשרים" */
.term-tooltip {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1.5px dashed var(--blue);
  cursor: help;
}

.term-tooltip-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(6px);
  width: 240px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 40px rgba(17, 18, 43, 0.28);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 30;
}

.term-tooltip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
}

.term-tooltip:hover .term-tooltip-bubble,
.term-tooltip:focus .term-tooltip-bubble,
.term-tooltip:focus-visible .term-tooltip-bubble {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--soft-purple);
  padding: 80px 0;
}

.cta-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 40px;
  background: #fff;
  border: 1.5px solid rgba(8, 127, 245, 0.12);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(8, 127, 245, 0.12);
  text-align: center;
}

.cta-box-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.cta-box-title::after {
  content: none;
}

.cta-box-text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  text-align: right;
}

.cta-box-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(8, 127, 245, 0.35);
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-box-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(8, 127, 245, 0.45);
}

.cta-box-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  background: #fff;
  padding: 80px 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.about-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-title-main {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.about-title-main::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.about-tagline {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
  padding: 44px;
  background: linear-gradient(135deg, rgba(8, 127, 245, 0.055), rgba(169, 68, 255, 0.055));
  border: 1px solid rgba(8, 127, 245, 0.12);
  border-radius: 24px;
}

.about-video {
  min-width: 0;
  text-align: center;
}

.about-video__frame {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  background: #0b1020;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(11, 16, 32, 0.18);
}

.about-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video__caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.about-content {
  text-align: right;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.about-author__frame {
  display: block;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(8, 127, 245, 0.25);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-author__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-author h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
}

.about-role {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.about-quote {
  margin: 0 0 26px;
  padding: 16px 20px;
  background: rgba(8, 127, 245, 0.045);
  border-right: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.8;
  text-align: right;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  position: relative;
  padding-right: 30px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-facts li::before {
  content: "✓";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--blue);
  font-weight: 800;
}

/* ===== MEMORIAL BANNER ===== */
.memorial-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 20px 28px;
  background: #0b1020;
  border-radius: 16px;
  direction: rtl;
}

.memorial-banner__img {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.memorial-banner__text {
  margin: 0;
  color: #d7deea;
  font-size: 0.97rem;
  line-height: 1.7;
  text-align: right;
}

.memorial-trigger {
  padding: 0;
  background: none;
  border: none;
  color: #7bb3ff;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(123, 179, 255, 0.4);
  cursor: pointer;
  transition: color 0.15s;
}

.memorial-trigger:hover {
  color: #fff;
}

/* ===== MEMORIAL MODAL ===== */
.memorial-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.memorial-modal[hidden] {
  display: none;
}

.memorial-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.memorial-modal__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  direction: rtl;
  text-align: right;
}

.memorial-modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  border-radius: 50%;
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.memorial-modal__close:hover {
  background: rgba(0, 0, 0, 0.14);
}

.memorial-modal__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.memorial-modal__body {
  padding: 24px 28px 28px;
}

.memorial-modal__name {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.memorial-modal__body p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.8;
  text-align: right;
}

.memorial-modal__body p:last-child {
  margin-bottom: 0;
}

/* ===== FIT ===== */
.fit {
  background: var(--soft-purple);
  padding: 80px 0;
}

.fit-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.fit-title-main {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.fit-title-main::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.fit-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.fit-col {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.fit-col--yes .fit-list li {
  position: relative;
  padding-right: 26px;
  color: var(--ink);
  font-size: 0.95rem;
}

.fit-col--yes .fit-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
  background: var(--soft-purple);
  padding: 88px 0;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-title-main {
  position: relative;
  margin: 0 0 48px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 800;
  text-align: center;
}

.faq-title-main::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: 0 16px 40px rgba(61, 44, 116, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--purple);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== Desktop enhancement: sticky two-column layout for pain / reframe ===== */
@media (min-width: 1050px) {
  .pain {
    padding: 120px 0;
  }

  .pain-container {
    max-width: 1040px;
  }

  .pain-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 64px;
  }

  .pain-heading {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
  }

  .pain-heading h2 {
    max-width: 320px;
    font-size: clamp(3.8rem, 5vw, 5.4rem);
  }

  .pain-signals p {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 1.08rem;
  }

  .pain-core {
    padding: 26px 28px;
    font-size: 1.1rem;
  }

  .reframe {
    padding: 120px 0;
  }

  .reframe-container {
    max-width: 1040px;
  }

  .reframe-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 64px;
  }

  .reframe-heading {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
  }

  .reframe-heading h2 {
    max-width: 400px;
    font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  }

  .reframe-intro {
    max-width: 340px;
    font-size: 1.05rem;
  }

  .reframe-statement {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1050px) {
  .hero-content {
    grid-template-columns: 48% 52%;
  }

  .hero-copy {
    padding-right: 44px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.7vw, 62px);
  }

  .team-visual img {
    right: -8%;
    width: 122%;
  }

  .accelerator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .accelerator-connector {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 0;
    background: #fff;
  }

  .page-frame {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .header-logo {
    width: 152px;
    height: 52px;
  }

  .menu {
    top: 18px;
    left: 16px;
  }

  .menu nav {
    width: 190px;
  }

  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero-heading {
    order: 1;
    padding: 44px 24px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.02;
  }

  .lead-line-break {
    display: none;
  }

  .hero-title-divider {
    position: relative;
    display: block;
    width: 92%;
    max-width: 320px;
    height: 2px;
    margin: 22px auto 20px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(10, 184, 245, 0.1) 0%,
      #0ab8f5 22%,
      #2870ff 52%,
      #a437f4 80%,
      rgba(164, 55, 244, 0.1) 100%
    );
    box-shadow: 0 0 6px rgba(74, 92, 255, 0.2);
  }

  .hero-title-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
      0 0 4px #ffffff,
      0 0 9px rgba(94, 65, 255, 0.65);
  }

  .hero-brand {
    width: min(330px, 92vw);
    height: 98px;
    margin: 6px auto -5px;
  }

  .hero-description {
    order: 3;
    width: 100%;
    max-width: 390px;
    margin: 4px auto 6px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .lead-desktop {
    display: none;
  }

  .hero-lead-mobile {
    display: block;
    margin-bottom: 14px;
  }

  .hero-lead-mobile-title {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-align: center;
  }

  .gradient-word {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .hero-lead-mobile-body {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
  }

  .description-proof {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
    border-right: none;
    border-image: none;
    color: var(--ink);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }

  .stat-clause {
    display: none;
  }

  .stat-card-mobile {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 390px;
    margin: 16px auto 20px;
    padding: 16px 18px;
    background: var(--soft-purple);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(87, 62, 164, 0.12);
  }

  .stat-card-main {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-card-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
  }

  .stat-card-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
  }

  .stat-card-number {
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
  }

  .stat-card-label {
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
  }

  .stat-card-avatars {
    display: flex;
    padding-right: 2px;
  }

  .stat-card-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(35, 22, 80, 0.12);
    margin-inline-start: -10px;
  }

  .stat-card-avatars img:first-child {
    margin-inline-start: 0;
  }

  .stat-card-avatars-more {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-inline-start: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(35, 22, 80, 0.12);
    color: var(--purple);
    font-size: 15px;
    font-weight: 800;
  }

  .primary-cta {
    order: 5;
    width: min(100%, 360px);
    min-height: 58px;
    margin: 0 auto;
    border-radius: 17px;
    font-size: 17px;
  }

  .cta-note {
    order: 6;
    position: relative;
    z-index: 6;
    width: 100%;
    margin: 10px 0 28px;
    color: var(--ink);
    font-weight: 700;
  }

  .hero-fade {
    z-index: 1;
  }

  .team-visual {
    order: 2;
    height: auto;
    margin-top: -8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
  }

  .team-visual img {
    position: static;
    display: block;
    width: 112%;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
  }

  .testimonials-section {
    padding: 48px 0;
  }

  .testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .testimonials-container {
    padding: 0 24px;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin: 0 -24px;
    padding: 4px 24px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .pain {
    padding: 48px 0;
  }

  .pain-heading h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
  }

  .reframe {
    padding: 48px 0;
  }

  .reframe-heading h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .mission {
    padding: 48px 0;
  }

  .mission-title {
    font-size: 1.5rem;
  }

  .accelerator {
    padding: 56px 0;
  }

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

  .accelerator-heading h2 {
    font-size: 1.5rem;
  }

  .accelerator-eyebrow {
    margin-bottom: 16px;
  }

  .accelerator-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin: 0 -24px;
    padding: 4px 24px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .accelerator-grid::-webkit-scrollbar {
    display: none;
  }

  .accelerator-card {
    flex: 0 0 168px;
    width: 168px;
    scroll-snap-align: center;
  }

  .accelerator-connector {
    display: block;
    flex: 0 0 auto;
    align-self: center;
  }

  .term-tooltip-bubble {
    width: 210px;
    font-size: 12px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-box {
    padding: 36px 24px;
  }

  .cta-box-title {
    font-size: 1.5rem;
  }

  .cta-box-text {
    text-align: center;
  }

  .about {
    padding: 48px 0;
  }

  .about-title-main {
    font-size: 1.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px;
  }

  .about-video__frame {
    width: min(78vw, 320px);
  }

  .memorial-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .memorial-banner__text {
    font-size: 0.9rem;
  }

  .memorial-modal__img {
    height: 200px;
  }

  .about-author__img {
    transform: scale(1.15);
  }

  .memorial-modal__body {
    padding: 20px 20px 24px;
  }

  .fit {
    padding: 48px 0;
  }

  .fit-title-main {
    font-size: 1.5rem;
  }

  .faq {
    padding: 56px 0;
  }

  .faq-title-main {
    margin-bottom: 32px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 0.92rem;
  }
}

@media (max-width: 400px) {
  .hero-heading {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-description {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
    font-size: 15.5px;
  }

  .primary-cta {
    gap: 10px;
    font-size: 16px;
  }
}

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

  .primary-cta {
    transition: none;
  }

  .people-highlight::after {
    transform: scaleX(1);
    animation: none;
  }
}

/* =========================================================
   ACCESSIBILITY / LEGAL — additive only, no existing rule touched
   ========================================================= */

.skip-link {
  position: absolute;
  right: 16px;
  top: -60px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 34px;
  background: #fafaff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 1;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-company {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  order: 3;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.footer-nav a:hover {
  color: var(--blue);
}

.footer-contact {
  text-align: left;
  font-size: 13px;
  color: var(--muted);
}

.footer-contact p {
  margin: 0 0 2px;
}

.footer-contact a {
  font-weight: 600;
  color: var(--ink);
}

.footer-social {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  order: 2;
}

.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-social-item a:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-social-note {
  margin: 0;
  max-width: 92px;
  color: var(--purple);
  font-family: "Secular One", "Heebo", Arial, sans-serif;
  font-size: 11.5px;
  line-height: 1.3;
  text-align: center;
  transform: rotate(-2deg);
}

@media (max-width: 760px) {
  .site-footer {
    padding: 28px 20px;
  }

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

  .footer-contact {
    text-align: center;
  }

  .footer-social {
    order: 1;
  }

  .footer-nav {
    order: 2;
    justify-content: center;
  }

  .footer-brand {
    order: 3;
  }
}

/* ---- Legal page content (accessibility.html / privacy-policy.html) ---- */

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 34px 90px;
  line-height: 1.75;
  color: var(--ink);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 6px;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 36px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--ink);
}

.legal-page p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15.5px;
}

.legal-page ul {
  margin: 0 0 16px;
  padding-right: 22px;
  color: var(--muted);
  font-size: 15.5px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.legal-page strong {
  color: var(--ink);
}

.legal-page hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

@media (max-width: 760px) {
  .legal-page {
    padding: 40px 20px 60px;
  }
}

/* ---- Accessibility widget (floating, purely additive) ---- */

.a11y-widget {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 900;
}

.a11y-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(61, 44, 116, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-panel {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 240px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(35, 22, 80, 0.18);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.a11y-panel.open {
  display: flex;
}

.a11y-panel button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
}

.a11y-panel button:hover {
  background: #f5f2ff;
}

.a11y-panel button[aria-pressed="true"] {
  background: var(--soft-purple);
  border-color: var(--purple);
}

body.a11y-text-lg {
  font-size: 112.5%;
}

body.a11y-text-xl {
  font-size: 125%;
}

body.a11y-contrast {
  filter: contrast(1.15) saturate(1.1);
}

body.a11y-stop-motion,
body.a11y-stop-motion * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

@media (max-width: 760px) {
  .a11y-widget {
    bottom: 16px;
    left: 16px;
  }
}

/* ---- Cookie consent banner (additive, hidden until shown by JS) ---- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: none;
  justify-content: center;
  padding: 16px;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner-inner {
  width: min(100%, 720px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(35, 22, 80, 0.22);
}

.cookie-banner-text {
  flex: 1 1 260px;
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.cookie-banner-text a {
  color: var(--blue);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner-actions button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.cookie-decline {
  background: #f1f0fb;
  color: var(--ink);
}

@media (max-width: 760px) {
  .cookie-banner {
    padding: 4px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: right;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 8px;
  }

  .cookie-banner-text {
    /* Fix: base rule sets flex: 1 1 260px for the desktop row layout
       (a width basis). In this breakpoint the wrapper switches to
       flex-direction: column, turning that same 260px into a forced
       MIN-HEIGHT for the paragraph — far taller than the wrapped text,
       which is what created the large empty space in the banner. */
    flex: 0 1 auto;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
    gap: 5px;
  }

  .cookie-banner-actions button {
    padding: 4px 9px;
    font-size: 10.5px;
  }
}

/* =========================================================
   ACCELERATOR STANDALONE PAGE (accelerator.html) — additive only
   ========================================================= */

.accelerator-page-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.accelerator-page-subtitle {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

.accelerator-page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

/* ---- Stat badge, avatar stack, video — exact port from 8020accelerator.netlify.app,
   intentionally uses that project's own literal colors to match it precisely ---- */

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 128, 255, 0.1);
  color: #2d80ff;
  border: 1px solid rgba(45, 128, 255, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.stat-badge-hot {
  background: linear-gradient(135deg, #2d80ff, #a944ff);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  padding: 8px 20px;
  box-shadow: 0 4px 16px rgba(45, 128, 255, 0.3);
}

.avatar-stack {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.stack-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  transition: transform 0.2s;
}

.stack-avatar:first-child {
  margin-left: 0;
}

.stack-avatar:hover {
  transform: translateY(-3px);
  z-index: 1;
}

.avatar-stack-more {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  color: #a944ff;
  font-size: 18px;
  font-weight: 800;
}

.video-section {
  background: #fff;
  padding: 56px 0;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 640px) {
  .video-section {
    padding: 36px 0;
  }
}

.accelerator-page-subheading {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  text-align: center;
}

.accelerator-page-subheading-note {
  margin: 0 0 44px;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}

/* ---- Comparison table — exact port from 8020accelerator.netlify.app, intentionally uses
   that project's own literal colors (not our site vars) to match it precisely ---- */

.comparison {
  background: #1e293b;
  padding: 72px 0;
}

.compare-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.comparison-headline {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.35;
}

.compare-table {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 800;
  font-size: 1.05rem;
}

.compare-header > div {
  padding: 16px 24px;
  text-align: center;
}

.compare-header .col-alone {
  background: #fff;
  color: #1e293b;
  border-left: 1px solid #eef2f8;
}

.compare-header .col-accelerator {
  background: linear-gradient(135deg, #2d80ff, #a944ff);
  color: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid #eef2f8;
  transition: background 0.15s;
}

.compare-row:hover {
  background: #f8faff;
}

.compare-row > div {
  padding: 16px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.col-alone {
  color: #64748b;
  border-left: 1px solid #eef2f8;
}

.col-accelerator {
  color: #1e293b;
}

.x-icon {
  color: #f43f5e;
  font-weight: 900;
  margin-left: 6px;
}

.v-icon {
  color: #22c55e;
  font-weight: 900;
  margin-left: 6px;
}

@media (max-width: 640px) {
  .comparison {
    padding: 52px 0;
  }

  .comparison-headline {
    font-size: 1.45rem;
  }

  .compare-header > div,
  .compare-row > div {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 760px) {
  .accelerator-page-subheading-note {
    margin-bottom: 32px;
  }
}

/* ---- "לפרטים נוספים" link at the bottom of the homepage accelerator section ---- */

.accelerator-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.accelerator-more a {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  font-weight: 700;
  font-size: 14.5px;
  transition: background 160ms ease, color 160ms ease;
}

.accelerator-more a:hover {
  background: var(--purple);
  color: #fff;
}

@media (max-width: 760px) {
  .accelerator-more {
    margin-top: 28px;
  }
}
