:root {
  --color-primary: #27328a;
  --color-primary-light: #afb8db;
  --color-primary-pale: #d9dce4;
  --color-white: #ffffff;
  --color-accent-mauve: #ac8795;
  --color-accent-orange: #ff9933;
  --color-ink: #11153d;
  --color-muted: #4d5577;
  --color-surface: #f7f8fc;
  --color-soft-orange: #fff3e6;
  --shadow-soft: 0 24px 70px rgba(39, 50, 138, 0.12);
  --radius: 8px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font-display: "Fredoka One", "Noto Sans", system-ui, sans-serif;
  --font-serif: "Roboto Slab", Georgia, serif;
  --font-sans: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 153, 51, 0.75);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

.section-band {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 32px, 1160px);
  min-height: 76px;
  margin: 0;
  padding: 10px 12px 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(175, 184, 219, 0.7);
  border-radius: var(--radius);
  background: rgba(17, 21, 61, 0.34);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo-frame {
  position: relative;
  width: 56px;
  height: 56px;
  display: block;
  overflow: hidden;
}

.brand-logo-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.brand-logo-frame-large {
  width: 64px;
  height: 64px;
}

.brand-logo-frame-large img {
  width: 570px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: none;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--color-accent-orange);
  color: #2f1a05;
  box-shadow: 0 16px 32px rgba(255, 153, 51, 0.24);
}

.button-primary:hover {
  background: #ffad5c;
}

.button-secondary {
  border-color: rgba(39, 50, 138, 0.25);
  background: var(--color-white);
  color: var(--color-primary);
}

.button-secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-pale);
}

.button-disabled {
  cursor: not-allowed;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  opacity: 0.9;
}

.button-disabled:hover {
  transform: none;
}

.button-disabled:active {
  transform: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(39, 50, 138, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--color-primary);
}

.hero {
  padding-top: 64px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at top right, rgba(255, 153, 51, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent-mauve);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--color-primary);
  font-size: 1.18rem;
  line-height: 1.2;
}

.arabic-line {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px 11px;
  border: 1px solid rgba(172, 135, 149, 0.4);
  border-radius: var(--radius);
  background: rgba(172, 135, 149, 0.12);
  color: var(--color-primary);
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 32px 0 46px;
  border: 1px solid rgba(175, 184, 219, 0.7);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(39, 50, 138, 0.06), rgba(255, 255, 255, 0.9) 64%);
  box-shadow: var(--shadow-soft);
}

.hero-photos::before {
  background: linear-gradient(160deg, rgba(39, 50, 138, 0.08), rgba(255, 255, 255, 0.92) 72%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% 4% 12% 12%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 153, 51, 0.24), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(172, 135, 149, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(39, 50, 138, 0.06), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.75;
  filter: blur(8px);
  animation: hero-glow-sway 14s ease-in-out infinite;
}

.photo-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: 520px;
}

.photo-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background: var(--color-primary-pale);
  box-shadow: 0 24px 60px rgba(39, 50, 138, 0.14);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame-main {
  inset: 40px 84px 76px 16px;
}

.photo-frame-small {
  width: 210px;
  height: 150px;
}

.photo-frame-one {
  top: 18px;
  right: 6px;
}

.photo-frame-two {
  right: 28px;
  bottom: 18px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 800;
}

.photo-caption {
  position: absolute;
  left: 0;
  bottom: 36px;
  z-index: 5;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 18px 44px rgba(39, 50, 138, 0.25);
}

.photo-caption span,
.photo-caption strong {
  display: block;
  line-height: 1.15;
}

.photo-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-caption strong {
  margin-top: 5px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.hero-puzzle {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  aspect-ratio: 1.28;
}

.vision-animation {
  --motion-ease: cubic-bezier(0, 0, 0.3, 1);
  display: block;
  border-radius: var(--radius);
}

.vision-path {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vision-path svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vision-path path {
  fill: none;
  stroke: rgba(39, 50, 138, 0.18);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: path-draw 1100ms var(--motion-ease) 420ms both;
}

.build-step {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(39, 50, 138, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(39, 50, 138, 0.94), rgba(75, 86, 169, 0.86));
  box-shadow: 0 18px 40px rgba(39, 50, 138, 0.16);
  transform-origin: bottom left;
  opacity: 0;
  animation: step-rise 620ms var(--motion-ease) both;
}

.build-step-one {
  right: 226px;
  bottom: 58px;
  width: 104px;
  height: 56px;
  animation-delay: 1760ms;
}

.build-step-two {
  right: 142px;
  bottom: 114px;
  width: 104px;
  height: 56px;
  animation-delay: 2140ms;
}

.build-step-three {
  right: 58px;
  bottom: 170px;
  width: 104px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent-orange), #ffb86f);
  animation-delay: 2520ms;
}

.build-step-three::after {
  content: "First step";
  position: absolute;
  right: 12px;
  bottom: 11px;
  color: #2f1a05;
  font-size: 0.8rem;
  font-weight: 800;
}

.vision-piece {
  position: absolute;
  z-index: 4;
  min-width: 118px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(175, 184, 219, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(39, 50, 138, 0.13);
  opacity: 0;
  transform: translate(var(--from-x), var(--from-y)) scale(0.96);
  animation: piece-build 740ms var(--motion-ease) both;
  animation-delay: var(--delay);
  will-change: transform, opacity;
}

.piece-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  background: url("The brand System/assets/Puzzle Graphic - source.png") center / 180px auto no-repeat;
  filter: saturate(1.1);
}

.vision-piece-trust {
  top: 50px;
  left: 42px;
}

.vision-piece-system {
  top: 112px;
  left: 176px;
}

.vision-piece-voice {
  top: 150px;
  left: 318px;
}

.vision-piece-people {
  top: 226px;
  left: 94px;
}

.vision-piece-service {
  top: 44px;
  right: 22px;
  background: var(--color-primary);
  color: var(--color-white);
}

.step-card {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(39, 50, 138, 0.13);
}

.step-card-one {
  top: 82px;
  left: 28px;
}

.step-card-two {
  top: 160px;
  right: 22px;
}

.step-card-three {
  bottom: 110px;
  left: 90px;
}

.impact-note {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 38px;
  width: min(270px, 72%);
  padding: 14px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 18px 44px rgba(39, 50, 138, 0.25);
}

.impact-piece {
  width: 58px;
  height: 40px;
  display: block;
  background: url("The brand System/assets/Puzzle Graphic - source.png") center / 420px auto no-repeat;
}

.impact-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading::after {
  content: "";
  width: 84px;
  height: 2px;
  display: block;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--color-accent-orange), rgba(255, 153, 51, 0.16));
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.story {
  background: var(--color-white);
}

.photo-story {
  background: var(--color-white);
  border-top: 1px solid rgba(175, 184, 219, 0.36);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: end;
}

.impact {
  background:
    linear-gradient(180deg, rgba(247, 248, 252, 0.86), rgba(255, 255, 255, 1)),
    linear-gradient(90deg, rgba(255, 153, 51, 0.08), transparent 46%, rgba(172, 135, 149, 0.08));
  border-top: 1px solid rgba(175, 184, 219, 0.36);
  border-bottom: 1px solid rgba(175, 184, 219, 0.36);
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.impact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.impact-card {
  min-height: 210px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(39, 50, 138, 0.08);
}

.impact-card strong {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.impact-card span {
  color: var(--color-accent-mauve);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-card p {
  margin: 0;
  color: var(--color-muted);
}

.yearly-goals {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--color-white), rgba(247, 248, 252, 0.96)),
    radial-gradient(circle at 86% 8%, rgba(255, 153, 51, 0.08), transparent 34%);
}

/* Brand assets are used as section-level accents, not repeated card icons. */
.yearly-goals::before {
  content: "";
  position: absolute;
  left: max(24px, calc(50% - 620px));
  top: 145px;
  width: min(64vw, 760px);
  height: 340px;
  border-left: 1px solid rgba(255, 153, 51, 0.18);
  border-bottom: 1px solid rgba(39, 50, 138, 0.1);
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 153, 51, 0.12) 47% 48%, transparent 48%),
    repeating-linear-gradient(135deg, transparent 0 78px, rgba(39, 50, 138, 0.08) 78px 80px, transparent 80px 156px);
  opacity: 0.46;
  pointer-events: none;
}

.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-pattern-piece {
  position: absolute;
  display: block;
}

.section-pattern-piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.08;
  filter: saturate(0.85);
}

.goals-section-pattern .section-pattern-piece-primary {
  right: -82px;
  top: 36px;
  width: min(35vw, 420px);
  aspect-ratio: 1;
  transform: rotate(8deg);
}

.goals-section-pattern .section-pattern-piece-secondary {
  left: -36px;
  bottom: 44px;
  width: min(22vw, 220px);
  aspect-ratio: 1;
  transform: rotate(-12deg);
}

.yearly-goals .container {
  position: relative;
  z-index: 1;
}

.goals-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.goals-heading h2 {
  max-width: 760px;
}

.goals-heading p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

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

.goal-card {
  min-height: 224px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 253, 0.92)),
    linear-gradient(135deg, rgba(255, 153, 51, 0.035), rgba(39, 50, 138, 0.025));
  box-shadow: 0 14px 38px rgba(39, 50, 138, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.goal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.86), rgba(172, 135, 149, 0.38), rgba(39, 50, 138, 0.12));
  opacity: 0.86;
}

.goal-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 24px;
  border-right: 1px solid rgba(255, 153, 51, 0.28);
  border-bottom: 1px solid rgba(39, 50, 138, 0.16);
  opacity: 0.7;
}

.goal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.52);
  box-shadow: 0 20px 44px rgba(39, 50, 138, 0.11);
}

.goal-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.goal-category {
  color: var(--color-accent-mauve);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.goal-target {
  max-width: 140px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 153, 51, 0.36);
  border-radius: 999px;
  background: rgba(255, 240, 221, 0.92);
  color: #7a3d05;
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: right;
}

.goal-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.goal-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
}

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

.photo-strip {
  min-height: 430px;
  position: relative;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(175, 184, 219, 0.7);
  border-radius: var(--radius);
  background: var(--color-primary-pale);
  box-shadow: 0 18px 42px rgba(39, 50, 138, 0.1);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-1 {
  position: absolute;
  left: 0;
  top: 46px;
  width: 38%;
  height: 260px;
}

.story-photo-2 {
  position: absolute;
  left: 32%;
  top: 0;
  width: 36%;
  height: 210px;
}

.story-photo-3 {
  position: absolute;
  right: 0;
  top: 92px;
  width: 34%;
  height: 250px;
}

.story-photo-4 {
  position: absolute;
  left: 22%;
  bottom: 0;
  width: 35%;
  height: 180px;
}

.story-photo-5 {
  position: absolute;
  right: 10%;
  bottom: 8px;
  width: 24%;
  height: 150px;
}

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

.discipline-track {
  margin-top: 36px;
  padding: 16px 0;
  display: flex;
  gap: 24px;
  overflow: hidden;
  border-top: 1px solid rgba(39, 50, 138, 0.18);
  border-bottom: 1px solid rgba(39, 50, 138, 0.18);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  white-space: nowrap;
}

.discipline-track span {
  min-width: max-content;
}

.value-card,
.role-card,
.faq-item {
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 12px 36px rgba(39, 50, 138, 0.06);
}

.value-card {
  min-height: 230px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.92), rgba(172, 135, 149, 0.48));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.value-card:hover {
  transform: none;
  border-color: rgba(255, 153, 51, 0.68);
  box-shadow: 0 20px 44px rgba(39, 50, 138, 0.12);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-marker {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 153, 51, 0.34);
  border-radius: 999px;
  background: rgba(255, 240, 221, 0.74);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
}

.role-badge {
  width: 56px;
  height: 64px;
  align-self: center;
  justify-self: start;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 252, 0.86)),
    linear-gradient(145deg, rgba(39, 50, 138, 0.08), rgba(255, 153, 51, 0.1));
  border: 1px solid rgba(175, 184, 219, 0.7);
  box-shadow: 0 12px 22px rgba(39, 50, 138, 0.08);
  overflow: hidden;
}

.role-badge::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.14), rgba(39, 50, 138, 0.24));
}

.role-badge-count {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.role-badge-1,
.step-badge-1 {
  transform: rotate(-4deg);
}

.role-badge-2,
.step-badge-2 {
  transform: rotate(5deg);
}

.role-badge-3,
.step-badge-3 {
  transform: rotate(-7deg);
}

.role-badge-4,
.step-badge-4 {
  transform: rotate(3deg);
}

.role-badge-5 {
  transform: rotate(-2deg);
}

.role-badge-6 {
  transform: rotate(6deg);
}

.role-badge-7 {
  transform: rotate(-6deg);
}

.role-badge-8 {
  transform: rotate(4deg);
}

.role-badge-9 {
  transform: rotate(-3deg);
}

.value-card h3,
.value-card p,
.role-card h3,
.role-card p {
  margin-bottom: 0;
}

.value-card p,
.role-card p,
.faq-item p {
  color: var(--color-muted);
}

.roles {
  background: var(--color-surface);
}

.roles-grid,
.role-index-list {
  display: grid;
  gap: 0;
}

.role-card {
  min-height: 260px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.role-card:hover {
  transform: none;
  border-color: rgba(255, 153, 51, 0.7);
  box-shadow: 0 18px 46px rgba(39, 50, 138, 0.1);
}

.role-index-list {
  border-top: 1px solid rgba(39, 50, 138, 0.18);
}

.contents-strip {
  margin: 8px 0 26px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(39, 50, 138, 0.18);
  border-bottom: 1px solid rgba(39, 50, 138, 0.18);
}

.contents-strip span {
  color: var(--color-accent-mauve);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contents-strip p {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.role-row {
  min-height: 168px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, 0.38fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(39, 50, 138, 0.18);
  position: relative;
  transition: transform 220ms var(--ease-out), background-color 220ms ease;
}

.role-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.92), rgba(172, 135, 149, 0.42));
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 220ms ease;
}

.role-row:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.5);
}

.role-row:hover::before {
  transform: scaleY(1);
}

.role-index {
  display: none;
}

.role-title-group h3 {
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2.18rem);
}

.role-title-group p,
.role-step {
  margin: 0;
  color: var(--color-muted);
}

.role-details {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.role-details div {
  min-width: 0;
}

.role-details dt {
  margin-bottom: 4px;
  color: var(--color-accent-mauve);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-details dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.role-step {
  font-weight: 800;
}

.role-name {
  margin-bottom: 8px;
  color: var(--color-accent-mauve);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.role-apply-link {
  width: fit-content;
  margin-top: 22px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--color-soft-orange);
  color: #8a4706;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.role-apply-link:hover {
  background: var(--color-accent-orange);
  color: var(--color-ink);
}

.process {
  background: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

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

.process-step {
  min-height: 84px;
  padding: 20px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(39, 50, 138, 0.08), rgba(255, 153, 51, 0.72));
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.process-step:hover::after {
  transform: scaleX(1);
}

.step-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 252, 0.88)),
    linear-gradient(145deg, rgba(39, 50, 138, 0.1), rgba(255, 153, 51, 0.1));
  border: 1px solid rgba(175, 184, 219, 0.7);
  box-shadow: 0 12px 26px rgba(39, 50, 138, 0.08);
  overflow: hidden;
}

.step-badge::after {
  content: "";
  position: absolute;
  inset: auto 8px 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.2), rgba(39, 50, 138, 0.2));
}

.step-badge .step-number {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.applications {
  background:
    linear-gradient(rgba(39, 50, 138, 0.93), rgba(39, 50, 138, 0.93)),
    url("The brand System/assets/Puzzle Graphic - source.png") center / min(720px, 86%) no-repeat;
  color: var(--color-white);
}

.applications-panel {
  max-width: 820px;
  padding: clamp(30px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(8, 10, 33, 0.18);
}

.applications h2,
.applications .eyebrow {
  color: var(--color-white);
}

.applications p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.applications .button {
  margin-top: 10px;
}

.application-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.applications .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.faq {
  background: var(--color-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  transform: none;
  border-color: rgba(255, 153, 51, 0.7);
}

.faq-item summary {
  padding: 20px 22px;
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
}

.site-footer {
  padding: 42px 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 33, 0.98), rgba(8, 10, 33, 1)),
    linear-gradient(90deg, rgba(255, 153, 51, 0.08), transparent 42%, rgba(172, 135, 149, 0.08));
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

/* Apply page */
.apply-page-body {
  background:
    linear-gradient(180deg, rgba(247, 248, 252, 0.98), #ffffff 52%),
    radial-gradient(circle at 86% 0%, rgba(255, 153, 51, 0.12), transparent 34%);
}

.apply-page {
  min-height: 100svh;
}

.apply-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 64px;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 153, 51, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(17, 21, 61, 0.98), #080b2b);
  color: var(--color-white);
}

.apply-hero::before {
  content: "";
  position: absolute;
  inset: auto -14vw -18vh auto;
  width: min(72vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 153, 51, 0.18);
  transform: rotate(45deg);
  opacity: 0.58;
}

.apply-hero-pattern {
  position: absolute;
  right: -72px;
  top: 82px;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  background: url("The brand System/assets/Puzzle Graphic - source.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.apply-topbar {
  width: min(100% - 32px, 1160px);
  min-height: 72px;
  margin: 0 auto 64px;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(175, 184, 219, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.apply-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apply-back-link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.apply-back-link:hover {
  border-color: rgba(255, 153, 51, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.apply-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 36px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.apply-hero-copy {
  max-width: 760px;
}

.apply-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.apply-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.apply-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.apply-hero-note {
  padding: 22px;
  border: 1px solid rgba(175, 184, 219, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.apply-hero-note span,
.side-panel-label,
.role-description-kicker,
.role-option-step,
.slot-option-card span {
  display: block;
  color: var(--color-accent-mauve);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.apply-hero-note strong {
  display: block;
  margin-top: 8px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.35;
}

.apply-form-section {
  padding: 72px 0 96px;
}

.apply-form-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.apply-side-panel {
  position: sticky;
  top: 24px;
  padding: 24px;
  border: 1px solid rgba(175, 184, 219, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 252, 0.92)),
    linear-gradient(135deg, rgba(255, 153, 51, 0.06), rgba(39, 50, 138, 0.04));
  box-shadow: 0 18px 44px rgba(39, 50, 138, 0.08);
}

.apply-side-panel h2 {
  margin: 10px 0 12px;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.apply-side-panel p {
  margin: 0;
  color: var(--color-muted);
}

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

.apply-card,
.role-description-card,
.success-state,
.form-error-summary {
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(39, 50, 138, 0.07);
}

.apply-card {
  padding: clamp(20px, 4vw, 30px);
  position: relative;
  overflow: hidden;
}

.apply-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.9), rgba(172, 135, 149, 0.42), rgba(39, 50, 138, 0.12));
}

.apply-card-heading {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.apply-step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 153, 51, 0.32);
  border-radius: 999px;
  background: rgba(255, 240, 221, 0.78);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 900;
}

.apply-card h2,
.role-description-card h3,
.success-state h2 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.apply-card-heading p,
.role-description-card p,
.success-state p,
.apply-submit-bar p {
  margin: 0;
  color: var(--color-muted);
}

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

.apply-field {
  display: grid;
  gap: 8px;
}

.apply-field-full {
  grid-column: 1 / -1;
}

.apply-field label {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.apply-field label span {
  color: #9a3a00;
}

.field-helper {
  margin: -2px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(175, 184, 219, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--color-ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.apply-field textarea {
  min-height: 132px;
  resize: vertical;
}

.apply-field input::placeholder,
.apply-field textarea::placeholder {
  color: rgba(77, 85, 119, 0.72);
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  border-color: rgba(255, 153, 51, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.16);
  outline: none;
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  color: #9a2e17;
  font-size: 0.84rem;
  font-weight: 800;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(154, 46, 23, 0.72);
  background: #fff8f5;
}

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

.role-second-preference {
  margin-top: 18px;
  max-width: 420px;
}

.slot-picker {
  display: grid;
  gap: 18px;
}

.slot-calendar-shell {
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius-large);
  background:
    linear-gradient(180deg, #ffffff, rgba(247, 248, 252, 0.94)),
    linear-gradient(135deg, rgba(255, 153, 51, 0.07), rgba(39, 50, 138, 0.04));
  box-shadow: 0 18px 42px rgba(39, 50, 138, 0.08);
  padding: 18px;
}

.slot-calendar-header,
.slot-time-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.slot-calendar-header div,
.slot-time-heading {
  min-width: 0;
}

.slot-calendar-kicker,
.slot-time-heading span {
  display: block;
  color: var(--color-accent-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slot-calendar-header strong,
.slot-time-heading strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  line-height: 1.08;
  margin-top: 4px;
}

.slot-calendar-header > span {
  flex: 0 0 auto;
  border: 1px solid rgba(39, 50, 138, 0.15);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.slot-calendar-month {
  margin-top: 18px;
}

.slot-calendar-month + .slot-calendar-month {
  border-top: 1px solid rgba(175, 184, 219, 0.48);
  padding-top: 18px;
}

.slot-calendar-month h3 {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.slot-weekday-row,
.slot-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.slot-weekday-row {
  margin-bottom: 8px;
}

.slot-weekday-row span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.slot-date-empty {
  min-height: 68px;
}

.slot-date-button {
  min-width: 0;
  min-height: 68px;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-muted);
  cursor: pointer;
  display: grid;
  gap: 3px;
  place-items: center;
  padding: 9px 4px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.slot-date-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.62);
  box-shadow: 0 14px 28px rgba(39, 50, 138, 0.08);
}

.slot-date-button span {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
}

.slot-date-button small {
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.slot-date-button.is-selected {
  border-color: rgba(255, 153, 51, 0.88);
  background: #fff4e7;
  box-shadow: inset 0 0 0 2px rgba(255, 153, 51, 0.24), 0 18px 36px rgba(255, 153, 51, 0.13);
}

.slot-date-button.is-unavailable {
  background: rgba(240, 243, 251, 0.7);
  border-style: dashed;
  color: rgba(77, 85, 119, 0.68);
  cursor: not-allowed;
  opacity: 0.72;
}

.slot-date-button.is-unavailable:hover {
  transform: none;
  border-color: rgba(175, 184, 219, 0.78);
  box-shadow: none;
}

.slot-time-panel {
  border: 1px solid rgba(175, 184, 219, 0.62);
  border-radius: var(--radius-large);
  background: #ffffff;
  padding: 18px;
}

.slot-time-heading {
  align-items: flex-start;
}

.slot-time-heading strong {
  font-size: clamp(1.05rem, 2.3vw, 1.34rem);
}

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

.role-option-card,
.slot-option-card {
  min-height: 164px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 9px;
  border: 1px solid rgba(175, 184, 219, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, rgba(247, 248, 252, 0.84)),
    linear-gradient(135deg, rgba(255, 153, 51, 0.04), rgba(39, 50, 138, 0.03));
  color: var(--color-muted);
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.slot-option-card {
  min-height: 112px;
}

.slot-option-card.is-full {
  opacity: 0.72;
  cursor: not-allowed;
}

.role-option-card:hover,
.slot-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 153, 51, 0.56);
  box-shadow: 0 16px 34px rgba(39, 50, 138, 0.09);
}

.choice-radio {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent-orange);
}

.role-option-card:has(.choice-radio:checked),
.slot-option-card:has(.choice-radio:checked) {
  border-color: rgba(255, 153, 51, 0.88);
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 243, 230, 0.72)),
    linear-gradient(135deg, rgba(255, 153, 51, 0.08), rgba(39, 50, 138, 0.03));
  box-shadow: 0 18px 40px rgba(255, 153, 51, 0.14);
}

.role-option-card:focus-within,
.slot-option-card:focus-within {
  outline: 3px solid rgba(255, 153, 51, 0.55);
  outline-offset: 3px;
}

.role-option-card strong,
.slot-option-card strong {
  padding-right: 28px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.04rem;
  line-height: 1.2;
}

.role-option-card > span:last-child {
  font-size: 0.88rem;
  line-height: 1.45;
}

.slot-option-card small {
  color: var(--color-accent-mauve);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.role-description-card {
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(39, 50, 138, 0.94), rgba(17, 21, 61, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(255, 153, 51, 0.2), transparent 28%);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.role-description-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 220px;
  aspect-ratio: 1;
  background: url("The brand System/assets/Puzzle Icon - source.png") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(12deg);
}

.role-description-card h3,
.role-description-card p {
  position: relative;
  z-index: 1;
}

.role-description-card h3 {
  color: var(--color-white);
}

.role-description-card p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.82);
}

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

.slot-loading {
  margin: 0;
  padding: 18px 16px;
  border: 1px dashed rgba(175, 184, 219, 0.9);
  border-radius: var(--radius);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.apply-submit-bar {
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.apply-submit-button {
  min-width: 210px;
}

.apply-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error-summary {
  padding: 14px 16px;
  border-color: rgba(154, 46, 23, 0.36);
  background: #fff8f5;
  color: #842a16;
  font-weight: 900;
}

.success-state {
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.success-state::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 260px;
  aspect-ratio: 1;
  background: url("The brand System/assets/Puzzle Graphic - source.png") center / contain no-repeat;
  opacity: 0.07;
}

.success-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent-orange);
  color: #2f1a05;
  font-family: var(--font-serif);
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(255, 153, 51, 0.24);
}

.success-slot {
  padding: 18px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 153, 51, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 243, 230, 0.72);
}

.success-slot span {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.success-slot strong {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 1.18rem;
}

.success-processing {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(39, 50, 138, 0.14);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.84);
  color: var(--color-muted);
  font-weight: 800;
}

.success-processing-error {
  border-color: rgba(154, 46, 23, 0.32);
  background: #fff8f5;
  color: #842a16;
}

[hidden] {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-1px);
  }

  .button-disabled:hover {
    transform: none;
  }

  .value-card:hover {
    transform: translateY(-3px);
  }

  .role-card:hover,
  .faq-item:hover {
    transform: translateY(-2px);
  }

  .role-row:hover {
    transform: translateX(2px);
  }
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}

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

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

.issue-hero {
  position: relative;
  min-height: min(100svh, 980px);
  padding: 0;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
}

.issue-hero::before,
.issue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.issue-hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 33, 0.9) 0%, rgba(8, 10, 33, 0.66) 43%, rgba(8, 10, 33, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 10, 33, 0.95) 0%, rgba(8, 10, 33, 0.1) 44%, rgba(8, 10, 33, 0.38) 100%),
    var(--hero-photo);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  animation: none;
}

.issue-hero-fallback::before {
  background:
    linear-gradient(90deg, rgba(8, 10, 33, 0.92) 0%, rgba(8, 10, 33, 0.7) 45%, rgba(8, 10, 33, 0.5) 100%),
    linear-gradient(0deg, rgba(8, 10, 33, 0.98) 0%, rgba(8, 10, 33, 0.24) 48%, rgba(8, 10, 33, 0.38) 100%),
    var(--color-primary);
}

.issue-hero::after {
  z-index: 1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mix-blend-mode: soft-light;
  animation: none;
}

.issue-hero .container {
  position: relative;
  z-index: 3;
}

.stair-build-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.82;
  overflow: hidden;
}

.stair-build-bg::before {
  content: "";
  position: absolute;
  right: min(4vw, 58px);
  bottom: 7vh;
  width: min(68vw, 940px);
  height: min(61vh, 560px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.72;
}

.stair-aura {
  position: absolute;
  right: min(5vw, 70px);
  bottom: 4vh;
  width: min(54vw, 760px);
  height: min(54vw, 680px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 153, 51, 0.18), transparent 34%),
    radial-gradient(circle at 38% 70%, rgba(175, 184, 219, 0.13), transparent 40%);
  filter: blur(16px);
  opacity: 0.58;
}

.stair-guide {
  position: absolute;
  right: min(7vw, 96px);
  bottom: 10vh;
  width: min(58vw, 820px);
  height: min(52vh, 500px);
}

.stair-guide-base,
.stair-guide-shimmer,
.stair-guide-traveler {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 82%;
  height: 3px;
  border-radius: 999px;
  transform: rotate(-31deg);
  transform-origin: left center;
}

.stair-guide-base {
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.08), rgba(255, 153, 51, 0.46), rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  animation: stair-guide-build 1100ms var(--ease-out) 320ms both;
}

.stair-guide-shimmer {
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.2), rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.72;
  clip-path: inset(0 100% 0 0);
  animation: stair-line-shimmer 6.8s var(--ease-in-out) 1400ms infinite;
}

.stair-guide-traveler {
  width: 16px;
  height: 16px;
  bottom: calc(8% - 6px);
  background: radial-gradient(circle, rgba(255, 244, 222, 0.98) 0 3px, rgba(255, 153, 51, 0.78) 5px, rgba(255, 153, 51, 0) 11px);
  box-shadow: 0 0 34px rgba(255, 153, 51, 0.52);
  opacity: 0;
  animation: stair-travel 6.4s var(--ease-in-out) 1800ms infinite;
}

.stair-step,
.stair-landing {
  position: absolute;
  width: clamp(82px, 8.4vw, 150px);
  height: clamp(42px, 4.2vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 46%),
    linear-gradient(135deg, rgba(175, 184, 219, 0.22), rgba(39, 50, 138, 0.28));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transform-origin: bottom center;
  animation: stair-step-build 760ms var(--ease-out) both, stair-step-breathe 8.4s ease-in-out 2.4s infinite;
}

.stair-step::before,
.stair-landing::before {
  content: "";
  position: absolute;
  inset: 8px 10px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent);
}

.stair-step::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stair-step-1 {
  right: 48vw;
  bottom: 12vh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%),
    linear-gradient(135deg, rgba(255, 153, 51, 0.78), rgba(255, 190, 110, 0.34));
  box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.1), 0 18px 44px rgba(255, 153, 51, 0.16), 0 0 46px rgba(255, 153, 51, 0.22);
  animation: stair-step-build 760ms var(--ease-out) 180ms both, first-step-glow 5.4s ease-in-out 1800ms infinite;
}

.stair-step-2 {
  right: 41vw;
  bottom: 17vh;
  animation-delay: 340ms, 2400ms;
}

.stair-step-3 {
  right: 34vw;
  bottom: 22vh;
  animation-delay: 500ms, 2600ms;
}

.stair-step-4 {
  right: 27vw;
  bottom: 27vh;
  animation-delay: 660ms, 2800ms;
}

.stair-step-5 {
  right: 20vw;
  bottom: 32vh;
  animation-delay: 820ms, 3000ms;
}

.stair-step-6 {
  right: 13vw;
  bottom: 37vh;
  opacity: 0;
  animation-delay: 980ms, 3200ms;
}

.stair-step-7 {
  right: 6vw;
  bottom: 42vh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(135deg, rgba(255, 153, 51, 0.32), rgba(175, 184, 219, 0.2));
  animation-delay: 1140ms, 3400ms;
}

.stair-landing {
  right: 3vw;
  bottom: 48vh;
  width: clamp(116px, 12vw, 220px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(135deg, rgba(255, 153, 51, 0.22), rgba(39, 50, 138, 0.24));
  animation-delay: 1300ms, 3600ms;
}

.stair-puzzle {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(48px, 5vw, 76px);
  height: clamp(48px, 5vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: stair-puzzle-float 10s ease-in-out infinite;
}

.stair-puzzle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.2);
  opacity: 0.4;
  filter: saturate(0.9);
}

.stair-puzzle-1 {
  right: 33vw;
  bottom: 43vh;
  animation-delay: 900ms;
}

.stair-puzzle-2 {
  right: 10vw;
  bottom: 22vh;
  animation-duration: 11.5s;
  animation-delay: 1400ms;
}

.stair-puzzle-3 {
  right: 53vw;
  bottom: 31vh;
  animation-duration: 12s;
  animation-delay: 1900ms;
}

.issue-topline {
  position: absolute;
  top: 116px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.issue-topline span {
  opacity: 0;
  animation: hero-fade-up 520ms var(--ease-out) both;
}

.issue-topline span:nth-child(1) {
  animation-delay: 120ms;
}

.issue-topline span:nth-child(2) {
  animation-delay: 280ms;
}

.issue-topline span:nth-child(3) {
  animation-delay: 440ms;
}

.issue-hero .hero-grid {
  min-height: min(100svh, 980px);
  padding: 142px 0 132px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 44px;
  align-items: center;
}

.issue-hero .hero-copy {
  max-width: 790px;
}

.hero-kicker,
.hero-title,
.hero-arabic,
.hero-copy-line,
.hero-actions-line {
  opacity: 0;
  animation: hero-fade-up 620ms var(--ease-out) both;
}

.hero-kicker {
  animation-delay: 120ms;
}

.hero-title {
  animation-delay: 220ms;
}

.hero-arabic {
  animation-delay: 320ms;
}

.hero-copy-line {
  animation-delay: 420ms;
}

.hero-actions-line {
  animation-delay: 520ms;
}

.issue-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.24em;
}

.issue-hero h1 {
  max-width: 880px;
  color: var(--color-white);
  font-size: clamp(3.1rem, 6.2vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.issue-hero .arabic-line {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.issue-hero .hero-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(1.04rem, 1.7vw, 1.34rem);
}

.issue-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.issue-hero .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.issue-hero .hero-visual {
  min-height: 430px;
  display: block;
}

.hero-proof-card {
  opacity: 0;
  transform: translateX(18px);
  animation: proof-card-in 900ms cubic-bezier(0, 0, 0.3, 1) 980ms both;
}

.issue-hero .hero-visual::before {
  display: none;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  margin-top: 24px;
  margin-left: auto;
  display: grid;
  gap: 16px;
  align-content: start;
  pointer-events: none;
}

.hero-stage-legend {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(17, 21, 61, 0.16), rgba(17, 21, 61, 0.28)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.hero-stage-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage-rail {
  position: relative;
  margin: 8px 0 10px;
  height: 72px;
}

.hero-stage-rail::before {
  content: "";
  position: absolute;
  inset: 20px 12px 18px;
  background:
    linear-gradient(90deg, rgba(255, 153, 51, 0.42), rgba(255, 255, 255, 0.24), rgba(255, 153, 51, 0.3));
  clip-path: polygon(0 76%, 26% 76%, 26% 44%, 56% 44%, 56% 16%, 100% 16%, 100% 22%, 64% 22%, 64% 52%, 34% 52%, 34% 82%, 0 82%);
  opacity: 0.66;
  filter: drop-shadow(0 8px 12px rgba(255, 153, 51, 0.1));
  animation: route-build 1400ms cubic-bezier(0, 0, 0.3, 1) both;
}

.hero-stage-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 0 5px rgba(255, 153, 51, 0.12), 0 0 20px rgba(255, 153, 51, 0.34);
  animation: route-node-pulse 2.8s ease-in-out infinite;
}

.hero-stage-node-1 {
  left: 12%;
  bottom: 16%;
  animation-delay: 180ms;
}

.hero-stage-node-2 {
  left: 46%;
  bottom: 42%;
  animation-delay: 420ms;
}

.hero-stage-node-3 {
  right: 12%;
  top: 16%;
  background: var(--color-accent-orange);
  animation-delay: 660ms;
}

.hero-stage-flow {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.hero-stage-flow span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-stage-flow span:nth-child(2) {
  transform: translateY(4px);
}

.hero-stage-flow span:nth-child(3) {
  transform: translateY(8px);
}

.hero-stage-copy {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.6;
}

.hero-stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-stage-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  animation: hero-chip-in 720ms ease-out both;
}

.hero-stage-tags span:nth-child(1) {
  animation-delay: 1120ms;
}

.hero-stage-tags span:nth-child(2) {
  animation-delay: 1260ms;
}

.hero-stage-tags span:nth-child(3) {
  animation-delay: 1400ms;
}

.hero-stage-tags {
  margin-top: 2px;
}

.hero-proof-strip {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-proof-strip span {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-fade-up 760ms ease-out both;
}

.hero-proof-strip span:nth-child(1) {
  animation-delay: 1120ms;
}

.hero-proof-strip span:nth-child(2) {
  animation-delay: 1280ms;
}

.hero-proof-strip span:nth-child(3) {
  animation-delay: 1440ms;
}

.hero-proof-strip span {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1;
}

@media (max-width: 920px) {
  .apply-topbar {
    margin-bottom: 44px;
  }

  .apply-hero-grid,
  .apply-form-layout {
    grid-template-columns: 1fr;
  }

  .apply-side-panel {
    position: relative;
    top: auto;
  }

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

  .slot-option-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 98px 16px auto;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(175, 184, 219, 0.78);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 24px 60px rgba(17, 21, 61, 0.16);
  }

  .site-nav.is-open .nav-link {
    color: var(--color-primary);
  }

  .site-nav.is-open .nav-link:hover {
    background: var(--color-primary-pale);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 14px 16px;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .photo-story-grid,
  .impact-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .issue-topline {
    top: 104px;
    flex-wrap: wrap;
  }

  .issue-hero .hero-grid {
    min-height: min(100svh, 920px);
    padding: 150px 0 124px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .issue-hero .hero-visual {
    position: relative;
    inset: auto;
    width: min(100%, 520px);
    min-height: 280px;
    margin: 12px 0 0 auto;
  }

  .stair-build-bg {
    opacity: 0.42;
  }

  .stair-build-bg::before,
  .stair-guide {
    right: -8vw;
    bottom: 19vh;
    width: 82vw;
    height: 44vh;
  }

  .stair-step,
  .stair-landing {
    width: clamp(66px, 13vw, 118px);
    height: clamp(34px, 7vw, 58px);
  }

  .hero-proof-card {
    right: 0;
    bottom: 0;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-stage {
    width: min(100%, 300px);
    margin-top: 18px;
  }

  .hero-stage-legend {
    padding: 12px 12px 10px;
  }

  .hero-stage-rail {
    height: 66px;
    margin: 6px 0 8px;
  }

  .hero-stage-flow {
    gap: 6px;
  }

  .hero-stage-copy {
    font-size: 0.8rem;
  }

  .photo-stack {
    min-height: 320px;
  }

  .hero-puzzle {
    width: min(100%, 500px);
  }

  .value-grid,
  .roles-grid,
  .goal-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .role-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .role-step,
  .role-row .role-apply-link {
    grid-column: 2;
  }

  .role-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .apply-hero {
    padding: 12px 0 48px;
  }

  .apply-hero-pattern {
    width: 280px;
    right: -132px;
    top: 130px;
  }

  .apply-topbar {
    width: min(100% - 24px, 1160px);
    min-height: 68px;
    margin-bottom: 38px;
  }

  .apply-back-link {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .apply-hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .apply-hero-note {
    padding: 18px;
  }

  .apply-form-section {
    padding: 44px 0 72px;
  }

  .apply-card,
  .role-description-card,
  .apply-side-panel,
  .success-state {
    padding: 18px;
  }

  .apply-card-heading {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .apply-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .apply-field-grid,
  .role-option-grid,
  .slot-option-grid {
    grid-template-columns: 1fr;
  }

  .slot-calendar-shell,
  .slot-time-panel {
    padding: 14px;
  }

  .slot-calendar-header,
  .slot-time-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .slot-weekday-row,
  .slot-date-grid {
    gap: 5px;
  }

  .slot-date-empty {
    min-height: 54px;
  }

  .slot-date-button {
    border-radius: 10px;
    min-height: 54px;
    padding: 7px 2px;
  }

  .slot-date-button span {
    font-size: 1rem;
  }

  .slot-date-button small {
    font-size: 0.58rem;
  }

  .role-option-card,
  .slot-option-card {
    min-height: auto;
  }

  .apply-submit-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .apply-submit-button {
    width: 100%;
    min-width: 0;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .section-band {
    padding: 64px 0;
  }

  .site-header {
    width: min(100% - 24px, 1160px);
    min-height: 68px;
    top: 10px;
    margin-top: 10px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

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

  .brand-logo-frame img {
    width: 430px;
  }

  .menu-toggle {
    order: 3;
  }

  .header-cta {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .site-nav {
    inset: 86px 12px auto;
  }

  .hero {
    padding-top: 42px;
  }

  .issue-hero {
    min-height: auto;
    padding: 0;
  }

  .issue-hero::before {
    background-position: center right;
  }

  .issue-topline {
    top: 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    font-size: 0.64rem;
  }

  .issue-topline span:last-child {
    grid-column: 1 / -1;
  }

  .issue-hero .hero-grid {
    min-height: auto;
    padding: 124px 0 54px;
  }

  .issue-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 0.98;
  }

  .issue-hero .eyebrow {
    letter-spacing: 0.12em;
  }

  .issue-hero .arabic-line {
    width: fit-content;
    max-width: 100%;
  }

  .issue-hero .hero-actions,
  .issue-hero .hero-actions .button {
    width: 100%;
  }

  .issue-hero .hero-visual {
    width: 100%;
    min-height: 180px;
    margin-top: 16px;
  }

  .hero-stage-rail {
    height: 58px;
  }

  .hero-stage-tags span {
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .stair-build-bg {
    opacity: 0.24;
  }

  .stair-aura,
  .stair-guide-shimmer,
  .stair-guide-traveler,
  .stair-puzzle {
    display: none;
  }

  .stair-build-bg::before,
  .stair-guide {
    right: -24vw;
    bottom: 16vh;
    width: 104vw;
    height: 34vh;
  }

  .stair-step,
  .stair-landing {
    width: 72px;
    height: 36px;
  }

  .stair-step::after {
    display: none;
  }

  .stair-step-1 {
    right: 56vw;
    bottom: 14vh;
  }

  .stair-step-2 {
    right: 42vw;
    bottom: 19vh;
  }

  .stair-step-3 {
    right: 28vw;
    bottom: 24vh;
  }

  .stair-step-4 {
    right: 14vw;
    bottom: 29vh;
  }

  .stair-step-5,
  .stair-step-6,
  .stair-step-7,
  .stair-landing {
    display: none;
  }

  .hero-proof-strip {
    display: none;
  }

  .arabic-line {
    width: 100%;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .photo-stack {
    min-height: 410px;
  }

  .photo-frame-main {
    inset: 32px 54px 94px 0;
  }

  .photo-frame-small {
    width: 156px;
    height: 118px;
  }

  .photo-frame-one {
    top: 14px;
    right: 0;
  }

  .photo-frame-two {
    right: 8px;
    bottom: 18px;
  }

  .photo-caption {
    left: 0;
    bottom: 52px;
  }

  .hero-visual::before {
    inset: 18px 0 24px;
  }

  .vision-piece {
    min-width: 84px;
    padding: 8px 9px;
    gap: 6px;
    font-size: 0.78rem;
  }

  .piece-icon {
    width: 18px;
    height: 18px;
    background-size: 145px auto;
  }

  .vision-piece-trust {
    top: 36px;
    left: 18px;
  }

  .vision-piece-system {
    top: 96px;
    left: 122px;
  }

  .vision-piece-voice {
    top: 138px;
    left: auto;
    right: 8px;
  }

  .vision-piece-people {
    top: 214px;
    left: 26px;
  }

  .vision-piece-service {
    top: 34px;
    right: 6px;
  }

  .build-step-one {
    right: 150px;
    bottom: 58px;
    width: 78px;
    height: 44px;
  }

  .build-step-two {
    right: 88px;
    bottom: 102px;
    width: 78px;
    height: 44px;
  }

  .build-step-three {
    right: 26px;
    bottom: 146px;
    width: 78px;
    height: 44px;
  }

  .impact-note {
    right: 12px;
    bottom: 28px;
    width: calc(100% - 24px);
  }

  .value-grid,
  .roles-grid,
  .impact-card-grid,
  .goal-card-grid {
    grid-template-columns: 1fr;
  }

  .goals-heading {
    margin-bottom: 24px;
  }

  .goal-card {
    min-height: auto;
    padding: 16px;
  }

  .goal-card-topline {
    min-height: 0;
  }

  .goal-target {
    max-width: 132px;
  }

  .photo-strip {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .story-photo {
    position: static;
    width: auto;
    height: 170px;
  }

  .story-photo-1 {
    grid-column: 1 / -1;
    height: 220px;
  }

  .role-row {
    min-height: auto;
    padding: 20px 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .application-actions,
  .application-actions .button {
    width: 100%;
  }

  .value-card,
  .role-card {
    min-height: auto;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    padding: 16px;
  }

  .step-badge {
    width: 46px;
    height: 46px;
  }

  .role-badge {
    width: 48px;
    height: 62px;
  }

  .role-badge-count,
  .step-badge .step-number {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@keyframes piece-build {
  0% {
    opacity: 0;
    transform: translate(var(--from-x), var(--from-y)) scale(0.96);
  }

  72% {
    opacity: 1;
    transform: translate(0, 0) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes step-rise {
  0% {
    opacity: 0;
    transform: translateY(16px) scaleY(0.6);
  }

  76% {
    opacity: 1;
    transform: translateY(0) scaleY(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes path-draw {
  0% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes stair-step-build {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
    filter: blur(2px);
  }

  72% {
    opacity: 0.76;
    transform: translateY(-3px) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 0.58;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes stair-step-breathe {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

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

@keyframes first-step-glow {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.12), 0 18px 44px rgba(255, 153, 51, 0.14), 0 0 42px rgba(255, 153, 51, 0.2);
  }

  50% {
    opacity: 0.86;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.18), 0 20px 50px rgba(255, 153, 51, 0.2), 0 0 58px rgba(255, 184, 111, 0.3);
  }
}

@keyframes stair-guide-build {
  0% {
    opacity: 0;
    transform: rotate(-31deg) scaleX(0);
  }

  100% {
    opacity: 1;
    transform: rotate(-31deg) scaleX(1);
  }
}

@keyframes stair-line-shimmer {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  20%,
  70% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes stair-puzzle-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) rotate(-2deg);
  }

  16% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.48;
    transform: translate3d(10px, -12px, 0) rotate(3deg);
  }

  84% {
    opacity: 0.56;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) rotate(-2deg);
  }
}

@keyframes hero-breath {
  0%,
  100% {
    transform: scale(1.01);
    filter: brightness(0.95) saturate(1);
  }

  50% {
    transform: scale(1.04);
    filter: brightness(1.05) saturate(1.04);
  }
}

@keyframes hero-grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 56px 56px, -56px 56px;
  }
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proof-card-in {
  0% {
    opacity: 0;
    transform: translateX(18px) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes stair-travel {
  0% {
    opacity: 0;
    transform: rotate(-31deg) translateX(0) scale(0.72);
  }

  18% {
    opacity: 0.82;
  }

  50% {
    opacity: 0.9;
    transform: rotate(-31deg) translateX(34vw) scale(0.92);
  }

  82% {
    opacity: 0.68;
  }

  100% {
    opacity: 0;
    transform: rotate(-31deg) translateX(58vw) scale(1);
  }
}

@keyframes hero-glow-sway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(10px, -12px, 0) scale(1.04);
    opacity: 0.92;
  }
}

@keyframes hero-chip-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes route-build {
  0% {
    opacity: 0;
    transform: scaleY(0.7) scaleX(0.3);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
    filter: blur(0);
  }
}

@keyframes route-node-pulse {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 6px rgba(255, 153, 51, 0.16), 0 0 24px rgba(255, 153, 51, 0.42);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 153, 51, 0.08), 0 0 30px rgba(255, 153, 51, 0.58);
  }
}

@keyframes hero-line-sweep {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-6%);
  }

  50% {
    opacity: 1;
    transform: translateX(6%);
  }
}

@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;
  }

  .vision-path path {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .build-step,
  .vision-piece {
    opacity: 1;
    transform: none;
  }

  .stair-aura,
  .stair-guide-base,
  .stair-guide-shimmer,
  .stair-guide-traveler,
  .stair-step,
  .stair-landing,
  .stair-puzzle,
  .hero-visual::after,
  .hero-stage-legend,
  .hero-stage-node,
  .hero-stage-tags span {
    opacity: 0.72;
    transform: none;
    filter: none;
  }

  .stair-guide-base {
    transform: rotate(-31deg) scaleX(1);
  }

  .stair-guide-shimmer,
  .stair-guide-traveler,
  .stair-puzzle {
    opacity: 0.32;
  }
}
