/* ============================================================
   Salventia — Light Premium design system
   Warm ivory · restrained gold · humanist sans
   ============================================================ */

:root {
  /* type */
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  /* warm ivory surfaces */
  --bg:        #FBF8F2;   /* page */
  --bg-2:      #F4EEE3;   /* alt section band */
  --bg-3:      #EFE8DA;   /* deeper band */
  --surface:   #FFFFFF;   /* cards */
  --surface-2: #FCFAF5;

  /* warm ink */
  --ink:       #2A2620;
  --ink-soft:  #4A453B;
  --muted:     #756E60;
  --faint:     #9A9384;

  /* hairlines */
  --line:      #E6DECE;
  --line-2:    #DDD3BF;

  /* restrained gold */
  --gold:      #B08D4C;   /* accent line / icon */
  --gold-ink:  #8C6A36;   /* gold text on ivory */
  --gold-soft: #EFE3C9;   /* gold wash fill */
  --gold-tint: #F7F0DF;

  /* dark anchor (final cta / footer) */
  --dark:      #211E18;
  --dark-2:    #2C281F;

  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1200px;
  --gut:       clamp(20px, 5vw, 64px);

  --shadow-sm: 0 1px 2px rgba(42,38,32,.04), 0 1px 1px rgba(42,38,32,.03);
  --shadow:    0 2px 4px rgba(42,38,32,.04), 0 12px 32px -12px rgba(42,38,32,.12);
  --shadow-lg: 0 8px 24px -8px rgba(42,38,32,.16), 0 40px 80px -32px rgba(42,38,32,.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-soft); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 9vw, 132px); }
.section--alt  { background: var(--bg-2); }
.section--deep { background: var(--bg-3); }

/* ---------- type scale ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 18px;
  line-height: 1.4;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: relative; top: -2px;
}
.eyebrow--center { text-align: center; }
.eyebrow--center::after {
  content: ""; width: 26px; height: 1px; background: var(--gold);
  display: inline-block; vertical-align: middle; margin-left: 12px; position: relative; top: -2px;
}

h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.018em; margin: 0; }
.h-display { font-size: clamp(38px, 5.4vw, 68px); line-height: 1.04; letter-spacing: -.025em; }
.h1 { font-size: clamp(30px, 3.8vw, 46px); }
.h2 { font-size: clamp(24px, 2.4vw, 31px); letter-spacing: -.012em; }
.h3 { font-size: 20px; font-weight: 600; letter-spacing: -.005em; }

.lede { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55; color: var(--ink-soft); font-weight: 400; }
.muted { color: var(--muted); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 2px rgba(42,38,32,.18);
}
.btn--primary:hover { background: #16130e; box-shadow: var(--shadow); }
.btn--gold {
  background: linear-gradient(180deg, #C7A45E, #A9842F);
  color: #2A2008;
  box-shadow: 0 1px 1px rgba(255,255,255,.4) inset, 0 6px 18px -8px rgba(160,125,40,.6);
}
.btn--gold:hover { filter: brightness(1.04); box-shadow: 0 1px 1px rgba(255,255,255,.5) inset, 0 10px 24px -8px rgba(160,125,40,.7); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(42,38,32,.03); }
.btn--light {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28);
}
.btn--light:hover { background: rgba(255,255,255,.18); }
.btn--lg { padding: 17px 34px; font-size: 16.5px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15px; color: var(--gold-ink);
}
.arrow-link svg { transition: transform .2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }

.kicker-num {
  font-variant-numeric: tabular-nums;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--gold-tint);
  margin-bottom: 18px;
}

.tile-ico {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--gold-tint); border: 1px solid var(--line-2);
  color: var(--gold-ink); margin-bottom: 18px;
}
.tile-ico svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: 9px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* ---------- image placeholder ---------- */
.ph {
  position: relative;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 9px,
    rgba(176,141,76,.05) 9px, rgba(176,141,76,.05) 18px
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  color: var(--muted);
}
.ph__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px; letter-spacing: .04em;
  padding: 4px 8px; border-radius: 6px;
  background: var(--ink); color: #F4EEE3;
  text-transform: uppercase;
}
.ph__prompt {
  margin: 0; padding: 14px 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px; line-height: 1.5; color: var(--ink-soft);
  background: linear-gradient(0deg, rgba(252,250,245,.96), rgba(252,250,245,.0));
}
.ph__prompt b { color: var(--gold-ink); font-weight: 700; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,242,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(42,38,32,.4); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav__logo img { height: 38px; display: block; }
.nav__links { display: flex; gap: 26px; margin-left: 8px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__divider {
  width: 1px; height: 16px;
  background: var(--line-2);
  align-self: center;
  flex: none;
}

/* Language pill */
.lang-pill {
  display: flex; align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  overflow: hidden;
  flex: none;
}
.lang-pill__opt {
  padding: 5px 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-3); text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1;
}
.lang-pill__opt:hover { color: var(--ink); background: var(--surface-2); }
.lang-pill__opt.active {
  background: var(--ink); color: var(--bg);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; }

/* mobile menu */
.mnav { display: none; }

/* ---------- chips / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-soft);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- hero ---------- */
.hero { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__micro {
  margin-top: 22px; font-size: 13.5px; color: var(--faint);
  display: flex; align-items: center; gap: 9px;
}
.hero__micro .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

/* role cards (decision hub) */
.hub {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-top: clamp(36px, 4vw, 52px);
}
.hub__card {
  text-align: left; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 16px 16px;
  display: flex; flex-direction: column; gap: 8px; min-height: 116px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hub__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.hub__card .num { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--gold-ink); }
.hub__card .lbl { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.hub__card .sub { font-size: 12.5px; color: var(--faint); margin-top: auto; }

/* ---------- workflow diagram ---------- */
.flow {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.flow__title { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin: 0 0 20px; }
.flow__step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--line);
  font-weight: 600; font-size: 15.5px;
}
.flow__step .ico { width: 28px; height: 28px; color: var(--gold-ink); flex: none; display: grid; place-items: center; }
.flow__step--accent { background: linear-gradient(180deg, var(--gold-tint), var(--gold-soft)); border-color: var(--line-2); }
.flow__step .meta { font-size: 12.5px; font-weight: 500; color: var(--muted); display: block; }
.flow__conn { display: grid; place-items: center; height: 22px; color: var(--line-2); }
.flow__loop {
  margin-top: 6px; font-size: 12.5px; color: var(--gold-ink); font-weight: 600;
  display: flex; align-items: center; gap: 8px; justify-content: center;
}

/* ---------- numbered steps (how it works) ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-size: 15px; font-weight: 700; color: var(--gold-ink);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--gold-tint);
  display: grid; place-items: center; font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--muted); max-width: 64ch; }

/* ---------- two-col split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

/* ---------- stat / value rows ---------- */
.valgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
.vallist { display: grid; gap: 4px; }
.valrow {
  display: grid; grid-template-columns: 26px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.valrow:first-child { border-top: 1px solid var(--line); }
.valrow .chk { color: var(--gold-ink); margin-top: 3px; }
.valrow b { display: block; font-size: 16.5px; font-weight: 600; margin-bottom: 3px; }
.valrow span { color: var(--muted); font-size: 15px; }
.valcol h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); font-weight: 600; margin-bottom: 4px; }

/* ---------- pilot terms ---------- */
.terms { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.term { display: grid; grid-template-columns: 200px 1fr; background: var(--surface); padding: 20px 26px; gap: 20px; align-items: baseline; }
.term dt { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-ink); }
.term dd { margin: 0; font-size: 17px; font-weight: 500; }

/* ---------- callout / disclaimer ---------- */
.callout {
  border-left: 2px solid var(--gold); padding: 4px 0 4px 22px;
  font-size: 18px; line-height: 1.5; color: var(--ink-soft); font-style: italic;
}
.notebar {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--gold-tint); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 20px 24px; font-size: 15px; color: var(--ink-soft);
}
.notebar .ico { color: var(--gold-ink); flex: none; margin-top: 1px; }

/* ---------- thesis list ---------- */
.thesis { display: grid; gap: 14px; }
.thesis__item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.thesis__n { font-size: 13px; font-weight: 700; color: var(--gold-ink); font-variant-numeric: tabular-nums; padding-top: 2px; }
.thesis__item b { font-size: 17px; font-weight: 600; }
.thesis__item span { color: var(--muted); font-size: 15px; }

/* ---------- launch formats ---------- */
.formats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* ---------- final cta ---------- */
.final { background: var(--dark); color: #EDE6D6; }
.final .eyebrow { color: #D8B975; }
.final .eyebrow::before { background: #C7A45E; }
.final h2 { color: #fff; }
.final p { color: #C3BBA8; }
.final-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.final-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px; text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.final-card:hover { transform: translateY(-3px); border-color: rgba(199,164,94,.5); background: #322d22; }
.final-card .role { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #D8B975; margin-bottom: 12px; }
.final-card h3 { color: #fff; margin-bottom: 14px; }

/* ---------- footer ---------- */
.foot { background: var(--dark); color: #B7AF9C; border-top: 1px solid rgba(255,255,255,.08); padding-block: 48px; }
.foot__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot img { height: 32px; opacity: .9; }
.foot small { font-size: 12.5px; color: #8A8474; max-width: 60ch; display: block; line-height: 1.5; }

/* ---------- modal / forms ---------- */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(33,30,24,.5); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 18px;
  width: min(520px, 100%); max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98); transition: transform .24s cubic-bezier(.2,.8,.2,1);
}
.modal-back.open .modal { transform: none; }
.modal__head { padding: 26px 28px 18px; border-bottom: 1px solid var(--line); position: relative; }
.modal__head .role { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 10px; }
.modal__head h3 { font-size: 22px; }
.modal__head p { margin: 8px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.modal__x {
  position: absolute; top: 20px; right: 20px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface);
  display: grid; place-items: center; color: var(--muted);
}
.modal__x:hover { color: var(--ink); border-color: var(--ink); }
.modal__body { padding: 24px 28px 28px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field label .req { color: var(--gold-ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-2);
  background: var(--surface); transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 76px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field.err input, .field.err select, .field.err textarea { border-color: #C0563B; }
.field .errmsg { font-size: 12.5px; color: #C0563B; margin-top: 5px; }
.tagline-mini { font-size: 12.5px; color: var(--faint); text-align: center; margin-top: 14px; }

/* success state */
.success { text-align: center; padding: 30px 28px 36px; }
.success__badge {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--gold-tint); border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--gold-ink);
}
.success h3 { font-size: 22px; margin-bottom: 10px; }
.success p { color: var(--muted); margin: 0 auto 22px; max-width: 38ch; }

/* ---------- tweak states ---------- */
body.flat-bands .section--alt,
body.flat-bands .section--deep { background: var(--bg); }
body.compact .section { padding-block: clamp(52px, 6vw, 88px); }

/* ---------- plain image frame ---------- */
.figframe {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.figframe img { display: block; width: 100%; height: auto; }

/* ---------- product screenshot frame ---------- */
.shot {
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.shot__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.shot__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); flex: none; }
.shot__url {
  margin-left: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; color: var(--faint); letter-spacing: .01em;
}
.shot img { display: block; width: 100%; height: auto; }
.shot__cap {
  text-align: center; margin-top: 16px;
  font-size: 14px; color: var(--muted);
}

/* ============================================================
   RTL / Arabic overrides — only active when <html dir="rtl">
   (inert on the English page)
   ============================================================ */
[dir="rtl"] body, [dir="rtl"] body * { letter-spacing: normal !important; }
[dir="rtl"] .eyebrow::before { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .eyebrow--center::after { margin-left: 0; margin-right: 12px; }
[dir="rtl"] .nav__cta { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav__links { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .nav__burger { margin-left: 0; margin-right: auto; }
[dir="rtl"] .callout { border-left: 0; border-right: 2px solid var(--gold); padding-left: 0; padding-right: 22px; }
[dir="rtl"] .modal__x { right: auto; left: 20px; }
[dir="rtl"] .arrow-link svg { transform: scaleX(-1); }
[dir="rtl"] .arrow-link:hover svg { transform: scaleX(-1) translateX(4px); }
[dir="rtl"] .shot__url { direction: ltr; }
[dir="rtl"] .foot small { text-align: right; }

/* ---------- team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
}
.team-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__photo { border-bottom: 1px solid var(--line); }
.team-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  object-position: center top;
}

.team-card__ph {
  min-height: 300px;
  border-radius: 0;
  border: none;
  border-bottom: none;
}
.team-card__body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.team-card__role-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 10px;
}
.team-card__role-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.team-card__name {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.team-card__bio {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.team-card__links {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hub { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .split, .valgrid { grid-template-columns: 1fr; }
  .cols-4, .cols-5 { grid-template-columns: repeat(2, 1fr); }
  .formats, .final-cards { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__burger {
    display: grid; place-items: center; width: 42px; height: 42px; margin-left: auto;
    border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface);
  }
  .nav__cta { display: none; }
  .nav__cta--mobile { display: flex; }
  /* solid nav on mobile — no backdrop-filter needed */
  .nav { background: var(--bg); backdrop-filter: none; }
  .mnav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0; z-index: 49;
    background: var(--bg); padding: 24px var(--gut);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 32px -8px rgba(42,38,32,.15);
  }
  .mnav a { display: block; padding: 16px 0; font-size: 19px; font-weight: 600; border-bottom: 1px solid var(--line); }
  .mnav a.btn { display: flex; justify-content: center; padding: 14px 26px; border-bottom: none; }
  .term { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 620px) {
  .cols-3, .cols-4, .cols-5, .cols-2 { grid-template-columns: 1fr; }
  .hub { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}
