:root {
  --base-size: 16px;
  --bg: #060606;
  --bg-2: #0b0b0b;
  --surface: #111111;
  --surface-2: #151515;
  --surface-3: #1b1b1b;
  --text: #f7f7f4;
  --muted: #aaa9a4;
  --muted-2: #7e7e79;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --accent: #f7bd17;
  --accent-bright: #ffc928;
  --accent-soft: rgba(247,189,23,.11);
  --danger: #ff777c;
  --success: #7bdc8d;
  --max: 1380px;
  --header-h: 84px;
  --radius: 22px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: var(--base-size); background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: #050505; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  right: 14px;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #050505;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent-bright); outline-offset: 4px; }

/* Header */
.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 225px 1fr 190px;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(22px, 4vw, 70px);
  background: linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,0));
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(6,6,6,.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  width: 195px;
  min-width: 0;
  align-items: center;
}
.brand img { width: 100%; height: auto; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav a {
  position: relative;
  color: #deded9;
  font-size: .82rem;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 8px 15px;
  border: 1px solid rgba(247,189,23,.45);
  border-radius: 999px;
  color: var(--accent) !important;
  background: rgba(247,189,23,.05);
}
.accessibility-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #fff;
  font-size: .79rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.accessibility-trigger:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.accessibility-symbol { color: var(--accent); font-size: 1.1rem; }

/* Accessibility panel */
.accessibility-panel {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: min(450px, 92vw);
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(26px, 4vw, 42px);
  background: #0d0d0d;
  color: #fff;
  border-right: 1px solid var(--line-strong);
  box-shadow: 26px 0 90px rgba(0,0,0,.58);
  transform: translateX(-105%);
  transition: transform .35s var(--ease);
}
.accessibility-panel.open { transform: translateX(0); }
.panel-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(0,0,0,.68); backdrop-filter: blur(5px); }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.panel-head h2 { margin: 5px 0 8px; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.35; }
.panel-head p:last-child { margin: 0; color: var(--muted); font-size: .88rem; }
.icon-button {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tool-grid button {
  min-height: 94px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #141414;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.tool-grid button:hover { transform: translateY(-2px); border-color: rgba(247,189,23,.55); }
.tool-grid button.active { border-color: var(--accent); background: var(--accent-soft); }
.tool-grid strong { color: var(--accent); font-size: 1.25rem; }
.tool-grid span { font-size: .82rem; font-weight: 700; }
.tts-helper { margin: 14px 0 10px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; background: #121212; }
.tts-status { margin: 0; color: #eee; font-size: .8rem; line-height: 1.7; }
.tts-privacy { margin: 6px 0 0; color: var(--muted); font-size: .72rem; }
.reset-a11y { width: 100%; margin-top: 10px; padding: 12px 15px; border: 0; border-radius: 12px; background: var(--accent); color: #050505; font-weight: 800; cursor: pointer; }
.panel-note { margin: 17px 0 0; color: var(--muted); font-size: .76rem; }

/* Shared */
section { position: relative; }
.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(247,189,23,.08); }

/* Hero */
.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 68px) clamp(22px, 6vw, 94px) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .58fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: #fff;
}
#motionCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -5; opacity: .65; }
.hero-grid {
  position: absolute;
  z-index: -6;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at 65% 45%, #000 0%, transparent 73%);
  mask-image: radial-gradient(circle at 65% 45%, #000 0%, transparent 73%);
}
.hero-glow { position: absolute; z-index: -4; border-radius: 50%; pointer-events: none; filter: blur(20px); }
.hero-glow-a { width: 46vw; height: 46vw; left: -19vw; top: 12%; background: radial-gradient(circle, rgba(247,189,23,.13), transparent 68%); }
.hero-glow-b { width: 34vw; height: 34vw; right: 18%; bottom: -17vw; background: radial-gradient(circle, rgba(247,189,23,.08), transparent 68%); }
.hero-orbit {
  position: absolute;
  z-index: -3;
  left: 49%;
  top: 50%;
  width: clamp(430px, 48vw, 720px);
  aspect-ratio: 1;
  transform: translate(-58%, -50%);
  border: 1px solid rgba(247,189,23,.11);
  border-radius: 50%;
  animation: orbitSpin 32s linear infinite;
}
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.hero-orbit::before { inset: 13%; }
.hero-orbit::after { inset: 29%; border-color: rgba(247,189,23,.07); }
.hero-orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 24px rgba(247,189,23,.7); }
.hero-orbit span:nth-child(1){ top: 12%; right: 18%; }
.hero-orbit span:nth-child(2){ bottom: 8%; left: 34%; width: 5px; height: 5px; }
.hero-orbit span:nth-child(3){ right: 0; top: 56%; width: 4px; height: 4px; }
@keyframes orbitSpin { to { transform: translate(-58%, -50%) rotate(360deg); } }
.hero-content { max-width: 810px; z-index: 2; }
.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 900;
}
.hero h1 span { color: var(--accent); }
.hero-copy { max-width: 680px; margin: 0; color: #c5c5bf; font-size: clamp(.98rem, 1.1vw, 1.08rem); line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 26px; }
.btn {
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .85rem;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #050505; }
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.02); color: #fff; }
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(247,189,23,.45)} 75%,100%{box-shadow:0 0 0 12px rgba(247,189,23,0)} }
.visual-support-note { display: flex; align-items: flex-start; gap: 12px; max-width: 700px; padding-top: 20px; border-top: 1px solid var(--line); color: #b1b1ac; font-size: .84rem; line-height: 1.9; }
.visual-support-note p { margin: 0; }
.visual-support-note strong { color: #fff; }
.note-icon { color: var(--accent); font-size: 1.2rem; line-height: 1.6; }
.hero-side { width: 100%; max-width: 350px; justify-self: end; display: flex; flex-direction: column; gap: 0; }
.hero-stat { padding: 0 0 22px; border-bottom: 1px solid var(--line); }
.hero-number { display: block; color: var(--accent); font-size: clamp(2.6rem, 4.8vw, 4.5rem); line-height: 1; font-weight: 300; }
.hero-stat p { margin: 11px 0 0; color: #b9b9b3; font-size: .88rem; line-height: 1.75; }
.micro-card { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.micro-label { color: var(--muted); font-size: .69rem; }
.micro-card strong { font-size: .88rem; line-height: 1.65; }
.scroll-cue { position: absolute; right: clamp(22px,6vw,94px); bottom: 25px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .69rem; font-weight: 700; }
.scroll-cue i { width: 42px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; width: 45%; height: 100%; top: 0; left: -50%; background: var(--accent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 50%,100% { left: 110%; } }

/* Statement */
.statement-section { max-width: var(--max); margin: 0 auto; padding: clamp(72px,9vw,130px) clamp(22px,6vw,94px); border-bottom: 1px solid var(--line); background: var(--bg); }
.statement-kicker { margin: 0 0 14px; color: var(--muted); font-size: .82rem; }
.statement-line { display: flex; flex-wrap: wrap; gap: 0 .24em; align-items: baseline; font-size: clamp(2.15rem, 4.8vw, 4.25rem); line-height: 1.13; letter-spacing: -.025em; font-weight: 800; }
.statement-line strong { color: var(--accent); font-weight: 900; }

/* Inclusion */
.inclusion-section { max-width: var(--max); margin: 0 auto; padding: clamp(84px,9vw,145px) clamp(22px,6vw,94px); }
.section-heading { max-width: 920px; margin-bottom: 58px; }
.section-heading h2, .roles-copy h2, .process-heading h2, .assist-copy h2, .form-intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}
.section-heading > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.95; }
.support-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.support-card { min-height: 280px; padding: 25px 22px 28px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .3s ease, background .3s ease; }
.support-card::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 0; background: var(--accent); transition: height .35s var(--ease); }
.support-card:hover { transform: translateY(-4px); color: #050505; }
.support-card:hover::after { height: 100%; }
.support-card:hover p, .support-card:hover .card-index { color: rgba(5,5,5,.72); }
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-index { color: var(--muted-2); font-size: .68rem; }
.support-icon { color: var(--accent); font-size: 1.15rem; }
.support-card:hover .support-icon { color: #050505; }
.support-card h3 { margin: 58px 0 12px; font-size: 1.02rem; }
.support-card p { margin: 0; color: #b9b9b4; font-size: .8rem; line-height: 1.9; }

/* Roles */
.roles-section { padding: clamp(78px,9vw,130px) 0; overflow: hidden; background: #0a0a0a; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roles-copy { max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px,6vw,94px) 52px; }
.role-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 21px 0; animation: marquee 34s linear infinite; }
.marquee-track span { white-space: nowrap; color: #f1f1ed; font-size: clamp(1.05rem,1.9vw,1.55rem); font-weight: 700; }
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(50%); } }

/* Process */
.process-section { max-width: var(--max); margin: 0 auto; padding: clamp(84px,9vw,145px) clamp(22px,6vw,94px); }
.process-heading { max-width: 780px; margin-bottom: 50px; }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.process-card { min-height: 235px; padding: 26px 22px; border: 1px solid var(--line); border-left: 0; background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.process-card:first-child { border-left: 1px solid var(--line); }
.process-card > span { display: block; color: var(--accent); font-size: .72rem; margin-bottom: 48px; }
.process-card h3 { margin: 0 0 11px; font-size: 1.02rem; }
.process-card p { margin: 0; color: #b7b7b2; font-size: .8rem; line-height: 1.9; }

/* Direct support */
.contact-assist {
  max-width: calc(var(--max) - 40px);
  margin: 0 auto clamp(90px,10vw,150px);
  padding: clamp(50px,6vw,78px);
  display: grid;
  grid-template-columns: 220px minmax(0,1fr) minmax(280px,.9fr);
  align-items: center;
  gap: clamp(32px,5vw,70px);
  background: var(--accent);
  color: #050505;
  border-radius: 28px;
  overflow: hidden;
}
.contact-assist .eyebrow { color: rgba(5,5,5,.65); }
.assist-visual { position: relative; width: 180px; aspect-ratio: 1; display: grid; place-items: center; }
.assist-ring { position: absolute; inset: 0; border: 1px solid rgba(5,5,5,.25); border-radius: 50%; animation: orbitSpin 22s linear infinite; }
.ring-two { inset: 20%; border-style: dashed; animation-direction: reverse; animation-duration: 15s; }
.assist-center { width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center; background: #050505; color: var(--accent); font-size: .82rem; font-weight: 900; }
.assist-copy h2 { margin-top: 7px; }
.assist-copy > p:last-child { margin: 0; max-width: 650px; font-size: .9rem; line-height: 1.9; color: rgba(5,5,5,.72); }
.assist-actions { display: grid; gap: 10px; }
.assist-card { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 12px; min-height: 94px; padding: 15px; border: 1px solid rgba(5,5,5,.26); background: rgba(255,255,255,.14); transition: background .22s ease, transform .22s ease; }
.assist-card:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.assist-icon { width: 46px; height: 46px; border: 1px solid rgba(5,5,5,.28); border-radius: 50%; display: grid; place-items: center; font-size: 1.05rem; }
.assist-card > span:nth-child(2) { display: grid; min-width: 0; }
.assist-card small { color: rgba(5,5,5,.6); font-size: .68rem; }
.assist-card strong { direction: ltr; justify-self: start; font-size: 1rem; }
.assist-card em { color: rgba(5,5,5,.62); font-size: .68rem; font-style: normal; }
.assist-card b { font-size: 1.05rem; }

/* Form */
.application-section { max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px,6vw,94px) clamp(90px,10vw,150px); }
.form-intro { max-width: 920px; margin-bottom: 44px; }
.form-intro > p:not(.eyebrow) { margin: 0; color: var(--muted); max-width: 690px; font-size: .9rem; line-height: 1.95; }
.form-help-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--accent); font-size: .82rem; font-weight: 800; }
.form-shell { padding: clamp(26px,4.2vw,58px); border: 1px solid var(--line); border-radius: 24px; background: #0d0d0d; box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.form-progress-wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; margin-bottom: 34px; color: var(--muted); font-size: .72rem; }
.form-progress { height: 3px; background: #272727; border-radius: 99px; overflow: hidden; }
.form-progress i { display: block; width: 0; height: 100%; background: var(--accent); transition: width .3s ease; }
.form-progress-wrap b { color: #fff; font-size: .74rem; }
.form-error-summary { margin-bottom: 24px; padding: 15px 17px; border: 1px solid var(--danger); border-radius: 12px; color: #ffd3d5; background: rgba(255,119,124,.08); font-size: .82rem; }
form { display: grid; gap: 42px; }
fieldset { margin: 0; padding: 0; border: 0; }
fieldset + fieldset { padding-top: 38px; border-top: 1px solid var(--line); }
legend { width: 100%; margin: 0 0 26px; padding: 0; color: #fff; font-size: 1rem; font-weight: 800; }
legend span { color: var(--accent); font-size: .7rem; margin-left: 8px; }
legend em { margin-right: 8px; color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 500; }
.field-grid { display: grid; gap: 20px; }
.two-col { grid-template-columns: repeat(2,minmax(0,1fr)); }
.field { min-width: 0; }
.field label { display: block; margin-bottom: 8px; color: #eaeae5; font-size: .82rem; font-weight: 700; }
.optional { color: var(--muted); font-size: .68rem; font-weight: 500; margin-right: 4px; }
.field input:not([type="file"]), .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121212;
  color: #fff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(247,189,23,.09); background: #151515; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
select { color-scheme: dark; }
.full-field { margin-top: 21px; }
.field-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 6px; color: #777; font-size: .68rem; }
.field-error { display: block; min-height: 17px; margin-top: 5px; color: #ff9c9f; font-size: .69rem; }
.file-drop { position: relative; min-height: 80px; padding: 14px; display: flex; align-items: center; gap: 12px; border: 1px dashed var(--line-strong); border-radius: 13px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.file-drop:hover, .file-drop.dragover { border-color: var(--accent); background: var(--accent-soft); }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #050505; font-size: 1.15rem; }
.file-drop > span:last-child { min-width: 0; display: grid; }
.file-drop strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .79rem; }
.file-drop small { color: var(--muted); font-size: .67rem; }
.support-question { display: grid; gap: 16px; }
.support-question h3 { margin: 0 0 4px; font-size: .94rem; }
.support-question p { margin: 0; color: var(--muted); font-size: .78rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-flex; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #ccc; font-size: .77rem; transition: .2s ease; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
.choice input:checked + span { background: var(--accent); color: #050505; border-color: var(--accent); font-weight: 800; }
.support-details { margin-top: 22px; padding: 21px; border: 1px solid var(--line); border-radius: 16px; background: #141414; }
.support-details-title { margin: 0 0 13px; font-size: .78rem; font-weight: 700; }
.support-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.support-options label { display: flex; align-items: flex-start; gap: 8px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; color: #c8c8c2; font-size: .75rem; cursor: pointer; }
.support-options input { accent-color: var(--accent); margin-top: 4px; }
.form-footer { padding-top: 30px; border-top: 1px solid var(--line); }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #c6c6c0; font-size: .78rem; cursor: pointer; }
.consent input { margin-top: 5px; accent-color: var(--accent); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.submit-button { width: 100%; min-height: 60px; margin-top: 22px; padding: 14px 18px; border: 0; border-radius: 13px; background: var(--accent); color: #050505; cursor: pointer; font-weight: 900; font-size: .9rem; display: flex; align-items: center; justify-content: space-between; transition: transform .2s ease, background .2s ease; }
.submit-button:hover { transform: translateY(-2px); background: var(--accent-bright); }
.submit-button:disabled { opacity: .6; cursor: progress; transform: none; }
.privacy-note { margin: 9px 0 0; color: #74746f; font-size: .66rem; }
.form-success { min-height: 430px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--accent); color: #050505; font-size: 1.7rem; }
.form-success h3 { margin: 5px 0 10px; font-size: clamp(1.8rem,3.4vw,2.8rem); }
.form-success p:not(.eyebrow) { color: var(--muted); max-width: 560px; }
.form-success .btn { margin-top: 16px; }

/* Closing */
.closing-section { min-height: 620px; padding: 100px clamp(22px,6vw,94px); display: grid; align-content: center; justify-items: center; text-align: center; overflow: hidden; border-top: 1px solid var(--line); background: #050505; }
.closing-glow { position: absolute; width: min(820px,88vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(247,189,23,.12), transparent 64%); pointer-events: none; }
.closing-section h2 { position: relative; margin: 18px 0 40px; font-size: clamp(2.15rem,5vw,4.3rem); line-height: 1.12; letter-spacing: -.025em; font-weight: 900; }
.closing-section h2 span { color: var(--accent); }
.circle-cta { position: relative; width: 126px; height: 126px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: var(--accent); color: #050505; font-size: .84rem; font-weight: 900; transition: transform .3s ease, box-shadow .3s ease; }
.circle-cta:hover { transform: scale(1.06) rotate(-3deg); box-shadow: 0 0 0 14px rgba(247,189,23,.07); }
.circle-cta i { font-style: normal; font-size: 1.1rem; }

/* Footer */
.site-footer { max-width: var(--max); margin: 0 auto; padding: 50px clamp(22px,6vw,94px) 30px; display: grid; grid-template-columns: 220px 1.4fr 1fr; gap: 28px; align-items: start; border-top: 1px solid var(--line); background: #050505; }
.footer-brand { width: 190px; align-self: start; }
.site-footer > p { margin: 0; color: var(--muted); max-width: 430px; font-size: .82rem; line-height: 1.9; }
.footer-links { display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap; font-size: .75rem; }
.footer-links a:hover { color: var(--accent); }
.site-footer small { grid-column: 1 / -1; padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--line); color: #666661; font-size: .67rem; }

/* Motion / accessibility states */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
body.high-contrast { --bg:#000; --bg-2:#000; --surface:#000; --surface-2:#000; --text:#fff; --muted:#fff; --line:rgba(255,255,255,.55); --line-strong:#fff; --accent:#ffff00; --accent-bright:#ffff00; }
body.high-contrast .contact-assist { background: #ffff00; }
body.grayscale { filter: grayscale(1); }
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:.001ms !important; }
body.reduce-motion .reveal { opacity:1; transform:none; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: 200px 1fr auto; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: .76rem; }
  .hero { grid-template-columns: minmax(0,1fr) 280px; gap: 42px; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card { border-left: 1px solid var(--line); }
  .contact-assist { grid-template-columns: 190px 1fr; }
  .assist-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 74px; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .site-header.scrolled { height: 66px; }
  .brand { width: 170px; }
  .desktop-nav { display: none; }
  .accessibility-trigger { font-size: .73rem; padding: 8px 10px; }
  .hero { min-height: auto; padding: 135px 22px 82px; grid-template-columns: 1fr; gap: 55px; }
  .hero h1 { font-size: clamp(2.35rem,10.5vw,3.75rem); }
  .hero-copy { font-size: .95rem; }
  .hero-side { max-width: 100%; justify-self: stretch; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .hero-stat { grid-column: 1 / -1; }
  .hero-orbit { left: 12%; top: 25%; width: 110vw; opacity: .65; }
  .scroll-cue { right: 22px; }
  .support-grid { grid-template-columns: 1fr; border-right: 0; }
  .support-card { min-height: 235px; border-right: 1px solid var(--line); }
  .support-card h3 { margin-top: 45px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 205px; }
  .process-card > span { margin-bottom: 36px; }
  .contact-assist { margin-left: 14px; margin-right: 14px; padding: 42px 24px; grid-template-columns: 1fr; border-radius: 24px; }
  .assist-visual { width: 170px; }
  .assist-actions { grid-column: auto; grid-template-columns: 1fr; width: 100%; }
  .two-col { grid-template-columns: 1fr; }
  .support-options { grid-template-columns: 1fr; }
  .form-shell { border-radius: 20px; }
  .form-progress-wrap { grid-template-columns: 1fr auto; }
  .form-progress-wrap > span { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .closing-section { min-height: 540px; }
}

@media (max-width: 520px) {
  .brand { width: 155px; }
  .accessibility-trigger span:last-child { display: none; }
  .accessibility-trigger { width: 42px; height: 42px; border-radius: 50%; padding: 0; }
  .tool-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-side { grid-template-columns: 1fr; }
  .hero-stat { grid-column: auto; }
  .statement-line { font-size: clamp(1.9rem,10vw,3.2rem); }
  .section-heading h2, .roles-copy h2, .process-heading h2, .assist-copy h2, .form-intro h2 { font-size: clamp(1.8rem,8.2vw,2.75rem); }
  .assist-card { grid-template-columns: 42px 1fr auto; padding: 14px; }
  .assist-icon { width: 42px; height: 42px; }
  .form-shell { padding: 22px 16px; }
  .choice-row { flex-direction: column; align-items: stretch; }
  .choice span { justify-content: center; }
  .support-details { padding: 16px; }
  .file-drop { min-height: 92px; }
  .closing-section h2 { font-size: clamp(2rem,10.5vw,3.7rem); }
  .footer-brand { width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
