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

:root {
  color-scheme: dark;
  --bg: #090704;
  --bg-2: #14100a;
  --bronze: #2a1b0b;
  --ink: #fff8df;
  --muted: #cdbf93;
  --soft: #241b0f;
  --line: rgba(255, 218, 92, 0.2);
  --gold: #ffcf33;
  --gold-2: #f5a915;
  --amber: #d97904;
  --ivory: #fff6cb;
  --cyan: #34d7c5;
  --rose: #ff6f91;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --glass: rgba(18, 14, 8, 0.74);
  --font-body: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 207, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 207, 51, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 9%, rgba(255, 207, 51, 0.2), transparent 23rem),
    radial-gradient(circle at 88% 18%, rgba(52, 215, 197, 0.1), transparent 20rem),
    radial-gradient(circle at 50% 95%, rgba(217, 121, 4, 0.22), transparent 28rem),
    linear-gradient(180deg, #090704 0%, #100c07 48%, #090704 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto, auto;
  color: var(--ink);
}

@keyframes chip-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 20%, transparent 0 9rem, rgba(255, 207, 51, 0.11) 9.1rem 9.18rem, transparent 9.28rem 15rem, rgba(255, 207, 51, 0.08) 15.08rem 15.16rem, transparent 15.26rem),
    conic-gradient(from 120deg at 62% 28%, transparent 0 18%, rgba(255, 207, 51, 0.1) 18.4% 18.8%, transparent 19.2% 58%, rgba(52, 215, 197, 0.08) 58.4% 58.8%, transparent 59.2%),
    linear-gradient(115deg, transparent 0 18%, rgba(255, 207, 51, 0.08) 18.2%, transparent 18.4% 62%, rgba(52, 215, 197, 0.08) 62.2%, transparent 62.4%),
    radial-gradient(circle at 50% 20%, rgba(255, 248, 223, 0.08), transparent 16rem);
  content: "";
  opacity: 0.9;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 7, 4, 0.88), rgba(9, 7, 4, 0.45) 42%, rgba(9, 7, 4, 0.28)),
    linear-gradient(180deg, rgba(9, 7, 4, 0.36), transparent 28%, rgba(9, 7, 4, 0.72)),
    image-set(
      url("/assets/bhagala-golden-phoenix.webp") type("image/webp"),
      url("/assets/bhagala-golden-phoenix.png") type("image/png")
    ) center right / cover no-repeat;
  content: "";
  opacity: 0.52;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: contents;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 207, 51, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 207, 51, 0.05), transparent 36%, rgba(52, 215, 197, 0.04)),
    rgba(9, 7, 4, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  width: 54px;
  height: 48px;
  border: 1px solid rgba(255, 207, 51, 0.42);
  border-radius: 8px;
  background: #171006;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 0 24px rgba(255, 207, 51, 0.28);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-title {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 13px;
  transition: 180ms ease;
  transition-property: background, border-color, color, transform;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  border-color: rgba(255, 207, 51, 0.26);
  background: rgba(255, 207, 51, 0.1);
  color: var(--gold);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.cta-link {
  border-color: rgba(255, 207, 51, 0.5) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #171006 !important;
  box-shadow: 0 0 26px rgba(255, 207, 51, 0.22);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 207, 51, 0.12);
  padding: 50px 0 42px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 207, 51, 0.22), transparent 16rem),
    radial-gradient(circle at 56% 54%, transparent 0 13rem, rgba(255, 207, 51, 0.12) 13.08rem 13.16rem, transparent 13.28rem 22rem, rgba(52, 215, 197, 0.06) 22.08rem 22.16rem, transparent 22.28rem),
    linear-gradient(120deg, rgba(255, 207, 51, 0.08), transparent 26%, rgba(52, 215, 197, 0.045) 72%, transparent);
  content: "";
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.9) 24%, rgba(0, 0, 0, 0.75) 78%, transparent);
  pointer-events: none;
}

.hero.compact {
  padding: 48px 0 42px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 207, 51, 0.8), transparent);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 207, 51, 0.28);
  border-radius: 4px;
  background: rgba(255, 207, 51, 0.09);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  padding: 9px 12px;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(9, 7, 4, 0.24);
  background: rgba(9, 7, 4, 0.12);
  color: #2b1b04;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 3.55rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 22px 0 22px;
  text-shadow: 0 0 34px rgba(255, 207, 51, 0.12);
  text-wrap: balance;
}

h2 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 16px;
  text-wrap: balance;
}

h3 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.78;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1.15;
  padding: 0 20px;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #171006;
  box-shadow: 0 18px 46px rgba(255, 207, 51, 0.24), inset 0 1px 0 rgba(255, 246, 203, 0.8);
}

.button.secondary {
  border: 1px solid rgba(255, 207, 51, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(255, 207, 51, 0.06);
  color: var(--ivory);
}

.hero-products {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 470px;
  perspective: 1200px;
}

.hero-products::before {
  position: absolute;
  inset: 18px 20px 10px 40px;
  z-index: -1;
  border: 1px solid rgba(255, 207, 51, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.08), rgba(52, 215, 197, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 60px rgba(255, 207, 51, 0.08);
  content: "";
  transform: rotate(-3deg);
}

.hero-products::after {
  position: absolute;
  inset: 42px 0 28px 12px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 207, 51, 0.18), transparent 44%),
    conic-gradient(from 210deg, transparent 0 18%, rgba(255, 207, 51, 0.28), transparent 38% 66%, rgba(52, 215, 197, 0.16), transparent 78%);
  content: "";
  filter: blur(18px);
  opacity: 0.72;
}

.app-preview {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 238px;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 207, 51, 0.08) 36%, rgba(52, 215, 197, 0.05)),
    rgba(18, 14, 8, 0.9);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 203, 0.22);
  padding: 22px;
  position: relative;
  transition: 180ms ease;
  transition-property: border-color, transform, box-shadow;
}

.app-preview::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 34%, rgba(255, 207, 51, 0.08) 70%, transparent);
  content: "";
  pointer-events: none;
}

.app-preview::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 207, 51, 0.62), transparent 18%, transparent 82%, rgba(255, 207, 51, 0.18)),
    linear-gradient(180deg, rgba(255, 246, 203, 0.26), transparent 20%, transparent 78%, rgba(245, 169, 21, 0.14));
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.app-preview:hover {
  border-color: rgba(255, 207, 51, 0.56);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 207, 51, 0.14);
  transform: translateY(-6px) rotateX(0deg) rotateZ(0deg);
  z-index: 4;
}

.uricare-preview {
  z-index: 2;
  transform: rotateX(5deg) rotateZ(-2deg);
}

.nichejobs-preview {
  z-index: 3;
  margin-top: -54px;
  margin-left: 64px;
  transform: rotateX(4deg) rotateZ(2deg);
}

.app-device {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 172px;
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 246, 203, 0.16), rgba(255, 207, 51, 0.04)),
    rgba(9, 7, 4, 0.58);
  padding: 16px;
  box-shadow: inset 0 0 24px rgba(255, 207, 51, 0.08);
}

.app-device::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%);
  content: "";
  pointer-events: none;
}

.app-device::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 203, 0.2), rgba(52, 215, 197, 0.12), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 900ms ease, opacity 180ms ease;
}

.app-preview:hover .app-device::after {
  opacity: 1;
  transform: translateX(430%) skewX(-18deg);
}

.app-device img {
  position: relative;
  width: 100%;
  max-height: 136px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.app-screen-lines {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.app-screen-lines span {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 207, 51, 0.8), rgba(52, 215, 197, 0.6), transparent);
}

.app-screen-lines span:nth-child(2) {
  width: 78%;
}

.app-screen-lines span:nth-child(3) {
  width: 58%;
}

.app-copy {
  position: relative;
  display: grid;
  gap: 10px;
}

.app-copy strong {
  color: var(--ivory);
  font-size: 1.45rem;
  line-height: 1;
}

.app-copy span {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 64px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.16);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  margin-top: 26px;
}

.trust-strip div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.08), rgba(52, 215, 197, 0.03)),
    rgba(18, 14, 8, 0.9);
  padding: 20px;
}

.trust-strip strong {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.25;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.home-donation-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 207, 51, 0.26);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 207, 51, 0.18), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 207, 51, 0.065) 48%, rgba(52, 215, 197, 0.035)),
    rgba(18, 14, 8, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 246, 203, 0.12);
  padding: 18px 20px;
}

.home-donation-widget:hover {
  border-color: rgba(255, 207, 51, 0.42);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 207, 51, 0.08);
}

.home-donation-copy {
  display: grid;
  gap: 7px;
}

.home-donation-copy strong {
  color: var(--ivory);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.2;
}

.home-donation-copy > span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.home-donation-action {
  display: inline-grid;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf33, #f59e0b);
  color: #1e1404;
  font-weight: 850;
  padding: 0 20px;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.22);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 610px;
}

.company-story {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 207, 51, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 207, 51, 0.08), rgba(52, 215, 197, 0.035)),
    rgba(18, 14, 8, 0.82);
  box-shadow: var(--shadow);
  padding: 32px;
}

.company-story::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 207, 51, 0.28), transparent 24%, transparent 74%, rgba(52, 215, 197, 0.12)),
    linear-gradient(180deg, rgba(255, 246, 203, 0.18), transparent 18%, transparent 82%, rgba(245, 169, 21, 0.1));
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.company-story h2 {
  margin-bottom: 0;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.76;
  margin-bottom: 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.16);
}

.credibility-card {
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.09), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.9);
  padding: 22px;
  transition: 180ms ease;
  transition-property: background, transform;
}

.credibility-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 22px;
}

.credibility-card p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.capability-panel,
.contact-row {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 207, 51, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(255, 207, 51, 0.09), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 246, 203, 0.1);
}

.card {
  min-height: 100%;
  padding: 24px;
}

.card::before,
.capability-panel::before,
.contact-row::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 207, 51, 0.78), transparent);
  content: "";
}

.card::after,
.capability-panel::after,
.contact-row::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 207, 51, 0.26), transparent 18%, transparent 82%, rgba(52, 215, 197, 0.08)),
    linear-gradient(180deg, rgba(255, 246, 203, 0.14), transparent 18%, transparent 80%, rgba(245, 169, 21, 0.12));
  content: "";
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.product-card {
  min-height: 260px;
}

.outcome-card {
  display: grid;
  align-content: start;
}

.outcome-deliverable {
  display: block;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 6px;
  background: rgba(255, 207, 51, 0.08);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 18px;
  padding: 10px 12px;
}

.product-feature-card {
  display: grid;
  align-content: start;
  gap: 4px;
}

.product-feature-card .eyebrow {
  margin-bottom: 12px;
}

.product-link-card {
  display: block;
  transition: 180ms ease;
  transition-property: border-color, transform, box-shadow;
}

.product-link-card:hover {
  border-color: rgba(255, 207, 51, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 207, 51, 0.1);
  transform: translateY(-2px);
}

.product-logo {
  width: min(100%, 260px);
  height: 128px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.feature-card h2 {
  font-size: 2rem;
}

.outcome-detail-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.outcome-breakdown {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
}

.outcome-breakdown div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 207, 51, 0.18);
  border-radius: 8px;
  background: rgba(9, 7, 4, 0.34);
  padding: 12px;
}

.outcome-breakdown strong {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.outcome-breakdown span {
  color: var(--muted);
  line-height: 1.55;
}

.product-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.product-visual-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 207, 51, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 207, 51, 0.08) 42%, rgba(52, 215, 197, 0.04)),
    rgba(18, 14, 8, 0.88);
  box-shadow: var(--shadow);
  padding: 28px;
}

.product-visual-card::before {
  position: absolute;
  inset: -38% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 51, 0.26), transparent 64%);
  content: "";
  filter: blur(6px);
  pointer-events: none;
}

.product-visual-card::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 207, 51, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 207, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 207, 51, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
  pointer-events: none;
}

.product-visual-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
}

.product-visual-card .metric-stack {
  position: relative;
  z-index: 1;
}

.audience-card {
  display: grid;
  align-content: start;
}

.product-tabs-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.16);
}

.product-tabs-map article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.09), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.9);
  padding: 22px;
  transition: 180ms ease;
  transition-property: background, transform;
}

.product-tabs-map article::after,
.credibility-card::after,
.process-step::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 207, 51, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 51, 0.1), transparent 62%);
  content: "";
  pointer-events: none;
}

.product-tabs-map span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 22px;
}

.product-tabs-map p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.product-status-card {
  display: grid;
  align-content: start;
}

.product-status-card .actions {
  margin-top: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  border: 1px solid rgba(255, 207, 51, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.08), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.82);
  padding: 22px;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.66;
  margin-bottom: 0;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 207, 51, 0.2);
  border-radius: 8px;
  background: rgba(9, 7, 4, 0.42);
  color: var(--muted);
  line-height: 1.35;
  padding: 12px 14px;
  opacity: 0;
}

.metric-stack strong {
  color: var(--gold);
  font-size: 1rem;
}

.platform-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 110%, rgba(52, 215, 197, 0.12), transparent 16rem),
    radial-gradient(circle at 88% 4%, rgba(255, 207, 51, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 207, 51, 0.06) 45%, rgba(52, 215, 197, 0.035)),
    rgba(18, 14, 8, 0.78);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 203, 0.14);
  padding: 26px;
}

.platform-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 207, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 207, 51, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 74%);
  pointer-events: none;
}

.platform-panel::after {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 203, 0.16), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
}

.platform-panel:hover::after {
  left: 120%;
  transition: left 900ms ease;
}

.platform-panel-head,
.signal-flow,
.text-link {
  position: relative;
  z-index: 1;
}

.platform-panel-head {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.platform-panel-head h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 12px 0 0;
}

.signal-flow {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.signal-flow div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 207, 51, 0.2);
  border-radius: 10px;
  background: rgba(9, 7, 4, 0.46);
  padding: 14px;
}

.signal-flow strong {
  color: var(--gold);
  font-size: 1rem;
}

.signal-flow span {
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
}

.text-link:hover {
  color: var(--ivory);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.16);
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 207, 51, 0.13), transparent 11rem),
    linear-gradient(135deg, rgba(255, 207, 51, 0.09), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.9);
  padding: 22px;
  transition: 180ms ease;
  transition-property: background, box-shadow, transform;
}

.industry-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 207, 51, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 51, 0.1), transparent 62%);
  content: "";
  pointer-events: none;
}

.industry-card span {
  display: inline-grid;
  min-width: 52px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 22px;
  padding: 0 10px;
}

.industry-card p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  align-content: start;
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 207, 51, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 207, 51, 0.055) 44%, rgba(52, 215, 197, 0.03)),
    rgba(18, 14, 8, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 203, 0.12);
  padding: 24px;
  transition: 180ms ease;
  transition-property: border-color, box-shadow, transform;
}

.case-study-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 207, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 207, 51, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
}

.case-study-card > * {
  position: relative;
  z-index: 1;
}

.case-study-card h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  margin: 12px 0 0;
}

.case-study-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.case-study-card dl div {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 207, 51, 0.17);
  border-radius: 10px;
  background: rgba(9, 7, 4, 0.42);
  padding: 12px;
}

.case-study-card dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-study-card dd {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.card p,
.rich-list li {
  color: var(--muted);
  line-height: 1.68;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 207, 51, 0.38);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 18px;
  box-shadow: inset 0 0 18px rgba(255, 207, 51, 0.08);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.large-pill-list {
  gap: 12px;
  margin-top: 0;
}

.large-pill-list .pill {
  font-size: 1rem;
  padding: 12px 14px;
}

.pill {
  border: 1px solid rgba(255, 207, 51, 0.26);
  border-radius: 4px;
  background: rgba(255, 207, 51, 0.08);
  color: var(--ivory);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 8px 10px;
}

.pill.dark {
  border-color: rgba(9, 7, 4, 0.22);
  background: rgba(9, 7, 4, 0.11);
  color: #241705;
}

.rich-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 8px;
  background: rgba(255, 207, 51, 0.16);
}

.process-step {
  position: relative;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.09), rgba(52, 215, 197, 0.025)),
    rgba(18, 14, 8, 0.9);
  padding: 22px;
  transition: 180ms ease;
  transition-property: background, transform;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 207, 51, 0.34);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
  margin-bottom: 22px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.capability-panel {
  padding: 28px;
}

.gold-band {
  border-block: 1px solid rgba(255, 207, 51, 0.28);
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 246, 203, 0.86), transparent 14rem),
    linear-gradient(135deg, rgba(255, 207, 51, 0.94), rgba(245, 169, 21, 0.96) 54%, rgba(255, 246, 203, 0.9)),
    var(--gold);
  color: #201404;
  box-shadow: inset 0 1px 0 rgba(255, 246, 203, 0.76), inset 0 -1px 0 rgba(42, 27, 11, 0.18);
}

.gold-band h2,
.gold-band p {
  color: #201404;
}

.donation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 207, 51, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 207, 51, 0.055) 44%, rgba(52, 215, 197, 0.03)),
    rgba(18, 14, 8, 0.84);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 203, 0.12);
  padding: 28px;
}

.donation-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.donation-copy p + p {
  margin-top: 18px;
}

.donation-note {
  border-top: 1px solid rgba(255, 207, 51, 0.18);
  color: rgba(205, 191, 147, 0.84) !important;
  font-size: 0.78rem !important;
  line-height: 1.58 !important;
  padding-top: 14px;
}

.donation-qr-card {
  border: 1px solid rgba(255, 207, 51, 0.22);
  border-radius: 12px;
  background: #fffdf7;
  padding: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.donation-qr-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: end;
}

.band-inner p {
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-row {
  padding: 18px;
}

.contact-row span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-row strong {
  display: block;
  color: var(--ivory);
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.policy-page {
  max-width: 900px;
}

.policy-page .card + .card,
.policy-grid {
  margin-top: 18px;
}

.policy-page h2,
.policy-page h3 {
  margin-bottom: 12px;
}

.policy-page h2,
.compliance-card h2 {
  font-size: 1.65rem;
  line-height: 1.12;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.72;
}

.policy-meta {
  color: var(--gold);
  font-weight: 850;
  margin-bottom: 20px;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.compliance-card {
  display: grid;
  gap: 10px;
  transition: 180ms ease;
  transition-property: border-color, transform, box-shadow;
}

.compliance-card:hover {
  border-color: rgba(255, 207, 51, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 207, 51, 0.1);
  transform: translateY(-2px);
}

.careers-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.career-signal-card,
.open-roles-panel,
.culture-principles {
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 207, 51, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 207, 51, 0.055) 44%, rgba(52, 215, 197, 0.03)),
    rgba(18, 14, 8, 0.84);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 246, 203, 0.12);
}

.career-signal-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 320px;
  padding: 28px;
}

.career-signal-card strong {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.career-signal-card p,
.career-card p,
.careers-perks p,
.culture-principles p {
  color: var(--muted);
  line-height: 1.7;
}

.career-card {
  min-height: 260px;
}

.culture-principles {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
}

.career-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.career-signal-grid article {
  border: 1px solid rgba(255, 207, 51, 0.18);
  border-radius: 12px;
  background: rgba(255, 207, 51, 0.055);
  padding: 18px;
}

.career-signal-grid strong {
  display: block;
  color: var(--ivory);
  margin-bottom: 8px;
}

.career-signal-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.careers-perks .card {
  min-height: 190px;
}

.open-roles-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.open-roles-panel p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.role-status {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 207, 51, 0.24);
  border-radius: 12px;
  background: rgba(255, 207, 51, 0.07);
  padding: 26px 18px;
}

.role-status strong {
  color: var(--gold);
  font-size: 4.2rem;
  line-height: 0.9;
}

.role-status span {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.static-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.inquiry-card {
  padding: 28px;
}

.inquiry-card .static-form {
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ivory);
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 207, 51, 0.26);
  border-radius: 6px;
  background: rgba(9, 7, 4, 0.62);
  color: var(--ivory);
  font: inherit;
  padding: 12px 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 207, 51, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 207, 51, 0.12);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.site-footer {
  border-top: 1px solid rgba(255, 207, 51, 0.22);
  background: #fffaf0;
  color: #120e08;
  padding: 44px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.65fr);
  gap: 42px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-link .brand-title {
  color: #120e08;
}

.footer-brand p {
  color: #6f674f;
  line-height: 1.55;
  margin-bottom: 0;
}

.footer-company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-company-meta span {
  border: 1px solid #eadfbd;
  border-radius: 999px;
  background: #fffdf7;
  color: #70654c;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  padding: 7px 10px;
}

.footer-mail {
  color: #8a5a00;
  font-weight: 850;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-links-grid div {
  display: grid;
  gap: 14px;
}

.footer-links-grid h3 {
  color: #120e08;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.footer-links-grid a {
  color: #1f1a10;
  font-weight: 650;
  line-height: 1.35;
}

.footer-links-grid a:hover,
.footer-bottom-links a:hover,
.footer-mail:hover {
  color: #b87800;
}

.footer-product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid #e7dec7;
  margin-top: 34px;
  padding-top: 24px;
}

.footer-product-logo-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid #e8ddbd;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.14), rgba(255, 255, 255, 0.82)),
    #ffffff;
  color: #1f1a10;
  padding: 14px;
  transition: 180ms ease;
  transition-property: border-color, box-shadow, transform;
}

.footer-product-logo-card:hover {
  border-color: #d0ae52;
  box-shadow: 0 14px 34px rgba(70, 48, 12, 0.12);
  transform: translateY(-2px);
}

.footer-product-logo-card img {
  width: 104px;
  height: 66px;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
}

.footer-product-logo-card span {
  display: grid;
  gap: 4px;
}

.footer-product-logo-card strong {
  color: #120e08;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-product-logo-card em {
  color: #6f674f;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid #e7dec7;
  color: #81775e;
  font-size: 0.86rem;
  margin-top: 36px;
  padding-top: 24px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links a {
  color: #5e533b;
  font-weight: 750;
}

@media (prefers-reduced-motion: no-preference) {
  .card,
  .credibility-card,
  .industry-card,
  .case-study-card,
  .process-step,
  .home-donation-widget,
  .product-tabs-map article,
  .faq-grid article {
    transition: 180ms ease;
    transition-property: background, border-color, box-shadow, transform;
  }

  .outcome-card:hover,
  .feature-card:hover,
  .audience-card:hover,
  .product-status-card:hover,
  .credibility-card:hover,
  .industry-card:hover,
  .case-study-card:hover,
  .process-step:hover,
  .product-tabs-map article:hover,
  .faq-grid article:hover {
    border-color: rgba(255, 207, 51, 0.34);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32), 0 0 24px rgba(255, 207, 51, 0.08);
    transform: translateY(-3px);
  }

  .metric-stack span,
  .pill {
    animation: chip-rise 520ms ease forwards;
  }

  .metric-stack span:nth-child(2),
  .pill:nth-child(2) {
    animation-delay: 80ms;
  }

  .metric-stack span:nth-child(3),
  .pill:nth-child(3) {
    animation-delay: 160ms;
  }

  .metric-stack span:nth-child(4),
  .pill:nth-child(4) {
    animation-delay: 240ms;
  }

  .metric-stack span:nth-child(5),
  .pill:nth-child(5) {
    animation-delay: 320ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .metric-stack span {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body::after {
    background:
      linear-gradient(90deg, rgba(9, 7, 4, 0.9), rgba(9, 7, 4, 0.55) 52%, rgba(9, 7, 4, 0.34)),
      linear-gradient(180deg, rgba(9, 7, 4, 0.4), transparent 24%, rgba(9, 7, 4, 0.74)),
      image-set(
        url("/assets/bhagala-golden-phoenix-960.webp") type("image/webp"),
        url("/assets/bhagala-golden-phoenix.png") type("image/png")
      ) 62% top / cover no-repeat;
    opacity: 0.46;
  }

  .nav,
  .footer-bottom,
  .section-header,
  .band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .contact-panel,
  .company-story,
  .careers-hero-panel,
  .credibility-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid,
  .trust-strip,
  .home-donation-widget,
  .process-grid,
  .industry-grid,
  .case-study-grid,
  .donation-panel,
  .culture-principles,
  .career-signal-grid,
  .open-roles-panel,
  .product-tabs-map,
  .faq-grid,
  .platform-showcase,
  .band-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .trust-strip div,
  .process-step,
  .industry-card,
  .credibility-card,
  .product-tabs-map article {
    min-height: 0;
  }

  .hero,
  .hero.compact {
    padding: 48px 0 48px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-products::before {
    inset: -18px;
  }

  .nichejobs-preview {
    margin-left: 0;
  }

  .home-donation-widget {
    align-items: start;
  }

  .footer-main,
  .footer-links-grid,
  .footer-product-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body::after {
    background:
      linear-gradient(90deg, rgba(9, 7, 4, 0.92), rgba(9, 7, 4, 0.62) 58%, rgba(9, 7, 4, 0.42)),
      linear-gradient(180deg, rgba(9, 7, 4, 0.44), transparent 24%, rgba(9, 7, 4, 0.78)),
      image-set(
        url("/assets/bhagala-golden-phoenix-960.webp") type("image/webp"),
        url("/assets/bhagala-golden-phoenix.png") type("image/png")
      ) 58% top / cover no-repeat;
    opacity: 0.42;
  }

  .container,
  .nav {
    width: min(100% - 24px, 1160px);
  }

  .brand-mark {
    width: 48px;
    height: 44px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .nav-links a {
    font-size: 0.86rem;
    padding: 9px 10px;
  }

  .home-donation-widget {
    padding: 16px;
  }

  .home-donation-action {
    justify-self: start;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.95rem;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero,
  .hero.compact {
    padding: 30px 0 28px;
  }

  .hero-grid {
    gap: 18px;
  }

  .actions {
    gap: 6px;
    margin-top: 20px;
  }

  .button {
    font-size: 0.92rem;
    min-height: 44px;
    padding: 0 10px;
  }

  .app-preview {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .app-device {
    min-height: 122px;
    padding: 12px 10px;
  }

  .app-device img {
    max-height: 86px;
  }

  .app-copy strong {
    font-size: 1.14rem;
  }

  .app-copy span {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .footer-product-logo-card {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 16px;
  }

  .footer-product-logo-card img {
    width: 86px;
    height: 58px;
  }

  .company-story {
    padding: 22px;
  }

  .platform-panel {
    padding: 18px;
  }

}
