/* ==========================================================================
   Artha Systems — Section compositions
   ========================================================================== */

/* ==========================================================================
   1. Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

/* --- Parallax planes ---------------------------------------------------- */
.hero__bg {
  position: absolute;
  inset: -12% -5% -18%;
  z-index: -3;
  will-change: transform;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  opacity: .30;
  filter: saturate(.65) contrast(1.06);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 52%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 52%, transparent 88%);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6,10,18,.55) 0%, rgba(6,10,18,.20) 40%, var(--obsidian) 96%),
    linear-gradient(100deg, rgba(6,10,18,.88) 8%, transparent 62%);
}

/* Layered topographic grid, mid plane */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .40;
  will-change: transform;
  background-image:
    linear-gradient(rgba(91,143,212,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,143,212,.075) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(58rem 44rem at 22% 42%, #000 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(58rem 44rem at 22% 42%, #000 12%, transparent 74%);
}

/* Cursor-tracked light bloom, foreground plane */
.hero__bloom {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(26rem 26rem at var(--bx, 50%) var(--by, 50%), rgba(217,180,91,.11), transparent 68%);
  transition: opacity var(--t-slow) var(--ease);
}
.hero:hover .hero__bloom { opacity: 1; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero__copy { max-width: 40rem; }

.hero__title { margin-bottom: 1.75rem; }
.hero__title .display { display: block; }
.hero__title-line2 { color: var(--gold); }

.hero__lead { margin-bottom: 2.5rem; max-width: 46ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-brd);
}
.hero__proof-item { display: flex; align-items: center; gap: .625rem; font-size: var(--fs-xs); color: var(--muted); }
.hero__proof-item svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* --- Hero visual: 3D dashboard plane ------------------------------------ */
.hero__visual { position: relative; perspective: 1400px; will-change: transform; }

.dash {
  position: relative;
  transform: rotateY(-15deg) rotateX(7deg) rotateZ(-1.2deg);
  transform-style: preserve-3d;
  border-radius: var(--r-md);
  background: linear-gradient(155deg, rgba(23,35,58,.92), rgba(10,16,28,.96));
  border: 1px solid var(--glass-brd-lit);
  box-shadow:
    0 4px 12px rgba(0,0,0,.40),
    0 24px 60px rgba(0,0,0,.46),
    0 60px 140px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow: hidden;
  transition: transform 1.1s var(--ease);
}
.hero__visual:hover .dash { transform: rotateY(-9deg) rotateX(4deg) rotateZ(-.5deg); }

.dash__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.125rem;
  border-bottom: 1px solid var(--glass-brd);
  background: rgba(255,255,255,.028);
}
.dash__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
.dash__dot:nth-child(1) { background: rgba(251,113,133,.55); }
.dash__dot:nth-child(2) { background: rgba(217,180,91,.55); }
.dash__dot:nth-child(3) { background: rgba(74,222,128,.48); }
.dash__label {
  margin-left: .625rem;
  font-family: var(--ff-mono);
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dash__body { padding: 1.375rem; display: grid; gap: 1.125rem; }

.dash__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }

.dash__tile {
  padding: .875rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.032);
  border: 1px solid var(--glass-brd);
}
.dash__tile-label {
  font-family: var(--ff-mono);
  font-size: .5625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.dash__tile-value {
  font-family: var(--ff-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--platinum);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dash__tile-delta { font-size: .625rem; color: var(--success); margin-top: .375rem; display: flex; align-items: center; gap: .25rem; }
.dash__tile-delta svg { width: 10px; height: 10px; }

/* Animated bar chart */
.dash__chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 116px;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.022);
  border: 1px solid var(--glass-brd);
}
.dash__bar-col {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--sapphire-lit), rgba(52,91,142,.30));
  height: var(--h, 40%);
  transform-origin: bottom;
  animation: barGrow 1.1s var(--ease) backwards;
}
.dash__bar-col:nth-child(4) { background: linear-gradient(180deg, var(--gold-lit), rgba(217,180,91,.30)); }

.dash__lines { display: grid; gap: .625rem; }
.dash__line { height: 8px; border-radius: var(--r-pill); background: rgba(255,255,255,.055); }
.dash__line--w70 { width: 70%; }
.dash__line--w45 { width: 45%; }
.dash__line--gold { background: linear-gradient(90deg, rgba(217,180,91,.42), rgba(217,180,91,.08)); width: 58%; }

/* Reflected floor */
.hero__visual::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: -8%;
  height: 30%;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(91,143,212,.20), transparent 68%);
  filter: blur(28px);
}

/* Floating chips over the visual */
.hero__chip--1 { top: 6%;  left: -9%; animation: float1 8s var(--ease-in-out) infinite; }
.hero__chip--2 { bottom: 16%; right: -7%; animation: float2 10.5s var(--ease-in-out) infinite; animation-delay: -2.2s; }
.hero__chip--3 { bottom: -3%; left: 8%; animation: float3 9.2s var(--ease-in-out) infinite; animation-delay: -4.5s; }

/* ==========================================================================
   2. Trust strip
   ========================================================================== */

.trust { padding-block: clamp(2.5rem, 4.5vw, 4rem); position: relative; }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--r-lg);
}
.trust__item { position: relative; text-align: center; }
.trust__item + .trust__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(.5rem, 1.2vw, 1rem));
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--glass-brd), transparent);
}

/* ==========================================================================
   3. Industries grid
   ========================================================================== */

.industries__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.2vw, 1.875rem); }

.industry-card { display: flex; flex-direction: column; min-height: 100%; }
.industry-card__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-brd);
  font-family: var(--ff-mono);
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.industry-card__meta span { display: inline-flex; align-items: center; gap: .375rem; }
.industry-card__meta svg { width: 12px; height: 12px; color: var(--gold); }

/* ==========================================================================
   4. AI band — asymmetric split with SVG data visual
   ========================================================================== */

.ai-band { position: relative; overflow: hidden; }
.ai-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(46rem 34rem at 78% 46%, rgba(79,209,197,.075), transparent 66%);
}

.ai-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.ai-visual svg { width: 100%; height: 100%; overflow: visible; }

.ai-node { fill: var(--sapphire-glow); }
.ai-node--gold { fill: var(--gold); }
.ai-link { stroke: rgba(91,143,212,.34); stroke-width: 1; fill: none; }
.ai-ring { fill: none; stroke: rgba(217,180,91,.24); stroke-width: 1; }

.ai-points { display: grid; gap: 1.75rem; margin-top: 2.5rem; }
.ai-point { display: flex; gap: 1.125rem; }
.ai-point__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: var(--r-sm);
  background: linear-gradient(145deg, rgba(79,209,197,.20), rgba(79,209,197,.05));
  border: 1px solid rgba(79,209,197,.26);
  color: var(--aurora);
}
.ai-point__icon svg { width: 20px; height: 20px; }
.ai-point__title { font-size: 1.0625rem; font-weight: 600; color: var(--platinum); margin-bottom: .375rem; }
.ai-point__text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* ==========================================================================
   5. Services trio
   ========================================================================== */

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.2vw, 1.875rem); }

.service-card { display: flex; flex-direction: column; }
.service-card__list { list-style: none; display: grid; gap: .75rem; margin-top: 1.5rem; }
.service-card__list li { display: flex; align-items: flex-start; gap: .625rem; font-size: var(--fs-sm); color: var(--muted); }
.service-card__list svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 4px; }

/* ==========================================================================
   6. Why / feature composition — layered overlap
   ========================================================================== */

.why { position: relative; }
.why__visual { position: relative; }
.why__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-brd-lit);
  box-shadow: var(--sh-3);
  transform: rotateY(6deg) rotateX(-2deg);
  transition: transform 1s var(--ease);
}
.why__visual:hover .why__img { transform: rotateY(2deg) rotateX(0deg); }
.why__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.72) contrast(1.05) brightness(.86); }

/* Give the visual column more room — at 0.75fr the framed image was small
   enough that the overlay below covered most of it. */
.why .split--wide-left { grid-template-columns: 1.06fr 0.94fr; }

/* Card that deliberately breaks the image boundary.
   Sized to clip the corner, not the subject, and given an opaque backing:
   the default .glass fill is 4.5% white, which is unreadable over a
   photograph however good the blur is. */
.why__overlay {
  position: absolute;
  right: -5%;
  bottom: -9%;
  width: min(262px, 64%);
  padding: 1.375rem 1.5rem;
  z-index: var(--z-raised);
  background: rgba(14, 22, 38, .90);
  border-color: var(--glass-brd-lit);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .why__overlay { background: rgba(14, 22, 38, .78); }
}
.why__overlay-value {
  font-family: var(--ff-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .5rem;
}
.why__overlay-label { font-size: var(--fs-xs); color: var(--muted); margin: 0; }

.why__list { list-style: none; display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.why__item { display: flex; gap: 1.125rem; }
.why__item-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: var(--r-sm);
  background: rgba(217,180,91,.09);
  border: 1px solid rgba(217,180,91,.24);
  color: var(--gold);
}
.why__item-icon svg { width: 18px; height: 18px; }
.why__item h3 { font-size: 1.0625rem; margin-bottom: .375rem; }
.why__item p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* ==========================================================================
   7. Case study teasers
   ========================================================================== */

.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.2vw, 1.875rem); }
.case-card { display: flex; flex-direction: column; gap: 1rem; }
.case-card__stat {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}
.case-card__title { font-size: 1.0625rem; font-weight: 600; color: var(--platinum); }
.case-card__text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.case-card__tag {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-brd);
  font-family: var(--ff-mono);
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   8. CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(46rem 34rem at 18% 30%, rgba(52,91,142,.40), transparent 64%),
    radial-gradient(40rem 30rem at 84% 74%, rgba(217,180,91,.13), transparent 62%),
    linear-gradient(160deg, #0C1424, #070C16);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(50rem 34rem at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(50rem 34rem at 50% 50%, #000, transparent 76%);
  will-change: transform;
}

.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--r-lg);
}

.cta-band__form { display: grid; gap: 1rem; }

/* Simple full-width CTA (inner pages) */
.cta-simple { text-align: center; padding: clamp(2.5rem, 5vw, 4rem); border-radius: var(--r-lg); }
.cta-simple .display { margin-bottom: 1.25rem; }
.cta-simple .lead { margin-inline: auto; margin-bottom: 2.25rem; }
.cta-simple__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ==========================================================================
   9. Inner page header
   ========================================================================== */

.page-head {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(44rem 30rem at 14% 0%, rgba(52,91,142,.34), transparent 62%),
    radial-gradient(36rem 26rem at 88% 18%, rgba(217,180,91,.085), transparent 60%);
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .40;
  background-image:
    linear-gradient(rgba(91,143,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,143,212,.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(44rem 30rem at 24% 30%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(44rem 30rem at 24% 30%, #000 8%, transparent 74%);
}
.page-head__inner { max-width: 58rem; }
.page-head .breadcrumb { margin-bottom: 2rem; }
.page-head .display { margin-bottom: 1.5rem; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

/* ==========================================================================
   9b. Media band — full-width graded photograph with layered glass caption
   Depth recipe: 3D tilt on the frame + inner parallax plane + glass caption
   breaking the frame edge + floating stat chip + multi-layer shadow.
   ========================================================================== */

.media-band { padding-block: clamp(1.5rem, 3.5vw, 3.25rem); }

.media-figure {
  position: relative;
  margin: 0;
  perspective: 1500px;
}

.media-figure__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-brd-lit);
  box-shadow: var(--sh-3);
  transform: rotateX(3.2deg) scale(.982);
  transition: transform 1.2s var(--ease), box-shadow 1.2s var(--ease);
}
.media-figure:hover .media-figure__frame {
  transform: rotateX(0deg) scale(1);
  box-shadow: 0 6px 14px rgba(0,0,0,.38),
              0 26px 60px rgba(0,0,0,.40),
              0 60px 140px rgba(0,0,0,.36),
              inset 0 1px 0 rgba(255,255,255,.10);
}

/* Gold light-catch along the top edge */
.media-figure__frame::before {
  content: "";
  position: absolute;
  top: 0; left: 7%; right: 7%;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(217,180,91,.55), transparent);
}

/* Scrim — keeps the caption legible over any photograph */
.media-figure__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,10,18,.28) 0%, rgba(6,10,18,.02) 34%, rgba(6,10,18,.55) 74%, rgba(6,10,18,.88) 100%),
    linear-gradient(90deg, rgba(6,10,18,.62) 0%, transparent 52%);
}

/* Inner plane carries the parallax translate; scale lives on the img so the
   two transforms cannot fight (animations.js overwrites transform wholesale). */
.media-figure__plane {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.media-figure__plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);            /* headroom so parallax never shows an edge */
  transition: transform 1.4s var(--ease);
}
.media-figure:hover .media-figure__plane img { transform: scale(1.19); }

/* Sits over a photograph, so the default 4.5%-white .glass fill is not enough
   to carry the gold eyebrow or body text. Opaque backing, blur where it is
   supported. */
.media-figure__caption {
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 3vw, 2.75rem);
  bottom: clamp(1rem, 3vw, 2.75rem);
  max-width: min(34rem, 76%);
  padding: clamp(1.125rem, 2vw, 1.625rem) clamp(1.25rem, 2.2vw, 1.875rem);
  background: rgba(12, 19, 33, .92);
  border-color: var(--glass-brd-lit);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .media-figure__caption { background: rgba(12, 19, 33, .80); }
}
.media-figure__caption .eyebrow { margin-bottom: .75rem; }
.media-figure__caption p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.65;
}

/* Floating chip on the opposite corner — layered depth */
.media-figure__chip {
  position: absolute;
  z-index: 4;
  top: clamp(1rem, 3vw, 2.25rem);
  right: clamp(1rem, 3vw, 2.25rem);
  animation: float2 11s var(--ease-in-out) infinite;
}

@media (max-width: 768px) {
  .media-figure__frame { aspect-ratio: 4 / 3; transform: none; }
  .media-figure__caption { position: static; max-width: none; margin-top: -2.5rem; margin-inline: .75rem; }
  .media-figure__chip { top: .75rem; right: .75rem; animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .media-figure__frame { transform: none !important; }
  .media-figure__plane img { transform: scale(1.14) !important; }
  .media-figure__chip { animation: none !important; }
}

/* ==========================================================================
   10. Feature / content blocks (inner pages)
   ========================================================================== */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.2vw, 1.875rem); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }

.checklist { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; }
.checklist li { display: flex; align-items: flex-start; gap: .875rem; font-size: var(--fs-sm); color: var(--mist); }
.checklist svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }

/* Process timeline */
.timeline { position: relative; display: grid; gap: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(217,180,91,.13));
  transform-origin: top;
  transform: scaleY(var(--progress, 0));
  transition: transform .9s var(--ease);
}
.timeline__step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; align-items: start; }
.timeline__marker {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--slate-deep);
  border: 1px solid var(--glass-brd-lit);
  font-family: var(--ff-mono);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  box-shadow: var(--sh-1);
  position: relative;
  z-index: 1;
}
.timeline__step.in-view .timeline__marker {
  border-color: rgba(217,180,91,.55);
  box-shadow: var(--glow-gold);
}
.timeline__title { font-size: 1.1875rem; margin-bottom: .5rem; padding-top: .875rem; }
.timeline__text { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); padding: clamp(2rem, 3.4vw, 3rem); border-radius: var(--r-lg); }

/* Contact office cards */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.2vw, 1.875rem); }
.office-card { display: flex; flex-direction: column; gap: 1rem; }
.office-card__flag {
  font-family: var(--ff-mono);
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.office-card address { font-style: normal; font-size: var(--fs-sm); color: var(--muted); line-height: 1.7; }
.office-card__contact { display: grid; gap: .625rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--glass-brd); }
.office-card__contact a { display: inline-flex; align-items: center; gap: .625rem; font-size: var(--fs-sm); color: var(--mist); min-height: 32px; transition: color var(--t-fast) var(--ease); }
.office-card__contact a:hover { color: var(--gold-lit); }
.office-card__contact svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* Job listings */
.job-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.375rem, 2.2vw, 1.875rem); }
.job-card__title { font-size: 1.1875rem; margin-bottom: .5rem; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: var(--fs-xs); color: var(--muted); }
.job-card__meta span { display: inline-flex; align-items: center; gap: .375rem; }
.job-card__meta svg { width: 13px; height: 13px; color: var(--gold); }

/* Partner tiers */
.tier-card { display: flex; flex-direction: column; gap: 1.25rem; }
.tier-card--featured { border-color: rgba(217,180,91,.34); box-shadow: var(--sh-3), var(--glow-gold); }
.tier-card__name { font-family: var(--ff-mono); font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.tier-card__headline { font-family: var(--ff-display); font-size: 2rem; line-height: 1.05; color: var(--platinum); }

/* Legal / prose pages */
.prose { max-width: 74ch; }
.prose h2 { font-size: var(--fs-h3); margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.1875rem; margin-top: 2rem; margin-bottom: .75rem; }
.prose p { margin-bottom: 1.25rem; color: var(--muted); }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; color: var(--muted); display: grid; gap: .625rem; }
.prose li { padding-left: .375rem; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--platinum); }

/* Status pages (404 / thank you) */
.status-page { min-height: 68vh; display: grid; place-items: center; text-align: center; padding-block: clamp(3rem, 8vw, 7rem); }
.status-page__code {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(217,180,91,.42);
  margin-bottom: 1.5rem;
}
.status-page__icon {
  display: grid; place-items: center;
  width: 92px; height: 92px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: rgba(74,222,128,.09);
  border: 1px solid rgba(74,222,128,.30);
  color: var(--success);
}
.status-page__icon svg { width: 42px; height: 42px; }
.status-page__links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
