/* =====================================================================
   Alldreams Sportoteam — site.css
   01 tokens · 02 base · 03 type · 04 layout · 05 header · 06 hero
   07 blocks · 08 forms · 09 footer · 10 rtl · 11 motion · 12 responsive
   ===================================================================== */

/* 01 · TOKENS ------------------------------------------------------- */
:root {
  --paper:      #F7F5F0;
  --paper-2:    #EFECE4;
  --surface:    #FFFFFF;
  --ink:        #131922;
  --ink-2:      #2B3340;
  --muted:      #676E79;
  --rule:       #E2DDD3;
  --rule-2:     #CFC9BC;
  --navy:       #013CA6;
  --navy-deep:  #0B2B6B;
  --navy-ink:   #0E1526;
  --gold:       #E0A035;
  --gold-soft:  #F6E8C8;
  --gold-line:  #E8C27A;

  --font-display: 'Newsreader', 'Times New Roman', Georgia, serif;
  --font-body:    'Hanken Grotesk', 'Helvetica Neue', Arial, system-ui, sans-serif;

  --w: 1200px;
  --gut: clamp(20px, 4vw, 48px);
  --r: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* 02 · BASE ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.skip { position: absolute; inset-inline-start: 12px; top: -60px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { top: 12px; }

/* 03 · TYPE ---------------------------------------------------------- */
.display, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.display { font-size: clamp(2.5rem, 4.5vw, 4.1rem); line-height: 1.04; font-variation-settings: 'opsz' 72; }
.h1      { font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.06; font-variation-settings: 'opsz' 72; }
.h2      { font-size: clamp(1.8rem, 3vw, 2.6rem);  line-height: 1.12; font-variation-settings: 'opsz' 48; }
.h3      { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.22; font-variation-settings: 'opsz' 36; }
.h4      { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; line-height: 1.35; color: var(--ink); }
.lede    { font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.55; color: var(--ink-2); margin-top: 1.1rem; max-width: 62ch; }
.body    { font-size: 1rem; line-height: 1.65; color: var(--ink-2); }
.body--sm{ font-size: .95rem; color: var(--muted); }
.muted   { color: var(--muted); }
.max-60  { max-width: 60ch; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--gold); vertical-align: middle; margin-inline-end: 10px; }
.note { font-size: .95rem; color: var(--ink-2); padding: 14px 18px; border-inline-start: 2px solid var(--gold); background: var(--surface); max-width: 70ch; }
.note--ok { border-color: #2E7D5B; }
.link { color: var(--navy); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color .2s; }
.link:hover { border-color: var(--navy); }

.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; } .mt-lg { margin-top: 3.2rem; } .mt { margin-top: 1.4rem; }

/* 04 · LAYOUT -------------------------------------------------------- */
.wrap { width: min(var(--w), 100% - var(--gut) * 2); margin-inline: auto; }
.section { padding-block: clamp(3.4rem, 7vw, 6.5rem); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--navy-ink); color: #D9DDE6; }
.section--dark .h2, .section--dark .h3, .section--dark .h4 { color: #fff; }
.section--dark .lede, .section--dark .body { color: #C5CBD8; }
.section--dark .body--sm { color: #9AA3B5; }
.section--dark .eyebrow { color: #8D97AB; }
.section--dark .eyebrow--gold { color: var(--gold-line); }
.section--dark .feat { border-color: rgba(255,255,255,.12); }
.section--flush { padding-block: 0; }
.section--flush-top { padding-top: 0; }
.section--stats { padding-block: 0; border-block: 1px solid var(--rule); background: var(--surface); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--hair { gap: 0; border-top: 1px solid var(--rule); border-inline-start: 1px solid var(--rule); }
.grid--hair > * { border-bottom: 1px solid var(--rule); border-inline-end: 1px solid var(--rule); }
.section--dark .grid--hair { border-color: rgba(255,255,255,.12); }
.section--dark .grid--hair > * { border-color: rgba(255,255,255,.12); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 40px; align-items: start; }
.split__side .h2, .split__side .h3 { margin-top: .2rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r);
  font-weight: 500; font-size: .95rem; letter-spacing: .01em; line-height: 1;
  border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 10px 16px; font-size: .88rem; }
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn--ghost:hover { border-color: var(--ink); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* 05 · HEADER -------------------------------------------------------- */
.top {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.top.is-scrolled { border-bottom-color: var(--rule); }
.top__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.lockup { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lockup__ad { height: 18px; width: auto; }
.lockup__rule { width: 1px; height: 34px; background: var(--rule-2); margin-inline: 4px; }
.lockup__mark { height: 40px; width: auto; }
.lockup__st { height: 14px; width: auto; margin-inline-start: -4px; }
.lockup--foot { align-items: center; gap: 22px; }
.lockup--foot .lockup__ad { height: 16px; }
.lockup--foot .lockup__rule { height: 56px; }
.lockup__stack { height: 66px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; font-size: .92rem; font-weight: 500; color: var(--ink-2);
  border-radius: var(--r); transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); background: rgba(0,0,0,.04); }
.nav__chev { transition: transform .2s; }
.nav__group { position: relative; }
.nav__panel {
  position: absolute; inset-inline-start: 0; top: calc(100% + 8px);
  width: 560px; padding: 10px;
  background: var(--surface); border: 1px solid var(--rule); border-radius: 6px;
  box-shadow: 0 18px 50px -20px rgba(15,20,35,.28);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__group:hover .nav__panel, .nav__group.is-open .nav__panel, .nav__group:focus-within .nav__panel { opacity: 1; visibility: visible; transform: none; }
.nav__group:hover .nav__chev, .nav__group.is-open .nav__chev { transform: rotate(180deg); }
.nav__item { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: var(--r); transition: background .15s; }
.nav__item:hover, .nav__item.is-active { background: var(--paper); }
.nav__item-name { font-weight: 600; font-size: .95rem; color: var(--ink); }
.nav__item-short { font-size: .82rem; color: var(--muted); }

.langs { display: inline-flex; gap: 2px; margin-inline-start: 10px; padding-inline-start: 14px; border-inline-start: 1px solid var(--rule); }
.langs__a { padding: 6px 8px; font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); border-radius: var(--r); }
.langs__a:hover { color: var(--ink); }
.langs__a.is-active { color: var(--ink); background: rgba(0,0,0,.05); }
.nav__cta { margin-inline-start: 10px; }

.top__burger { display: none; align-items: center; gap: 10px; padding: 8px 4px; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.top__burger-l { position: relative; width: 22px; height: 2px; background: var(--ink); }
.top__burger-l::before, .top__burger-l::after { content: ''; position: absolute; inset-inline-start: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .25s; }
.top__burger-l::before { top: -7px; } .top__burger-l::after { top: 7px; }
.nav-open .top__burger-l { background: transparent; }
.nav-open .top__burger-l::before { transform: translateY(7px) rotate(45deg); }
.nav-open .top__burger-l::after { transform: translateY(-7px) rotate(-45deg); }

/* 06 · HERO ---------------------------------------------------------- */
.hero { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); min-height: min(78vh, 720px); background: var(--paper); }
.hero__text { display: flex; align-items: center; padding: clamp(2.2rem, 4vw, 3.5rem) var(--gut); }
.hero__inner { width: min(660px, 100%); margin-inline-start: auto; padding-inline-end: clamp(0px, 4vw, 56px); }
.hero__media { position: relative; overflow: hidden; min-height: 100%; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 18%; }
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(247,245,240,.35), transparent 30%); }
[dir="rtl"] .hero__media::after { background: linear-gradient(to left, rgba(247,245,240,.35), transparent 30%); }
.hero__media::before { content: ''; position: absolute; inset-inline-start: 0; top: 12%; bottom: 12%; width: 2px; background: var(--gold); z-index: 1; }

.shero { padding-block: clamp(2.5rem, 5vw, 4.5rem) 0; }
.shero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.shero__text { padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.shero__media { position: relative; }
.shero__img, .shero__video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.shero__video { aspect-ratio: 16 / 10; background: #0d1a3a; }
.shero__grid:has(.shero__video) { align-items: center; }
.shero__note { font-size: .74rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 10px; }
.shero__media::before { content: ''; position: absolute; inset-inline-end: -10px; top: 10%; bottom: 10%; width: 1px; background: var(--gold-line); }
.shero + .section { padding-top: clamp(2.6rem, 5vw, 4.5rem); }

.phero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 2vw, 1.5rem); }
.phero--tall { padding-block: 8rem; }

.shero__brand { height: 132px; width: auto; margin-bottom: 1.6rem; }
.partner-logo { height: 64px; width: auto; margin-bottom: 14px; }

/* 07 · BLOCKS -------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 26px 22px; border-inline-end: 1px solid var(--rule); }
.stat:last-child { border-inline-end: 0; }
.stat__n { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; color: var(--navy); font-variation-settings: 'opsz' 48; letter-spacing: -.02em; }
.stat__l { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

.card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(15,20,35,.35); border-color: var(--rule-2); }
.card__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 24px; flex: 1; }
.card__short { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.card__name { font-family: var(--font-display); font-size: 1.55rem; line-height: 1.15; color: var(--ink); }
.card__blurb { font-size: .95rem; color: var(--muted); line-height: 1.55; }
.card__go { margin-top: auto; padding-top: 14px; font-size: .88rem; font-weight: 600; color: var(--navy); }

.journey { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule-2); }
.journey__item { padding: 26px 24px 8px 0; border-top: 2px solid transparent; margin-top: -1px; position: relative; }
.journey__item:not(:last-child) { border-inline-end: 1px solid var(--rule); padding-inline-end: 24px; }
.journey__item:not(:first-child) { padding-inline-start: 24px; }
.journey__n { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: 14px; letter-spacing: .04em; }
.journey__item .h3 { margin-bottom: 10px; }

.aud { display: flex; flex-direction: column; gap: 10px; padding: 28px 26px; background: var(--surface); transition: background .25s; min-height: 200px; }
.aud:hover { background: var(--gold-soft); }
.aud__name { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.15; }
.aud__body { font-size: .93rem; color: var(--muted); line-height: 1.55; }

.feat { padding: 28px 26px 30px; background: var(--surface); }
.feat--tight { padding: 20px 20px 22px; }
.section--dark .feat, .section--tint .feat { background: transparent; }
.section--tint .grid--hair > .feat { background: var(--surface); }
.feat .h4 { margin-bottom: 10px; }
.feat .h3 { margin-bottom: 12px; }
.feat__n { display: block; font-family: var(--font-display); color: var(--gold); font-size: .95rem; letter-spacing: .06em; margin-bottom: 14px; }

.hq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: var(--surface); border-block: 1px solid var(--rule); }
.hq__media { position: relative; min-height: 380px; }
.hq__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hq__text { padding: clamp(2.6rem, 5vw, 5rem) clamp(1.6rem, 5vw, 5rem); align-self: center; }
.hq__text .body { margin-top: 1rem; }
.hq--rev .hq__media { order: 2; }
.hq__lines { margin-top: 1.6rem; display: grid; gap: 8px; }
.hq__lines li { padding-inline-start: 18px; position: relative; font-size: .95rem; color: var(--ink-2); }
.hq__lines li::before { content: ''; position: absolute; inset-inline-start: 0; top: .7em; width: 8px; height: 1px; background: var(--gold); }

.ticks { display: grid; gap: 10px; margin-top: 1.4rem; }
.ticks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
.ticks li { position: relative; padding-inline-start: 22px; font-size: .95rem; color: var(--ink-2); line-height: 1.5; }
.ticks li::before { content: ''; position: absolute; inset-inline-start: 0; top: .55em; width: 10px; height: 10px; border: 1px solid var(--gold); border-radius: 50%; }
.ticks li strong { font-weight: 600; color: var(--ink); }
.hq__text .ticks + .note, .hq__text .ticks + .body { margin-top: 1.4rem; }

.steps { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.steps__item { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--rule); }
.steps__n { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--gold); font-variation-settings: 'opsz' 48; }
.steps__item .h4 { margin-bottom: 6px; }
.steps__item .body { max-width: 70ch; }

.numlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; border-top: 1px solid var(--rule); }
.numlist__item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.numlist__n { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; color: var(--gold); }
.numlist__item .h4 { margin-bottom: 6px; }

.tablewrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 6px; background: var(--surface); }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.table th, .table td { text-align: start; padding: 14px 18px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.table th { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--paper); }
.table tr:last-child td { border-bottom: 0; }
.table__sys { white-space: nowrap; color: var(--navy); font-weight: 500; }

.levels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.level { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; padding: 26px 24px 24px; position: relative; }
.level:nth-child(4) { border-color: var(--gold-line); }
.level__head { padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.level__sub { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.level__name { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-top: 6px; letter-spacing: -.01em; }
.level__tag { font-size: .92rem; color: var(--muted); margin-top: 8px; font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.level__list { display: grid; gap: 8px; flex: 1; }
.level__list li { position: relative; padding-inline-start: 16px; font-size: .9rem; color: var(--ink-2); line-height: 1.5; }
.level__list li::before { content: ''; position: absolute; inset-inline-start: 0; top: .62em; width: 6px; height: 1px; background: var(--gold); }
.level__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--rule); }
.level__meta dt { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.level__meta dd { margin: 4px 0 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); line-height: 1; }
.level__for { margin-top: 16px; font-size: .86rem; color: var(--muted); line-height: 1.5; }
.level__for-l { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; color: var(--ink-2); }

.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.chips__l { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-inline-end: 8px; }
.chip { padding: 6px 12px; border: 1px solid var(--rule-2); border-radius: 999px; font-size: .85rem; color: var(--ink-2); background: var(--surface); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: .4rem; }
.pill { padding: 8px 14px; border: 1px solid var(--rule-2); border-radius: 999px; font-size: .86rem; font-weight: 500; color: var(--ink); background: var(--paper); transition: border-color .2s, background .2s; }
.pill:hover { border-color: var(--navy); background: #fff; color: var(--navy); }

.declare { padding: 26px 30px; border: 1px solid var(--gold-line); background: var(--surface); border-radius: 6px; max-width: 80ch; }
.declare .h3, .declare .h4 { margin-bottom: 8px; }

.cmp { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.cmp__col { padding: 30px 30px 32px; border-radius: 6px; border: 1px solid rgba(255,255,255,.14); }
.cmp__col--new { border-color: var(--gold); background: rgba(224,160,53,.06); }
.cmp__l { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: #8D97AB; }
.cmp__col--new .cmp__l { color: var(--gold-line); }
.cmp__q { font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; color: #fff; margin: 12px 0 14px; }

.dims { display: grid; gap: 28px; }
.dims__gl { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }

.faq { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__pm { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.faq__pm::before, .faq__pm::after { content: ''; position: absolute; background: var(--gold); inset-inline-start: 0; top: 6px; width: 14px; height: 2px; transition: transform .25s; }
.faq__pm::after { transform: rotate(90deg); }
.faq__item[open] .faq__pm::after { transform: rotate(0); }
.faq__a { padding: 0 0 22px; color: var(--ink-2); max-width: 70ch; font-size: .98rem; }

.rel { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 2px 16px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--rule); border-radius: 6px; transition: border-color .2s, transform .3s var(--ease); }
.rel:hover { border-color: var(--navy); transform: translateY(-2px); }
.rel__name { font-family: var(--font-display); font-size: 1.3rem; }
.rel__short { font-size: .85rem; color: var(--muted); }
.rel__go { grid-row: 1 / 3; align-self: center; color: var(--navy); font-size: 1.2rem; }
[dir="rtl"] .rel__go { transform: scaleX(-1); }

.vid { background: #0b1230; }
.vid__v { width: 100%; max-height: 560px; object-fit: cover; }
.vid__player { width: 100%; border-radius: 6px; background: #000; aspect-ratio: 16 / 9; }

.vision { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.14); }
.vision .h2 { margin-bottom: 1rem; }
.vision .ticks li { color: #C5CBD8; }
.vision .ticks li::before { border-color: var(--gold-line); }
.vision__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.ministeps { display: grid; gap: 14px; margin-top: .6rem; }
.ministeps li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
.ministeps__n { font-family: var(--font-display); color: var(--gold-line); font-size: 1.1rem; line-height: 1.4; }
.ministeps strong { display: block; color: #fff; font-weight: 600; font-size: .95rem; }
.ministeps span { display: block; font-size: .88rem; color: #9AA3B5; line-height: 1.5; }

/* 08 · FORMS --------------------------------------------------------- */
.section--cta { background: var(--surface); border-top: 1px solid var(--rule); }
.cta { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.cta__text .body--sm { margin-top: 1.4rem; }
.cta--page .cta__text .h3 { margin-top: .2rem; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__l { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field__i {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: 12px 14px; background: var(--paper); border: 1px solid var(--rule-2); border-radius: var(--r);
  transition: border-color .2s, background .2s; width: 100%;
}
.field__i:focus { outline: none; border-color: var(--navy); background: #fff; }
textarea.field__i { resize: vertical; min-height: 130px; }
select.field__i { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23676E79' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-inline-end: 36px; }
[dir="rtl"] select.field__i { background-position: left 14px center; }
.form__hp { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; width: 0; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 22px; }
.form__note { font-size: .82rem; color: var(--muted); }
.form__note.is-ok { color: #2E7D5B; font-weight: 500; }
.form__note.is-err { color: #B23A2E; font-weight: 500; }

/* 09 · FOOTER -------------------------------------------------------- */
.foot { background: var(--navy-ink); color: #B7BECD; padding-block: 64px 32px; }
.foot__grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
.foot .lockup__rule { background: rgba(255,255,255,.25); }
.foot__tag { margin-top: 18px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-line); }
.foot__hq { margin-top: 12px; font-size: .9rem; max-width: 42ch; color: #9AA3B5; }
.foot__h { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #8D97AB; margin-bottom: 14px; }
.foot__list { display: grid; gap: 8px; }
.foot__list a { font-size: .95rem; color: #D5DAE5; transition: color .2s; }
.foot__list a:hover { color: #fff; }
.foot__legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; line-height: 1.6; color: #8D97AB; max-width: 100ch; }
.foot__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 22px; font-size: .78rem; color: #6F7890; }

/* 10 · RTL ----------------------------------------------------------- */
[dir="rtl"] {
  --font-display: 'IBM Plex Sans Arabic', 'Noto Naskh Arabic', Tahoma, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', Tahoma, Arial, sans-serif;
}
[dir="rtl"] .display, [dir="rtl"] .h1, [dir="rtl"] .h2, [dir="rtl"] .h3 { font-weight: 500; letter-spacing: 0; font-variation-settings: normal; line-height: 1.3; }
[dir="rtl"] .display { font-size: clamp(2.3rem, 4.8vw, 3.9rem); }
[dir="rtl"] .eyebrow, [dir="rtl"] .card__short, [dir="rtl"] .field__l, [dir="rtl"] .level__sub, [dir="rtl"] .foot__h, [dir="rtl"] .foot__tag, [dir="rtl"] .chips__l, [dir="rtl"] .dims__gl, [dir="rtl"] .cmp__l, [dir="rtl"] .table th, [dir="rtl"] .level__meta dt, [dir="rtl"] .level__for-l { letter-spacing: 0; }
[dir="rtl"] .level__tag { font-style: normal; }
[dir="rtl"] .stat__n, [dir="rtl"] .steps__n, [dir="rtl"] .numlist__n, [dir="rtl"] .journey__n, [dir="rtl"] .feat__n, [dir="rtl"] .level__name, [dir="rtl"] .level__meta dd { font-family: 'Newsreader', Georgia, serif; }
[dir="rtl"] .card__go span, [dir="rtl"] .link { unicode-bidi: plaintext; }
[dir="rtl"] .hero__media::before { inset-inline-start: 0; }

/* 11 · MOTION -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease) var(--d, 0ms), transform .7s var(--ease) var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card__img img, .rel { transition: none; }
}

/* 12 · RESPONSIVE ---------------------------------------------------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .levels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey__item { padding: 24px 0 18px; border-bottom: 1px solid var(--rule); }
  .journey__item:not(:last-child) { border-inline-end: 0; padding-inline-end: 0; }
  .journey__item:nth-child(odd) { border-inline-end: 1px solid var(--rule); padding-inline-end: 24px; }
  .journey__item:not(:first-child) { padding-inline-start: 0; }
  .journey__item:nth-child(even) { padding-inline-start: 24px; }
  .numlist { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .top__burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 76px 0 0 0; z-index: 49; padding: 12px var(--gut) 40px;
    background: var(--paper); flex-direction: column; align-items: stretch; gap: 0;
    overflow-y: auto; transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav-open { overflow: hidden; }
  .nav__link { padding: 16px 0; font-size: 1.15rem; border-bottom: 1px solid var(--rule); border-radius: 0; justify-content: space-between; }
  .nav__link:hover, .nav__link.is-active { background: transparent; }
  .nav__link--btn { width: 100%; }
  .nav__panel { position: static; width: auto; padding: 0 0 8px; border: 0; box-shadow: none; background: transparent; grid-template-columns: 1fr; display: none; transform: none; opacity: 1; visibility: visible; }
  .nav__group.is-open .nav__panel { display: grid; }
  .nav__group:hover .nav__panel:not(.x) { display: none; }
  .nav__group.is-open:hover .nav__panel { display: grid; }
  .nav__item { padding: 12px 0 12px 16px; border-inline-start: 1px solid var(--rule); border-radius: 0; }
  .langs { margin: 18px 0 0; padding: 0; border: 0; gap: 6px; }
  .langs__a { padding: 8px 12px; border: 1px solid var(--rule-2); }
  .nav__cta { margin: 20px 0 0; align-self: flex-start; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { order: -1; aspect-ratio: 16 / 10; min-height: 0; }
  .hero__media::before { display: none; }
  .hero__inner { margin-inline-start: 0; padding-inline-end: 0; }
  .shero__grid { grid-template-columns: 1fr; }
  .shero__img { aspect-ratio: 16 / 10; }
  .shero__media::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 12px; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hq { grid-template-columns: 1fr; }
  .hq--rev .hq__media { order: 0; }
  .hq__media { min-height: 0; aspect-ratio: 16 / 10; }
  .hq__media img { position: static; aspect-ratio: 16 / 10; }
  .cta { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .cmp { grid-template-columns: 1fr; }
  .vision { grid-template-columns: 1fr; }
  .ticks--2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .top__row { height: 64px; }
  .nav { inset-block-start: 64px; }
  .lockup__ad { height: 14px; } .lockup__mark { height: 30px; } .lockup__st { height: 11px; } .lockup__rule { height: 26px; }
  .lockup { gap: 9px; }
  .lockup__stack { height: 60px; }
  .grid--2, .grid--3, .grid--4, .levels, .journey { grid-template-columns: 1fr; }
  .journey__item, .journey__item:nth-child(odd), .journey__item:nth-child(even) { border-inline-end: 0; padding-inline: 0; }
  .form__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 20px 16px; border-bottom: 1px solid var(--rule); }
  .stat:nth-child(even) { border-inline-end: 0; }
  .steps__item { grid-template-columns: 56px minmax(0, 1fr); gap: 12px; }
  .actions .btn { width: 100%; }
  .top__burger-txt { display: none; }
  .hero__media { aspect-ratio: 4 / 3; }
  .hero__media img { object-position: 50% 30%; }
  .foot__grid { grid-template-columns: 1fr; }
}
