/*
Theme Name: Skiverse
Theme URI: https://skiverse.in
Author: Skiverse Strategic Consulting
Author URI: https://skiverse.in
Description: Skiverse Strategic Consulting - Independent, senior-led strategy and execution across energy, automotive, industrials, infrastructure, sustainability, and financial services. Founded by Shubham Bhatnagar.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: https://skiverse.in
Text Domain: skiverse
Tags: consulting, business, one-page, custom-logo, custom-menu, translation-ready
*/

/* ============================================================
   RESET + TOKENS
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

:root {
  --navy-900: #060E1D;
  --navy-800: #0C1F3F;
  --navy-700: #132847;
  --gold:     #F0A500;
  --teal:     #5EEAD4;
  --purple:   #A78BFA;
  --coral:    #FB923C;
  --mint:     #6EE7B7;
  --slate-400:#94A3B8;
  --slate-500:#64748B;
  --slate-700:#334155;
  --bg-light: #F7F8FB;
  --white:    #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-sans: "Inter", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

/* Focus styles */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--gold); color: var(--navy-900); }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--dark { background: var(--navy-900); color: var(--white); }
.section--darker { background: #04091a; color: var(--white); }
.section--light { background: var(--bg-light); color: var(--navy-900); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-title--on-dark { color: var(--white); }

.section-lede {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--slate-400);
  max-width: 720px;
  margin-bottom: 48px;
}
.section--light .section-lede { color: var(--slate-500); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--gold); color: var(--navy-900); }
.btn--primary:hover { background: #ffb520; }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

.btn--dark { background: var(--navy-900); color: var(--white); }
.btn--dark:hover { background: var(--navy-800); }

.btn--link {
  padding: 0;
  background: none;
  color: var(--gold);
  border-radius: 0;
  font-weight: 600;
}
.btn--link::after {
  content: "→";
  transition: transform .25s var(--ease);
}
.btn--link:hover::after { transform: translateX(4px); }

/* ============================================================
   LOGO
============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.logo__mark { width: 40px; height: 40px; flex: 0 0 40px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__word {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.logo__tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}
.logo--light .logo__word { color: var(--white); }
.logo--dark .logo__word { color: var(--navy-900); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s var(--ease), background .25s var(--ease), backdrop-filter .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar--scrolled {
  padding: 10px 0;
  background: rgba(6,14,29,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: rgba(255,255,255,.06);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__link {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.navbar__link:hover { color: var(--white); }
.navbar__cta { margin-left: 8px; }

.navbar__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.navbar__toggle span::before,
.navbar__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.navbar__toggle span::before { top: -7px; }
.navbar__toggle span::after  { top:  7px; }
.navbar--open .navbar__toggle span { background: transparent; }
.navbar--open .navbar__toggle span::before { top: 0; transform: rotate(45deg); }
.navbar--open .navbar__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .navbar__toggle { display: inline-flex; }
  .navbar__links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px var(--gutter);
    gap: 18px;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .navbar--open .navbar__links { transform: translateX(0); }
  .navbar__link { font-size: 18px; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 50%, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -140px; top: -160px;
  background: radial-gradient(closest-side, rgba(240,165,0,.10), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 900px; }
.hero__headline {
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 24px;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(92deg, var(--teal), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   IMPACT AREAS
============================================================ */
.impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.impact__card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.06);
  border-color: rgba(94,234,212,.25);
}
.impact__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}
.impact__body {
  color: rgba(255,255,255,.70);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 900px) { .impact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .impact { grid-template-columns: 1fr; } }

/* ============================================================
   WHAT WE DO — problem buckets
============================================================ */
.buckets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bucket {
  position: relative;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 28px 28px 28px 36px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bucket::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 4px;
  border-radius: 4px;
  background: var(--_accent, var(--teal));
}
.bucket:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(6,14,29,.08);
}
.bucket__title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.bucket__promise {
  color: var(--slate-500);
  font-size: 15px;
  margin-bottom: 18px;
}
.bucket__list { display: grid; gap: 10px; }
.bucket__list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate-700);
  font-size: 14.5px;
}
.bucket__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 2px;
  border: 2px solid var(--_accent, var(--teal));
}
@media (max-width: 800px) { .buckets { grid-template-columns: 1fr; } }

/* ============================================================
   HOW WE WORK — steps
============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.step { position: relative; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
}
.step__lede {
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  margin-bottom: 12px;
}
.step__list { display: grid; gap: 8px; }
.step__list li {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  padding-left: 16px;
  position: relative;
}
.step__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--teal);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   SECTORS GRID
============================================================ */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sector-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-800);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform .4s var(--ease);
}
.sector-card:hover { transform: translateY(-3px); }
.sector-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sector-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,14,29,.25) 0%, rgba(6,14,29,.55) 45%, rgba(6,14,29,.95) 80%);
}
.sector-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.sector-card:hover .sector-card__img { transform: scale(1.05); }

.sector-card__body {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  color: var(--white);
}
.sector-card__name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sector-card__name::after {
  content: "↗";
  font-size: 16px;
  opacity: .7;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.sector-card:hover .sector-card__name::after { transform: translate(2px,-2px); opacity: 1; }
.sector-card__tag {
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.sector-card__rule {
  position: absolute;
  left: 22px; bottom: 14px;
  height: 2px;
  width: 0;
  background: var(--_accent, var(--teal));
  transition: width .45s var(--ease);
  z-index: 3;
}
.sector-card:hover .sector-card__rule { width: 48px; }
@media (max-width: 900px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sectors { grid-template-columns: 1fr; } }

/* ============================================================
   MINI CASES
============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.case-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(240,165,0,.3);
  transform: translateY(-3px);
}
.case-card__id {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.case-card__block { margin-bottom: 14px; }
.case-card__block:last-child { margin-bottom: 0; }
.case-card__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
  display: inline-block;
}
.case-card__body {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.case-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
}
.case-card__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.1);
  letter-spacing: .04em;
}
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }

/* ============================================================
   NOT FOR
============================================================ */
.notfor { max-width: 820px; }
.notfor__list { display: grid; gap: 14px; }
.notfor__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(6,14,29,.03);
  border: 1px solid rgba(6,14,29,.06);
  font-size: 15.5px;
  color: var(--slate-700);
}
.notfor__ico {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(148,163,184,.2);
  color: var(--slate-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

/* ============================================================
   ABOUT BLOCK (home)
============================================================ */
.about-home {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.about-home__media {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
.about-home__photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240,165,0,.4);
  background: var(--navy-800);
}
.about-home__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.02em;
}
.about-home__kicker { color: var(--teal); }
.about-home__name {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 6px 0 6px;
}
.about-home__role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 14.5px;
}
.about-home__copy {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 22px;
}
@media (max-width: 800px) {
  .about-home { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about-home__copy { margin-inline: auto; }
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact__body {
  color: rgba(255,255,255,.78);
  margin: 14px auto 32px;
  font-size: 17px;
}
.contact__ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #04091a;
  color: rgba(255,255,255,.7);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 40px;
}
.footer__tag {
  margin-top: 14px;
  color: var(--slate-400);
  font-size: 14px;
  max-width: 280px;
}
.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.footer__nav a {
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  transition: color .2s var(--ease);
}
.footer__nav a:hover { color: var(--white); }
.footer__legal { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer__credit {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.42);
  text-align: center;
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABOUT US PAGE
============================================================ */
.about-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 80%);
}
.about-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero__photo {
  width: 360px; height: 360px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
}
.about-hero__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 96px;
  font-weight: 700;
}
.about-hero__h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 8px 0 10px;
}
.about-hero__role {
  color: var(--gold); font-weight: 600; margin-bottom: 22px;
}
.about-hero__quote {
  border-left: 3px solid var(--teal);
  padding: 6px 0 6px 18px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.6vw, 21px);
  font-style: italic;
  max-width: 620px;
}
@media (max-width: 900px) {
  .about-hero__grid { grid-template-columns: 1fr; text-align: left; }
  .about-hero__photo { width: 100%; max-width: 360px; height: auto; aspect-ratio: 1; }
}

.practice p {
  font-size: 17px;
  color: var(--slate-700);
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 18px;
}

.howshe {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
}
.howshe__card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 26px;
  position: relative;
  font-size: 15.5px;
  color: var(--slate-700);
  line-height: 1.55;
}
.howshe__card::before {
  content: "";
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
}
@media (max-width: 700px) { .howshe { grid-template-columns: 1fr; } }

.creds {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.creds__chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(6,14,29,.05);
  border: 1px solid rgba(6,14,29,.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: .02em;
}

.why-indep {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.why-indep p {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--slate-700);
}

/* ============================================================
   SECTOR SINGLE
============================================================ */
.sector-hero {
  position: relative;
  padding: 180px 0 100px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}
.sector-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.sector-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,14,29,.75), rgba(6,14,29,.9));
}
.sector-hero__mark {
  position: absolute;
  top: 80px; right: -40px;
  width: 420px; height: 420px;
  opacity: .06;
  pointer-events: none;
  z-index: 1;
}
.sector-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--_accent, var(--teal));
  margin-bottom: 18px;
}
.sector-chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--_accent, var(--teal));
}
.sector-hero__h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.sector-hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin-bottom: 32px;
}
.sector-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 22px;
}
.stat__lede {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.stat__body {
  color: var(--slate-500);
  font-size: 14px;
}
@media (max-width: 900px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-strip { grid-template-columns: 1fr; } }

.engagements { display: grid; gap: 18px; }
.engagement {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 26px;
}
.engagement__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.engagement__block__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.engagement__block__body {
  color: var(--slate-700);
  font-size: 14.5px;
  line-height: 1.55;
}
.engagement__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
}
.engagement__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6,14,29,.05);
  color: var(--navy-900);
  border: 1px solid rgba(6,14,29,.08);
}
@media (max-width: 780px) { .engagement__grid { grid-template-columns: 1fr; } }

.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap {
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.cap:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(240,165,0,.28);
}
.cap::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--_accent, var(--teal));
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 800px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .caps { grid-template-columns: 1fr; } }

.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related__pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.related__pill:hover {
  border-color: var(--gold);
  background: #FFFBF0;
  transform: translateY(-1px);
}

/* ============================================================
   404
============================================================ */
.fourohfour {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--navy-900);
  color: var(--white);
  padding: 140px var(--gutter) 80px;
}
.fourohfour h1 {
  font-size: clamp(60px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.fourohfour p { color: rgba(255,255,255,.7); margin-bottom: 28px; }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-anim].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1; transform: none; }
}

/* ============================================================
   SKIP LINK
============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  width: auto; height: auto;
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 8px;
  z-index: 1000;
}
/* Hide homepage About block */
#about { display: none; }