/* =========================================================================
   MPH MEDIA & TECH LTD — mphmedia.pro
   Design system. One stylesheet, no build step, no framework.

   Palette rationale: the company sits where a media business meets its
   software (SIC 62012 / 62020 / 62030 / 62090). Midnight indigo carries the
   screen — the dark of a grading suite or a control room — and a champagne
   gold hairline carries the editorial half: the thin rule at the top of a
   masthead. Restrained, dark, and quiet rather than loud.
   ========================================================================= */

:root {
  /* Ink — midnight indigo, never pure black */
  --ink:        #0b0e21;
  --ink-2:      #171b3c;
  --ink-3:      #3c4270;
  --muted:      #6c729c;

  /* Paper */
  --paper:      #ffffff;
  --mist:       #f5f5fb;
  --mist-2:     #e8e8f5;
  --line:       rgba(11, 14, 33, .11);
  --line-soft:  rgba(11, 14, 33, .06);
  --line-dark:  rgba(255, 255, 255, .13);
  --line-gold:  rgba(200, 161, 90, .38);

  /* Brand — indigo violet */
  --brand:      #4536a8;
  --brand-2:    #6455dd;
  --brand-3:    #a99bf5;
  --brand-ink:  #392c8c;

  /* Accent — champagne gold */
  --gold:       #c8a15a;
  --gold-2:     #e3c489;
  --gold-3:     #f2e2c2;
  --gold-ink:   #97722f;

  /* Signals */
  --good:       #1f9d6b;
  --warn:       #d99518;
  --bad:        #d1524a;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  34px;

  --shadow-sm:  0 1px 2px rgba(11, 14, 33, .06), 0 2px 8px rgba(11, 14, 33, .04);
  --shadow:     0 10px 30px rgba(11, 14, 33, .09), 0 2px 6px rgba(11, 14, 33, .04);
  --shadow-lg:  0 30px 70px rgba(11, 14, 33, .18), 0 8px 22px rgba(11, 14, 33, .07);
  --shadow-brand: 0 18px 44px rgba(69, 54, 168, .30);

  --display:    'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:       'SFMono-Regular', ui-monospace, Consolas, 'Liberation Mono', monospace;

  --container:  1180px;
  --nav-height: 78px;
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0;
  line-height: 1.16;
  letter-spacing: -.014em;
  font-weight: 600;
  /* Keeps long display headings from stranding a single short word on the last
     line. Ignored by browsers that do not support it, which is harmless. */
  text-wrap: balance;
}

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; }

a {
  color: var(--brand-ink);
  text-decoration-color: rgba(69, 54, 168, .32);
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}
a:hover { color: var(--brand-2); text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(100, 85, 221, .18); color: var(--ink); }

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 26px;
}

.section { padding: 104px 0; }
.section--tight { padding: 74px 0; }
.section--mist { background: var(--mist); }
.section--edge { border-top: 1px solid var(--line-soft); }

.section--ink {
  background:
    radial-gradient(1100px 560px at 78% -12%, rgba(100, 85, 221, .32), transparent 62%),
    radial-gradient(760px 420px at 6% 110%, rgba(200, 161, 90, .16), transparent 60%),
    var(--ink);
  color: rgba(255, 255, 255, .8);
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.stack > * + * { margin-top: 18px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 52ch; }

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip:focus { left: 18px; color: #fff; }

/* ---------- Eyebrow + gold rule ----------
   The masthead device: a thin gold rule, then small letterspaced sans. */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 161, 90, .2));
}
/* Every dark ground gets the lighter gold — the ink-on-paper gold is too dark
   against it to read as an accent. */
.section--ink .eyebrow,
.hero .eyebrow,
.cta .eyebrow { color: var(--gold-2); }
.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(270deg, var(--gold), rgba(200, 161, 90, .2));
}
.center .eyebrow { justify-content: center; }

.rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 161, 90, .12));
  border: 0;
  margin: 26px 0;
}
.center .rule { margin-inline: auto; background: linear-gradient(90deg, rgba(200, 161, 90, .12), var(--gold), rgba(200, 161, 90, .12)); }

/* ---------- Type scale ---------- */

.h-xl { font-size: clamp(2.6rem, 5.6vw, 4.3rem); line-height: 1.05; }
.h-lg { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.h-md { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.h-sm { font-size: clamp(1.2rem, 1.7vw, 1.4rem); }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.62;
  color: var(--ink-3);
}
.section--ink .lede { color: rgba(255, 255, 255, .78); }

.small { font-size: 14.5px; line-height: 1.62; color: var(--muted); }
.section--ink .small { color: rgba(255, 255, 255, .6); }

.emph { font-family: var(--display); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease,
              color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { color: #fff; box-shadow: 0 22px 52px rgba(69, 54, 168, .38); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #2b1f06;
  box-shadow: 0 16px 40px rgba(200, 161, 90, .32);
}
.btn--gold:hover { color: #2b1f06; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--gold); background: rgba(200, 161, 90, .07); }

.btn--onink {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
}
.btn--onink:hover { color: #fff; border-color: var(--gold-2); background: rgba(200, 161, 90, .12); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--brand-ink);
}
.link-arrow::after {
  content: "→";
  transition: transform .18s ease;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(11, 14, 33, .06);
}

.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--mist); }
.nav__links a[aria-current="page"] { color: var(--brand-ink); background: rgba(69, 54, 168, .07); }

.nav__cta { margin-left: 8px; }

/* `.nav__links a` outranks `.btn` on specificity, so the button's own padding and
   colour have to be restated here or the CTA renders as a plain nav link. */
.nav__links .btn {
  padding: 13px 24px;
  font-size: 14.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}
.nav__links .btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* On a narrow phone the locator line wraps to two lines and unbalances the
   lockup; the registered office is in the footer of every page anyway. */
@media (max-width: 430px) {
  .brand__sub { display: none; }
  .footer .brand__sub { display: block; }
}

@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--nav-height) - 6px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 14px; border-radius: 10px; }
  .nav__cta { margin: 6px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 620px at 74% -6%, rgba(100, 85, 221, .40), transparent 60%),
    radial-gradient(820px 480px at 4% 104%, rgba(200, 161, 90, .18), transparent 58%),
    linear-gradient(168deg, #0b0e21 0%, #131734 52%, #0b0e21 100%);
  color: rgba(255, 255, 255, .82);
  padding: 108px 0 118px;
}
.hero::after {
  /* Faint scanline weave — a screen, seen very close up. */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 62px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero { padding: 82px 0 92px; }
  .hero__grid { grid-template-columns: 1fr; gap: 46px; }
}

.hero h1 { color: #fff; }
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-3), var(--gold-2) 46%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  margin-top: 24px;
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, .76);
  max-width: 56ch;
}
.hero .btn-row { margin-top: 34px; }

.hero__meta {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.hero__meta div { min-width: 120px; }
.hero__meta dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* ---------- Frame card ----------
   Crop marks in the corners: the register frame of a film cell or an
   editorial layout. Used as the hero panel and as page media. */

.frame {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .40);
}
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  opacity: .7;
}
.frame::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.frame::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }

.frame--paper {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}
.frame--paper::before, .frame--paper::after { border-color: var(--gold); opacity: .55; }

.frame__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.frame--paper .frame__head { border-bottom-color: var(--line-soft); }
.frame__title {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.frame--paper .frame__title { color: var(--gold-ink); }
.frame__id {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}
.frame--paper .frame__id { color: var(--muted); }

/* Hero capability lines with animated weight bars */
.lines { list-style: none; margin: 22px 0 0; }
.lines li + li { margin-top: 20px; }
.lines__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}
.lines__name { font-size: 15px; font-weight: 500; color: #fff; }
.frame--paper .lines__name { color: var(--ink); }
.lines__code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-2);
  letter-spacing: .04em;
}
.frame--paper .lines__code { color: var(--gold-ink); }
.bar {
  /* A <span> so it may sit inside the list item's flow — but it must be a block
     for the 3px height and the fill's percentage width to apply at all. */
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.frame--paper .bar { background: var(--mist-2); }
.bar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.frame__foot {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .62);
}
.frame--paper .frame__foot { border-top-color: var(--line-soft); color: var(--muted); }

/* ---------- Trust strip ---------- */

.strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--mist);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.strip__item {
  background: var(--mist);
  padding: 30px 26px;
}
.strip__k {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.strip__v { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 880px) { .strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .strip__inner { grid-template-columns: 1fr; } }

/* ---------- Grids ---------- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.split--wide { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 960px) { .split, .split--wide { grid-template-columns: 1fr; gap: 42px; } }

.head {
  max-width: 66ch;
  margin-bottom: 52px;
}
.head.center { margin-inline: auto; }

/* ---------- Cards ---------- */

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(100, 85, 221, .14), rgba(200, 161, 90, .16));
  color: var(--brand);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--ink-3); font-size: 15.5px; }
.card__code {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--gold-ink);
  background: rgba(200, 161, 90, .1);
  border: 1px solid rgba(200, 161, 90, .26);
  padding: 4px 10px;
  border-radius: 999px;
}
.card--ink {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .76);
}
.card--ink:hover { border-color: rgba(200, 161, 90, .4); box-shadow: 0 30px 70px rgba(0, 0, 0, .35); }
.card--ink p { color: rgba(255, 255, 255, .72); }
.card--ink .card__icon { background: rgba(200, 161, 90, .16); color: var(--gold-2); }

/* Pillar — the four SIC codes */
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.22, .8, .3, 1);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__code {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gold-ink);
  margin-bottom: 14px;
}
.pillar h3 { font-size: 1.18rem; margin-bottom: 10px; }
.pillar p { font-size: 15.5px; color: var(--ink-3); }

/* ---------- Numbered steps ---------- */

.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 34px 76px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -4px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-ink);
  background: #fff;
  border: 1px solid var(--line-gold);
}
.steps li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--line-gold), transparent);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.14rem; margin-bottom: 8px; }
.steps p { color: var(--ink-3); font-size: 15.5px; }

.section--ink .steps li::before { background: rgba(255, 255, 255, .06); color: var(--gold-2); }
.section--ink .steps p { color: rgba(255, 255, 255, .72); }

/* ---------- Checklist ---------- */

.checks { list-style: none; }
.checks li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  color: var(--ink-3);
}
.checks li + li { margin-top: 13px; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 9px;
  border-left: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.section--ink .checks li { color: rgba(255, 255, 255, .76); }

/* ---------- Definition-style detail table ---------- */

.dl {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.dl__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.dl__row:last-child { border-bottom: 0; }
.dl__row:nth-child(odd) { background: var(--mist); }
.dl__k {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 2px;
}
.dl__v { font-size: 15.5px; color: var(--ink-2); }
@media (max-width: 640px) {
  .dl__row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Quote ---------- */

.quote {
  position: relative;
  padding: 8px 0 8px 34px;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: clamp(1.24rem, 2.1vw, 1.62rem);
  line-height: 1.44;
  font-style: italic;
  color: var(--ink);
}
.section--ink .quote { color: #fff; border-left-color: var(--gold-2); }
.quote__by {
  display: block;
  margin-top: 18px;
  font-family: var(--body);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
}
.section--ink .quote__by { color: rgba(255, 255, 255, .58); }

/* ---------- Sector chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.chips li {
  font-size: 14px;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-3);
}
.section--ink .chips li {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq__q::after {
  content: "+";
  flex: none;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-ink);
  transition: transform .24s ease;
  line-height: 1;
  margin-top: 3px;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s cubic-bezier(.22, .8, .3, 1), padding .3s ease;
  padding: 0 4px;
}
.faq__item.is-open .faq__a { max-height: 620px; padding: 0 4px 26px; }
.faq__a p { color: var(--ink-3); font-size: 15.5px; max-width: 78ch; }
.faq__a p + p { margin-top: 12px; }

/* ---------- CTA band ---------- */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 68px 56px;
  background:
    radial-gradient(700px 400px at 84% 0%, rgba(100, 85, 221, .42), transparent 60%),
    radial-gradient(600px 340px at 6% 100%, rgba(200, 161, 90, .22), transparent 62%),
    linear-gradient(150deg, #0b0e21, #171b3c);
  color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .76); }
@media (max-width: 640px) { .cta { padding: 48px 28px; border-radius: var(--radius-lg); } }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .6);
  padding: 76px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
}
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--gold-2); }
.footer h4 {
  color: #fff;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li + li { margin-top: 11px; }
.footer a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: 15px;
  transition: color .18s ease;
}
.footer a:hover { color: var(--gold-2); }
.footer__blurb { margin-top: 20px; font-size: 14.5px; line-height: 1.66; max-width: 38ch; }
.footer address { font-style: normal; font-size: 14.5px; line-height: 1.7; }

.footer__bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .48);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- Prose (legal pages) ---------- */

.page-head {
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(100, 85, 221, .34), transparent 62%),
    linear-gradient(160deg, #0b0e21, #171b3c);
  color: rgba(255, 255, 255, .78);
  padding: 82px 0 74px;
}
.page-head h1 { color: #fff; }
/* The dark banner needs the same text overrides as `.section--ink`, or `.lede`
   and `.small` keep their dark-ink colour and vanish into the background. */
.page-head .lede { margin-top: 20px; color: rgba(255, 255, 255, .78); }
.page-head .small { color: rgba(255, 255, 255, .6); }
.page-head .eyebrow { color: var(--gold-2); }
.page-head .checks li { color: rgba(255, 255, 255, .76); }

.prose { max-width: 78ch; }
.prose h2 {
  font-size: 1.6rem;
  margin: 52px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.16rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 15px; color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 9px; color: var(--ink-2); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 15px;
}
.prose th, .prose td {
  text-align: left;
  padding: 13px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.prose th { background: var(--mist); font-weight: 600; color: var(--ink); }
.prose__meta {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 20px;
  background: var(--mist);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 40px;
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}
.notfound__code {
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-2), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s cubic-bezier(.22, .8, .3, 1),
              transform .62s cubic-bezier(.22, .8, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
