html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.5;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Animated grid bg */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--w03) 1px, transparent 1px),
    linear-gradient(90deg, var(--w03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
  z-index: 0;
}

/* LEFT — text column */
.hero-text {
  padding: 5rem clamp(2.5rem, 5vw, 5rem) 5rem clamp(2.5rem, 4vw, 5rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}
.hero-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1.2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: faq-rise 0.65s 0.4s ease forwards;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 420px;
  font-size: 0.925rem;
  color: var(--w50);
  line-height: 1.65;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.55s forwards;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}
.btn-primary {
  display: inline-flex; /* ← was inline-block */
  align-items: center; /* ← vertically centers text + arrow */
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
  /* remove justify-self: end — it only works in grid, not flex */
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary) !important;
}
.btn-primary svg {
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-ghost:hover {
  border-color: 1px var(--p);
  color: var(--p);
}

/* .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
  box-shadow: 0 0 28px rgba(255, 107, 0, 0.12);
  border: 1px solid var(--primary);
} */

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Micro-stats row below CTAs */
.hero-mini-stats {
  display: flex;
  gap: 2rem;

  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.85s forwards;
}
.mini-stat {
}
.mini-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.mini-stat-label {
  display: block;
  font-size: 0.62rem;
  color: var(--w38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.mini-stat-divider {
  width: 1px;
  background: var(--w12);
  align-self: stretch;
}

/* RIGHT — image column */
.hero-image-col {
  position: relative;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  z-index: 1;
}

.hero-image-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 18%),
    linear-gradient(to top, var(--bg) 0%, transparent 15%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 10%);
  z-index: 2;
}

/* Orange accent overlay */
.hero-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 70% 50%,
    var(--o12) 0%,
    transparent 70%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.65) saturate(0.9);
  opacity: 0;
  animation: imgReveal 1.2s var(--ease) 0.6s forwards;
}

/* Floating info card */
.hero-float-card {
  position: absolute;
  bottom: 10.5rem;
  right: 2.5rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--w08);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  z-index: 5;
  width: 200px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}
.float-card-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.float-card-avatars {
  display: flex;
  gap: -8px;
  margin-bottom: 0.7rem;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  object-position: top;
  margin-right: -8px;
}
.float-card-text {
  font-size: 0.72rem;
  color: var(--w60);
  line-height: 1.4;
  margin-top: 0.5rem;
}
.float-card-text strong {
  color: var(--white);
}

/* Vertical label on image edge */
.hero-vert-label {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--w22);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
  white-space: nowrap;
  opacity: 0;
  animation: fadeLeft 0.8s var(--ease) 1.3s forwards;
}

@media (max-width: 560px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas > * {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── SECTION ── */
.teams-section {
  padding: 6rem clamp(2.5rem, 5vw, 5rem) 8rem;
}

.section-header {
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--primary);
}

/* ── SECTION HEADER H2 — matches FAQ title style ── */
.section-header h2 {
  position: relative;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(18px);
  animation: faq-rise 0.65s 0.2s ease forwards;
}
.section-header h2 span {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--w50);
  line-height: 1.6;
  margin: 0;
}

/* Filter tabs */
.dept-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.dept-tab {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w50);
  border: 1px solid var(--w08);
  background: transparent;
  border-radius: 2px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.dept-tab:hover {
  border-color: var(--o35);
  color: var(--primary);
  background: var(--o06);
}
.dept-tab.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--o06);
}

/* Dept tabs full width on mobile */
@media (max-width: 600px) {
  .dept-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .dept-tab {
    width: 100%;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.58rem;
  }
}

/* GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── RESPONSIVE GRID BREAKPOINTS ── */
@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* CARD */
.card {
  position: relative;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--s);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition:
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
}

/* Image wrapper — animate this, not the <img> directly */
.card-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: height;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition:
    filter 0.55s var(--ease),
    transform 0.55s var(--ease);
  filter: brightness(0.55) saturate(0.8);
  will-change: filter;
}

/* Gradient overlay — lives inside .card-img-wrap so it clips with the image */
.card-img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.5) 10%,
    transparent 100%
  );
  z-index: 2;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.card-dept {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 5;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--o35);
  border-radius: 2px;
  padding: 0.3rem 0.7rem;
  backdrop-filter: blur(6px);
  transition: opacity 0.3s var(--ease);
}

.card-always {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 2rem;
  z-index: 3;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s var(--ease);
}

.card-number {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.card-name {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}
.card-position {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.card-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.card-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--w22);
  border-radius: 50%;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.card-socials a:hover {
  border-color: var(--primary);
  background: var(--o12);
}
.card-socials svg {
  width: 12px;
  height: 12px;
  stroke: var(--w60);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* HOVER PANEL */
.card-hover {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(-s);
  z-index: 4;
  /* Hidden on all devices by default — only slides in on true pointer hover */
  transform: translateY(100%);
  visibility: hidden;
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.55s;
  border-top: 1px solid var(--o12);
}

/* ── Only activate hover effects on real pointer (mouse) devices ── */
/* This prevents the double-name bug on touch/mobile screens         */
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.7),
      0 0 0 1px var(--o20);
  }
  .card:hover .card-img-wrap {
    height: 55%;
  }
  .card:hover .card-img {
    filter: brightness(0.75) saturate(0.65);
    transform: scale(1.02);
  }
  .card:hover .card-img-overlay {
    opacity: 0;
  }
  .card:hover .card-dept {
    opacity: 0;
  }
  .card:hover .card-always {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  .card:hover .card-hover {
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }
  .card:hover .card-hover-divider {
    transform: scaleX(1);
  }
}

.card-hover-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  gap: 1rem;
}
.card-hover-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.card-hover-role {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.card-hover-yrs {
  font-family: var(--mono);
  font-size: 0.55rem;
  color: var(--w38);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--w08);
  border-radius: 2px;
  flex-shrink: 0;
}

.card-hover-divider {
  width: 36px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 0.8rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease) 0.25s;
}

.card-hover-desc {
  font-size: 0.8rem;
  color: var(--w60);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.card-hover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--o20);
  background: var(--o06);
  border-radius: 2px;
  padding: 0.2rem 0.45rem;
}

.card-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.25s;
}
.card-hover-cta:hover {
  gap: 0.9rem;
}
.card-hover-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}
.card-hover-cta:hover svg {
  transform: translateX(4px);
}

/* ── SCROLL CUE — teams hero override ── */
.hero .hero-scroll-cue {
  bottom: 7.5rem;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.4s forwards;
}
.scroll-hint span {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--w38);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── FOOTER ── */
.footer-strip {
  border-top: 1px solid var(--w08);
  padding: 2rem clamp(2.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-strip p {
  color: var(--w38);
  font-size: 0.8rem;
  margin: 0;
}
.footer-strip a {
  color: var(--w38);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-strip a:hover {
  color: var(--primary);
}

/* ── ANIMATIONS ── */
@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
@keyframes imgReveal {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* faq-rise keyframe (used by section-header h2) */
@keyframes faq-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.card.reveal {
  transform: translateY(50px);
}
.card.reveal.in-view {
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image-col {
    min-height: 50vh;
  }
  .hero-text {
    padding: 3rem clamp(2.5rem, 5vw, 5rem);
    text-align: center;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 5.5vw, 2.4rem);
  }
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sub {
    text-align: center;
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-mini-stats {
    justify-content: center;
  }
  .nav {
    padding: 0 1.5rem;
  }

  /* Section header — center on tablet */
  .section-header {
    max-width: 100%;
    text-align: center;
  }
  .section-header h2 {
    font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  }
  .section-tag {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .teams-section {
    padding: 4rem clamp(2.5rem, 5vw, 5rem) 5rem;
  }
  .card {
    height: 460px;
  }
  .footer-strip {
    padding: 2rem clamp(2.5rem, 5vw, 5rem);
  }
  .hero-mini-stats {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  /* Section header — center on mobile */
  .section-header {
    max-width: 100%;
    text-align: center;
  }
  .section-header h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }
  .section-tag {
    justify-content: center;
  }
  .section-header p {
    text-align: center;
  }

  /* Hero h1 mobile */
  .hero h1 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }
  .hero-text {
    padding: 2.5rem 1.5rem;
  }
}

/* Work With Us Section */
.work-section {
  position: relative;
  padding: clamp(5rem, 8vw, 6.25rem) clamp(2.5rem, 5vw, 5rem);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 0, 0.1) 0%,
      rgba(255, 107, 0, 0) 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 50%
    ),
    var(--s);
}

.work-section .container {
  width: min(1350px, 100%);
  margin: 0 auto;
}

.work-content {
  position: relative;
  text-align: center;
  padding: clamp(2.2rem, 4.5vw, 4rem) clamp(1.1rem, 3vw, 2.5rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 0, 0.26);
  background:
    linear-gradient(
      160deg,
      rgba(255, 107, 0, 0.12) 0%,
      rgba(255, 107, 0, 0.03) 44%,
      rgba(255, 255, 255, 0.02) 100%
    ),
    var(--s);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.4),
    0 2px 14px rgba(255, 107, 0, 0.08);
  overflow: hidden;
}

.work-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
}

.work-content h2 {
  position: relative;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.work-content .highlight {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-content p {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--w80);
}

.work-buttons {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.work-buttons .btn-primary,
.work-buttons .btn-secondary {
  min-width: 194px;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.work-buttons .btn-secondary {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--w80);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
}

.work-buttons .btn-secondary:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 992px) {
  .work-content h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .work-buttons {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .work-section {
    padding: clamp(3.75rem, 11vw, 4.4rem) 1rem;
  }

  .work-content {
    border-radius: 16px;
    padding: 2rem 1rem;
  }

  .work-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .work-buttons .btn-primary,
  .work-buttons .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}
