/* ==========================================================================
   OSP Ventures India Private Limited - shared stylesheet
   Static site. No build step. No preprocessor. Hyphens only, never dashes.
   Every page loads this one file. Do not add page-level style blocks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Brand tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette. Do not introduce colours outside this set. */
  --saffron: #EF6C12;
  --blue:    #1F3B8F;
  --green:   #0F9A48;
  --navy:    #091E42;
  --slate:   #5C6068;
  --body:    #4A4F5A;
  --tint:    #F4F6FA;
  --white:   #FFFFFF;

  /* Accessibility derivative, not a brand colour.
     Saffron at #EF6C12 reads 3.08:1 on white, which fails WCAG 2.1 AA for
     small text. This is the same hue (24 degrees) darkened until it passes
     on both backgrounds it has to sit on: 5.11:1 on --white and 4.73:1 on
     --tint. Used only where saffron has to carry small text, such as the
     eyebrow labels. Never use it as a fill, a rule or a border. */
  --saffron-ink: #B84E08;

  /* Layout */
  --measure-wide: 960px;   /* content column */
  --measure-text: 760px;   /* body copy measure */
  --gutter: 24px;

  /* Type scale */
  --step-lede: clamp(1.125rem, 0.98rem + 0.7vw, 1.375rem);
  --step-h1:   clamp(2rem, 1.35rem + 3vw, 3.25rem);
  --step-h2:   clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --step-h3:   clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); text-decoration-color: var(--saffron); text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Fallback for browsers without :focus-visible */
:focus { outline: 3px solid var(--blue); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

hr {
  border: 0;
  border-top: 1px solid rgba(9, 30, 66, 0.14);
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--measure-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.measure { max-width: var(--measure-text); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--saffron);
  outline-offset: 0;
}

/* --------------------------------------------------------------------------
   4. Brand device: the three-segment tricolour rule
   -------------------------------------------------------------------------- */

/* Full-width 5px band. Top of every page and foot of every footer. */
.tricolour-band {
  height: 5px;
  background-image: linear-gradient(
    to right,
    var(--saffron) 0 33.3333%,
    var(--blue)    33.3333% 66.6666%,
    var(--green)   66.6666% 100%
  );
}

/* Short accent rule under a hero headline. */
.tricolour-rule {
  width: 132px;
  height: 5px;
  margin: 28px 0 0;
  background-image: linear-gradient(
    to right,
    var(--saffron) 0 33.3333%,
    var(--blue)    33.3333% 66.6666%,
    var(--green)   66.6666% 100%
  );
}

/* --------------------------------------------------------------------------
   5. Header and navigation
   -------------------------------------------------------------------------- */

.site-header {
  border-bottom: 1px solid rgba(9, 30, 66, 0.12);
  background: var(--white);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  padding: 6px 0;
}
.brand:hover { text-decoration: none; }

/* Constrained on both axes, so the header holds whichever lockup is supplied.
   A wide lockup (roughly 3:1) fills the width and lands about 40px tall, which
   is what the header is designed around. A stacked or portrait lockup is
   capped by height instead and ends up narrow. Prefer the wide one here. */
.brand img {
  max-height: 58px;
  max-width: 240px;
  width: auto;
  height: auto;
}

/* Text wordmark. Shown when the logo file is absent, swapped in by site.js. */
.brand-wordmark {
  display: block;
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.brand-wordmark span {
  display: block;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--slate);
  margin-top: 3px;
}

.nav-toggle {
  display: none;               /* revealed by site.js on small screens only */
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(9, 30, 66, 0.24);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--navy); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
}

.site-nav a {
  display: inline-block;
  padding: 6px 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--saffron); color: var(--navy); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--blue); }

@media (max-width: 860px) {
  .site-header .wrap { min-height: 72px; }
  .site-nav { flex-basis: 100%; padding-bottom: 14px; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { border-top: 1px solid rgba(9, 30, 66, 0.1); }
  .site-nav a { padding: 12px 0; border-bottom: 0; border-left: 3px solid transparent; padding-left: 0; }
  .site-nav a:hover { border-bottom: 0; padding-left: 10px; border-left-color: var(--saffron); }
  .site-nav a[aria-current="page"] { border-bottom: 0; padding-left: 10px; border-left-color: var(--blue); }

  /* Only collapse the menu when JavaScript is available to reopen it.
     Visibility is owned by CSS, not by a JavaScript-set attribute. Above this
     breakpoint the navigation is always shown, so a stale open or closed state
     can never survive a window resize or a tablet rotation. */
  .js .nav-toggle { display: inline-flex; }
  .js .site-nav { display: none; }
  .js .site-header.nav-open .site-nav { display: block; }
}

/* --------------------------------------------------------------------------
   6. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 900;
  margin: 0;
}

.page-title {
  font-size: var(--step-h1);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

/* Letterspaced small-caps eyebrow above a heading. */
.eyebrow {
  display: block;
  margin: 0 0 18px;
  color: var(--saffron-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Section heading, letterspaced small caps, brand blue. */
.section-title {
  font-size: var(--step-h2);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
}

h3 {
  font-size: var(--step-h3);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}

.lede {
  font-size: var(--step-lede);
  line-height: 1.5;
  font-weight: 300;
  color: var(--navy);
  max-width: 32ch;
  margin: 26px 0 0;
}

p { margin: 0 0 1.15em; max-width: var(--measure-text); }
p:last-child { margin-bottom: 0; }

.subhead {
  color: var(--slate);
  font-weight: 300;
  font-size: 1.125rem;
  max-width: var(--measure-text);
  margin: 0 0 1.4em;
}

/* --------------------------------------------------------------------------
   7. Sections
   -------------------------------------------------------------------------- */

.hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 76px);
}

.section {
  padding: clamp(44px, 6vw, 68px) 0;
  border-top: 1px solid rgba(9, 30, 66, 0.14);
}

.section:first-of-type { border-top: 0; }

/* A section that carries a summary and a link through to its full page. */
.section-more {
  margin-top: 22px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-more a { text-decoration: none; border-bottom: 2px solid var(--saffron); padding-bottom: 3px; }
.section-more a:hover { border-bottom-color: var(--navy); color: var(--navy); }

/* --------------------------------------------------------------------------
   7b. Full-bleed bands
   The brief's default is hairline rules between sections rather than
   alternating background bands. These dark bands are a deliberate exception,
   agreed with the owner, because the site carries no photography and the
   visual weight has to come from somewhere. Use them sparingly: the hero, one
   statement panel per page at most, and the footer. Never alternate.
   -------------------------------------------------------------------------- */

.band {
  background: var(--navy);
  color: rgba(244, 246, 250, 0.88);
  padding: clamp(52px, 7vw, 92px) 0;
  border-top: 0;
}

.band h1, .band h2, .band h3 { color: var(--white); }

/* Saffron reads 5.36:1 on navy, so the true brand value is used on dark. */
.band .eyebrow { color: var(--saffron); }
.band .section-title { color: var(--white); }
.band p { color: rgba(244, 246, 250, 0.88); }
.band a { color: var(--white); }
.band a:hover { color: var(--white); text-decoration-color: var(--saffron); }

.hero--dark {
  background: var(--navy);
  padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
}
.hero--dark .page-title { color: var(--white); }
.hero--dark .eyebrow { color: var(--saffron); }
.hero--dark .lede { color: rgba(244, 246, 250, 0.9); }

/* A single oversized sentence. Carries a section on its own. */
.statement {
  font-size: clamp(1.625rem, 1.05rem + 2.6vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 20ch;
  margin: 0 0 24px;
}
.statement-sub {
  max-width: 46ch;
  font-size: 1.0625rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   7c. Domain panels
   Large typographic blocks. These replace the photography the site does not
   have, and they scale down to a single column without losing their weight.
   -------------------------------------------------------------------------- */

/* Column counts are explicit, not auto-fit. Every panel grid on this site
   holds either four or eight items, so 1, 2 and 4 columns always divide
   evenly. auto-fit was landing on three columns at some widths, which left
   the last row with a single orphaned panel. Keep these numbers as powers of
   two, and if a grid of six is ever added, give it its own rule. */
.panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 560px) { .panels { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .panels { grid-template-columns: repeat(4, 1fr); } }

/* The eight-feature basket carries slightly tighter type. */
.panels--basket .panel { padding: 24px 20px 26px; }
.panels--basket .panel .ghost { font-size: 4.25rem; }
.panels--basket .panel h3 { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); }
.panels--basket .panel p { font-size: 0.875rem; }

/* Content is top-aligned. The grid already makes every panel in a row the
   same height, so aligning to the top is what makes the headings line up
   across the row. Do not set justify-content: flex-end here: it pushes each
   panel's text down by a different amount and the row reads as ragged. */
.panel {
  position: relative;
  overflow: hidden;
  background: var(--tint);
  border-top: 4px solid var(--navy);
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Ghost numeral, decorative only and hidden from assistive tech. Sits bottom
   right, well clear of the heading. */
.panel .ghost {
  position: absolute;
  bottom: -14px;
  right: 8px;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(9, 30, 66, 0.06);
  pointer-events: none;
  user-select: none;
}

/* Two lines of headroom, so the paragraphs start on the same line across a
   row whether the heading wraps to one line or two. */
.panel h3 {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.25;
  margin: 0 0 10px;
  min-height: 2.5em;
  position: relative;
}
.panel p {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
  max-width: none;
  position: relative;
}

/* Below the breakpoint each panel is on its own row, so the reserved two
   lines of heading headroom would just be a gap. Drop it. */
@media (max-width: 620px) {
  .panel h3 { min-height: 0; }
}

.panels > .panel:nth-child(4n + 1) { border-top-color: var(--saffron); }
.panels > .panel:nth-child(4n + 2) { border-top-color: var(--blue); }
.panels > .panel:nth-child(4n + 3) { border-top-color: var(--green); }
.panels > .panel:nth-child(4n + 4) { border-top-color: var(--navy); }

/* --------------------------------------------------------------------------
   7d. Public-record strip
   The granted patents, shown as three large blocks rather than a paragraph.
   -------------------------------------------------------------------------- */

.record {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 30, 66, 0.16);
}

.record li {
  padding: 22px 20px 24px 0;
  border-bottom: 1px solid rgba(9, 30, 66, 0.16);
}

.record .num {
  display: block;
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.record .meta {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

.band .record { border-top-color: rgba(244, 246, 250, 0.28); }
.band .record li { border-bottom-color: rgba(244, 246, 250, 0.28); }
.band .record .num { color: var(--white); }
.band .record .meta { color: rgba(244, 246, 250, 0.82); }

/* --------------------------------------------------------------------------
   7e. Call to action
   Sits at the foot of every page, above the footer. The site is a teaser, so
   this is the only thing it asks anyone to do. Tinted rather than dark, so it
   does not compete with the one dark band each page already carries.
   -------------------------------------------------------------------------- */

.cta {
  background: var(--tint);
  border-top: 5px solid transparent;
  border-image: linear-gradient(
    to right,
    var(--saffron) 0 33.3333%,
    var(--blue)    33.3333% 66.6666%,
    var(--green)   66.6666% 100%
  ) 1;
  padding: clamp(44px, 6vw, 72px) 0;
}

.cta h2 {
  font-size: clamp(1.375rem, 1.1rem + 1.3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  max-width: 22ch;
}

.cta p { max-width: 52ch; margin: 0 0 26px; }

.cta-mail {
  display: inline-block;
  font-size: clamp(1.125rem, 0.98rem + 0.7vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 3px solid var(--saffron);
  padding-bottom: 4px;
}
.cta-mail:hover { color: var(--navy); border-bottom-color: var(--navy); }

.cta-note {
  margin: 22px 0 0;
  font-size: 0.875rem;
  color: var(--slate);
  max-width: 52ch;
}

/* --------------------------------------------------------------------------
   7f. Register-interest form
   Two fields and a consent tick. Native HTML validation only, no JavaScript,
   so it submits with scripting disabled. Do not add fields without reading
   the privacy notice first: every extra field widens the DPDP obligation.
   -------------------------------------------------------------------------- */

.reg-form { margin: 30px 0 0; max-width: 460px; }

.field { margin-bottom: 20px; }

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(9, 30, 66, 0.4);
  border-radius: 0;
  padding: 12px 14px;
}
.field input:hover { border-color: var(--navy); }
.field input:focus { border-color: var(--blue); outline: 3px solid var(--blue); outline-offset: 1px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 26px 0 24px;
}
.consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}
.consent label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--body);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 26px;
  cursor: pointer;
}
.btn:hover { background: var(--blue); border-color: var(--blue); }
.btn:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; }

/* Spam honeypot. Hidden from sight and from assistive technology alike. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  margin: 22px 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: 460px;
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */

/* Three cards on the 404. One column, then straight to three, so the last
   row is never left with a single card. */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 760px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }


.card {
  background: var(--tint);
  border-top: 3px solid var(--navy);
  padding: 24px 22px 26px;
}

.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9375rem; margin-bottom: 0; max-width: none; }

/* Rotating top border: saffron, blue, green, navy. */
.card-grid > .card:nth-child(4n + 1) { border-top-color: var(--saffron); }
.card-grid > .card:nth-child(4n + 2) { border-top-color: var(--blue); }
.card-grid > .card:nth-child(4n + 3) { border-top-color: var(--green); }
.card-grid > .card:nth-child(4n + 4) { border-top-color: var(--navy); }

/* --------------------------------------------------------------------------
   9. Callout
   -------------------------------------------------------------------------- */

.callout {
  background: var(--tint);
  border-left: 5px solid var(--saffron);
  padding: 26px 26px 28px;
  margin: 30px 0 0;
}
.callout .eyebrow { margin-bottom: 12px; }
.callout p { color: var(--navy); font-size: 1.0625rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Definition lists and tables
   -------------------------------------------------------------------------- */

.deflist { margin: 30px 0 0; }
.deflist dt {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(9, 30, 66, 0.14);
}
.deflist dt:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.deflist dd { margin: 6px 0 0; max-width: var(--measure-text); }

/* Ordered sequence of work. Numbers the stages without implying dates. */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 30px 0 0;
  padding: 0;
  max-width: var(--measure-text);
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 0 18px 52px;
  border-top: 1px solid rgba(9, 30, 66, 0.14);
}
.steps li:first-child { border-top: 0; padding-top: 0; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
.steps li:first-child::before { top: 0; }

.table-scroll { overflow-x: auto; margin: 30px 0 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 520px;
}
caption {
  text-align: left;
  color: var(--slate);
  font-size: 0.875rem;
  padding-bottom: 10px;
}
thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 14px;
}
tbody td, tbody th {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(9, 30, 66, 0.12);
  text-align: left;
  font-weight: 400;
  vertical-align: top;
}
tbody tr:nth-child(odd) { background: var(--tint); }

/* --------------------------------------------------------------------------
   11. People
   -------------------------------------------------------------------------- */

.people { list-style: none; margin: 30px 0 0; padding: 0; }
.people li {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(9, 30, 66, 0.14);
  max-width: var(--measure-text);
}
.people li:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.people .role {
  display: block;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 10px;
}

/* --------------------------------------------------------------------------
   11b. Advisory council
   Deliberately unlike the founders list above it. The founders sit on plain
   white separated by hairline rules. This sits in a tinted panel with its own
   framing line, so the two blocks cannot be read as one team. Do not restyle
   this to match .people.
   -------------------------------------------------------------------------- */

.advisory {
  background: var(--tint);
  border-top: 3px solid var(--slate);
  padding: 26px 26px 28px;
  margin: 26px 0 0;
  max-width: var(--measure-text);
}

.advisory-note {
  margin: 0 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(9, 30, 66, 0.16);
  color: var(--slate);
  font-size: 0.9375rem;
}

.advisory ul { list-style: none; margin: 0; padding: 0; }
.advisory li + li { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(9, 30, 66, 0.16); }
.advisory h3 { font-size: 1.0625rem; margin-bottom: 4px; }

.advisory .role {
  display: block;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.advisory p { font-size: 0.9375rem; margin-bottom: 0; max-width: none; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: var(--tint);
  margin-top: clamp(48px, 7vw, 84px);
}

.site-footer .wrap { padding-top: 46px; padding-bottom: 40px; }

.footer-nav ul {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}
.footer-nav a:hover { color: var(--white); border-bottom-color: var(--saffron); }

.footer-statement {
  max-width: var(--measure-text);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(244, 246, 250, 0.82);
  margin: 0 0 1em;
}

.footer-legal {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 246, 250, 0.22);
  font-size: 0.8125rem;
  color: rgba(244, 246, 250, 0.82);
}
.footer-legal a { color: var(--white); }

/* --------------------------------------------------------------------------
   13. Utilities
   -------------------------------------------------------------------------- */

.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;
}

.stack-tight > * + * { margin-top: 14px; }

@media print {
  .site-header, .footer-nav, .skip-link { display: none; }
  body { color: #000; }
  a { color: #000; }
}
