:root {
  --black: #080b12;
  --soft: #0d1117;
  --panel: #0d1421;
  --panel-2: #101a2b;
  --blue: #00aaff;
  --violet: #7b2fff;
  --text: #f4f8ff;
  --muted: #a0aabf;
  --line: #1e2a40;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(0, 170, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 80% 35%, rgba(123, 47, 255, 0.1), transparent 20rem);
  opacity: 0.9;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.075;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.68'/%3E%3C/svg%3E");
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(8, 11, 18, 0.74);
  border-bottom: 1px solid rgba(0, 170, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.36);
}

.nav-shell {
  width: min(var(--max), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1rem;
  white-space: nowrap;
}

.logo span {
  position: relative;
}

.logo span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.52rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 170, 255, 0.5);
  background: rgba(0, 170, 255, 0.12);
  color: white;
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.22);
}

.nav-cta {
  padding: 0.75rem 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-dark {
  background: var(--black);
}

.section-soft {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 20px 96px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 170, 255, 0.45);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.94;
  text-shadow: 0 0 56px rgba(0, 170, 255, 0.24);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 660px;
  margin: 26px auto 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 1.35rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 170, 255, 0.88);
  box-shadow: 0 0 38px rgba(0, 170, 255, 0.38);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #3fc1ff);
  color: #03101a;
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.btn-ghost {
  background: rgba(13, 20, 33, 0.46);
  color: white;
}

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 650ms ease-out forwards;
}

.hero-art,
.hero-art * {
  position: absolute;
  pointer-events: none;
}

.poly-orbit {
  inset: 50% auto auto 50%;
  width: min(82vw, 870px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 170, 255, 0.16);
  clip-path: polygon(22% 4%, 78% 8%, 100% 48%, 72% 94%, 18% 82%, 0 38%);
  background:
    linear-gradient(130deg, rgba(0, 170, 255, 0.1), transparent 45%),
    linear-gradient(300deg, rgba(123, 47, 255, 0.16), transparent 58%);
  filter: drop-shadow(0 0 48px rgba(0, 170, 255, 0.18));
  animation: driftRotate 28s linear infinite;
}

.poly-two {
  width: min(64vw, 680px);
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: 0.56;
}

.mesh {
  left: 50%;
  top: 50%;
  width: 28rem;
  height: 28rem;
  background:
    linear-gradient(60deg, transparent 48%, rgba(0, 170, 255, 0.36) 49%, transparent 51%),
    linear-gradient(120deg, transparent 48%, rgba(123, 47, 255, 0.34) 49%, transparent 51%);
  clip-path: polygon(18% 0, 100% 18%, 80% 100%, 0 70%);
  opacity: 0.2;
  transform: translate(-50%, -50%);
}

.mesh-b {
  transform: translate(-50%, -50%) rotate(38deg) scale(0.72);
  opacity: 0.3;
}

.hero-grid {
  inset: auto 0 0;
  height: 48%;
  background-image:
    linear-gradient(rgba(0, 170, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.09) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(520px) rotateX(66deg);
  transform-origin: bottom;
  opacity: 0.25;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--soft));
  pointer-events: none;
}

.load-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: loadReveal 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.load-reveal:nth-child(2) {
  animation-delay: 120ms;
}

.load-reveal:nth-child(3) {
  animation-delay: 240ms;
}

.load-reveal:nth-child(4) {
  animation-delay: 360ms;
}

.stats-band {
  background: var(--soft);
  border-top: 1px solid rgba(0, 170, 255, 0.2);
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.stats-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  min-height: 154px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  color: white;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  text-shadow: 0 0 32px rgba(0, 170, 255, 0.36);
}

.stat-card span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 112px 20px;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.roster-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 20, 33, 0.96), rgba(9, 15, 25, 0.96));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.player-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 22px var(--blue);
  transition: transform 180ms ease;
}

.player-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 170, 255, 0.55);
  box-shadow: 0 18px 60px rgba(0, 170, 255, 0.16);
}

.player-card:hover::after {
  transform: scaleX(1);
}

.avatar {
  position: relative;
  height: 210px;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 170, 255, 0.42), transparent 30%),
    linear-gradient(135deg, rgba(0, 170, 255, 0.16), rgba(123, 47, 255, 0.13)),
    #090e18;
}

.avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 112px;
  height: 144px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #1a2840, #05070c);
  clip-path: polygon(50% 0, 70% 18%, 84% 56%, 100% 100%, 0 100%, 16% 56%, 30% 18%);
  box-shadow: 0 0 38px rgba(0, 170, 255, 0.22);
}

.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
  background: #111a2b;
  clip-path: polygon(50% 0, 94% 28%, 82% 86%, 18% 86%, 6% 28%);
  border: 1px solid rgba(0, 170, 255, 0.24);
}

.avatar span {
  position: absolute;
  inset: 18px;
  background-image:
    linear-gradient(60deg, transparent 45%, rgba(0, 170, 255, 0.18) 46%, transparent 48%),
    linear-gradient(130deg, transparent 45%, rgba(123, 47, 255, 0.18) 46%, transparent 48%);
}

.avatar-two { filter: hue-rotate(24deg); }
.avatar-three { filter: hue-rotate(62deg); }
.avatar-four { filter: hue-rotate(112deg); }
.avatar-five { filter: hue-rotate(192deg); }
.avatar-six { filter: hue-rotate(280deg); }

.player-card p {
  margin: 8px 0 20px;
}

.player-card strong {
  color: white;
}

.service-split {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.service-split::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(0, 170, 255, 0.7), transparent);
  box-shadow: 0 0 24px var(--blue);
}

.column-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.mini-icon,
.service-item > span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--blue);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 16px rgba(0, 170, 255, 0.54);
}

.mini-icon {
  width: 28px;
  height: 28px;
}

.service-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, color 180ms ease;
}

.service-item:hover {
  transform: translateX(8px);
}

.service-item strong {
  color: white;
}

.service-item p {
  margin: 4px 0 0;
  font-size: 0.94rem;
}

.marquee {
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 28px 0;
  animation: marquee 25s linear infinite;
}

.logo-track span {
  min-width: 210px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(244, 248, 255, 0.42);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  text-align: center;
  filter: grayscale(1);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.logo-track span:hover {
  color: white;
  border-color: rgba(0, 170, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.16);
  filter: grayscale(0);
}

.case-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13, 20, 33, 0.94), rgba(8, 11, 18, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--blue);
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.7);
}

.case-art {
  min-height: 460px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 32%, rgba(0, 170, 255, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(0, 170, 255, 0.12), rgba(123, 47, 255, 0.2)),
    #090e18;
  overflow: hidden;
  position: relative;
}

.case-art::before,
.case-art::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 170, 255, 0.22);
  clip-path: polygon(12% 0, 100% 22%, 76% 100%, 0 78%);
}

.case-art::after {
  inset: 18%;
  transform: rotate(30deg);
  border-color: rgba(123, 47, 255, 0.24);
}

.silhouette {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  height: 350px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #203454, #03050a);
  clip-path: polygon(50% 0, 65% 11%, 72% 28%, 82% 52%, 100% 100%, 0 100%, 18% 52%, 28% 28%, 35% 11%);
  filter: drop-shadow(0 0 42px rgba(0, 170, 255, 0.34));
}

.timeline {
  margin: 28px 0;
}

.timeline div {
  padding: 18px 0 18px 24px;
  border-left: 1px solid rgba(0, 170, 255, 0.35);
  position: relative;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px var(--blue);
}

.timeline span,
.case-link {
  color: white;
  font-weight: 800;
}

.timeline p {
  margin: 6px 0 0;
}

.case-link {
  display: inline-block;
  color: var(--blue);
}

.form-shell {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 1px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.75), rgba(123, 47, 255, 0.42), rgba(0, 170, 255, 0.18));
  box-shadow: 0 0 64px rgba(0, 170, 255, 0.18);
}

.contact-form,
.success-state {
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.98);
  padding: clamp(22px, 4vw, 36px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.hidden {
  display: none;
}

.contact-form label > span,
.role-toggle legend {
  color: white;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #080d16;
  color: white;
  padding: 0.95rem 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 170, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.14);
}

.contact-form small {
  min-height: 1rem;
  color: #ff6b8b;
}

.role-toggle {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.role-toggle legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.role-toggle label {
  cursor: pointer;
}

.role-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-toggle span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  background: #080d16;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.role-toggle input:checked + span {
  color: #03101a;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.3);
}

.submit-btn {
  width: 100%;
  border: 0;
}

.success-state {
  min-height: 390px;
  display: grid;
  place-items: center;
  text-align: center;
}

.success-state[hidden] {
  display: none;
}

.checkmark {
  width: 82px;
  height: 82px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(0, 170, 255, 0.36);
  position: relative;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  width: 25px;
  height: 42px;
  border: solid var(--blue);
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
}

.success-state h3 {
  margin-top: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.confidential {
  text-align: center;
  font-size: 0.9rem;
  margin: 18px 0 0;
}

.footer {
  background: #06080d;
  padding: 52px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer a:not(.logo) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
}

.footer a:hover {
  color: var(--blue);
}

.copyright {
  margin: 42px auto 0;
  text-align: center;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(0, 170, 255, 0.26);
  }
  50% {
    box-shadow: 0 0 42px rgba(0, 170, 255, 0.48);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes driftRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(8, 11, 18, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-100%);
    transition: transform 260ms ease;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-family: "Syne", sans-serif;
    text-align: center;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-cta {
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    justify-self: center;
  }

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

  .roster-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }

  .player-card {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .service-split,
  .case-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-split::before {
    display: none;
  }

  .case-art {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 92vh;
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .stats-grid {
    width: 100%;
  }

  .stat-card {
    min-height: 132px;
    padding: 10px;
  }

  .section {
    padding: 82px 16px;
  }

  .role-toggle {
    grid-template-columns: 1fr;
  }

  .case-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
