/* ============================================================
   VEST — Where Capital Meets Vision
   Premium design system v2 · VEST brand
   Base #0A192F · Card #112240 · Electric Lime #CCFF00 · White
   Type: Hanken Grotesk (thin display) · IBM Plex Mono (accents)
   Principle: restraint, whitespace, real imagery, precise accent.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@200;300;400;500;600;700&display=swap");

:root {
  --navy: #0a192f;
  --navy-deep: #06101f;
  --navy-900: #081427;
  --navy-800: #0b1c34;
  --card: #0e1d39;
  --card-2: #102140;
  --card-hi: #15294a;
  --lime: #ccff00;
  --lime-dim: #b6e600;
  --lime-press: #b8e600;
  --ink: #0a192f;
  --white: #ffffff;
  --text: #eef3fb;
  --muted: #93a4c0;
  --muted-2: #6f82a3;
  --muted-soft: #56688a;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.06);
  --line-lime: rgba(204, 255, 0, 0.22);
  /* back-compat aliases (v1 markup) */
  --line-soft: var(--line);
  --line-faint: var(--line-2);
  --shadow-lime: var(--shadow-card);
  --glow: rgba(204, 255, 0, 0.32);
  --shadow-card: 0 24px 70px rgba(2, 7, 18, 0.5);
  --shadow-soft: 0 12px 40px rgba(2, 7, 18, 0.35);
  /* themeable (flip in .light-* sections) */
  --heading: #ffffff;
  --track: rgba(255, 255, 255, 0.08);
  --accent-2: #ccff00; /* lime used as text/line */
  --icon-tile: rgba(204, 255, 0, 0.1);

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --container: 1220px;
  --narrow: 720px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);

  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --display: "Hanken Grotesk", system-ui, sans-serif;
  /* labels use the clean sans (no monospace) — alias kept for back-compat */
  --mono: var(--sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.006em;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 28px;
}
section {
  position: relative;
}
.sec {
  padding: 132px 0;
}
.sec-sm {
  padding: 84px 0;
}
.center {
  text-align: center;
}
.bg-deep {
  background: var(--navy-deep);
}
.bg-card {
  background: var(--navy-900);
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--heading);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 6.6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}
h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 300;
  letter-spacing: -0.04em;
}
h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 500;
}
h4 {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
}
p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}
.lead {
  font-size: clamp(18px, 1.9vw, 21px);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.012em;
  font-weight: 400;
}
.lime {
  color: var(--accent-2);
}
.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* eyebrow / labels — mono, precise */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent-2);
  opacity: 0.8;
}
.eyebrow.no-line::before {
  display: none;
}
.kicker {
  color: var(--muted-2);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--mono);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 17px;
  height: 17px;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(204, 255, 0, 0.28);
}
.btn-primary:active {
  background: var(--lime-press);
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 17px 32px;
  font-size: 16px;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}
.btn-block {
  width: 100%;
}
.btn-arrow svg {
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 16, 31, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--white);
}
.brand .mark {
  width: 28px;
  height: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.005em;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1.5px;
  background: var(--lime);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid var(--line);
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--white);
  position: relative;
  transition: 0.25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: var(--white);
  transition: 0.25s var(--ease);
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}
.nav.open .nav-toggle span {
  background: transparent;
}
.nav.open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav.open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--card-2);
}
.card-flat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
}
.grid {
  display: grid;
  gap: 20px;
}
.g-2 {
  grid-template-columns: repeat(2, 1fr);
}
.g-3 {
  grid-template-columns: repeat(3, 1fr);
}
.g-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* chips / pills / tags */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(204, 255, 0, 0.06);
  border: 1px solid var(--line-lime);
  color: var(--lime);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: var(--mono);
  text-transform: uppercase;
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}
.tag {
  display: inline-block;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  margin: 3px;
  font-family: var(--mono);
  letter-spacing: 0.01em;
}

/* ---------- Media / imagery ---------- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.media:hover img {
  transform: scale(1.03);
}
.media-tint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 47, 0.1) 0%,
    rgba(10, 25, 47, 0.55) 100%
  );
  pointer-events: none;
}
.media-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.media .media-cap {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
}

/* full-bleed image band */
.imgband {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.imgband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 31, 0.78) 0%,
    rgba(6, 16, 31, 0.62) 50%,
    rgba(6, 16, 31, 0.86) 100%
  );
}
.imgband > .container,
.imgband > .narrow {
  position: relative;
  z-index: 2;
}

/* ---------- Stats ---------- */
.stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .num .lime {
  color: var(--accent-2);
}
.stat .lbl {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 0.02em;
  font-family: var(--mono);
  text-transform: uppercase;
}

/* ---------- Glow / decorative ---------- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.glow-lime {
  background: radial-gradient(circle, var(--glow), transparent 70%);
}
.gridlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(147, 164, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 164, 192, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 75% 55% at 50% 0%,
    #000 30%,
    transparent 78%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 75% 55% at 50% 0%,
    #000 30%,
    transparent 78%
  );
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-2);
  padding: 84px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-2);
}
.footer h5 {
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-2);
}
.footer-brand p {
  font-size: 14.5px;
  max-width: 300px;
  margin-top: 18px;
  line-height: 1.65;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 30px;
  color: var(--muted-soft);
  font-size: 13px;
}
.footer-disc {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--muted-soft);
  font-size: 11.5px;
  line-height: 1.7;
  text-align: center;
  opacity: 0.7;
}

/* lyfework signature */
.lyf-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-soft);
  font-size: 12.5px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.lyf-credit:hover {
  opacity: 1;
}
.lyf-credit svg {
  width: 13px;
  height: 13px;
  color: #ff5418;
}

/* ---------- Reveal animation ---------- */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv-d1 {
  transition-delay: 0.09s;
}
.rv-d2 {
  transition-delay: 0.18s;
}
.rv-d3 {
  transition-delay: 0.27s;
}
.rv-d4 {
  transition-delay: 0.36s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 14%,
    #000 86%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 14%,
    #000 86%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Forms ---------- */
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 400;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--navy-deep);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-soft);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.1);
}
.form-note {
  font-size: 12.5px;
  color: var(--muted-soft);
  margin-top: 6px;
}

/* ---------- Section heading block ---------- */
.sec-head {
  max-width: 660px;
  margin-bottom: 64px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
}
.sec-head p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-l {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-r {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.split-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

/* ---------- Utilities ---------- */
.mt-s {
  margin-top: 14px;
}
.mt {
  margin-top: 24px;
}
.mt-l {
  margin-top: 40px;
}
.flex {
  display: flex;
}
.aic {
  align-items: center;
}
.jcc {
  justify-content: center;
}
.gap {
  gap: 14px;
}
.wrap {
  flex-wrap: wrap;
}
.divider {
  height: 1px;
  background: var(--line-2);
  border: none;
  margin: 0;
}
.hide {
  display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .g-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 880px) {
  .split,
  .split-l,
  .split-r {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split-card {
    grid-template-columns: 1fr;
  }
  .split-card > div {
    border-right: none !important;
  }
}
@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn:not(.nav-toggle) {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 16, 31, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px 26px;
  }
  .nav.open .nav-links a {
    padding: 13px 0;
    width: 100%;
    font-size: 17px;
  }
  .nav.open .nav-links a.active::after {
    display: none;
  }
  .g-3,
  .g-2 {
    grid-template-columns: 1fr;
  }
  .sec {
    padding: 92px 0;
  }
  .sec-head {
    margin-bottom: 48px;
  }
}
@media (max-width: 560px) {
  .g-4 {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .container,
  .narrow {
    padding: 0 22px;
  }
  .btn-lg {
    padding: 15px 26px;
  }
  .sec {
    padding: 76px 0;
  }
  .card,
  .card-flat {
    padding: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
  .media:hover img {
    transform: none;
  }
}

/* ---------- Mobile: center hero content + balance ---------- */
@media (max-width: 640px) {
  header.sec .container > div,
  header.sec .narrow > div {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  header.sec .eyebrow {
    justify-content: center;
  }
  header.sec .flex {
    justify-content: center;
  }
  header.sec h1,
  header.sec .lead,
  header.sec p {
    margin-left: auto;
    margin-right: auto;
  }
  .sec-head {
    text-align: center;
  }
  .sec-head .eyebrow {
    justify-content: center;
  }
}

/* ============================================================
   LIGHT SECTIONS — alternating light/dark rhythm
   Flips themeable vars so existing components adapt automatically.
   Apply .light / .light-tan / .light-grey to a <section>.
   ============================================================ */
.light,
.light-tan,
.light-grey {
  --heading: #0a192f;
  --text: #16233b;
  --muted: #51617c;
  --muted-2: #6b7890;
  --muted-soft: #94a0b4;
  --line: rgba(10, 25, 47, 0.12);
  --line-2: rgba(10, 25, 47, 0.07);
  --line-lime: rgba(120, 150, 0, 0.4);
  --track: rgba(10, 25, 47, 0.1);
  --accent-2: #4d6a00;
  --icon-tile: rgba(77, 106, 0, 0.12);
  color: var(--text);
}
/* recolor bright-lime icon strokes to readable olive inside light sections */
.light [stroke="#CCFF00"],
.light-tan [stroke="#CCFF00"],
.light-grey [stroke="#CCFF00"] {
  stroke: var(--accent-2);
}
.light {
  --bg: #ffffff;
  --card: #ffffff;
  --card-2: #f6f7f9;
  background: #ffffff;
}
.light-tan {
  --bg: #f6f2e6;
  --card: #fffdf7;
  --card-2: #f1ece0;
  background: #f6f2e6;
}
.light-grey {
  --bg: #f1f3f6;
  --card: #ffffff;
  --card-2: #fafbfc;
  background: #f1f3f6;
}
/* cards lift on light */
.light .card,
.light-tan .card,
.light-grey .card,
.light .card-flat,
.light-tan .card-flat,
.light-grey .card-flat {
  box-shadow:
    0 2px 4px rgba(10, 25, 47, 0.04),
    0 14px 34px rgba(10, 25, 47, 0.07);
}
.light .card:hover,
.light-tan .card:hover,
.light-grey .card:hover {
  border-color: rgba(10, 25, 47, 0.2);
  background: var(--card);
  box-shadow:
    0 4px 8px rgba(10, 25, 47, 0.06),
    0 22px 46px rgba(10, 25, 47, 0.1);
}
/* ghost button on light */
.light .btn-ghost,
.light-tan .btn-ghost,
.light-grey .btn-ghost {
  color: var(--heading);
  border-color: rgba(10, 25, 47, 0.2);
}
.light .btn-ghost:hover,
.light-tan .btn-ghost:hover,
.light-grey .btn-ghost:hover {
  background: rgba(10, 25, 47, 0.04);
  border-color: rgba(10, 25, 47, 0.36);
}
/* pill + tag on light */
.light .pill,
.light-tan .pill,
.light-grey .pill {
  background: rgba(77, 106, 0, 0.1);
  border-color: rgba(77, 106, 0, 0.28);
  color: #3f5800;
}
.light .tag,
.light-tan .tag,
.light-grey .tag {
  background: rgba(10, 25, 47, 0.04);
  border-color: rgba(10, 25, 47, 0.12);
  color: var(--muted);
}
.light .media,
.light-tan .media,
.light-grey .media {
  border-color: rgba(10, 25, 47, 0.1);
}
.light .divider,
.light-tan .divider,
.light-grey .divider {
  background: rgba(10, 25, 47, 0.08);
}

/* ---------- Highlighted card badge (Most Popular / Founding) ---------- */
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 17px;
  border-radius: var(--r-pill);
  background: #0a192f;
  color: #ffffff;
  border: 1px solid rgba(204, 255, 0, 0.35);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.24);
}
.card-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

/* ---------- Full-bleed image heroes (shared) ---------- */
.hero-full,
.hero-mid {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-full {
  min-height: 100vh;
}
.hero-mid {
  min-height: 76vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 105% 80% at 50% 40%,
      rgba(6, 16, 31, 0.5),
      rgba(6, 16, 31, 0.82)
    ),
    linear-gradient(
      180deg,
      rgba(6, 16, 31, 0.66) 0%,
      rgba(6, 16, 31, 0.48) 44%,
      rgba(6, 16, 31, 0.95) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 86px;
}
.hero-text {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 640px) {
  .hero-full {
    min-height: 90vh;
  }
  .hero-mid {
    min-height: 78vh;
  }
  .hero-content {
    padding-top: 96px;
    padding-bottom: 40px;
  }
}

/* ============================================================
   CENTERED LAYOUT — center content across the whole site
   ============================================================ */
.sec-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sec-head .eyebrow {
  justify-content: center;
}

/* content cards in grids: center everything (icon tiles, text, numbers) */
.grid .card,
.grid .card-flat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* rows that must keep their full width (e.g. label + value spread) */
.grid .card > .flex,
.grid .card-flat > .flex {
  align-self: stretch;
}

/* split sections: center the text columns */
.split > div,
.split-l > div,
.split-r > div {
  text-align: center;
}
.split .eyebrow,
.split-l .eyebrow,
.split-r .eyebrow {
  justify-content: center;
}
.split .flex,
.split-l .flex,
.split-r .flex {
  justify-content: center;
}
/* center stacked lists inside split text columns (checklists, feature rows) */
.split > div > div[style*="flex-direction: column"],
.split-l > div > div[style*="flex-direction: column"],
.split-r > div > div[style*="flex-direction: column"] {
  align-items: center;
}

/* footer centered */
.footer-top {
  text-align: center;
}
.footer-brand .brand {
  justify-content: center;
}
.footer-brand p {
  margin-left: auto;
  margin-right: auto;
}
.footer .lyf-credit {
  justify-content: center;
}
.footer-bottom {
  justify-content: center;
}
