/* ============================================================
   v3.css — Neumorphism · soft UI · tactile surfaces
   ============================================================ */

:root {
  --neo-bg: #e8edf4;
  --neo-bg-deep: #dde3ec;
  --neo-surface: #e8edf4;
  --neo-light: #ffffff;
  --neo-dark: #b8c4d4;
  --neo-dark-strong: #9aacbf;
  --neo-text: #3d4f63;
  --neo-text-muted: #6b7d92;
  --neo-text-faint: #8fa0b3;
  --neo-accent: #5b7cfa;
  --neo-accent-soft: rgba(91, 124, 250, 0.12);
  --neo-radius-sm: 14px;
  --neo-radius: 22px;
  --neo-radius-lg: 32px;
  --neo-radius-pill: 999px;
  --neo-raised:
    10px 10px 20px var(--neo-dark),
    -10px -10px 20px var(--neo-light);
  --neo-raised-sm:
    6px 6px 12px var(--neo-dark),
    -6px -6px 12px var(--neo-light);
  --neo-raised-xs:
    4px 4px 8px var(--neo-dark),
    -4px -4px 8px var(--neo-light);
  --neo-inset:
    inset 6px 6px 12px var(--neo-dark),
    inset -6px -6px 12px var(--neo-light);
  --neo-inset-sm:
    inset 3px 3px 6px var(--neo-dark),
    inset -3px -3px 6px var(--neo-light);
  --neo-flat:
    2px 2px 4px var(--neo-dark),
    -2px -2px 4px var(--neo-light);
  --font: "Nunito Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --ease: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --neo-img-filter: saturate(0.28) contrast(0.92) brightness(1.08) sepia(0.06);
  --neo-img-filter-hover: saturate(0.82) contrast(1) brightness(1.02) sepia(0);
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--neo-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(184, 196, 212, 0.35), transparent 50%);
  color: var(--neo-text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
}

h1, h2, h3, h4, p, ul, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

em {
  font-style: normal;
  color: var(--neo-accent);
  font-weight: 600;
}

strong { font-weight: 700; }

/* —— Neo image wells —— */
.neo-well {
  position: relative;
  background: var(--neo-bg-deep);
  overflow: hidden;
}

.neo-well img {
  filter: var(--neo-img-filter);
  transition: filter 0.55s var(--ease-soft);
}

.neo-well::before {
  content: "";
  position: absolute;
  inset: var(--neo-well-pad, 0.5rem);
  border-radius: var(--neo-well-radius, 12px);
  background: linear-gradient(
    155deg,
    rgba(232, 237, 244, 0.72) 0%,
    rgba(184, 196, 212, 0.55) 48%,
    rgba(159, 176, 198, 0.45) 100%
  );
  mix-blend-mode: soft-light;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease-soft);
}

.neo-well::after {
  content: "";
  position: absolute;
  inset: var(--neo-well-pad, 0.5rem);
  border-radius: var(--neo-well-radius, 12px);
  box-shadow:
    inset 3px 3px 8px rgba(154, 172, 191, 0.55),
    inset -2px -2px 6px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 2;
}

:is(a, .neo-card):hover .neo-well::before,
.neo-spotlight__link:hover .neo-well::before {
  opacity: 0.2;
}

:is(a, .neo-card):hover .neo-well img,
.neo-spotlight__link:hover .neo-well img {
  filter: var(--neo-img-filter-hover);
}

/* —— Neo utilities —— */
.neo-surface {
  background: var(--neo-surface);
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised);
}

.neo-surface--sm {
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-raised-sm);
}

.neo-inset {
  background: var(--neo-surface);
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-inset);
}

.neo-pressable {
  background: var(--neo-surface);
  border: none;
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-sm);
  cursor: pointer;
  transition:
    box-shadow 0.25s var(--ease-soft),
    transform 0.2s var(--ease-soft);
}

.neo-pressable:hover {
  box-shadow:
    8px 8px 16px var(--neo-dark),
    -8px -8px 16px var(--neo-light);
}

.neo-pressable:active,
.neo-pressable.is-active {
  box-shadow: var(--neo-inset-sm);
  transform: scale(0.98);
}

/* —— Reveal —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-soft), transform 0.85s var(--ease-soft);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Header
   ============================================================ */
.neo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem var(--pad);
  background: rgba(232, 237, 244, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.neo-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.neo-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-xs);
  background: var(--neo-surface);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: box-shadow 0.3s var(--ease-soft);
}

.neo-logo:hover {
  box-shadow: var(--neo-raised-sm);
}

.neo-logo__orb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neo-accent), #8ba4ff);
  box-shadow:
    2px 2px 4px var(--neo-dark),
    -1px -1px 3px var(--neo-light),
    0 0 12px rgba(91, 124, 250, 0.45);
}

.neo-nav {
  display: flex;
  gap: 0.35rem;
}

.neo-nav--left { grid-column: 1; justify-self: start; }
.neo-nav--right { grid-column: 3; justify-self: end; }

.neo-nav a {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-text-muted);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-flat);
  background: var(--neo-surface);
  transition:
    color 0.25s,
    box-shadow 0.25s var(--ease-soft),
    transform 0.2s;
}

.neo-nav a:hover {
  color: var(--neo-text);
  box-shadow: var(--neo-raised-xs);
}

.neo-nav a:active {
  box-shadow: var(--neo-inset-sm);
  transform: scale(0.97);
}

.neo-menu-btn {
  display: none;
  grid-column: 3;
  justify-self: end;
  padding: 0.6rem 1.1rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neo-text);
}

/* Mobile nav */
.neo-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--neo-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.neo-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.neo-mobile__close {
  position: absolute;
  top: 1.25rem;
  right: var(--pad);
  padding: 0.65rem 1.2rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neo-text);
}

.neo-mobile a {
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--neo-text);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition: box-shadow 0.25s, transform 0.2s;
}

.neo-mobile a:hover {
  box-shadow: var(--neo-raised);
}

.neo-mobile a:active {
  box-shadow: var(--neo-inset-sm);
  transform: scale(0.98);
}

/* ============================================================
   Hero
   ============================================================ */
.neo-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) var(--pad) clamp(3rem, 8vw, 5rem);
}

.neo-hero__shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-raised);
  background: var(--neo-surface);
}

.neo-hero__visual {
  position: relative;
}

.neo-hero__frame {
  --neo-well-pad: 0.85rem;
  --neo-well-radius: calc(var(--neo-radius) - 8px);
  margin: 0;
  padding: 0.85rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-inset);
  aspect-ratio: 4 / 5;
}

.neo-hero__frame img {
  border-radius: var(--neo-well-radius);
}

.neo-hero__badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neo-accent);
  background: var(--neo-surface);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-sm);
}

.neo-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.neo-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-text-muted);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-inset-sm);
  background: var(--neo-bg-deep);
}

.neo-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--neo-text);
}

.neo-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--neo-text-muted);
  max-width: 38ch;
}

.neo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.neo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neo-text);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition:
    box-shadow 0.25s var(--ease-soft),
    transform 0.2s,
    color 0.25s;
}

.neo-btn:hover {
  box-shadow: var(--neo-raised);
  color: var(--neo-accent);
}

.neo-btn:active {
  box-shadow: var(--neo-inset-sm);
  transform: scale(0.97);
}

.neo-btn--accent {
  color: #fff;
  background: linear-gradient(145deg, #6b8cff, #4a6cf5);
  box-shadow:
    6px 6px 14px var(--neo-dark),
    -4px -4px 10px var(--neo-light),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.neo-btn--accent:hover {
  color: #fff;
  box-shadow:
    8px 8px 18px var(--neo-dark),
    -6px -6px 14px var(--neo-light),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.neo-btn--accent:active {
  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.2),
    inset -2px -2px 6px rgba(255, 255, 255, 0.15);
}

.neo-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.neo-stat {
  flex: 1;
  min-width: 7rem;
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-inset-sm);
  background: var(--neo-bg-deep);
}

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

.neo-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-text-faint);
}

/* ============================================================
   Section shared
   ============================================================ */
.neo-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
}

.neo-section__head {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.neo-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-accent);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-inset-sm);
  background: var(--neo-accent-soft);
}

.neo-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.neo-section__lead {
  margin-top: 1rem;
  color: var(--neo-text-muted);
  max-width: 52ch;
}

/* ============================================================
   Spotlight cards
   ============================================================ */
.neo-spotlight {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(2rem, 5vw, 3.5rem);
}

.neo-spotlight__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-raised);
  background: var(--neo-surface);
  transition:
    box-shadow 0.35s var(--ease-soft),
    transform 0.35s var(--ease-soft);
}

.neo-spotlight__link:hover {
  box-shadow:
    14px 14px 28px var(--neo-dark),
    -14px -14px 28px var(--neo-light);
  transform: translateY(-3px);
}

.neo-spotlight--reverse .neo-spotlight__link {
  direction: rtl;
}

.neo-spotlight--reverse .neo-spotlight__link > * {
  direction: ltr;
}

.neo-spotlight__media {
  --neo-well-pad: 0.75rem;
  --neo-well-radius: calc(var(--neo-radius) - 6px);
  margin: 0;
  padding: 0.75rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-inset);
  aspect-ratio: 5 / 4;
}

.neo-spotlight__media img {
  border-radius: var(--neo-well-radius);
}

.neo-spotlight__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.5rem 0.75rem;
}

.neo-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
}

.neo-spotlight__text {
  color: var(--neo-text-muted);
  font-size: 0.95rem;
}

.neo-read {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neo-accent);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-flat);
  background: var(--neo-surface);
  transition: box-shadow 0.25s;
}

.neo-spotlight__link:hover .neo-read {
  box-shadow: var(--neo-raised-xs);
}

/* ============================================================
   Focus grid
   ============================================================ */
.neo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.neo-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition:
    box-shadow 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}

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

.neo-card:active {
  box-shadow: var(--neo-inset-sm);
  transform: translateY(0);
}

.neo-card__media {
  --neo-well-pad: 0.55rem;
  --neo-well-radius: calc(var(--neo-radius-sm) - 4px);
  margin: 0;
  padding: 0.55rem;
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-inset);
  aspect-ratio: 1;
}

.neo-card__media img {
  border-radius: var(--neo-well-radius);
}

.neo-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.neo-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neo-text-faint);
}

/* ============================================================
   About
   ============================================================ */
.neo-about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-raised);
  background: var(--neo-surface);
}

.neo-about__portrait {
  --neo-well-pad: 0.85rem;
  --neo-well-radius: calc(var(--neo-radius) - 8px);
  margin: 0;
  padding: 0.85rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-inset);
  align-self: start;
}

.neo-about__portrait img {
  border-radius: var(--neo-well-radius);
  aspect-ratio: 3 / 4;
}

.neo-about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 0;
}

.neo-about__text p {
  color: var(--neo-text-muted);
}

.neo-about__text p:first-of-type {
  font-size: 1.08rem;
  color: var(--neo-text);
}

/* ============================================================
   Cases / services
   ============================================================ */
.neo-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.neo-case {
  padding: 1.35rem 1.5rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition: box-shadow 0.3s, transform 0.3s;
}

.neo-case:hover {
  box-shadow: var(--neo-raised);
  transform: translateY(-2px);
}

.neo-case strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neo-text);
}

.neo-case span {
  font-size: 0.9rem;
  color: var(--neo-text-muted);
}

.neo-quote-block {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-inset);
  background: var(--neo-bg-deep);
}

.neo-quote-block__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neo-text);
}

.neo-quote-block__sub {
  margin-top: 1rem;
  color: var(--neo-text-muted);
  max-width: 40ch;
  margin-inline: auto;
}

/* ============================================================
   Digital tiles
   ============================================================ */
.neo-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.neo-tile {
  padding: 1.5rem 1.25rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition: box-shadow 0.3s, transform 0.3s;
}

.neo-tile:hover {
  box-shadow: var(--neo-raised);
  transform: translateY(-3px);
}

.neo-tile__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neo-accent);
  border-radius: 50%;
  box-shadow: var(--neo-inset-sm);
  background: var(--neo-bg-deep);
}

.neo-tile h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.neo-tile p {
  font-size: 0.88rem;
  color: var(--neo-text-muted);
}

/* ============================================================
   Studio
   ============================================================ */
.neo-studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.neo-studio__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-inset);
  background: var(--neo-bg-deep);
}

.neo-studio__img {
  --neo-well-pad: 0.5rem;
  --neo-well-radius: calc(var(--neo-radius-sm) - 4px);
  margin: 0;
  padding: 0.5rem;
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-inset-sm);
  background: var(--neo-bg-deep);
}

.neo-studio__img--a {
  grid-row: span 2;
}

.neo-studio__img img {
  border-radius: var(--neo-well-radius);
  aspect-ratio: 3 / 4;
}

.neo-studio__img--b img,
.neo-studio__img--c img {
  aspect-ratio: 4 / 3;
}

.neo-studio__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.neo-studio__text p {
  color: var(--neo-text-muted);
}

.neo-studio__clients {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.neo-studio__clients li {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--neo-text-muted);
  border-radius: var(--neo-radius-sm);
  box-shadow: var(--neo-flat);
  background: var(--neo-surface);
}

.neo-studio__clients strong {
  color: var(--neo-text);
}

/* ============================================================
   Offers
   ============================================================ */
.neo-offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.neo-offer {
  padding: 1.5rem 1.25rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition: box-shadow 0.3s, transform 0.3s;
}

.neo-offer:hover {
  box-shadow: var(--neo-raised);
  transform: translateY(-3px);
}

.neo-offer--feat {
  box-shadow:
    var(--neo-raised),
    0 0 0 2px var(--neo-accent-soft);
}

.neo-offer__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neo-accent);
  border-radius: 50%;
  box-shadow: var(--neo-inset-sm);
}

.neo-offer h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.neo-offer p {
  font-size: 0.88rem;
  color: var(--neo-text-muted);
}

/* ============================================================
   Ventures
   ============================================================ */
.neo-ventures {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.neo-venture {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    color 0.25s;
}

.neo-venture:hover {
  box-shadow: var(--neo-raised);
  transform: translateX(4px);
  color: var(--neo-accent);
}

.neo-venture:active {
  box-shadow: var(--neo-inset-sm);
  transform: translateX(0);
}

.neo-venture__name {
  font-family: var(--font-display);
  font-weight: 600;
}

.neo-venture span {
  font-size: 0.82rem;
  color: var(--neo-text-faint);
  text-align: right;
}

.neo-venture:hover span {
  color: var(--neo-text-muted);
}

/* ============================================================
   Footer / Contact
   ============================================================ */
.neo-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--pad) clamp(2rem, 5vw, 3rem);
}

.neo-footer__shell {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--neo-radius-lg);
  box-shadow: var(--neo-inset);
  background: var(--neo-bg-deep);
  text-align: center;
}

.neo-footer__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.neo-footer__prompt {
  color: var(--neo-text-muted);
  max-width: 46ch;
  margin: 0 auto 1.75rem;
}

.neo-footer__email {
  display: inline-flex;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--neo-accent);
  border-radius: var(--neo-radius-pill);
  box-shadow: var(--neo-raised-sm);
  background: var(--neo-surface);
  transition: box-shadow 0.3s, transform 0.2s;
}

.neo-footer__email:hover {
  box-shadow: var(--neo-raised);
}

.neo-footer__email:active {
  box-shadow: var(--neo-inset-sm);
  transform: scale(0.98);
}

.neo-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 196, 212, 0.4);
}

.neo-footer__cols ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.neo-footer__cols a {
  color: var(--neo-text-muted);
  transition: color 0.2s;
}

.neo-footer__cols a:hover {
  color: var(--neo-accent);
}

.neo-footer__copy {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--neo-text-faint);
  text-align: center;
}

/* Decorative orbs */
.neo-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.neo-orbs span {
  position: absolute;
  border-radius: 50%;
  background: var(--neo-surface);
  box-shadow: var(--neo-raised-sm);
  opacity: 0.5;
}

.neo-orbs span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 12%;
  right: 8%;
}

.neo-orbs span:nth-child(2) {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 5%;
}

.neo-orbs span:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 55%;
  right: 15%;
  box-shadow: var(--neo-inset-sm);
}

main {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .neo-grid,
  .neo-tiles,
  .neo-offers {
    grid-template-columns: repeat(2, 1fr);
  }

  .neo-hero__shell,
  .neo-spotlight__link,
  .neo-about__grid,
  .neo-studio {
    grid-template-columns: 1fr;
  }

  .neo-spotlight--reverse .neo-spotlight__link {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .neo-nav { display: none; }
  .neo-menu-btn { display: block; }

  .neo-grid,
  .neo-tiles,
  .neo-offers,
  .neo-cases {
    grid-template-columns: 1fr;
  }

  .neo-footer__cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .neo-venture {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .neo-venture span {
    text-align: left;
  }

  .neo-studio__collage {
    grid-template-columns: 1fr;
  }

  .neo-studio__img--a {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .neo-well img,
  .neo-well::before {
    transition: none;
  }

  .neo-well img {
    filter: var(--neo-img-filter-hover);
  }

  .neo-well::before {
    opacity: 0.25;
  }

  .neo-spotlight__link:hover,
  .neo-card:hover,
  .neo-case:hover,
  .neo-tile:hover,
  .neo-offer:hover,
  .neo-venture:hover {
    transform: none;
  }
}
