/* ==========================================================================
   Tigana — PT Tigana Sinergi Sukses
   Compiled from the Claude Design component "Tigana Website.dc.html".

   The source was a `.dc.html` component: every rule lived in a `style` attribute,
   hover states in a non-standard `style-hover` attribute, and the responsive grid
   was recomputed in JavaScript on every resize event. None of that survives here.
   Layout is CSS media queries, hover is `:hover`, and the design's `{{ accent }}` /
   `{{ navyTone }}` / `{{ radius }}` props became the custom properties below —
   so re-theming is a three-line change instead of a re-render.
   ========================================================================== */

:root {
  --accent: #2C5DF6;
  --accent-deep: #1E44C4;
  --navy: #061B4D;
  --ink: #0B1F4D;
  --muted: #55658F;
  --tint: #EEF3FE;
  --card: #F5F8FE;
  --card-line: #E3EAFB;
  --hairline: #DEE8FD;
  --on-navy: #BFD0F5;
  --on-navy-bright: #8FB2FF;
  --footer-dim: #7E92C4;
  --radius: 34px;
  --gutter: clamp(8px, 1.6vw, 20px);
}

/* Variable font, 400–800 in one file per subset. Self-hosted rather than pulled
   from fonts.googleapis.com: it removes two extra DNS+TLS handshakes from the
   critical path (which matter on Indonesian mobile links) and keeps visitor IPs
   off a third party. `swap` so text paints immediately in the fallback. */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* The fixed pill header overlaps anything an in-page #hash lands on. Without this,
     clicking "Leadership" buries that section's heading under the nav. */
  scroll-padding-top: clamp(84px, 10vw, 104px);
}

body { margin: 0; background: #FFFFFF; }
h1, h2, h3, h4, p, ul, li, blockquote, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
::selection { background: var(--accent); color: #FFFFFF; }

/* Keyboard focus must stay visible on both the white and the navy sections, so the
   ring is drawn in the accent with a white outer edge rather than relying on either. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-dark :focus-visible { outline-color: #FFFFFF; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translate(-50%, -160%);
  z-index: 100;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); color: #FFFFFF; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Page shell
   -------------------------------------------------------------------------- */

.page {
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  /* `clip` not `hidden`: `hidden` on an ancestor silently turns the fixed header into
     a scroll-container child and kills `position: sticky`/`fixed` behaviour in some
     engines. `clip` contains the full-bleed hero without that side effect. */
  overflow-x: clip;
  text-wrap: pretty;
  padding: 0 var(--gutter) var(--gutter);
}

/* The inset sections are rounded cards floating on white; the hero breaks out of the
   gutter to touch all four screen edges. */
.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.shell {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 56px);
}

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(64px, 9vw, 128px) 0 clamp(48px, 7vw, 104px); }

.panel {
  border-radius: var(--radius);
  padding: clamp(56px, 8vw, 116px) clamp(20px, 3.4vw, 56px);
}
.panel--navy { background: var(--navy); color: #FFFFFF; }
.panel--accent { background: var(--accent); color: #FFFFFF; }
.panel--flush { padding: clamp(44px, 6vw, 84px) clamp(20px, 3.4vw, 56px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: clamp(8px, 1.6vw, 18px);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 calc(var(--gutter) + 12px);
}

.header__bar {
  max-width: 1340px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: 0 10px 34px -18px rgba(11, 31, 77, 0.28);
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.02em;
  padding-right: 6px;
}
.header__logo:hover { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 10px);
  font-weight: 700;
  font-size: 15px;
}

.nav__link {
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: var(--ink); background: var(--tint); }

/* The source hid these below 620px / 1080px in JS on every resize. Same breakpoints,
   no JavaScript — and no layout shift while the first script parses. */
.nav__link { display: none; }
@media (min-width: 620px) { .nav__link { display: inline-block; } }
@media (min-width: 1080px) { .nav__link--wide { display: inline-block; } }
.nav__link--wide { display: none; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px -8px rgba(44, 93, 246, 0.7);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-pill:hover {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: 0 8px 20px -8px rgba(11, 31, 77, 0.7);
}

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: #FFFFFF;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg,
    rgba(6, 27, 77, 0.96) 0%,
    rgba(6, 27, 77, 0.82) 46%,
    rgba(6, 27, 77, 0.38) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(108px, 13vw, 170px) clamp(20px, 4.4vw, 76px) clamp(48px, 6vw, 80px);
}

.hero__eyebrow {
  font-weight: 700;
  font-size: 16px;
  color: var(--on-navy-bright);
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.hero__title {
  font-weight: 800;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 15em;
  margin-bottom: clamp(22px, 2.6vw, 32px);
}
.hero__title em { font-style: normal; color: var(--on-navy-bright); }

.hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--on-navy);
  max-width: 34em;
  margin-bottom: clamp(30px, 3.6vw, 44px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
}

.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-lg--solid {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 14px 30px -12px rgba(44, 93, 246, 0.9);
}
.btn-lg--solid:hover { background: #FFFFFF; color: var(--ink); }
.btn-lg--ghost {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.btn-lg--ghost:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-lg .arrow { font-size: 17px; line-height: 1; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: clamp(48px, 6.4vw, 88px);
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 24px 26px 26px;
}
.stat__value {
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat__label {
  font-weight: 600;
  font-size: 15px;
  color: var(--on-navy);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */

.ticker {
  background: var(--accent);
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-radius: 999px;
  margin-top: clamp(10px, 1.4vw, 16px);
}

.ticker__track {
  display: inline-flex;
  animation: tg-ticker 44s linear infinite;
  font-weight: 700;
  font-size: 16px;
}
.ticker__track > * { padding-right: 30px; }

/* --------------------------------------------------------------------------
   Shared section furniture
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tint);
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: clamp(20px, 2.6vw, 28px);
}
.eyebrow b { font-weight: 800; }
.eyebrow--on-navy { background: rgba(255, 255, 255, 0.12); color: #FFFFFF; }
.eyebrow--on-navy b { color: var(--on-navy-bright); }

.h2 {
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.h2--sm { font-size: clamp(34px, 4.6vw, 64px); line-height: 1.04; letter-spacing: -0.025em; }
.h2--mid { font-size: clamp(36px, 4.8vw, 68px); }

.lede {
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  max-width: 44em;
}

/* Two-column at >=900px, stacked below — the `data-split` behaviour from the source. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.split--tight { gap: clamp(16px, 2vw, 24px); }
.split--mid { gap: clamp(24px, 3.4vw, 52px); align-items: center; }

/* Heading beside a shorter support paragraph, 1.6fr / 1fr at >=900px. */
.headrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
}

@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .headrow { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   Overview
   -------------------------------------------------------------------------- */

.figure { position: relative; }

.figure__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  background: var(--tint);
}

.figure__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 27, 77, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 22px 24px;
  border-radius: 22px;
  max-width: 300px;
}
.figure__badge-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--on-navy-bright);
  margin-bottom: 4px;
}
.figure__badge-value {
  font-weight: 800;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Mission / vision
   -------------------------------------------------------------------------- */

.creed {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: clamp(28px, 3.4vw, 46px);
}
.creed--mission { background: rgba(255, 255, 255, 0.09); }
.creed--vision { background: var(--accent); }
.creed__label {
  font-weight: 700;
  font-size: 16px;
  color: var(--on-navy-bright);
  margin-bottom: 18px;
}
.creed--vision .creed__label { color: rgba(255, 255, 255, 0.78); }
.creed__text {
  font-weight: 800;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Capabilities
   -------------------------------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .features { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.feature {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 26px;
  padding: clamp(26px, 2.8vw, 36px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -26px rgba(11, 31, 77, 0.4);
  background: #FFFFFF;
}
.feature__num {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: clamp(22px, 2.6vw, 32px);
}
.feature__title {
  font-weight: 800;
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.24;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.feature__body { font-size: 16px; color: var(--muted); }

.premise {
  margin-top: clamp(44px, 6vw, 84px);
  background: var(--tint);
  border-radius: 30px;
  padding: clamp(20px, 2.4vw, 30px);
}
.premise__img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: #FFFFFF;
}
.premise__body { padding: clamp(4px, 1.4vw, 20px); }
.premise__label {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
}
.premise__text {
  font-weight: 800;
  font-size: clamp(23px, 2.5vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Partnership
   -------------------------------------------------------------------------- */

.pitch { color: var(--on-navy); margin-bottom: clamp(30px, 4vw, 48px); }

.reasons { display: flex; flex-direction: column; gap: 12px; }

.reason {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: clamp(20px, 2.2vw, 28px);
}
.reason__title {
  font-weight: 800;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.reason__body { font-size: 16px; color: var(--on-navy); }

.partnership__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   Leadership
   -------------------------------------------------------------------------- */

.leader {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 30px;
  padding: clamp(28px, 3.2vw, 44px);
}
.leader__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(22px, 2.6vw, 32px);
  flex-wrap: wrap;
}
@media (min-width: 420px) { .leader__head { flex-wrap: nowrap; } }

/* Avatar — portrait with a monogram underneath.
   ------------------------------------------------------------------
   The two founder portraits are supplied separately (see README). Until they are in
   site/assets/, the <img> fails to load and main.js flips the wrapper to .avatar--missing,
   revealing the initials rendered by ::before. Dropping the two PNGs in is the whole upgrade
   path — no markup, CSS or template change, because the photo simply starts covering the
   monogram it was always sitting on top of. */
.avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(140deg, var(--accent) 0%, var(--navy) 100%);
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}
.avatar::before { content: attr(data-initials); }

.avatar__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The image is removed rather than left broken: a failed <img> still paints the browser's
   own "missing file" glyph over whatever is behind it. */
.avatar--missing .avatar__img { display: none; }

.avatar--lg {
  width: clamp(72px, 6.6vw, 92px);
  height: clamp(72px, 6.6vw, 92px);
  border-radius: 24px;
  font-size: clamp(24px, 2.2vw, 30px);
  box-shadow: 0 0 0 1px var(--hairline);
}
.avatar--sm {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-size: 20px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}
/* On the accent-blue quote panel the default gradient starts at the same blue as the
   background and disappears; flip it to navy-on-navy so the monogram keeps its edge. */
.avatar--on-accent { background: linear-gradient(140deg, #16337F 0%, var(--navy) 100%); }
.leader__name {
  font-weight: 800;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.leader__role {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-top: 2px;
}
.leader__bio { color: var(--muted); max-width: 34em; }

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

.quote { max-width: 1020px; margin: 0 auto; }
.quote__mark {
  font-weight: 800;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.62;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: clamp(14px, 1.6vw, 20px);
}
.quote__text {
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.024em;
  margin-bottom: clamp(28px, 3.4vw, 42px);
}
.quote__by { display: flex; align-items: center; gap: 16px; }
.quote__name { font-weight: 800; font-size: 19px; }
.quote__role { font-weight: 600; font-size: 16px; color: rgba(255, 255, 255, 0.8); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact { align-items: end; gap: clamp(28px, 4vw, 60px); }
.contact__title {
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 17em;
}
.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.contact__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 20px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 18px 36px -16px rgba(44, 93, 246, 0.85);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.contact__cta:hover {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: 0 18px 36px -16px rgba(11, 31, 77, 0.7);
}
.contact__cta .arrow { font-size: 18px; line-height: 1; }
.contact__meta {
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.contact__meta a { color: var(--muted); }
.contact__meta a:hover { color: var(--accent); }

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

.footer {
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--radius);
  padding: clamp(40px, 5.4vw, 72px) clamp(20px, 3.4vw, 56px) clamp(24px, 3vw, 36px);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); } }

.footer__brand {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.footer__blurb { font-size: 16px; max-width: 24em; }
.footer__title {
  font-weight: 800;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.footer__text { font-size: 16px; line-height: 1.75; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
}
.footer__nav a { color: var(--on-navy); }
.footer__nav a:hover { color: #FFFFFF; }
.footer__mail { font-size: 16px; color: var(--on-navy-bright); }
.footer__mail:hover { color: #FFFFFF; }

.footer__base {
  padding-top: clamp(18px, 2.4vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  color: var(--footer-dim);
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

@keyframes tg-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tg-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* `[data-rise]` elements are NOT hidden here. main.js sets the starting opacity only
   once it has confirmed IntersectionObserver support, so a visitor with JS disabled —
   or a crawler that does not execute it — still gets a fully visible page. */
.is-rising {
  animation: tg-rise 0.8s cubic-bezier(0.16, 0.84, 0.24, 1) both;
}

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

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  /* main.js sets opacity:0 inline on every [data-rise] element and clears it when the
     element scrolls into view. Printing does not scroll, so anything the reader has not
     already reached would print as blank space. */
  [data-rise] { opacity: 1 !important; animation: none !important; }
  .header, .ticker, .hero__media, .hero__scrim { display: none !important; }
  .page { padding: 0; }
  .hero { min-height: 0; background: #FFFFFF; color: var(--ink); }
  .panel--navy, .panel--accent, .footer { background: #FFFFFF; color: var(--ink); }
  a { color: var(--ink); }
}
