/* Homcoz — household warmth + professional trust */
:root {
  --color-bg: #faf7f2;
  --color-bg-warm: #f3ebe0;
  --color-surface: #ffffff;
  --color-ink: #1c1917;
  --color-ink-muted: #57534e;
  --color-accent: #0d5c4d;
  --color-accent-light: #e8f5f1;
  --color-gold: #b8860b;
  --color-border: rgba(28, 25, 23, 0.08);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 12px 40px rgba(28, 25, 23, 0.08);
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-bg);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-img {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
}

.logo-img--footer {
  height: 1.85rem;
  max-width: 9rem;
}

.recruiter-page .logo-img--recruiter-nav {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(145deg, var(--color-accent), #0a4a3f);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.logo-mark-sm {
  width: 2rem;
  height: 2rem;
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--color-ink);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--color-ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-accent);
}

.nav-list a.is-active:not(.nav-cta) {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-list a.is-active:not(.nav-cta)::after {
  content: "";
  display: block;
  margin-top: 0.2rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-list a.is-active:not(.nav-cta)::after {
    display: none;
  }

  .nav-list a.is-active:not(.nav-cta) {
    background: var(--color-accent-light);
  }
}

.nav-cta.is-active {
  box-shadow: 0 0 0 2px var(--color-surface), 0 0 0 4px var(--color-accent);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.08);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.25s, visibility 0.25s;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  .nav-list a:hover {
    background: var(--color-accent-light);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(13, 92, 77, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(184, 134, 11, 0.08), transparent 50%),
    var(--color-bg);
  pointer-events: none;
}

/* Animated wash behind “Welcome home…” */
.hero-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-anim-cols {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0.72;
}

.hero-anim-col {
  flex: 1;
  min-width: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 92, 77, 0) 0%,
    rgba(13, 92, 77, 0.14) 45%,
    rgba(184, 134, 11, 0.1) 100%
  );
  transform-origin: 50% 100%;
  animation: hero-col-breathe 6.5s var(--ease) infinite;
}

.hero-anim-col--1 {
  animation-delay: 0s;
}

.hero-anim-col--2 {
  animation-delay: -2.25s;
  background: linear-gradient(
    180deg,
    rgba(13, 92, 77, 0) 10%,
    rgba(232, 245, 241, 0.85) 50%,
    rgba(13, 92, 77, 0.12) 100%
  );
}

.hero-anim-col--3 {
  animation-delay: -4.5s;
}

.hero-anim-col--4 {
  animation-delay: -6.75s;
  background: linear-gradient(
    180deg,
    rgba(184, 134, 11, 0.06) 0%,
    rgba(13, 92, 77, 0.1) 55%,
    rgba(13, 92, 77, 0) 100%
  );
}

@keyframes hero-col-breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.88) translateY(6%);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.12) translateY(-4%);
  }
}

.hero-anim-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.58;
  animation: hero-blob-drift 14s ease-in-out infinite;
}

.hero-anim-blob--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(13, 92, 77, 0.35) 0%, transparent 70%);
}

.hero-anim-blob--2 {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  bottom: -5%;
  right: -5%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.28) 0%, transparent 68%);
  animation-delay: -6s;
  animation-duration: 18s;
}

.hero-anim-blob--3 {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  top: 35%;
  left: 40%;
  background: radial-gradient(circle, rgba(13, 92, 77, 0.22) 0%, rgba(232, 245, 241, 0.5) 45%, transparent 65%);
  animation-delay: -12s;
  animation-duration: 12s;
  opacity: 0.48;
}

@keyframes hero-blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(6%, 5%) scale(1.08);
  }
  50% {
    transform: translate(-4%, 8%) scale(0.94);
  }
  75% {
    transform: translate(-7%, -4%) scale(1.05);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr minmax(300px, 1fr);
  }
}

/* Looping conic “living” border around hero photo */
.hero-photo-ring {
  position: relative;
  border-radius: calc(var(--radius-lg) + 5px);
  padding: 4px;
  overflow: hidden;
  align-self: center;
  width: 100%;
  max-width: 100%;
}

html.motion-ok .hero-photo-ring {
  animation: hero-ring-drop-glow 5s ease-in-out infinite;
}

@keyframes hero-ring-drop-glow {
  0%,
  100% {
    filter: drop-shadow(0 14px 32px rgba(13, 92, 77, 0.18));
  }
  50% {
    filter: drop-shadow(0 18px 48px rgba(13, 92, 77, 0.32)) drop-shadow(0 0 24px rgba(230, 194, 41, 0.12));
  }
}

.hero-photo-ring-spin {
  position: absolute;
  inset: -60%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    #0d5c4d,
    #1fa090,
    #f0d060,
    #0d5c4d,
    #6ee7d8,
    #b8860b,
    #0d5c4d
  );
  animation: hero-conic-spin 9s linear infinite;
}

@keyframes hero-conic-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-photo-ring .hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: none;
  box-shadow: var(--shadow-md);
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* Floating sparkles (hero, loop) */
.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-sparkle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(255, 255, 255, 0.5) 35%, transparent 65%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: hero-twinkle 4s ease-in-out infinite;
}

.hero-sparkle:nth-child(1) {
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.hero-sparkle:nth-child(2) {
  top: 22%;
  left: 38%;
  animation-delay: 0.4s;
  animation-duration: 3.2s;
}

.hero-sparkle:nth-child(3) {
  top: 8%;
  left: 55%;
  animation-delay: 0.9s;
}

.hero-sparkle:nth-child(4) {
  top: 42%;
  left: 12%;
  animation-delay: 1.2s;
  animation-duration: 3.6s;
}

.hero-sparkle:nth-child(5) {
  top: 55%;
  left: 48%;
  animation-delay: 0.2s;
}

.hero-sparkle:nth-child(6) {
  top: 68%;
  left: 22%;
  animation-delay: 1.8s;
  animation-duration: 4.2s;
}

.hero-sparkle:nth-child(7) {
  top: 18%;
  left: 72%;
  animation-delay: 2.1s;
}

.hero-sparkle:nth-child(8) {
  top: 38%;
  left: 88%;
  animation-delay: 0.6s;
  animation-duration: 3s;
}

.hero-sparkle:nth-child(9) {
  top: 78%;
  left: 65%;
  animation-delay: 1.4s;
}

.hero-sparkle:nth-child(10) {
  top: 28%;
  left: 28%;
  animation-delay: 2.6s;
  animation-duration: 3.8s;
}

.hero-sparkle:nth-child(11) {
  top: 62%;
  left: 78%;
  animation-delay: 0.8s;
}

.hero-sparkle:nth-child(12) {
  top: 48%;
  left: 58%;
  animation-delay: 2.2s;
  animation-duration: 4.5s;
}

@keyframes hero-twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  35% {
    opacity: 0.95;
    transform: scale(1);
  }
  55% {
    opacity: 0.35;
    transform: scale(0.75);
  }
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

html.motion-ok .hero-figure {
  animation: hero-figure-rise 1s var(--ease) both;
}

html.motion-ok .hero-figure img {
  animation: hero-figure-float 7s ease-in-out 1.1s infinite;
}

@keyframes hero-figure-rise {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-figure-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

html.motion-ok .hero-content > * {
  animation: hero-line-in 0.75s var(--ease) backwards;
}

html.motion-ok .hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}

html.motion-ok .hero-content > *:nth-child(2) {
  animation-delay: 0.16s;
}

html.motion-ok .hero-content > *:nth-child(3) {
  animation-delay: 0.24s;
}

html.motion-ok .hero-content > *:nth-child(4) {
  animation-delay: 0.32s;
}

html.motion-ok .hero-content > *:nth-child(5) {
  animation-delay: 0.4s;
}

html.motion-ok .hero-content > *:nth-child(6) {
  animation-delay: 0.48s;
}

@keyframes hero-line-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  max-width: 40rem;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 92, 77, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 92, 77, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-surface);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1rem 0.6rem 0.65rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  color: var(--color-ink-muted);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-subtitle {
  margin: 0;
  color: var(--color-ink-muted);
}

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* About */
.about {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.about-copy .section-lead {
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-card {
  padding: 1.35rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.stat-card-wide {
  grid-column: 1 / -1;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}

/* Services */
.services {
  background: var(--color-bg-warm);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

/* Recognition */
.recognition {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.recognition-inner {
  max-width: 52rem;
  margin-inline: auto;
}

.recognition-inner--split {
  max-width: min(72rem, 100%);
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .recognition-inner--split {
    grid-template-columns: 1fr 1.12fr;
  }
}

.recognition-side-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.recognition-side-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recognition-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #0d5c4d 0%, #0a4a52 100%);
  color: #f5f5f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.recognition-label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.recognition-quote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  border: none;
  padding: 0;
}

.recognition-quote strong {
  font-weight: 600;
  color: #fff;
}

.recognition-quote em {
  font-style: italic;
  opacity: 0.95;
}

.recognition-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.55;
}

/* Contact */
.contact-grid {
  align-items: stretch;
}

.contact-hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

.contact-card {
  margin: 0;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-style: normal;
}

.contact-card-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-card-title--spaced {
  margin-top: 1.5rem;
}

.contact-phone,
.contact-email-line {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-phone a,
.contact-email-line a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-phone a:hover,
.contact-phone a:focus-visible,
.contact-email-line a:hover,
.contact-email-line a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-company {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-lines {
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.nowrap {
  white-space: nowrap;
}

.contact-footnote {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-ink-muted);
  opacity: 0.9;
}

/* Footer */
.site-footer {
  padding: 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-ink);
  color: #a8a29e;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #e7e5e4;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
}

/* —— Full site: home extras —— */
.trust-strip {
  padding-block: 2rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  padding: 0.5rem;
}

.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}

.preview-section {
  background: var(--color-bg);
}

.preview-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.preview-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.preview-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.preview-card:hover .preview-thumb img {
  transform: scale(1.04);
}

.preview-body {
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.preview-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.preview-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
  flex: 1;
}

.preview-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.recognition--compact {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.btn-on-dark {
  margin-top: 1.25rem;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0a4a3f 100%);
  color: #f5f5f4;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

html.motion-ok .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    transparent 90%
  );
  animation: cta-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-sheen {
  0%,
  100% {
    transform: translateX(-35%) skewX(-12deg);
    opacity: 0.4;
  }
  50% {
    transform: translateX(35%) skewX(-12deg);
    opacity: 1;
  }
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
}

.cta-text {
  margin: 0;
  opacity: 0.92;
  font-size: 1rem;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Footer expanded */
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand-block {
  max-width: 22rem;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #a8a29e;
}

.footer-nav-title {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #78716c;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;
  padding: 0.25rem 0;
  color: #d6d3d1;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-address-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a8a29e;
}

.footer-email {
  margin: 0.75rem 0 0;
}

.footer-email a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e7e5e4;
  text-decoration: none;
}

.footer-email a:hover,
.footer-email a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-phone {
  margin: 0.35rem 0 0;
}

.footer-phone a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e7e5e4;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-phone a:hover,
.footer-phone a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Inner pages */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.page-hero--dark {
  background: linear-gradient(135deg, #0d5c4d 0%, #0a3d3a 100%);
  border-bottom: none;
}

.page-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-ink);
}

.page-title--on-dark {
  color: #fff;
}

.page-intro {
  margin: 0;
  max-width: 40rem;
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.page-intro a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.page-intro a:hover,
.page-intro a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-intro--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--with-banner .page-hero-banner {
  margin: 2rem 0 0;
}

.page-hero-banner {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.page-hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(320px, 42vw);
  object-fit: cover;
}

.page-hero-banner--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .page-hero-banner--split {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: var(--color-border);
  }
}

.page-hero-banner--split .page-hero-banner-half {
  max-height: min(300px, 40vw);
  min-height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-recruit-highlight {
  background: linear-gradient(135deg, rgba(13, 92, 77, 0.09) 0%, rgba(184, 134, 11, 0.07) 100%);
  border-block: 1px solid var(--color-border);
  padding: 1.15rem 0;
}

.service-recruit-highlight-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.5rem;
}

.service-recruit-highlight-label {
  margin: 0;
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), #0a4a3f);
  border-radius: 999px;
}

.service-recruit-highlight-text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.98rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.service-recruit-highlight-text a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.service-recruit-highlight-text a:hover,
.service-recruit-highlight-text a:focus-visible {
  text-decoration: underline;
}

.service-detail-badge {
  margin: 0;
  padding: 1.25rem 2rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.service-detail-card--featured {
  border-color: rgba(13, 92, 77, 0.25);
  box-shadow: 0 10px 36px rgba(13, 92, 77, 0.1);
}

.service-detail-card--featured .service-detail-title {
  padding-top: 0.35rem;
}

#gaming-recruiting {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.hero-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.about-profile-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-profile-grid {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: center;
  }
}

.about-profile-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.about-profile-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-profile-copy.prose-block {
  max-width: none;
}

.prose-block {
  max-width: 42rem;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.section--muted {
  background: var(--color-bg-warm);
}

.section-title--center {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-left: 3px solid var(--color-accent-light);
}

.timeline-item {
  position: relative;
  padding: 0 0 1.5rem 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}

.timeline-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  margin: 0;
  color: var(--color-ink-muted);
}

.timeline-note {
  margin: 1.25rem 0 0 1.5rem;
  font-size: 0.95rem;
}

.timeline-note a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.timeline-note a:hover {
  text-decoration: underline;
}

/* Services detail */
.service-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.service-detail-card {
  padding: 0 0 2rem;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.service-detail-photo {
  margin: 0;
  line-height: 0;
  background: var(--color-bg-warm);
}

.service-detail-photo img {
  display: block;
  width: 100%;
  height: min(240px, 42vw);
  object-fit: cover;
}

.service-detail-title {
  margin: 0 0 0.5rem;
  padding: 1.5rem 2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.service-detail-lead {
  margin: 0 0 1rem;
  padding: 0 2rem;
  color: var(--color-ink-muted);
}

.service-detail-extra {
  margin: 0 0 1rem;
  padding: 0 2rem;
  font-size: 0.98rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.service-detail-extra--tight {
  margin-bottom: 0.75rem;
}

.service-detail-subhead {
  margin: 1.75rem 0 0.65rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.service-detail-card .service-detail-subhead:first-of-type {
  margin-top: 1.25rem;
}

.service-detail-footnote {
  margin: 1.25rem 0 0;
  padding: 0 2rem 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.service-detail-footnote a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.service-detail-footnote a:hover,
.service-detail-footnote a:focus-visible {
  text-decoration: underline;
}

.bullet-list {
  margin: 0;
  padding: 0 2rem 0 3.25rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: steps;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-weight: 700;
  border-radius: 10px;
  font-size: 1rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
}

.step-card a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.step-card a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-wrap {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-ink);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--color-accent);
}

.faq-trigger::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  padding: 0 0 1.15rem;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-panel p {
  margin: 0;
}

.faq-panel a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-panel a:hover {
  text-decoration: underline;
}

.faq-panel[hidden] {
  display: none;
}

/* Recognition page */
.recognition-page-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .recognition-page-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

.recognition-card--page {
  margin: 0;
}

.recognition-aside {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.recognition-aside-photo {
  margin: 0 0 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.recognition-aside-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.aside-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.aside-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.aside-list li {
  margin-bottom: 0.65rem;
}

.aside-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

.def-list {
  display: grid;
  gap: 0.75rem 1.5rem;
  margin: 1.5rem 0 0;
}

@media (min-width: 500px) {
  .def-list {
    grid-template-columns: auto 1fr;
  }
}

.def-list dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
}

.def-list dd {
  margin: 0;
}

/* Contact page */
.contact-page-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-form .field {
  margin-bottom: 1.15rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.req {
  color: var(--color-accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  min-height: 1.35em;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card--flat {
  box-shadow: none;
}

.map-card {
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.map-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--color-ink-muted);
}

.contact-banner {
  margin: 0 0 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}

/* Legal */
.legal-prose {
  max-width: 40rem;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.legal-block p {
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-toc {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.legal-toc-title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.legal-toc-list {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.55;
}

.legal-toc-list a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.legal-toc-list a:hover {
  text-decoration: underline;
}

.legal-back {
  margin: 2rem 0 0;
}

.legal-back a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-back a:hover {
  text-decoration: underline;
}

/* 404 */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--color-bg);
}

.error-inner {
  text-align: center;
  max-width: 24rem;
}

.error-code {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.error-title {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
}

.error-text {
  margin: 0 0 1.5rem;
  color: var(--color-ink-muted);
}

.error-illustration {
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* —— Motion & life (honours prefers-reduced-motion via JS: no motion-ok class) —— */
html.motion-ok body {
  background-color: var(--color-bg);
  background-image: linear-gradient(
    125deg,
    #faf7f2 0%,
    #efe8de 22%,
    #e5f2ed 48%,
    #f2ebe3 72%,
    #faf7f2 100%
  );
  background-size: 280% 280%;
  animation: homcoz-bg-drift 18s ease-in-out infinite;
}

@keyframes homcoz-bg-drift {
  0%,
  100% {
    background-position: 0% 30%;
  }
  50% {
    background-position: 100% 70%;
  }
}

html.motion-ok .site-header {
  animation: header-settle 0.55s var(--ease) both;
}

@keyframes header-settle {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.motion-ok .logo {
  transition: transform 0.35s var(--ease);
}

html.motion-ok .logo:hover {
  transform: scale(1.03);
}

@media (min-width: 769px) {
  html.motion-ok .nav-list a:not(.nav-cta) {
    position: relative;
  }

  html.motion-ok .nav-list a:not(.nav-cta)::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
    border-radius: 1px;
  }

  html.motion-ok .nav-list a:not(.nav-cta):hover::before,
  html.motion-ok .nav-list a:not(.nav-cta):focus-visible::before {
    transform: scaleX(1);
  }

  html.motion-ok .nav-list a.is-active:not(.nav-cta)::before {
    transform: scaleX(1);
  }

  html.motion-ok .nav-list a.is-active:not(.nav-cta)::after {
    display: none;
  }
}

html.motion-ok .btn-primary {
  animation: btn-pulse-glow 2.8s ease-in-out infinite;
}

@keyframes btn-pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(13, 92, 77, 0.28);
  }
  50% {
    box-shadow:
      0 6px 32px rgba(13, 92, 77, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}

html.motion-ok .btn-primary:hover,
html.motion-ok .btn-primary:focus-visible {
  animation: none;
}

html.motion-ok .btn {
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    filter 0.25s,
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
}

html.motion-ok .value-card,
html.motion-ok .stat-card,
html.motion-ok .step-card,
html.motion-ok .faq-item {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

html.motion-ok .value-card:hover,
html.motion-ok .stat-card:hover,
html.motion-ok .step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Fixed ambient blobs on inner pages */
.site-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.4;
  animation: ambient-blob 20s ease-in-out infinite;
}

.site-ambient-blob--a {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(13, 92, 77, 0.35) 0%, transparent 68%);
}

.site-ambient-blob--b {
  width: min(55vw, 380px);
  height: min(55vw, 380px);
  bottom: 5%;
  left: -12%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.22) 0%, transparent 65%);
  animation-delay: -7s;
  animation-duration: 24s;
}

.site-ambient-blob--c {
  width: min(45vw, 320px);
  height: min(45vw, 320px);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(13, 92, 77, 0.15) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 16s;
  opacity: 0.3;
}

@keyframes ambient-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-4%, 6%) scale(1.06);
  }
  66% {
    transform: translate(5%, -3%) scale(0.94);
  }
}

/* Scroll reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
}

html.motion-ok .reveal-on-scroll.is-revealed .preview-grid > li {
  animation: stagger-in 0.6s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .preview-grid > li:nth-child(1) {
  animation-delay: 0.06s;
}

html.motion-ok .reveal-on-scroll.is-revealed .preview-grid > li:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .preview-grid > li:nth-child(3) {
  animation-delay: 0.22s;
}

html.motion-ok .reveal-on-scroll.is-revealed .service-detail-list > li {
  animation: stagger-in 0.65s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .service-detail-list > li:nth-child(1) {
  animation-delay: 0.05s;
}

html.motion-ok .reveal-on-scroll.is-revealed .service-detail-list > li:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .service-detail-list > li:nth-child(3) {
  animation-delay: 0.23s;
}

html.motion-ok .reveal-on-scroll.is-revealed .service-detail-list > li:nth-child(4) {
  animation-delay: 0.32s;
}

html.motion-ok .reveal-on-scroll.is-revealed .values-grid > li {
  animation: stagger-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .values-grid > li:nth-child(1) {
  animation-delay: 0.05s;
}

html.motion-ok .reveal-on-scroll.is-revealed .values-grid > li:nth-child(2) {
  animation-delay: 0.12s;
}

html.motion-ok .reveal-on-scroll.is-revealed .values-grid > li:nth-child(3) {
  animation-delay: 0.19s;
}

html.motion-ok .reveal-on-scroll.is-revealed .steps-grid > li {
  animation: stagger-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .steps-grid > li:nth-child(1) {
  animation-delay: 0.05s;
}

html.motion-ok .reveal-on-scroll.is-revealed .steps-grid > li:nth-child(2) {
  animation-delay: 0.12s;
}

html.motion-ok .reveal-on-scroll.is-revealed .steps-grid > li:nth-child(3) {
  animation-delay: 0.19s;
}

html.motion-ok .reveal-on-scroll.is-revealed .trust-strip-inner .trust-item {
  animation: stagger-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .trust-strip-inner .trust-item:nth-child(1) {
  animation-delay: 0.04s;
}

html.motion-ok .reveal-on-scroll.is-revealed .trust-strip-inner .trust-item:nth-child(2) {
  animation-delay: 0.1s;
}

html.motion-ok .reveal-on-scroll.is-revealed .trust-strip-inner .trust-item:nth-child(3) {
  animation-delay: 0.16s;
}

html.motion-ok .reveal-on-scroll.is-revealed .faq-item {
  animation: stagger-in 0.5s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .faq-item:nth-child(1) {
  animation-delay: 0.04s;
}

html.motion-ok .reveal-on-scroll.is-revealed .faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

html.motion-ok .reveal-on-scroll.is-revealed .faq-item:nth-child(3) {
  animation-delay: 0.16s;
}

html.motion-ok .reveal-on-scroll.is-revealed .faq-item:nth-child(4) {
  animation-delay: 0.22s;
}

@keyframes stagger-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero:not(.page-hero--dark) .hero-eyebrow {
  animation: hero-line-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero:not(.page-hero--dark) .page-title {
  animation: hero-line-in 0.65s var(--ease) 0.08s backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero:not(.page-hero--dark) .page-intro {
  animation: hero-line-in 0.65s var(--ease) 0.16s backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero .page-hero-banner {
  animation: hero-figure-rise 0.75s var(--ease) 0.12s both;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero--dark .hero-eyebrow--on-dark {
  animation: hero-line-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero--dark .page-title--on-dark {
  animation: hero-line-in 0.65s var(--ease) 0.08s backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed.page-hero--dark .page-intro--on-dark {
  animation: hero-line-in 0.65s var(--ease) 0.16s backwards;
}

html.motion-ok .site-footer.is-revealed .footer-grid > * {
  animation: stagger-in 0.55s var(--ease) backwards;
}

html.motion-ok .site-footer.is-revealed .footer-grid > *:nth-child(1) {
  animation-delay: 0.05s;
}

html.motion-ok .site-footer.is-revealed .footer-grid > *:nth-child(2) {
  animation-delay: 0.12s;
}

html.motion-ok .site-footer.is-revealed .footer-grid > *:nth-child(3) {
  animation-delay: 0.18s;
}

html.motion-ok .reveal-on-scroll.is-revealed .contact-page-grid > * {
  animation: stagger-in 0.65s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .contact-page-grid > *:nth-child(1) {
  animation-delay: 0.06s;
}

html.motion-ok .reveal-on-scroll.is-revealed .contact-page-grid > *:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-page-grid > * {
  animation: stagger-in 0.65s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-page-grid > *:nth-child(1) {
  animation-delay: 0.06s;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-page-grid > *:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-inner--split > * {
  animation: stagger-in 0.65s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-inner--split > *:nth-child(1) {
  animation-delay: 0.06s;
}

html.motion-ok .reveal-on-scroll.is-revealed .recognition-inner--split > *:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .timeline-item {
  animation: stagger-in 0.55s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .timeline-item:nth-child(1) {
  animation-delay: 0.05s;
}

html.motion-ok .reveal-on-scroll.is-revealed .timeline-item:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .about-profile-grid > * {
  animation: stagger-in 0.65s var(--ease) backwards;
}

html.motion-ok .reveal-on-scroll.is-revealed .about-profile-grid > *:nth-child(1) {
  animation-delay: 0.06s;
}

html.motion-ok .reveal-on-scroll.is-revealed .about-profile-grid > *:nth-child(2) {
  animation-delay: 0.14s;
}

html.motion-ok .reveal-on-scroll.is-revealed .cta-band-inner {
  animation: stagger-in 0.6s var(--ease) 0.08s backwards;
}

/* Infinite marquee under header (injected when motion OK) */
.site-ticker {
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  border-bottom: 1px solid rgba(13, 92, 77, 0.35);
  background: linear-gradient(90deg, #042f28 0%, #0d5c4d 42%, #085a50 100%);
  background-size: 200% 100%;
  animation: site-ticker-bg-flow 12s ease-in-out infinite;
}

@keyframes site-ticker-bg-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.site-ticker-inner {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.site-ticker-track {
  display: flex;
  width: max-content;
  padding: 0.55rem 0;
  animation: site-ticker-marquee 38s linear infinite;
}

.site-ticker-chunk {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.site-ticker-seg {
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.site-ticker-dot {
  flex-shrink: 0;
  color: #f5d563;
  font-size: 0.45rem;
  line-height: 1;
  opacity: 0.85;
}

.site-ticker-inner:hover .site-ticker-track {
  animation-play-state: paused;
}

@keyframes site-ticker-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* —— Recruiter / Careers page (gaming theme) —— */
body.recruiter-page {
  background: #030712;
  color: #e2e8f0;
}

/* Global `html.motion-ok body` uses a light animated gradient and wins specificity over `body.recruiter-page` alone — reset for this page */
html.motion-ok body.recruiter-page {
  background-color: #030712 !important;
  background-image: none !important;
  background-size: auto !important;
  animation: none !important;
  color: #e2e8f0;
}

.recruiter-page .skip-link--recruiter {
  background: linear-gradient(135deg, #06b6d4, #a855f7);
}

.recruiter-header {
  background: rgba(5, 8, 13, 0.88) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.22) !important;
}

.recruiter-page .nav-toggle--recruiter .nav-toggle-bar {
  background: #e2e8f0;
}

.recruiter-page .nav-list a {
  color: #cbd5e1;
}

.recruiter-page .nav-list a:hover,
.recruiter-page .nav-list a:focus-visible {
  color: #22d3ee;
}

.recruiter-page .nav-recruiter-pill {
  color: #22d3ee !important;
  font-weight: 600;
}

html.motion-ok body.recruiter-page .nav-list a.is-active.nav-recruiter-pill::after {
  display: block !important;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
}

body.recruiter-page .nav-list a.is-active.nav-recruiter-pill::after {
  background: linear-gradient(90deg, #06b6d4, #a855f7);
}

.recruiter-page .nav-cta--recruiter {
  background: linear-gradient(135deg, #0891b2, #7c3aed) !important;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
}

.recruiter-page .nav-list button.nav-cta {
  font: inherit;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  body.nav-open .recruiter-page .site-nav--recruiter {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  }

  .recruiter-page .nav-list a:hover {
    background: rgba(6, 182, 212, 0.1);
  }

  .recruiter-page .nav-list button.nav-cta {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .recruiter-page .nav-list button.nav-cta:hover {
    filter: brightness(1.08);
    background: linear-gradient(135deg, #0891b2, #7c3aed) !important;
  }
}

.recruiter-main {
  position: relative;
  overflow: clip;
}

.recruiter-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #030712;
}

.recruiter-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0, 0 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 70%);
}

/* Gaming-style ambient: drifting grid + scanlines + sweep (disabled without motion-ok / with reduced motion) */
html.motion-ok .recruiter-bg-grid {
  animation: recruiter-grid-drift 90s linear infinite;
}

@keyframes recruiter-grid-drift {
  to {
    background-position: 48px 48px, 48px 48px;
  }
}

html.motion-ok .recruiter-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(6, 182, 212, 0.045) 2px,
    rgba(6, 182, 212, 0.045) 3px
  );
  mask-image: radial-gradient(ellipse 85% 75% at 50% 15%, #000 15%, transparent 72%);
  opacity: 0.85;
  pointer-events: none;
}

html.motion-ok .recruiter-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40%;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(34, 211, 238, 0.06) 48%,
    rgba(167, 139, 250, 0.05) 52%,
    transparent 100%
  );
  pointer-events: none;
  animation: recruiter-scan-sweep 14s ease-in-out infinite;
}

@keyframes recruiter-scan-sweep {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(120vh);
    opacity: 0.85;
  }
}

.recruiter-bg-reticle {
  position: absolute;
  width: min(28vw, 140px);
  height: min(28vw, 140px);
  pointer-events: none;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 2px;
  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.08),
    inset 0 0 24px rgba(124, 58, 237, 0.06);
}

.recruiter-bg-reticle--tl {
  top: 12%;
  left: 6%;
  border-right: none;
  border-bottom: none;
}

.recruiter-bg-reticle--br {
  bottom: 18%;
  right: 8%;
  border-left: none;
  border-top: none;
}

html.motion-ok .recruiter-bg-reticle {
  animation: recruiter-reticle-drift 22s ease-in-out infinite;
}

html.motion-ok .recruiter-bg-reticle--br {
  animation-delay: -11s;
}

@keyframes recruiter-reticle-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate(8px, -10px) scale(1.02);
    opacity: 0.9;
  }
}

.recruiter-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: recruiter-glow-float 14s ease-in-out infinite;
}

.recruiter-bg-glow--1 {
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  top: -10%;
  left: -15%;
  background: #0891b2;
}

.recruiter-bg-glow--2 {
  width: min(70vw, 400px);
  height: min(70vw, 400px);
  bottom: 10%;
  right: -10%;
  background: #7c3aed;
  animation-delay: -5s;
  animation-duration: 18s;
}

.recruiter-bg-glow--3 {
  width: min(50vw, 280px);
  height: min(50vw, 280px);
  top: 45%;
  left: 40%;
  background: #06b6d4;
  animation-delay: -9s;
  opacity: 0.1;
}

@keyframes recruiter-glow-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, 6%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruiter-bg-glow {
    animation: none;
  }

  html.motion-ok .recruiter-bg-grid,
  html.motion-ok .recruiter-bg-reticle {
    animation: none !important;
  }

  html.motion-ok .recruiter-bg::after {
    animation: none !important;
    transform: none;
    opacity: 0.25;
  }
}

.recruiter-hero,
.recruiter-section,
.recruiter-homcoz,
.recruiter-cta-final {
  position: relative;
  z-index: 1;
}

.recruiter-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 10vw, 5.5rem) 0 clamp(3rem, 8vw, 4.5rem);
  min-height: min(52vh, 560px);
  text-align: center;
  background-color: #030712;
  background-image:
    linear-gradient(
      165deg,
      rgba(3, 7, 18, 0.92) 0%,
      rgba(15, 23, 42, 0.78) 35%,
      rgba(3, 7, 18, 0.85) 70%,
      rgba(3, 7, 18, 0.95) 100%
    ),
    url("images/service-recruitment-gaming.jpg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
}

@media (max-width: 640px) {
  .recruiter-hero {
    background-position: center center;
    min-height: min(48vh, 420px);
  }
}

.recruiter-hero-inner {
  max-width: 46rem;
  margin-inline: auto;
}

.recruiter-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 999px;
}

.recruiter-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px #22d3ee;
  animation: recruiter-pulse-dot 2s ease-in-out infinite;
}

@keyframes recruiter-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruiter-hero-badge-dot {
    animation: none;
  }
}

.recruiter-hero-title {
  margin: 0 0 1.25rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow:
    0 0 40px rgba(0, 0, 0, 0.85),
    0 2px 4px rgba(0, 0, 0, 0.9);
}

.recruiter-hero-accent {
  background: linear-gradient(105deg, #5eead4, #e9d5ff, #22d3ee);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: recruiter-text-shine 5s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px rgba(34, 211, 238, 0.35));
}

@keyframes recruiter-text-shine {
  to {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruiter-hero-accent {
    animation: none;
    color: #5eead4;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95));
  }
}

.recruiter-hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.recruiter-hero-lead strong {
  color: #f8fafc;
}

.recruiter-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.btn-recruiter-primary {
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  color: #0f172a !important;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

html.motion-ok .btn-recruiter-primary {
  animation: recruiter-cta-glow 5s ease-in-out infinite;
}

@keyframes recruiter-cta-glow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35);
  }
  50% {
    box-shadow:
      0 8px 36px rgba(124, 58, 237, 0.42),
      0 0 24px rgba(34, 211, 238, 0.28);
  }
}

.btn-recruiter-primary:hover,
.btn-recruiter-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
  animation: none;
}

.btn-recruiter-ghost {
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  color: #e2e8f0 !important;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.5);
  transition: border-color 0.2s, background 0.2s;
}

.btn-recruiter-ghost:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(6, 182, 212, 0.1);
}

.recruiter-hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.recruiter-hero-note a {
  color: #67e8f9;
  text-decoration: none;
  font-weight: 600;
}

.recruiter-hero-note a:hover {
  text-decoration: underline;
}

.recruiter-section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background: rgba(3, 7, 18, 0.65);
}

.recruiter-section--alt {
  background: rgba(15, 23, 42, 0.88);
  border-block: 1px solid rgba(71, 85, 105, 0.55);
}

.recruiter-section-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.recruiter-section-title {
  margin: 0 0 0.5rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f1f5f9;
}

.recruiter-section-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
}

.recruiter-section-sub {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #22d3ee;
}

.recruiter-section-intro {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.recruiter-feature-grid {
  display: grid;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .recruiter-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .recruiter-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recruiter-feature-card {
  padding: 1.5rem 1.35rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.recruiter-feature-card:hover {
  border-color: rgba(167, 139, 250, 0.35);
  transform: translateY(-3px);
}

.recruiter-feature-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 960px) {
  .recruiter-feature-card--wide {
    grid-column: span 3;
    text-align: center;
    max-width: 52rem;
    margin-inline: auto;
    width: 100%;
  }
}

.recruiter-feature-icon {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: #22d3ee;
}

.recruiter-feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
}

.recruiter-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.recruiter-two-col {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .recruiter-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.recruiter-panel {
  padding: 1.75rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
}

.recruiter-panel-title {
  margin: 0 0 1rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c084fc;
}

.recruiter-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #d1d5db;
  line-height: 1.65;
}

.recruiter-list li {
  margin-bottom: 0.5rem;
}

.recruiter-compliance-list {
  max-width: 44rem;
  margin: 0 auto 2rem;
  padding-left: 1.25rem;
  color: #d1d5db;
  line-height: 1.65;
}

.recruiter-compliance-list li {
  margin-bottom: 0.65rem;
}

.recruiter-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruiter-pillar {
  padding: 0.55rem 1.25rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.recruiter-homcoz {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.12) 0%, rgba(3, 7, 18, 0.9) 55%);
  border-top: 1px solid rgba(34, 211, 238, 0.25);
}

.recruiter-homcoz-inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.recruiter-homcoz-title {
  margin: 0 0 1rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
}

.recruiter-homcoz-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.recruiter-homcoz-text strong {
  color: #e2e8f0;
}

.recruiter-homcoz-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.recruiter-homcoz-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #22d3ee;
  text-decoration: none;
}

.recruiter-homcoz-links a:hover {
  text-decoration: underline;
}

.recruiter-cta-final {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(124, 58, 237, 0.12) 0%, transparent 55%);
  border-top: 1px solid rgba(51, 65, 85, 0.45);
}

.recruiter-cta-final-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.recruiter-cta-final-title {
  margin: 0 0 0.75rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: 1.35rem;
  color: #f8fafc;
}

.recruiter-cta-final-text {
  margin: 0 0 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.recruiter-footer {
  position: relative;
  z-index: 1;
  background: #020617 !important;
  border-top: 1px solid rgba(6, 182, 212, 0.2) !important;
}

.recruiter-footer .footer-tagline,
.recruiter-footer .footer-address-text {
  color: #64748b !important;
}

.recruiter-footer .footer-nav-title {
  color: #475569 !important;
}

.recruiter-footer .footer-links a {
  color: #94a3b8 !important;
}

.recruiter-footer .footer-links a:hover {
  color: #22d3ee !important;
}

.recruiter-footer .footer-brand {
  color: #e2e8f0 !important;
}

.recruiter-footer .footer-email a,
.recruiter-footer .footer-phone a {
  color: #67e8f9 !important;
}

.recruiter-footer .footer-copy {
  color: #64748b !important;
}

/* Reveal: no blur on dark page (hurts contrast); keep fade/slide only */
.recruiter-page .reveal-on-scroll {
  filter: none !important;
  opacity: 0;
  transform: translateY(20px);
}

.recruiter-page .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
  filter: none !important;
}

/* —— Apply modal (recruiter OTP flow) —— */
body.apply-modal-open {
  overflow: hidden;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.apply-modal[hidden] {
  display: none !important;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(8px);
}

.apply-modal-dialog {
  position: relative;
  width: min(26rem, 100%);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98) 0%, rgba(3, 7, 18, 0.99) 100%);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(6, 182, 212, 0.12);
}

.apply-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.5);
  color: #e2e8f0;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.apply-modal-close:hover {
  background: rgba(71, 85, 105, 0.7);
  color: #fff;
}

.apply-modal-title {
  margin: 0 2rem 0.5rem 0;
  font-family: "Orbitron", var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f8fafc;
}

.apply-modal-sub {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #94a3b8;
}

.apply-field {
  margin-bottom: 1rem;
}

.apply-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #67e8f9;
}

.apply-required-mark {
  color: #f472b6;
  font-weight: 700;
}

.apply-field input,
.apply-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(71, 85, 105, 0.8);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.apply-field input:focus,
.apply-field textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.apply-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.apply-modal-submit,
.apply-step .btn-recruiter-primary {
  width: 100%;
  margin-top: 0.25rem;
  justify-content: center;
}

.apply-otp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.apply-otp-actions .btn-recruiter-ghost {
  justify-content: center;
}

.apply-resend-hint {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: #94a3b8;
  min-height: 1.25em;
}

.apply-step-done {
  text-align: center;
}

.apply-success-title {
  margin: 0 0 0.75rem;
  font-family: "Orbitron", var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #5eead4;
}

.apply-success-text {
  margin: 0 0 1.25rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.apply-modal-error {
  margin: 1rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 10px;
}

.apply-modal-error[hidden] {
  display: none !important;
}

/* —— Admin applications dashboard —— */
body.admin-applications-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: #0f172a;
  color: #e2e8f0;
}

.admin-shell {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.admin-header {
  margin-bottom: 1.75rem;
}

.admin-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: #f8fafc;
}

.admin-lead {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #94a3b8;
}

.admin-auth-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
}

.admin-label {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.admin-key-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  color: #f1f5f9;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
}

.admin-key-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.admin-btn-primary {
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.admin-btn-primary:hover:not(:disabled) {
  filter: brightness(1.05);
}

.admin-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.admin-status {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: #94a3b8;
}

.admin-status--error {
  color: #fca5a5;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #1e293b;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #334155;
}

.admin-table th {
  font-weight: 600;
  color: #cbd5e1;
  background: #0f172a;
  white-space: nowrap;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover td {
  background: rgba(51, 65, 85, 0.35);
}

.admin-empty-row td {
  text-align: center;
  color: #64748b;
  padding: 2rem 1rem;
}

.admin-cell-nowrap {
  white-space: nowrap;
  color: #cbd5e1;
}

.admin-table a {
  color: #38bdf8;
  text-decoration: none;
  word-break: break-all;
}

.admin-table a:hover {
  text-decoration: underline;
}

.admin-cell-remark {
  max-width: 14rem;
  color: #cbd5e1;
}

.admin-remark {
  display: block;
  max-height: 4.5em;
  overflow: auto;
  line-height: 1.45;
}

.admin-status-select {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 8px;
  cursor: pointer;
}

.admin-status-select:focus {
  outline: none;
  border-color: #38bdf8;
}
