/* Unifiedesign · shared + branch themes */

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

:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #e8eaef;
  background: #08090c;
}

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

/* ----- Splash (index) ----- */

.splash-body {
  --splash-nav-h: 3rem;
  position: relative;
  overflow-x: hidden;
  background: #050608;
}

/* Rotating circular light. Fixed behind columns; columns use translucent fills so this reads through */
.splash-halo {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash-halo__orbit {
  position: relative;
  width: min(128vmin, 86rem);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 100px rgba(99, 102, 241, 0.16),
    0 0 200px rgba(57, 255, 20, 0.08),
    inset 0 0 120px rgba(255, 255, 255, 0.04);
}

.splash-halo__beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  margin-top: -65%;
  margin-left: -65%;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.58;
  will-change: transform;
}

.splash-halo__beam--a {
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(57, 255, 20, 0.7) 0deg,
    transparent 38deg,
    transparent 85deg,
    rgba(59, 130, 246, 0.65) 128deg,
    transparent 165deg,
    transparent 205deg,
    rgba(236, 72, 153, 0.62) 252deg,
    transparent 295deg,
    rgba(0, 212, 255, 0.55) 330deg,
    transparent 360deg
  );
  animation: splash-halo-spin 85s linear infinite;
}

.splash-halo__beam--b {
  background: conic-gradient(
    from 72deg at 50% 50%,
    transparent 0deg,
    rgba(251, 191, 36, 0.5) 48deg,
    transparent 92deg,
    rgba(139, 92, 246, 0.55) 152deg,
    transparent 198deg,
    rgba(57, 255, 20, 0.45) 262deg,
    transparent 315deg,
    rgba(59, 130, 246, 0.5) 360deg
  );
  animation: splash-halo-spin-reverse 110s linear infinite;
  opacity: 0.48;
  filter: blur(56px);
}

.splash-halo__ring {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(59, 130, 246, 0.12),
    inset 0 0 100px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .splash-halo__beam--a,
  .splash-halo__beam--b {
    animation: none;
  }
}

@keyframes splash-halo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes splash-halo-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.splash-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--splash-nav-h);
  padding: 0.4rem calc(1.15rem + env(safe-area-inset-right, 0px)) 0.5rem
    calc(1.15rem + env(safe-area-inset-left, 0px));
  padding-top: calc(0.4rem + env(safe-area-inset-top, 0px));
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.splash-nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity 0.2s var(--ease-out);
}

.splash-nav__link:hover {
  opacity: 1;
}

.splash-nav__link[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

.splash-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.85rem;
  max-width: min(92vw, 38rem);
}

.splash-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  padding-top: var(--splash-nav-h);
}

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

@media (min-width: 1100px) {
  .splash-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

.splash-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42vh;
  padding: 2rem 1.75rem 2.5rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) and (max-width: 1099px) {
  .splash-col {
    min-height: calc((100svh - var(--splash-nav-h)) / 2);
    justify-content: center;
    padding: 2.25rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .splash-col:nth-child(2n) {
    border-right: none;
  }

  .splash-col:nth-child(n + 3) {
    border-bottom: none;
  }
}

@media (min-width: 1100px) {
  .splash-col {
    min-height: calc(100svh - var(--splash-nav-h));
    justify-content: center;
    padding: 3rem 1.15rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .splash-col:last-child {
    border-right: none;
  }
}

.splash-col:hover {
  z-index: 2;
}

@media (hover: hover) and (min-width: 640px) {
  .splash-columns:hover .splash-col:not(:hover) {
    filter: saturate(0.65) brightness(0.85);
  }

  .splash-col:hover {
    transform: scale(1.02);
  }
}

/* Games column */
.splash-col--games {
  background: linear-gradient(
    165deg,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(13, 13, 18, 0.76) 45%,
    rgba(5, 5, 8, 0.82) 100%
  );
  font-family: "Orbitron", sans-serif;
}

.splash-col--games::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.splash-col--games::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.splash-col--games .splash-col__label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #39ff14;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.splash-col--games .splash-col__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0.75rem 0 0.5rem;
  color: #e8fff0;
}

.splash-col--games .splash-col__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.72;
  max-width: 28ch;
}

.splash-col--games .splash-col__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00d4ff;
}

/* Web column */
.splash-col--web {
  background: linear-gradient(
    180deg,
    rgba(240, 244, 248, 0.86) 0%,
    rgba(220, 230, 239, 0.85) 50%,
    rgba(197, 212, 227, 0.88) 100%
  );
  color: #1a2332;
}

.splash-col--web::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(30, 58, 95, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(30, 58, 95, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.splash-col--web::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 65%);
  pointer-events: none;
}

.splash-col--web .splash-col__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2563eb;
}

.splash-col--web .splash-col__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0.5rem;
  color: #0f172a;
}

.splash-col--web .splash-col__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  max-width: 30ch;
}

.splash-col--web .splash-col__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #1d4ed8;
}

/* Multimedia column */
.splash-col--multimedia {
  background: linear-gradient(
    145deg,
    rgba(26, 10, 46, 0.76) 0%,
    rgba(45, 27, 78, 0.74) 40%,
    rgba(22, 33, 62, 0.8) 100%
  );
  font-family: "Syne", sans-serif;
}

.splash-col--multimedia::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #f59e0b 0deg,
    #ec4899 120deg,
    #8b5cf6 240deg,
    #f59e0b 360deg
  );
  filter: blur(80px);
  pointer-events: none;
}

.splash-col--multimedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 12, 0.4) 0%,
    transparent 40%,
    rgba(8, 9, 12, 0.6) 100%
  );
  pointer-events: none;
}

.splash-col--multimedia .splash-col__inner {
  position: relative;
  z-index: 1;
}

.splash-col--multimedia .splash-col__label {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fbbf24;
}

.splash-col--multimedia .splash-col__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
  background: linear-gradient(120deg, #fef3c7, #fda4af, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.splash-col--multimedia .splash-col__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 30ch;
}

.splash-col--multimedia .splash-col__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f472b6;
}

/* Business column (fourth lane, index) */
.splash-col--business {
  background: linear-gradient(
    155deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(30, 58, 138, 0.48) 52%,
    rgba(15, 23, 42, 0.88) 100%
  );
  color: #e8eaef;
}

.splash-col--business::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.splash-col--business::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 95% 65% at 85% 15%,
    rgba(59, 130, 246, 0.2),
    transparent 58%
  );
  pointer-events: none;
}

.splash-col--business .splash-col__inner {
  position: relative;
  z-index: 1;
}

.splash-col--business .splash-col__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93c5fd;
}

.splash-col--business .splash-col__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.5rem;
  color: #f8fafc;
}

.splash-col--business .splash-col__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.84;
  max-width: 24ch;
}

.splash-col--business .splash-col__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
}

@media (min-width: 1100px) {
  .splash-col--games .splash-col__title {
    font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  }

  .splash-col--web .splash-col__title {
    font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  }

  .splash-col--multimedia .splash-col__title {
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  }

  .splash-col--business .splash-col__title {
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  }

  .splash-col__desc {
    font-size: 0.88rem;
  }
}

.splash-col__inner {
  position: relative;
  z-index: 1;
}

.splash-col__arrow {
  transition: transform 0.35s var(--ease-out);
}

.splash-col:hover .splash-col__arrow {
  transform: translateX(6px);
}

/* ----- Inner pages (branch landings) ----- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page--games {
  background: linear-gradient(165deg, #0a1628 0%, #0d0d12 50%, #050508 100%);
  color: #e8eaef;
}

.page--games::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.page--web {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  color: #0f172a;
}

.page--multimedia {
  background: linear-gradient(145deg, #12081f 0%, #1a0a2e 35%, #16213e 100%);
  color: #f1f5f9;
}

.page__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page--web .page__nav {
  border-bottom-color: rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
}

.page__nav a.home {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
}

.page__nav a.home:hover {
  opacity: 1;
}

.page--games .page__nav a.home {
  color: #39ff14;
}

.page--web .page__nav a.home {
  color: #1e40af;
}

.page--multimedia .page__nav a.home {
  color: #fbbf24;
}

.page__nav-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  max-width: min(100%, 52rem);
}

.nav-link {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s var(--ease-out);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link[aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

.nav-back {
  font-size: 0.85rem;
  opacity: 0.75;
}

.nav-back:hover {
  opacity: 1;
}

.page__main {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
}

.page__hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .page__hero {
    padding: 6rem 2rem 4rem;
  }
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.page--games .hero__eyebrow {
  font-family: "Orbitron", sans-serif;
  color: #39ff14;
}

.page--web .hero__eyebrow {
  font-family: "JetBrains Mono", monospace;
  color: #2563eb;
  letter-spacing: 0.12em;
}

.page--multimedia .hero__eyebrow {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.hero__title {
  margin: 0 0 1.25rem;
  line-height: 1.1;
}

.page--games .hero__title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0fff4;
}

.page--web .hero__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page--multimedia .hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fef3c7, #fda4af, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 52ch;
}

.page--games .hero__lead {
  opacity: 0.78;
  font-family: "DM Sans", sans-serif;
}

.page--web .hero__lead {
  color: #475569;
}

.page--multimedia .hero__lead {
  opacity: 0.88;
  font-family: "DM Sans", sans-serif;
}

.hero__placeholder {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.page--games .hero__placeholder {
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: rgba(0, 212, 255, 0.06);
  color: rgba(232, 234, 239, 0.85);
}

.page--web .hero__placeholder {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #475569;
}

.page--multimedia .hero__placeholder {
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: rgba(236, 72, 153, 0.08);
  color: rgba(241, 245, 249, 0.88);
}

.page__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  padding: 1.5rem 1.5rem;
  font-size: 0.78rem;
  opacity: 0.55;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page__footer span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  opacity: 0.8;
}

.page--web .page__footer {
  border-top-color: rgba(15, 23, 42, 0.08);
  color: #64748b;
}

/* ----- Section blocks (branch landings) ----- */

.section {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 2rem;
  }
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.section__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}

.section__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.page--games .section__eyebrow {
  font-family: "Orbitron", sans-serif;
  color: #39ff14;
}

.page--games .section__title {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  color: #f0fff4;
}

.page--web .section__eyebrow {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  color: #2563eb;
}

.page--web .section__title {
  font-family: "DM Sans", sans-serif;
  color: #0f172a;
}

.page--multimedia .section__eyebrow {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.page--multimedia .section__title {
  font-family: "Syne", sans-serif;
  background: linear-gradient(120deg, #fef3c7, #fda4af, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Services grid */

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.service {
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.service:hover {
  transform: translateY(-2px);
}

.service__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service__copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.78;
}

.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid;
  opacity: 0.85;
}

/* Games service theming */
.page--games .service {
  border-color: rgba(57, 255, 20, 0.18);
  background: rgba(0, 212, 255, 0.04);
}

.page--games .service:hover {
  border-color: rgba(57, 255, 20, 0.45);
}

.page--games .service__name {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  color: #d4ffea;
}

.page--games .tag {
  border-color: rgba(57, 255, 20, 0.35);
  color: #aaf0c4;
  font-family: "Orbitron", sans-serif;
}

/* Web service theming */
.page--web .service {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.page--web .service:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: #ffffff;
}

.page--web .service__name {
  color: #0f172a;
}

.page--web .service__copy {
  color: #475569;
  opacity: 1;
}

.page--web .tag {
  border-color: rgba(37, 99, 235, 0.35);
  color: #1e40af;
  font-family: "JetBrains Mono", monospace;
}

/* Multimedia service theming */
.page--multimedia .service {
  border-color: rgba(251, 191, 36, 0.2);
  background: rgba(236, 72, 153, 0.05);
}

.page--multimedia .service:hover {
  border-color: rgba(244, 114, 182, 0.55);
}

.page--multimedia .service__name {
  font-family: "Syne", sans-serif;
  color: #fde7c2;
}

.page--multimedia .tag {
  border-color: rgba(244, 114, 182, 0.4);
  color: #fbcfe8;
  font-family: "Syne", sans-serif;
  font-weight: 600;
}

/* Capability / credential blocks (branch pages) */

.tool-matrix {
  display: grid;
  gap: 1rem;
}

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

  .tool-matrix--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tool-block {
  padding: 1.35rem 1.45rem;
  border-radius: 14px;
  border: 1px solid;
}

.tool-block__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.tool-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page--web .tool-block {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.page--web .tool-block__title {
  font-family: "JetBrains Mono", monospace;
  color: #1d4ed8;
  letter-spacing: 0.12em;
}

.page--games .tool-block {
  border-color: rgba(57, 255, 20, 0.2);
  background: rgba(0, 212, 255, 0.04);
}

.page--games .tool-block__title {
  font-family: "Orbitron", sans-serif;
  color: #39ff14;
  letter-spacing: 0.18em;
}

.page--multimedia .tool-block {
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(236, 72, 153, 0.05);
}

.page--multimedia .tool-block__title {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.experience-grid {
  display: grid;
  gap: 0.85rem;
}

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

.experience-card {
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  border: 1px solid;
}

.experience-card__org {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.experience-card__detail {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.78;
}

.page--web .experience-card {
  border-color: rgba(37, 99, 235, 0.15);
  background: rgba(255, 255, 255, 0.65);
}

.page--web .experience-card__org {
  color: #0f172a;
}

.page--web .experience-card__detail {
  color: #475569;
  opacity: 1;
}

.page--web .credential-cert {
  margin: 0 0 1.35rem;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.page--web .credential-cert__img {
  display: block;
  width: 100%;
  height: auto;
}

.page--web .credential-cert__caption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #475569;
  text-align: center;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.bizdev-teaser__lead {
  max-width: 62ch;
}

.bizdev-teaser__actions {
  margin-top: 1.25rem;
}

.page--games .experience-card {
  border-color: rgba(57, 255, 20, 0.18);
  background: rgba(8, 9, 12, 0.35);
}

.page--games .experience-card__org {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  color: #d4ffea;
}

.page--multimedia .experience-card {
  border-color: rgba(251, 191, 36, 0.18);
  background: rgba(8, 9, 12, 0.28);
}

.page--multimedia .experience-card__org {
  font-family: "Syne", sans-serif;
  color: #fde7c2;
}

.page--multimedia .experience-card__detail {
  opacity: 0.82;
}

.multimedia-gallery {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
}

.multimedia-gallery__item {
  margin: 0;
}

.page--multimedia .multimedia-gallery__link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: rgba(8, 9, 12, 0.35);
  line-height: 0;
  outline-offset: 4px;
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}

.page--multimedia .multimedia-gallery__link:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(236, 72, 153, 0.12);
}

.page--multimedia .multimedia-gallery__link:focus-visible {
  outline: 2px solid #fda4af;
}

.page--multimedia .multimedia-gallery__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.client-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  background: rgba(236, 72, 153, 0.04);
}

.client-cloud span {
  font-size: 0.88rem;
  opacity: 0.88;
}

.client-cloud span:not(:last-child)::after {
  content: " ·";
  opacity: 0.35;
  margin-left: 0.85rem;
}

/* Featured / spotlight block */

.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid;
}

@media (min-width: 820px) {
  .spotlight {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 2.5rem;
  }
}

.spotlight__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
  display: block;
}

.spotlight__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.spotlight__copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.spotlight__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.stat {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat__value {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Spotlight per-branch */
.page--games .spotlight {
  border-color: rgba(57, 255, 20, 0.22);
  background: linear-gradient(140deg, rgba(0, 212, 255, 0.06), rgba(57, 255, 20, 0.04));
}

.page--games .spotlight__label {
  font-family: "Orbitron", sans-serif;
  color: #00d4ff;
}

.page--games .spotlight__title {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  color: #f0fff4;
}

.page--games .stat {
  border-color: rgba(57, 255, 20, 0.25);
  background: rgba(8, 9, 12, 0.4);
}

.page--games .stat__value {
  font-family: "Orbitron", sans-serif;
  color: #39ff14;
}

.spotlight-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page--games .spotlight__cta {
  display: inline-flex;
  margin-top: 1.05rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00d4ff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.page--games .spotlight__cta:hover {
  color: #39ff14;
  border-bottom-color: rgba(57, 255, 20, 0.45);
}

.page--web .spotlight {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.page--web .spotlight__label {
  font-family: "JetBrains Mono", monospace;
  color: #1d4ed8;
  letter-spacing: 0.12em;
}

.page--web .spotlight__title {
  color: #0f172a;
}

.page--web .spotlight__copy {
  color: #475569;
  opacity: 1;
}

.page--web .hero__lead .hero-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page--web .hero__lead .hero-inline-link:hover {
  color: #1d4ed8;
}

.page--web .scriba-spotlight {
  margin-top: 0.35rem;
}

.page--web .scriba-spotlight .spotlight__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.page--web .scriba-spotlight__cta-row {
  margin-top: 1rem;
}

.page--web .spotlight__cta {
  display: inline-flex;
  margin-top: 0.25rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #1d4ed8;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.page--web .spotlight__cta:hover {
  color: #1e40af;
  border-bottom-color: rgba(37, 99, 235, 0.35);
}

.page--web .stat {
  border-color: rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.page--web .stat__value {
  color: #1e40af;
}

.page--web .stat--fullstack .stat__value {
  white-space: nowrap;
}

.page--web .stat__tools {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #475569;
}

.page--multimedia .spotlight {
  border-color: rgba(251, 191, 36, 0.22);
  background: linear-gradient(140deg, rgba(236, 72, 153, 0.08), rgba(139, 92, 246, 0.06));
}

.page--multimedia .spotlight__label {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.page--multimedia .spotlight__title {
  font-family: "Syne", sans-serif;
  background: linear-gradient(120deg, #fef3c7, #fda4af, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page--multimedia .stat {
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(8, 9, 12, 0.35);
}

.page--multimedia .stat__value {
  font-family: "Syne", sans-serif;
  color: #fda4af;
}

/* Contact strip */

.contact {
  position: relative;
  z-index: 1;
  margin: 1rem auto 3rem;
  max-width: 1080px;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid;
}

@media (min-width: 720px) {
  .contact {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
    margin: 1.5rem auto 4rem;
  }
}

.contact__text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.contact__text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.78;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.page--games .contact {
  border-color: rgba(57, 255, 20, 0.25);
  background: rgba(0, 212, 255, 0.05);
}

.page--games .contact__text h3 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  color: #d4ffea;
}

.page--games .btn {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(57, 255, 20, 0.1);
  border-color: #39ff14;
  color: #39ff14;
}

.page--games .btn:hover {
  background: #39ff14;
  color: #08090c;
}

.page--web .contact {
  border-color: rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.page--web .contact__text h3 {
  color: #0f172a;
}

.page--web .contact__text p {
  color: #475569;
  opacity: 1;
}

.page--web .btn {
  font-family: "DM Sans", sans-serif;
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.page--web .btn:hover {
  background: #1e40af;
}

.page--multimedia .contact {
  border-color: rgba(251, 191, 36, 0.25);
  background: linear-gradient(140deg, rgba(236, 72, 153, 0.06), rgba(139, 92, 246, 0.06));
}

.page--multimedia .contact__text h3 {
  font-family: "Syne", sans-serif;
  background: linear-gradient(120deg, #fef3c7, #fda4af, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page--multimedia .btn {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #f472b6, #c084fc);
  border-color: transparent;
  color: #1a0a2e;
}

.page--multimedia .btn:hover {
  filter: brightness(1.08);
}

/* ----- Umbrella (about page) ----- */

.page--umbrella {
  background: linear-gradient(160deg, #0a0d14 0%, #08090c 50%, #050608 100%);
  color: #e8eaef;
}

.page--umbrella::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      ellipse 55% 40% at 12% 18%,
      rgba(57, 255, 20, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 40% at 88% 28%,
      rgba(37, 99, 235, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 95%,
      rgba(236, 72, 153, 0.06),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

.page--umbrella .page__nav a.home {
  font-family: "Syne", sans-serif;
  background: linear-gradient(120deg, #39ff14 0%, #60a5fa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page--umbrella .hero__eyebrow {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.25em;
  background: linear-gradient(120deg, #39ff14, #60a5fa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page--umbrella .hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f7fb;
}

.page--umbrella .hero__lead {
  opacity: 0.78;
}

.page--umbrella .section__eyebrow {
  font-family: "Syne", sans-serif;
  background: linear-gradient(120deg, #39ff14, #60a5fa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page--umbrella .section__title {
  font-family: "Syne", sans-serif;
  color: #f5f7fb;
}

.contact-hero-lead {
  margin-top: 0;
  max-width: 52ch;
}

.contact-cta {
  margin-top: 1.5rem;
}

.page--umbrella .btn {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #f5f7fb;
}

.page--umbrella .btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(96, 165, 250, 0.5);
  color: #fff;
}

/* Studio cards (about page) */

.studios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 820px) {
  .studios {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1180px) {
  .studios {
    grid-template-columns: repeat(4, 1fr);
  }
}

.studio-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.studio-card:hover {
  transform: translateY(-3px);
}

.studio-card__num {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
}

.studio-card__name {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.studio-card__copy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.78;
}

.studio-card__cta {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-card--games {
  background: linear-gradient(165deg, rgba(0, 212, 255, 0.06), rgba(57, 255, 20, 0.04));
  border-color: rgba(57, 255, 20, 0.22);
}

.studio-card--games:hover {
  border-color: rgba(57, 255, 20, 0.5);
}

.studio-card--games .studio-card__name {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
  color: #d4ffea;
}

.studio-card--games .studio-card__cta {
  font-family: "Orbitron", sans-serif;
  color: #39ff14;
}

.studio-card--web {
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.07), rgba(96, 165, 250, 0.04));
  border-color: rgba(37, 99, 235, 0.25);
}

.studio-card--web:hover {
  border-color: rgba(37, 99, 235, 0.55);
}

.studio-card--web .studio-card__name {
  color: #dbeafe;
}

.studio-card--web .studio-card__cta {
  font-family: "JetBrains Mono", monospace;
  color: #93c5fd;
}

.studio-card--multimedia {
  background: linear-gradient(165deg, rgba(236, 72, 153, 0.07), rgba(139, 92, 246, 0.05));
  border-color: rgba(251, 191, 36, 0.22);
}

.studio-card--multimedia:hover {
  border-color: rgba(244, 114, 182, 0.5);
}

.studio-card--multimedia .studio-card__name {
  font-family: "Syne", sans-serif;
  color: #fde7c2;
}

.studio-card--multimedia .studio-card__cta {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.studio-card--business {
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.72),
    rgba(30, 58, 138, 0.12)
  );
  border-color: rgba(59, 130, 246, 0.35);
}

.studio-card--business:hover {
  border-color: rgba(96, 165, 250, 0.55);
}

.studio-card--business .studio-card__num {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
}

.studio-card--business .studio-card__name {
  font-family: "Syne", sans-serif;
  color: #f8fafc;
}

.studio-card--business .studio-card__cta {
  font-family: "JetBrains Mono", monospace;
  color: #60a5fa;
}

/* Founder block */

.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.founder__photo {
  margin: 0;
  justify-self: center;
}

.founder__photo img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 860px) {
  .founder {
    grid-template-columns: minmax(160px, 210px) 1fr;
    grid-template-rows: auto 1fr;
    padding: 2.5rem;
    gap: 1.25rem 2.25rem;
    align-items: start;
  }

  .founder__photo {
    grid-column: 1;
    grid-row: 1 / -1;
    justify-self: stretch;
  }

  .founder__photo img {
    max-width: none;
    width: 100%;
  }

  .founder__intro {
    grid-column: 2;
    grid-row: 1;
  }

  .founder__bio {
    grid-column: 2;
    grid-row: 2;
  }
}

.founder__role {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 0.6rem;
}

.founder__name {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
  color: #f5f7fb;
  letter-spacing: -0.01em;
}

.founder__credentials {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

.founder__copy {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.85;
}

.founder__copy:last-child {
  margin-bottom: 0;
}

/* Connect / link list */

.links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.link-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.link-item__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.link-item__handle {
  font-size: 0.82rem;
  opacity: 0.6;
  font-family: "JetBrains Mono", monospace;
}

.link-item__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.link-item__arrow {
  opacity: 0.5;
}

/* Splash bottom strip */

.splash-foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.splash-foot a {
  opacity: 0.85;
  border-bottom: 1px solid transparent;
}

.splash-foot a:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 899px) {
  .splash-foot {
    position: static;
    background: #050608;
    flex-direction: column;
    text-align: center;
  }
}

/* ----- Unifiedesign Business (distinct from Web: dark / amber, not light / blue) ----- */

.page--business {
  position: relative;
  background: linear-gradient(165deg, #060a12 0%, #0f172a 42%, #1a1240 100%);
  color: #e2e8f0;
}

.page--business::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.page--business::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 55% at 88% 8%,
    rgba(251, 191, 36, 0.09),
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}

.page--business .page__nav {
  border-bottom-color: rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
}

.page--business .page__nav a.home {
  color: #fbbf24;
}

.page--business .page__nav a.home:hover {
  color: #fde68a;
}

.page--business .page__nav .nav-link,
.page--business .page__nav .nav-back {
  color: rgba(226, 232, 240, 0.82);
}

.page--business .page__nav .nav-link:hover,
.page--business .page__nav .nav-back:hover {
  color: #f8fafc;
}

.page--business .hero__eyebrow {
  font-family: "JetBrains Mono", monospace;
  color: #fcd34d;
  letter-spacing: 0.12em;
}

.page--business .hero__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.page--business .hero__lead {
  font-family: "DM Sans", sans-serif;
  color: #94a3b8;
}

.page--business .page__footer {
  border-top-color: rgba(148, 163, 184, 0.12);
  color: #64748b;
}

.page--business .section__eyebrow {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  color: #fbbf24;
}

.page--business .section__title {
  font-family: "Syne", sans-serif;
  color: #f1f5f9;
}

.page--business .service {
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(15, 23, 42, 0.55);
}

.page--business .service:hover {
  border-color: rgba(251, 191, 36, 0.48);
  background: rgba(30, 41, 59, 0.65);
}

.page--business .service__name {
  font-family: "Syne", sans-serif;
  color: #fefce8;
}

.page--business .service__copy {
  color: #cbd5e1;
  opacity: 1;
}

.page--business .tag {
  border-color: rgba(251, 191, 36, 0.38);
  color: #fde68a;
  font-family: "JetBrains Mono", monospace;
}

.page--business .spotlight {
  border-color: rgba(251, 191, 36, 0.24);
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.45), rgba(15, 23, 42, 0.92));
}

.page--business .spotlight__label {
  font-family: "JetBrains Mono", monospace;
  color: #fbbf24;
  letter-spacing: 0.12em;
}

.page--business .spotlight__title {
  font-family: "Syne", sans-serif;
  color: #f8fafc;
}

.page--business .spotlight__copy {
  color: #cbd5e1;
  opacity: 1;
}

.page--business .stat {
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(15, 23, 42, 0.78);
}

.page--business .stat__value {
  font-family: "Syne", sans-serif;
  color: #fbbf24;
}

.page--business .stat__label {
  color: #94a3b8;
  opacity: 0.95;
}

.page--business .contact {
  border-color: rgba(251, 191, 36, 0.3);
  background: linear-gradient(140deg, rgba(30, 27, 75, 0.4), rgba(15, 23, 42, 0.88));
}

.page--business .contact__text h3 {
  font-family: "Syne", sans-serif;
  color: #f8fafc;
}

.page--business .contact__text p {
  color: #94a3b8;
  opacity: 1;
}

.page--business .btn {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border-color: #fbbf24;
  color: #fde68a;
}

.page--business .btn:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #0f172a;
}
