:root {
  color-scheme: dark;
  --ink: #f5fff7;
  --muted: #a8b8ad;
  --soft: #dbe9df;
  --night: #020906;
  --panel: rgba(8, 20, 14, 0.82);
  --panel-strong: rgba(10, 26, 18, 0.94);
  --line: rgba(214, 255, 224, 0.16);
  --line-strong: rgba(182, 255, 0, 0.42);
  --acid: #b6ff00;
  --teal: #49e8c8;
  --danger: #ff6b6b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(182, 255, 0, 0.09), transparent 34%),
    linear-gradient(245deg, rgba(73, 232, 200, 0.12), transparent 32%),
    var(--night);
}

html[dir="rtl"] body {
  direction: rtl;
  font-family: "Tajawal", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 14% 8%, rgba(182, 255, 0, 0.1), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(73, 232, 200, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(2, 9, 6, 0.08), rgba(2, 9, 6, 0.88));
  mix-blend-mode: soft-light;
  opacity: 0.7;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.landing-page {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(16px, 2.4vw, 34px);
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.landing-shell {
  min-height: min(720px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 14px;
  align-items: center;
  justify-items: center;
}

.intro-panel {
  width: min(100%, 880px);
  max-width: 760px;
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(54px, 8vw, 104px);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.leap-logo-link,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-wordmark {
  color: var(--ink);
  font-family: "Tajawal", "Inter", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo-saudi {
  height: clamp(48px, 4.8vw, 64px);
  max-width: clamp(150px, 18vw, 230px);
}

.brand-logo-saudi-white {
  width: clamp(108px, 13vw, 168px);
  height: auto;
  max-height: 72px;
}

.brand-logo-leap {
  height: clamp(34px, 3.2vw, 42px);
  max-width: clamp(108px, 12vw, 154px);
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(182, 255, 0, 0.76);
  border-radius: var(--radius-sm);
  color: #061007;
  background: var(--acid);
  box-shadow: 0 0 34px rgba(182, 255, 0, 0.3);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.58;
}

.event-card {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.limited-badge {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(182, 255, 0, 0.28);
  border-radius: var(--radius);
  background: rgba(182, 255, 0, 0.065);
}

.deadline-button {
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 9px 16px;
  border: 1px solid rgba(73, 232, 200, 0.42);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(73, 232, 200, 0.08);
  box-shadow: 0 14px 42px rgba(73, 232, 200, 0.12);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.deadline-button:hover,
.deadline-button:focus-visible {
  border-color: var(--teal);
  background: rgba(73, 232, 200, 0.14);
  box-shadow: 0 18px 48px rgba(73, 232, 200, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.limited-badge > span {
  width: 10px;
  height: 10px;
  grid-row: span 2;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 22px rgba(182, 255, 0, 0.66);
  animation: limitedPulse 1.55s ease-in-out infinite;
}

.limited-badge strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.limited-badge small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

@keyframes limitedPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

.positioning {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.packages-register-button {
  width: fit-content;
  min-width: 188px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  padding: 0 24px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.packages-footnote {
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 24px auto 0;
  padding: 11px 16px;
  border: 1px solid rgba(182, 255, 0, 0.24);
  border-radius: var(--radius-sm);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.interest-form {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  min-width: 0;
  margin-inline: auto;
  padding: clamp(24px, 3.2vw, 42px);
}

.registration-section {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.interest-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--acid), var(--teal));
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.field span {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  padding: 0 14px;
  direction: ltr;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--acid) 50%),
    linear-gradient(135deg, var(--acid) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus {
  border-color: var(--acid);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(182, 255, 0, 0.13);
}

.field input::placeholder {
  color: rgba(245, 255, 247, 0.42);
}

.field.invalid input,
.field.invalid select {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.error-message {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
}

.button {
  min-height: 56px;
  border: 0;
  border-radius: var(--radius-sm);
  color: #061007;
  background: var(--acid);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #d6ff4a;
  box-shadow: 0 18px 42px rgba(182, 255, 0, 0.24);
  transform: translateY(-2px);
}

.submit-button {
  width: 100%;
  margin-top: 12px;
}

.confirmation-message {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(182, 255, 0, 0.32);
  border-radius: var(--radius-sm);
  color: var(--soft);
  background: rgba(182, 255, 0, 0.09);
  font-size: 0.9rem;
  line-height: 1.5;
}

.confirmation-message.is-error {
  border-color: rgba(255, 107, 107, 0.38);
  background: rgba(255, 107, 107, 0.1);
}

.scroll-cue {
  grid-column: 1;
  justify-self: center;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(182, 255, 0, 0.72);
  border-radius: var(--radius-sm);
  color: #061007;
  background: var(--acid);
  box-shadow: 0 16px 48px rgba(182, 255, 0, 0.18);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: cueFloat 1.9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  animation: cueArrow 1.25s ease-in-out infinite;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: var(--line-strong);
  color: #061007;
  background: #d6ff4a;
  outline: none;
}

.registration-section .details-button {
  display: inline-flex;
  margin: 0 auto 18px;
  justify-self: center;
}

@keyframes cueFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes cueArrow {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

.content-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(4, 18, 12, 0.94), rgba(12, 29, 14, 0.84)),
    radial-gradient(circle at 12% 0%, rgba(182, 255, 0, 0.16), transparent 32%),
    var(--panel);
  box-shadow: var(--shadow);
}

.content-section.reveal {
  opacity: 1;
  transform: none;
}

.content-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--acid), var(--teal), rgba(143, 105, 255, 0.9));
}

.content-section::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(182, 255, 0, 0.14);
  border-radius: 50%;
  content: "";
  opacity: 0.65;
}

.section-kicker,
.section-heading,
.package-stage,
.partner-runway,
.timeline {
  position: relative;
  z-index: 1;
}

.timeline-section {
  padding-right: 0;
  padding-left: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.timeline-section::before,
.timeline-section::after {
  display: none;
}

.timeline-section .section-kicker,
.timeline-section .section-heading,
.timeline-section .timeline {
  padding-right: clamp(24px, 4vw, 48px);
  padding-left: clamp(24px, 4vw, 48px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.section-logo-text {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(182, 255, 0, 0.36);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(182, 255, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-heading {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 3vw, 38px);
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.68;
}

.package-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(182, 255, 0, 0.1), transparent 24%),
    linear-gradient(300deg, rgba(73, 232, 200, 0.1), transparent 25%),
    rgba(255, 255, 255, 0.035);
}

.package-stage::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--acid), var(--teal), transparent);
}

.package-stage::after {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: -92px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(182, 255, 0, 0.16);
  border-radius: 50%;
  content: "";
}

.package-card {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.package-card + .package-card {
  border-inline-start: 1px solid var(--line);
}

.package-card:hover,
.package-card:focus-within,
.package-card.is-selected {
  background:
    radial-gradient(circle at 50% 0%, rgba(182, 255, 0, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.package-label,
.package-price {
  display: block;
}

.package-number {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-label {
  margin-bottom: 14px;
  color: var(--acid);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.is-featured .package-label {
  color: var(--teal);
}

.package-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.16em;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 3.2vw, 4rem);
  line-height: 0.96;
  color: var(--acid);
}

.riyal-symbol {
  width: 0.72em;
  height: 0.82em;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("assets/saudi-riyal-symbol.png") center / contain no-repeat;
  mask: url("assets/saudi-riyal-symbol.png") center / contain no-repeat;
  transform: translateY(0.08em);
}

.package-card small {
  display: block;
  margin: -8px 0 16px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card .package-includes {
  margin: -8px 0 18px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.package-card p {
  min-height: 132px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

.package-card ul {
  display: grid;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  text-align: start;
}

.package-card li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.package-card li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.1em;
  color: var(--acid);
  content: "+";
  font-weight: 900;
}

.package-card .package-note {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.package-select {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(182, 255, 0, 0.36);
  border-radius: var(--radius-sm);
  color: var(--acid);
  background: rgba(182, 255, 0, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.package-select:hover,
.package-select:focus-visible,
.package-select.is-selected {
  border-color: var(--acid);
  color: #061007;
  background: var(--acid);
  outline: none;
  transform: translateY(-1px);
}

.ecosystem-section {
  min-height: 560px;
  border-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(182, 255, 0, 0.055), transparent),
    transparent;
  box-shadow: none;
}

.ecosystem-section::before,
.ecosystem-section::after {
  display: none;
}

.ecosystem-section .section-heading {
  max-width: 1040px;
}

.outcome-section {
  border-color: rgba(73, 232, 200, 0.18);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
  margin-top: clamp(24px, 4vw, 42px);
}

.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(73, 232, 200, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
  text-align: start;
}

.outcome-card::before {
  position: absolute;
  inset-inline-end: -34px;
  bottom: -42px;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(182, 255, 0, 0.16);
  border-radius: 50%;
  content: "";
}

.outcome-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(182, 255, 0, 0.34);
  border-radius: 50%;
  color: var(--acid);
  background: rgba(182, 255, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
}

.outcome-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 1.2;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.partner-runway {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr 1.05fr 1.25fr;
  align-items: end;
  gap: clamp(34px, 5.8vw, 104px);
  min-height: 230px;
  padding: clamp(32px, 5vw, 72px) 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-logo {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
}

.partner-logo img {
  width: clamp(76px, 8vw, 120px);
  height: clamp(76px, 8vw, 120px);
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(182, 255, 0, 0.13));
}

.partner-logo strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.9vw, 2.25rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.partner-logo:nth-child(2) strong {
  letter-spacing: 0;
}

.partner-logo-wide strong {
  font-size: clamp(1.1rem, 1.65vw, 2rem);
}

.partner-logo span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
}

.timeline li:not(:last-child)::before {
  position: absolute;
  top: 28px;
  right: -11px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.timeline-date {
  position: relative;
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--acid);
  background: rgba(182, 255, 0, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.timeline-date::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--night);
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid), 0 0 28px rgba(182, 255, 0, 0.5);
  transform: translateX(-50%);
}

.timeline-panel {
  flex: 1;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.timeline-phase {
  display: block;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.25;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.timeline strong {
  display: block;
  margin-top: 18px;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 72px) 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  color: rgba(245, 255, 247, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.footer-leap-button {
  min-width: min(100%, 270px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin: 0 0 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 18px 48px rgba(182, 255, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-leap-button:hover,
.footer-leap-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(182, 255, 0, 0.26);
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  margin-inline: auto;
  justify-self: center;
}

.footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.footer-logo-saudi {
  width: clamp(150px, 20vw, 270px);
  height: auto;
  max-height: 96px;
}

.footer-logo-leap {
  height: clamp(34px, 4vw, 48px);
  max-width: clamp(112px, 14vw, 170px);
}

.footer-divider {
  width: 1px;
  height: clamp(34px, 4vw, 48px);
  background: var(--line);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-contact a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, text-shadow 180ms ease;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.footer-contact .footer-icon-link {
  width: 42px;
  justify-content: center;
  padding-inline: 0;
}

.footer-linkedin-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.footer-contact svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  border-color: var(--line-strong);
  color: var(--acid);
  background: rgba(182, 255, 0, 0.08);
  text-shadow: 0 0 18px rgba(182, 255, 0, 0.28);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .landing-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .intro-panel {
    max-width: none;
  }

  .brand {
    margin-bottom: 56px;
  }

  .interest-form {
    max-width: 720px;
  }

  .scroll-cue {
    grid-column: 1;
    justify-self: start;
    margin-top: 12px;
  }

  .package-stage,
  .partner-runway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card:nth-child(3) {
    grid-column: span 2;
    min-height: auto;
  }

  .package-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
  }

  .partner-logo-wide {
    grid-column: span 2;
  }

  .package-card {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .landing-page {
    min-height: auto;
    gap: 44px;
    padding: 18px 14px 18px;
  }

  .landing-shell {
    row-gap: 22px;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
  }

  .brand {
    max-width: min(100%, 245px);
    flex: 1 1 210px;
    gap: 8px;
    margin-bottom: 0;
  }

  .brand-logo-saudi {
    height: 38px;
    max-width: 132px;
  }

  .brand-logo-saudi-white {
    width: 112px;
    height: auto;
    max-height: 64px;
  }

  .brand-logo-leap {
    height: 28px;
    max-width: 96px;
  }

  .brand-divider {
    height: 28px;
  }

  .scroll-cue {
    justify-self: center;
    margin-top: 10px;
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(1.86rem, 8.9vw, 2.55rem);
    line-height: 1.12;
  }

  .lead {
    margin-bottom: 16px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .event-card {
    width: 100%;
  }

  .event-card {
    display: grid;
    margin-bottom: 12px;
  }

  .event-card span {
    min-height: 34px;
    padding: 8px 12px;
    justify-content: center;
    text-align: center;
  }

  .limited-badge {
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  .positioning {
    display: none;
  }

  .packages-register-button {
    width: 100%;
  }

  .package-stage,
  .partner-runway,
  .timeline {
    grid-template-columns: 1fr;
  }

  .package-card + .package-card,
  .package-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
    grid-column: auto;
  }

  .package-number {
    margin-bottom: 30px;
  }

  .package-price {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .partner-runway {
    min-height: 0;
    gap: 28px;
    padding: 24px 0;
  }

  .partner-logo,
  .partner-logo-wide {
    min-height: 112px;
    grid-column: auto;
  }

  .partner-logo strong {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
    white-space: normal;
  }

  .partner-logo img {
    width: 78px;
    height: 78px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 10.5vw, 3rem);
    line-height: 1.04;
  }

  .package-card {
    min-height: auto;
    padding: 18px;
  }

  .package-card p {
    min-height: auto;
  }

  .content-section {
    padding: 18px;
  }

  .section-kicker {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .section-logo {
    width: 32px;
    height: 32px;
  }

  .interest-form {
    padding: 18px;
  }

  .form-heading {
    margin-bottom: 20px;
  }

  .form-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.12;
  }

  .form-grid {
    gap: 12px;
  }

  .field input,
  .field select {
    min-height: 50px;
    font-size: 16px;
  }

  .timeline li:not(:last-child)::before {
    top: 63px;
    right: auto;
    bottom: -12px;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .timeline-date {
    width: fit-content;
    min-width: 126px;
    margin-left: 24px;
  }

  .timeline-date::after {
    left: -31px;
    top: 50%;
    bottom: auto;
    transform: none;
    translate: 0 -50%;
  }

  .timeline-panel {
    margin-top: 16px;
    padding: 0 0 22px 24px;
  }

  .site-footer {
    padding: 0 16px 24px;
    display: grid;
    justify-content: center;
  }

  .footer-contact {
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
  }

  .footer-contact a {
    min-width: 0;
    justify-content: center;
    padding-inline: 9px;
  }

  .footer-contact a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer-contact .footer-icon-link {
    width: 42px;
    padding-inline: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(54px, 8vw, 104px);
}

.topbar .brand {
  margin-bottom: 0;
}

.language-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.language-button {
  min-width: 48px;
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-button.is-active,
.language-button:focus-visible {
  color: #061007;
  background: var(--acid);
  outline: none;
}

html[dir="rtl"] .topbar,
html[dir="rtl"] .section-kicker {
  flex-direction: row-reverse;
}

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

html[dir="rtl"] .intro-panel,
html[dir="rtl"] .interest-form,
html[dir="rtl"] .content-section,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .package-card,
html[dir="rtl"] .visual-panel figcaption,
html[dir="rtl"] .site-footer {
  text-align: center;
}

html[dir="rtl"] h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .form-heading h2,
html[dir="rtl"] .journey-card h3 {
  text-align: right;
}

html[dir="rtl"] #page-title {
  text-align: center;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .package-label,
html[dir="rtl"] .package-card small,
html[dir="rtl"] .package-select,
html[dir="rtl"] .packages-register-button,
html[dir="rtl"] .journey-summary span,
html[dir="rtl"] .journey-date,
html[dir="rtl"] .site-footer {
  letter-spacing: 0;
}

html[dir="rtl"] .field input,
html[dir="rtl"] .field select {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .field {
  text-align: right;
}

html[dir="rtl"] .field input[type="email"],
html[dir="rtl"] .field input[type="tel"] {
  direction: ltr;
  text-align: right;
}

html[dir="rtl"] .limited-badge {
  grid-template-columns: minmax(0, 1fr) 10px;
}

html[dir="rtl"] .limited-badge > span {
  grid-column: 2;
}

html[dir="rtl"] .field select {
  background-position: 18px 22px, 12px 22px;
  padding-inline: 36px 14px;
}

html[dir="rtl"] .outcome-card {
  text-align: right;
}

html[dir="rtl"] .section-heading {
  margin-inline: auto;
}

html[dir="rtl"] .section-heading p {
  margin-inline: auto;
}

html[dir="rtl"] .package-number,
html[dir="rtl"] .journey-node {
  justify-self: end;
}

html[dir="rtl"] .site-footer {
  direction: rtl;
}

.partner-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  direction: ltr;
}

.partner-marquee::before,
.partner-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  content: "";
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--night), transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--night), transparent);
}

.partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(12px, 2vw, 28px);
  animation: partnerScroll 8s linear infinite;
  direction: ltr;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-track .partner-logo {
  min-width: clamp(150px, 15vw, 240px);
  min-height: 112px;
  justify-items: center;
  gap: 10px;
  padding: 12px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  direction: rtl;
  text-align: center;
  box-shadow: none;
}

.partner-track .partner-logo-wide {
  min-width: clamp(210px, 20vw, 320px);
}

.partner-track .partner-logo strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.9vw, 3.8rem);
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(182, 255, 0, 0.08);
}

.partner-track .partner-logo span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.partner-track .partner-logo img {
  width: clamp(112px, 12vw, 190px);
  height: clamp(48px, 5vw, 78px);
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.timeline-section {
  width: 100vw;
  margin-inline-start: calc(50% - 50vw);
  padding: clamp(34px, 5vw, 78px) clamp(14px, 2.4vw, 34px);
}

.timeline-section .section-kicker,
.timeline-section .section-heading,
.timeline-section .timeline-board {
  width: min(100%, 1540px);
  margin-inline: auto;
  padding-inline: 0;
}

.timeline-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.timeline-days {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.timeline-day {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.timeline-day:hover,
.timeline-day:focus-visible,
.timeline-day.is-active {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(182, 255, 0, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.timeline-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
}

.timeline-day strong,
.timeline-day small {
  display: block;
}

.timeline-day strong {
  color: var(--acid);
  font-size: 0.95rem;
  font-weight: 900;
}

.timeline-day small {
  color: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-detail {
  display: grid;
  grid-template-columns: minmax(88px, 0.16fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  min-height: 290px;
  padding: clamp(24px, 4vw, 52px) 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.timeline-detail-icon {
  width: clamp(72px, 8vw, 120px);
  height: clamp(72px, 8vw, 120px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--acid);
  background: rgba(182, 255, 0, 0.08);
}

.timeline-detail-icon svg {
  width: 54%;
  height: 54%;
}

.timeline-detail h3 {
  max-width: 780px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.3vw, 4.1rem);
  line-height: 0.98;
}

.timeline-detail p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.timeline-detail strong {
  display: block;
  margin-top: 24px;
  color: var(--acid);
  font-size: 0.95rem;
  line-height: 1.55;
}

html[dir="rtl"] .timeline-day {
  justify-items: end;
  text-align: right;
}

html[dir="rtl"] .timeline-detail {
  direction: rtl;
}

html[dir="rtl"] .timeline-detail-icon {
  order: 2;
}

@media (max-width: 1040px) {
  .timeline-days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-detail {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    margin-bottom: 38px;
  }

  .brand {
    gap: 8px;
    font-size: 0.68rem;
  }

  .language-toggle {
    flex-shrink: 0;
  }

  .partner-track {
    gap: 14px;
    animation-duration: 7s;
  }

  .partner-track .partner-logo {
    min-width: 150px;
    min-height: 92px;
    padding: 8px 10px;
  }

  .partner-track .partner-logo-wide {
    min-width: 216px;
  }

  .partner-track .partner-logo strong {
    font-size: clamp(1.45rem, 7vw, 2.3rem);
    white-space: nowrap;
  }

  .partner-track .partner-logo span {
    font-size: 0.66rem;
  }

  .timeline-section {
    padding: 38px 14px;
  }

  .timeline-days {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 10px;
    scroll-snap-type: x mandatory;
  }

  .timeline-day {
    min-width: 156px;
    min-height: 116px;
    scroll-snap-align: start;
  }

  .timeline-detail {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px 0 0;
  }

  .timeline-detail-icon {
    width: 66px;
    height: 66px;
  }

  .timeline-detail h3 {
    font-size: clamp(1.65rem, 9vw, 2.55rem);
  }

html[dir="rtl"] .timeline-detail-icon {
  order: 0;
}
}

.visual-section {
  position: relative;
  overflow: hidden;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(28px, 5vw, 58px);
}

.visual-panel {
  position: relative;
  min-height: clamp(280px, 34vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(182, 255, 0, 0.12), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-panel-large {
  grid-column: 1 / -1;
  min-height: clamp(360px, 40vw, 520px);
}

.visual-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 9, 6, 0.08), rgba(2, 9, 6, 0.84)),
    linear-gradient(90deg, rgba(2, 9, 6, 0.7), transparent 62%);
}

.visual-panel::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(182, 255, 0, 0.24);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 34px rgba(73, 232, 200, 0.08);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-panel:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.visual-panel figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: grid;
  gap: 10px;
  align-content: end;
}

.visual-panel figcaption span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--acid);
  background: rgba(2, 9, 6, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-panel figcaption strong {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.15vw, 2.45rem);
  line-height: 1.08;
}

.visual-panel:not(.visual-panel-large) figcaption strong {
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.2;
}

.visual-panel figcaption small {
  width: fit-content;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.86;
}

.timeline-board {
  gap: clamp(24px, 4vw, 50px);
}

.journey-summary {
  width: min(100%, 760px);
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(182, 255, 0, 0.1), rgba(73, 232, 200, 0.05)),
    rgba(5, 15, 10, 0.72);
}

.journey-summary span {
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-summary strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 3.2vw, 3.4rem);
  line-height: 0.95;
}

.journey-summary small {
  max-width: 620px;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.journey-track {
  --node-size: 52px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.35vw, 18px);
  align-items: stretch;
  padding-top: 34px;
}

.journey-track::before {
  position: absolute;
  top: calc(34px + (var(--node-size) / 2));
  right: 5%;
  left: 5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line-strong), var(--teal), var(--line-strong), transparent);
  opacity: 0.92;
}

.journey-card {
  position: relative;
  z-index: 1;
  min-height: 380px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0 clamp(14px, 1.55vw, 24px) clamp(20px, 2vw, 30px);
  border: 1px solid rgba(214, 255, 224, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(182, 255, 0, 0.065), transparent 36%),
    rgba(5, 15, 10, 0.82);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.journey-card:hover,
.journey-card:focus-within {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(182, 255, 0, 0.12), transparent 38%),
    rgba(8, 22, 14, 0.9);
  transform: translateY(-6px);
}

.journey-node {
  width: var(--node-size);
  height: var(--node-size);
  display: inline-grid;
  place-items: center;
  margin-top: calc((var(--node-size) / -2) - 1px);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--night);
  background: var(--acid);
  box-shadow: 0 0 0 12px rgba(2, 9, 6, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
}

.journey-date {
  margin-top: 16px;
  color: var(--acid);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-symbol {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--teal);
  background: rgba(73, 232, 200, 0.08);
}

.journey-symbol svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.journey-symbol svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.55vw, 1.62rem);
  line-height: 1.04;
}

.journey-card p {
  margin: 0;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.journey-card strong {
  align-self: end;
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  line-height: 1.45;
}

html[dir="rtl"] .visual-panel::before {
  background:
    linear-gradient(180deg, transparent 34%, rgba(2, 9, 6, 0.72)),
    linear-gradient(270deg, rgba(2, 9, 6, 0.52), transparent 58%);
}

html[dir="rtl"] .journey-card {
  text-align: right;
}

html[dir="rtl"] .scroll-cue {
  flex-direction: row-reverse;
  direction: rtl;
}

html[dir="rtl"] .journey-symbol {
  justify-self: end;
}

html[dir="rtl"] .journey-summary {
  margin-inline-start: auto;
  text-align: right;
}

@media (max-width: 1280px) {
  .journey-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 46px;
  }

  .journey-track::before {
    display: none;
  }

  .journey-card {
    min-height: 300px;
  }
}

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

  .outcome-card {
    min-height: 0;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .visual-panel-large,
  .visual-panel {
    min-height: 310px;
  }
}

@media (max-width: 720px) {
  .visual-grid {
    gap: 14px;
  }

  .visual-panel-large,
  .visual-panel {
    min-height: 245px;
  }

  .visual-panel figcaption strong {
    font-size: clamp(1.08rem, 5.4vw, 1.55rem);
    line-height: 1.2;
  }

  .visual-panel figcaption small {
    font-size: 0.72rem;
  }

  .journey-track {
    --node-size: 46px;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 24px;
  }

  .journey-card {
    min-height: 0;
    padding: 0 20px 24px;
  }

  .journey-card h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .journey-card h3,
html[dir="rtl"] .visual-panel figcaption strong {
  line-height: 1.12;
}

html[dir="rtl"] .event-card span {
  justify-content: center;
  text-align: center;
}

html[dir="rtl"] .limited-badge strong,
html[dir="rtl"] .limited-badge small,
html[dir="rtl"] .visual-panel figcaption span {
  justify-self: start;
}

@media (max-width: 720px) {
  .landing-page,
  .landing-shell,
  .intro-panel,
  .interest-form,
  .content-section,
  .timeline-board,
  .visual-grid,
  .package-stage {
    min-width: 0;
    max-width: 100%;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .language-toggle {
    justify-self: start;
  }

  html[dir="rtl"] .topbar {
    justify-items: start;
  }

  html[dir="rtl"] .language-toggle {
    justify-self: start;
  }

  .brand {
    max-width: 100%;
    flex: none;
  }

  .brand-logo-saudi {
    height: 36px;
    max-width: 126px;
  }

  .brand-logo-saudi-white {
    width: 106px;
    height: auto;
    max-height: 60px;
  }

  .brand-wordmark {
    font-size: 1.12rem;
  }

  .brand-logo-leap {
    height: 26px;
    max-width: 90px;
  }

  h1 {
    overflow-wrap: anywhere;
  }

  html[dir="rtl"] h1 {
    font-size: clamp(1.86rem, 8.9vw, 2.55rem);
  }

  html[dir="rtl"] #page-title {
    text-align: center;
  }

  .event-card span {
    justify-content: flex-start;
    text-align: start;
  }

  html[dir="rtl"] .event-card span {
    justify-content: center;
    text-align: center;
  }

  .limited-badge {
    width: 100%;
  }

  .content-section::after {
    display: none;
  }

  .package-card ul {
    gap: 11px;
  }

  .package-card li {
    font-size: 0.91rem;
  }

  .partner-marquee {
    padding: 28px 0;
    overflow: visible;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    display: none;
  }

  .partner-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    animation: none;
    direction: rtl;
  }

  .partner-track .partner-logo:nth-child(n+6) {
    display: none;
  }

  .partner-track .partner-logo {
    min-width: 0;
    min-height: 90px;
    padding: 8px 10px;
  }

  .partner-track .partner-logo-mobile-center {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(58%, 220px);
  }

  .partner-track .partner-logo-wide {
    min-width: 0;
    grid-column: 1 / -1;
  }

  .partner-track .partner-logo strong {
    font-size: clamp(1.42rem, 7vw, 2.2rem);
    white-space: nowrap;
  }

  .partner-track .partner-logo span {
    font-size: 0.66rem;
  }

  .visual-panel figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .journey-summary strong {
    font-size: clamp(1.45rem, 8.4vw, 2.2rem);
    line-height: 1.08;
  }

  .journey-card {
    gap: 12px;
    padding: 0 16px 22px;
  }

  html[dir="rtl"] .site-footer {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .landing-page {
    padding-inline: 12px;
  }

  h1 {
    font-size: clamp(1.78rem, 8.8vw, 2.35rem);
  }

  .section-heading h2 {
    font-size: clamp(1.7rem, 9.6vw, 2.48rem);
  }

  .language-button {
    min-width: 44px;
  }

  .scroll-cue {
    width: 100%;
    justify-content: center;
  }
}
