/* site.bundle.css — generated 2026-08-13T06:39Z — do not edit by hand; run scripts/build-css.sh */

/* ===== loader.css ===== */
/* Page loading spinner — ThreeZero (custom motion) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #0d0d0d;
  transition: opacity 0.5s cubic-bezier(.16, .8, .24, 1), visibility 0.5s cubic-bezier(.16, .8, .24, 1);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  position: relative;
  width: 56px;
  height: 56px;
}

/* Outer track */
.page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

/* Gold arc — primary spin */
.page-loader__ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #e0a530;
  border-right-color: rgba(224, 165, 48, 0.35);
  animation: page-loader-spin 0.9s cubic-bezier(.45, .05, .55, .95) infinite;
  box-sizing: border-box;
}

/* Soft secondary counter-arc */
.page-loader__ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(240, 192, 99, 0.55);
  animation: page-loader-spin-reverse 1.4s linear infinite;
  box-sizing: border-box;
}

/* Center mark */
.page-loader__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #e0a530;
  box-shadow: 0 0 12px rgba(224, 165, 48, 0.55);
  animation: page-loader-pulse 1.2s ease-in-out infinite;
}

.page-loader__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 4.5rem;
}

.page-loader__percent {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f5f5f0;
  font-variant-numeric: tabular-nums;
  min-height: 1.25em;
}

.page-loader__label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9a9a92;
  animation: page-loader-label 1.6s ease-in-out infinite;
}

@keyframes page-loader-spin {
  to { transform: rotate(360deg); }
}

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

@keyframes page-loader-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.65);
    opacity: 0.55;
  }
}

@keyframes page-loader-label {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

body.is-loading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__ring::before,
  .page-loader__ring::after,
  .page-loader__core,
  .page-loader__label {
    animation: none;
  }
  .page-loader__ring::before {
    border-top-color: #e0a530;
    border-right-color: #e0a530;
  }
}

/* ===== phase4.css ===== */
/* ==========================================================
   PHASE 4 — Premium visual system (overrides, non-breaking)
   ========================================================== */

:root {
  --bg: #0a0a0b;
  --bg-alt: #101012;
  --bg-raised: #16161a;
  --text: #f4f4ef;
  --text-dim: #8f8f88;
  --accent: #d4a84b;
  --accent-light: #e8c878;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(18, 18, 22, 0.72);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.45);
  --ease-premium: cubic-bezier(0.16, 0.84, 0.24, 1);
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212, 168, 75, 0.07), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(120, 140, 180, 0.04), transparent 50%),
    var(--bg);
  color: var(--text);
}

/* Grain at the bottom visual layer — never above content */
.grain {
  z-index: 1 !important;
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.nav,
main,
.footer,
.footer-clay {
  position: relative;
  z-index: 2;
}

.nav {
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--border);
}

.btn {
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  box-shadow: none;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-deep);
  border-radius: 18px;
  transition: transform 0.4s var(--ease-premium), border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 75, 0.25);
}

/* ---------- Homepage hero: two-column stage ---------- */
.hero.hero--stage {
  min-height: min(100vh, 920px);
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero.hero--stage .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 20;
}

.hero.hero--stage .hero-copy {
  max-width: 620px;
}

.hero.hero--stage .eyebrow {
  color: var(--accent-light);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.hero.hero--stage h1 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 1rem 0 1.4rem;
}

.hero-line--dim {
  font-weight: 700;
}

.hero.hero--stage .hero-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.hero-trust__item {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

/* Right visual stage */
.hero-stage {
  position: relative;
  min-height: 520px;
  height: clamp(420px, 62vh, 620px);
}

.hero-stage__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.hero-stage__glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.16), transparent 68%);
  filter: blur(28px);
  z-index: 2;
  pointer-events: none;
  animation: hero-stage-glow 9s ease-in-out infinite alternate;
}

@keyframes hero-stage-glow {
  from { opacity: 0.55; transform: scale(0.96); }
  to { opacity: 0.9; transform: scale(1.05); }
}

/* Floating UI cards (2D) */
.hero-float {
  position: absolute;
  z-index: 8;
  width: min(220px, 42%);
  padding: 14px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-deep);
  pointer-events: auto;
  transition: transform 0.45s var(--ease-premium), border-color 0.3s ease;
}

.hero-float:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(212, 168, 75, 0.28);
}

.hero-float__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.hero-float__title {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.hero-float--whatsapp {
  top: 8%;
  left: 0;
  animation: float-a 7.5s ease-in-out infinite;
}

.hero-float--ads {
  top: 38%;
  right: 0;
  animation: float-b 8.5s ease-in-out infinite;
}

.hero-float--web {
  bottom: 6%;
  left: 12%;
  animation: float-c 9s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Mini UI insides */
.ui-chat {
  display: grid;
  gap: 8px;
}
.ui-chat__row {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.05);
  color: #d8d8d2;
}
.ui-chat__row--ai {
  background: rgba(212, 168, 75, 0.12);
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.ui-chart {
  height: 56px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 8px 0;
}
.ui-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-light), rgba(212, 168, 75, 0.25));
  opacity: 0.85;
}
.ui-chart span:nth-child(1) { height: 35%; }
.ui-chart span:nth-child(2) { height: 55%; }
.ui-chart span:nth-child(3) { height: 42%; }
.ui-chart span:nth-child(4) { height: 78%; }
.ui-chart span:nth-child(5) { height: 62%; }
.ui-chart span:nth-child(6) { height: 90%; }

.ui-metric {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.ui-metric strong {
  color: var(--text);
  font-weight: 600;
}

.ui-browser {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0e0e10;
}
.ui-browser__bar {
  display: flex;
  gap: 5px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.04);
}
.ui-browser__bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: block;
}
.ui-browser__body {
  height: 70px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 30%, transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 70%);
  background-size: 100% 12px, 100% 100%;
  background-repeat: no-repeat;
  background-position: 12px 16px, 0 0;
}

/* Services list premium interaction */
.service-row {
  border-color: var(--border);
  transition: background 0.4s var(--ease-premium), border-color 0.35s ease, transform 0.35s var(--ease-premium);
}
.service-row:hover,
.service-row.is-open {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 168, 75, 0.28);
  box-shadow: inset 0 0 0 1px rgba(212, 168, 75, 0.08);
}

/* Work cards */
.case-item {
  border-radius: 16px;
}
.case-item .thumb,
.case-item .case-image {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #151518, #0c0c0e);
  box-shadow: var(--shadow-deep);
}

/* Section atmosphere */
.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.lede {
  color: var(--text-dim);
}

/* Page accents */
.page-accent {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.1), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}
.page-accent--tl { top: 12%; left: 4%; }
.page-accent--br { bottom: 10%; right: 6%; }

@media (max-width: 1024px) {
  .hero.hero--stage .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stage {
    min-height: 380px;
    height: 400px;
    order: -1;
  }
  .hero.hero--stage h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }
}

@media (max-width: 640px) {
  .hero-float {
    width: 46%;
    padding: 10px;
  }
  .hero-float__title { font-size: 0.78rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-float--web { left: 4%; }
}

/* ===== phase4-fix.css ===== */
/* Critical fixes — load after phase4.css */

/* Loader must cover the full viewport (phase4 had accidentally set position:relative) */
.page-loader {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0a0a0b !important;
  gap: 1.25rem;
  margin: 0 !important;
  transform: none !important;
}

.page-loader.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.nav,
main,
.footer,
.footer-clay {
  position: relative;
  z-index: 2;
}

/* Hero cards depth */
.hero-stage {
  perspective: 1400px;
}
.hero-stage__canvas {
  z-index: 12 !important;
}
.hero-float {
  z-index: 8;
  transform-style: preserve-3d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(145deg, rgba(30, 30, 34, 0.94), rgba(10, 10, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-float--whatsapp {
  transform: rotateY(12deg) rotateX(4deg);
  animation: float-a-3d 7.5s ease-in-out infinite;
}
.hero-float--ads {
  transform: rotateY(-14deg) rotateX(6deg);
  animation: float-b-3d 8.5s ease-in-out infinite;
}
.hero-float--web {
  transform: rotateY(8deg) rotateX(-5deg);
  animation: float-c-3d 9s ease-in-out infinite;
}
.hero-float:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border-color: rgba(212, 168, 75, 0.35);
}
@keyframes float-a-3d {
  0%, 100% { transform: rotateY(12deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(12deg) rotateX(4deg) translateY(-12px); }
}
@keyframes float-b-3d {
  0%, 100% { transform: rotateY(-14deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-14deg) rotateX(6deg) translateY(10px); }
}
@keyframes float-c-3d {
  0%, 100% { transform: rotateY(8deg) rotateX(-5deg) translateY(0); }
  50% { transform: rotateY(8deg) rotateX(-5deg) translateY(-8px); }
}

.service-visual {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 75, 0.08), transparent 65%);
}
.service-visual__canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.service-row:hover .service-visual__canvas,
.service-row.active .service-visual__canvas {
  opacity: 1;
}

/* ===== phase4-polish.css ===== */
/* ==========================================================
   Phase 4 polish — hero, services, about, ambient
   ========================================================== */

/* —— Service visual: no box boundary —— */
.service-visual {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 180px;
}
.service-visual__canvas {
  border: none !important;
}

/* —— Hero: tight under nav, stretched slim type —— */
.hero.hero--stage {
  padding-top: 56px !important;
  padding-bottom: 28px !important;
  min-height: 0 !important;
}

.hero.hero--stage .eyebrow {
  margin-top: 0;
}

.hero.hero--stage .hero-layout {
  gap: 28px !important;
  align-items: center;
  min-height: calc(100vh - 120px);
  max-height: calc(100vh - 100px);
}

.hero.hero--stage h1 {
  font-family: "Poppins", "Inter", system-ui, sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  transform: scaleX(1.06);
  transform-origin: left center;
  max-width: none;
  margin: 0.5rem 0 0.9rem !important;
}

.hero.hero--stage .hero-line {
  font-weight: 300;
  display: inline-block;
}

.hero.hero--stage .hero-line--dim {
  font-weight: 200;
}

.hero.hero--stage .hero-desc {
  font-size: 0.95rem !important;
  margin-bottom: 1.1rem !important;
  max-width: 30rem;
}

.hero-actions {
  margin-bottom: 1rem !important;
}

.hero-stage {
  min-height: 0 !important;
  height: clamp(340px, 52vh, 480px) !important;
}

/* —— Hero light rays —— */
.hero-stage__rays {
  position: absolute;
  inset: -10% -15%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 55% 48%, rgba(224, 165, 48, 0.22), transparent 70%),
    radial-gradient(ellipse 30% 55% at 70% 40%, rgba(255, 200, 100, 0.12), transparent 65%),
    conic-gradient(from 200deg at 58% 52%, transparent 0deg, rgba(224, 165, 48, 0.08) 25deg, transparent 55deg, transparent 180deg, rgba(255, 210, 120, 0.06) 210deg, transparent 250deg);
  filter: blur(18px);
  animation: hero-rays-pulse 10s ease-in-out infinite alternate;
  opacity: 0.9;
}

.hero-stage__ray-beam {
  position: absolute;
  width: 2px;
  height: 55%;
  top: 18%;
  left: 58%;
  background: linear-gradient(180deg, transparent, rgba(224, 165, 48, 0.45), transparent);
  transform: rotate(-28deg);
  filter: blur(1.5px);
  opacity: 0.55;
  animation: hero-beam 7s ease-in-out infinite alternate;
}

.hero-stage__ray-beam--2 {
  left: 48%;
  height: 48%;
  transform: rotate(18deg);
  opacity: 0.35;
  animation-delay: -2s;
}

@keyframes hero-rays-pulse {
  from { opacity: 0.55; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.04); }
}
@keyframes hero-beam {
  from { opacity: 0.25; }
  to { opacity: 0.65; }
}

/* Clean glass cards — no thick edge */
.hero-float {
  pointer-events: none !important;
  transition: none !important;
  border-radius: 14px !important;
  padding: 14px !important;
  width: min(210px, 40%) !important;
  background: rgba(16, 16, 20, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
  transform-style: preserve-3d !important;
}

.hero-float::before,
.hero-float::after {
  display: none !important;
  content: none !important;
}

.hero-float--whatsapp {
  top: 2% !important;
  left: -4% !important;
  right: auto !important;
  z-index: 7 !important;
  transform: rotateY(8deg) rotateX(3deg) !important;
  animation: float-clean-a 8s ease-in-out infinite !important;
}

.hero-float--ads {
  top: 28% !important;
  right: -6% !important;
  left: auto !important;
  z-index: 7 !important;
  transform: rotateY(-10deg) rotateX(4deg) !important;
  animation: float-clean-b 9s ease-in-out infinite !important;
}

.hero-float--web {
  bottom: 2% !important;
  left: 8% !important;
  right: auto !important;
  z-index: 7 !important;
  transform: rotateY(6deg) rotateX(-3deg) !important;
  animation: float-clean-c 10s ease-in-out infinite !important;
}

.hero-stage__canvas {
  z-index: 12 !important;
}

.hero-float:hover {
  transform: inherit !important;
}

@keyframes float-clean-a {
  0%, 100% { transform: rotateY(8deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(8deg) rotateX(3deg) translateY(-8px); }
}
@keyframes float-clean-b {
  0%, 100% { transform: rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(4deg) translateY(6px); }
}
@keyframes float-clean-c {
  0%, 100% { transform: rotateY(6deg) rotateX(-3deg) translateY(0); }
  50% { transform: rotateY(6deg) rotateX(-3deg) translateY(-6px); }
}

/* Ambient */
.page-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-ambient canvas {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.55;
}
.page-ambient canvas:nth-child(1) { top: 18%; right: 6%; }
.page-ambient canvas:nth-child(2) { top: 55%; left: 3%; }
.page-ambient canvas:nth-child(3) { bottom: 12%; right: 18%; }
.page-ambient canvas:nth-child(4) { top: 72%; left: 22%; width: 140px; height: 140px; }

/* About story cards */
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.about-story-card {
  background: linear-gradient(160deg, rgba(28, 28, 32, 0.9), rgba(12, 12, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.24, 1), border-color 0.3s ease;
}
.about-story-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(212, 168, 75, 0.28);
}
.about-story-card .eyebrow {
  color: #e8c878;
  margin-bottom: 12px;
  display: block;
}
.about-story-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 600;
}
.about-story-card p {
  color: #9a9a92;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Team cards — only hovered expands */
.team-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2rem;
  align-items: start !important;
}

.team-card {
  position: relative;
  background: linear-gradient(165deg, rgba(30, 30, 34, 0.95), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 28px 22px 24px;
  overflow: hidden;
  cursor: pointer;
  align-self: start !important;
  height: auto !important;
  min-height: 200px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.team-card__shape {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  display: block;
}

.team-card__name {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #f4f4ef;
}

.team-card__role {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8c878;
  margin: 0;
}

.team-card__bio {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  color: #9a9a92;
  font-size: 0.9rem;
  line-height: 1.65;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}

.team-card:hover,
.team-card.is-open {
  min-height: 200px !important;
  height: auto !important;
  border-color: rgba(212, 168, 75, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.team-card:hover .team-card__bio,
.team-card.is-open .team-card__bio {
  max-height: 220px;
  opacity: 1;
  margin-top: 16px;
}

.about-cursor-shape {
  position: fixed;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.35;
  mix-blend-mode: screen;
}

@media (max-width: 1024px) {
  .hero.hero--stage .hero-layout {
    min-height: 0;
    max-height: none;
  }
  .hero-stage {
    height: 320px !important;
  }
}

@media (max-width: 768px) {
  .hero.hero--stage h1 {
    transform: scaleX(1.02);
    font-size: clamp(2.4rem, 11vw, 3.4rem) !important;
  }
  .page-ambient canvas { opacity: 0.3; width: 110px; height: 110px; }
}

/* ===== phase4-final.css ===== */
/* See repo phase4-final + phase4-mobile merged for responsive system */
/* ========== Desktop base (readable type + global hero) ========== */
.hero.section,
.section.hero,
section.hero {
  padding-top: 96px !important;
  padding-bottom: 52px !important;
  overflow: visible !important;
}
.hero .wrap, .section.hero .wrap { overflow: visible !important; }
.hero h1, .section.hero h1, .hero.hero--stage h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.4) !important;
  color: #f6f5f0 !important;
}
.hero .lede, .section.hero .lede, .hero-desc, p.lede, .featured-desc, .about-text p, .contact-form-card .form-intro {
  color: #c8c8c0 !important; opacity: 1 !important; font-weight: 400 !important;
}
.hero .lede, .hero-desc { max-width: 36rem; line-height: 1.65 !important; }
.eyebrow { color: #e0b24a !important; opacity: 1 !important; }
.hero.hero--stage { padding-top: 64px !important; padding-bottom: 36px !important; }
.hero.hero--stage .hero-layout {
  min-height: 0 !important; max-height: none !important; gap: 28px !important;
  overflow: visible !important; align-items: center !important; padding-right: 12px !important;
}
.hero.hero--stage h1 { font-size: clamp(2.75rem, 6vw, 5.3rem) !important; line-height: 0.9 !important; }
.hero.hero--stage .hero-actions { overflow: visible !important; flex-wrap: wrap; gap: 12px; z-index: 30; position: relative; }
.hero-stage {
  position: relative !important; overflow: visible !important;
  height: clamp(420px, 54vh, 540px) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  perspective: 900px !important; padding-right: 28px !important; padding-left: 12px !important;
  box-sizing: border-box !important;
}
.hero-stage__canvas {
  position: absolute !important; left: 50% !important; top: 50% !important;
  transform: translate(-50%, -50%) !important; width: 85% !important; height: 95% !important;
  z-index: 30 !important; pointer-events: auto !important; overflow: visible !important;
}
.hero-float {
  pointer-events: none !important; z-index: 12 !important; width: min(214px, 40%) !important;
  padding: 14px 15px !important; border-radius: 16px !important;
  background: linear-gradient(165deg, rgba(36,36,42,0.94), rgba(14,14,18,0.9)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important; backdrop-filter: blur(18px) !important;
  transform-style: preserve-3d !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 10px 28px rgba(0,0,0,0.5), 0 22px 44px rgba(0,0,0,0.32) !important;
}
.hero-float::before, .hero-float::after { display: none !important; content: none !important; }
.hero-float--whatsapp {
  top: 2% !important; left: -4% !important; right: auto !important; bottom: auto !important;
  transform: perspective(800px) rotateY(18deg) rotateX(6deg) !important;
  animation: orbit-a 9s ease-in-out infinite !important;
}
.hero-float--ads {
  top: 2% !important; right: 6% !important; left: auto !important; bottom: auto !important;
  transform: perspective(800px) rotateY(-18deg) rotateX(6deg) !important;
  animation: orbit-b 10s ease-in-out infinite !important;
}
.hero-float--web {
  bottom: 2% !important; left: 6% !important; right: auto !important; top: auto !important;
  transform: perspective(800px) rotateY(-16deg) rotateX(-5deg) !important;
  animation: orbit-c 11s ease-in-out infinite !important;
}
@keyframes orbit-a {
  0%, 100% { transform: perspective(800px) rotateY(18deg) rotateX(6deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(18deg) rotateX(6deg) translateY(-8px); }
}
@keyframes orbit-b {
  0%, 100% { transform: perspective(800px) rotateY(-18deg) rotateX(6deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(-18deg) rotateX(6deg) translateY(6px); }
}
@keyframes orbit-c {
  0%, 100% { transform: perspective(800px) rotateY(-16deg) rotateX(-5deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(-16deg) rotateX(-5deg) translateY(7px); }
}
.section-canvas, .hero:not(.hero--stage) .hero-canvas, .hero-canvas:not(.hero-stage__canvas) {
  display: none !important; opacity: 0 !important; pointer-events: none !important; visibility: hidden !important;
}
.about-story-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.about-story-card {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(224,165,48,0.12), transparent 55%), linear-gradient(165deg, rgba(32,32,38,0.95), rgba(10,10,14,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 22px !important;
  padding: 28px 24px 32px !important; box-shadow: 0 22px 50px rgba(0,0,0,0.4) !important; min-height: 220px;
  transition: transform 0.4s cubic-bezier(0.16,0.84,0.24,1), border-color 0.3s ease !important;
}
.about-story-card:hover { transform: translateY(-8px) !important; border-color: rgba(212,168,75,0.4) !important; }
.about-story-card h3 { font-size: 1.35rem !important; margin: 0 0 14px !important; color: #f4f4ef !important; }
.about-story-card p { color: #c4c4bc !important; line-height: 1.7 !important; margin: 0 !important; }
.page-hero-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.page-hero-mark {
  width: 120px; height: 120px; border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(224,165,48,0.35), transparent 55%), linear-gradient(145deg, rgba(40,40,48,0.9), rgba(12,12,14,0.95));
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4); position: relative; overflow: hidden;
}
.contact-shell { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.contact-form-card {
  background: linear-gradient(165deg, rgba(28,28,34,0.95), rgba(12,12,16,0.98));
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 16px; color: #f4f4ef; font: inherit; outline: none;
}
.contact-side { display: grid; gap: 16px; }
.contact-chip {
  background: rgba(18,18,22,0.9); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 20px 18px;
}

/* ========== Mobile responsive layer ========== */
html, body { overflow-x: hidden; max-width: 100vw; }
img, video, canvas { max-width: 100%; }
.btn, .nav__toggle, .nav__links a, .service-row, .team-card { min-height: 44px; }

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px !important; position: sticky; top: 0; z-index: 1000;
    background: rgba(10,10,12,0.92); backdrop-filter: blur(16px);
  }
  .nav__logo { font-size: 22px !important; }
  .nav__toggle {
    display: inline-flex !important; align-items: center; justify-content: center;
    min-width: 48px; min-height: 44px; padding: 10px 14px !important; border-radius: 10px;
  }
  .nav__links {
    display: none; position: fixed !important; inset: 0; top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100dvh !important; z-index: 999;
    background: rgba(8,8,10,0.97) !important; flex-direction: column; justify-content: center;
    align-items: center; gap: 28px !important; padding: 80px 28px 40px !important; margin: 0;
  }
  .nav__links.is-open { display: flex !important; }
  .nav__links a {
    font-size: 1.35rem !important; letter-spacing: 0.18em; padding: 12px 16px;
    min-height: 48px; display: inline-flex; align-items: center;
  }
  body.nav-open { overflow: hidden; touch-action: none; }
  body.nav-open .nav { z-index: 1001; }
  .service-row { display: block; padding: 18px 12px; min-height: 56px; }
  .service-visual { min-height: 120px !important; margin-top: 12px; }
  .page-ambient canvas { width: 90px !important; height: 90px !important; opacity: 0.22 !important; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.8rem) !important; }
  h2 { font-size: clamp(1.45rem, 6.5vw, 2rem) !important; }
  h3 { font-size: clamp(1.1rem, 4.5vw, 1.35rem) !important; }
  .lede { font-size: 0.95rem !important; line-height: 1.65 !important; }
}

@media (max-width: 1024px) {
  .hero.hero--stage .hero-layout {
    display: flex !important; flex-direction: column !important; gap: 28px !important; padding-right: 0 !important;
  }
  .hero.hero--stage .hero-copy { order: 1; width: 100%; }
  .hero.hero--stage .hero-stage {
    order: 2; width: 100%; max-width: 100%;
    height: min(360px, 55vw) !important; min-height: 280px !important;
    padding-right: 0 !important; padding-left: 0 !important;
  }
  .hero.hero--stage h1 {
    font-size: clamp(2.1rem, 10vw, 3.4rem) !important; transform: scaleX(1.02) !important;
    transform-origin: left center; overflow-wrap: anywhere;
  }
  .hero.hero--stage .hero-actions { flex-direction: column; align-items: stretch; }
  .hero.hero--stage .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stage__canvas { width: 70% !important; height: 80% !important; z-index: 20 !important; }
  .hero-float { width: min(42%, 150px) !important; padding: 10px !important; z-index: 10 !important; }
  .hero-float--whatsapp { top: 0 !important; left: 0 !important; }
  .hero-float--ads { top: 0 !important; right: 0 !important; left: auto !important; }
  .hero-float--web { bottom: 0 !important; left: 50% !important; transform: translateX(-50%) !important; }
  .page-hero-panel { grid-template-columns: 1fr !important; }
  .page-hero-mark { display: none !important; }
}

@media (max-width: 480px) {
  .hero.section, .section.hero, section.hero { padding-top: 80px !important; padding-bottom: 36px !important; }
  .hero.hero--stage { padding-top: 72px !important; padding-bottom: 28px !important; }
  .hero.hero--stage h1 { font-size: clamp(1.85rem, 9.5vw, 2.6rem) !important; }
  .hero-stage { height: 300px !important; }
  .hero-float { width: min(46%, 132px) !important; padding: 8px !important; }
}

@media (max-width: 900px) {
  .grid--2, .grid--3, .about-story-grid, .team-grid, .contact-shell, .form-row {
    grid-template-columns: 1fr !important;
  }
  .wrap { padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
  .about-layout { display: flex !important; flex-direction: column !important; gap: 20px; }
  .footer-clay .footer-top, .footer.wrap { flex-direction: column; gap: 16px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float, .page-ambient canvas, .hero-stage__rays, .hero-stage__ray-beam { animation: none !important; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero.hero--stage .hero-stage { height: 220px !important; }
  .hero-float { display: none !important; }
}

/* ===== phase4-mobile-fix.css ===== */
/* Mobile bugfixes — nav, hero order, about, CTA */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

@media (max-width: 768px) {
  .nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 10050 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: rgba(10, 10, 12, 0.95) !important;
    backdrop-filter: blur(14px);
  }

  .nav.nav--hidden {
    transform: none !important;
  }

  .nav__toggle {
    display: inline-flex !important;
    position: relative !important;
    z-index: 10060 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    min-width: 52px !important;
    min-height: 44px !important;
    align-items: center;
    justify-content: center;
  }

  .nav__links {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    z-index: 10040 !important;
    background: #0a0a0b !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 96px 24px 40px !important;
    margin: 0 !important;
    list-style: none !important;
    pointer-events: auto !important;
  }

  .nav__links.is-open {
    display: flex !important;
  }

  .nav__links a {
    font-size: 1.25rem !important;
    letter-spacing: 0.16em !important;
    padding: 14px 20px !important;
    color: #f0f0ea !important;
    pointer-events: auto !important;
  }

  body.nav-open {
    overflow: hidden !important;
  }

  .hero-float--web {
    display: none !important;
  }

  .about-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .about-image {
    width: 100% !important;
    max-width: 100% !important;
    height: min(52vw, 320px) !important;
    min-height: 220px !important;
  }

  .about-text {
    width: 100% !important;
  }

  .about-text p {
    font-size: 1.05rem !important;
  }

  .cta-clay {
    padding: 96px 0 !important;
  }

  .cta-clay h2,
  .cta-clay [data-home-cta-title] {
    font-size: clamp(2.4rem, 12vw, 3.6rem) !important;
    line-height: 0.95 !important;
    margin: 20px 0 36px !important;
  }

  .cta-clay .btn,
  .cta-clay [data-home-cta-button] {
    font-size: 1rem !important;
    padding: 16px 28px !important;
  }

  .cta-section {
    padding: 88px 0 !important;
  }

  .cta-content h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem) !important;
  }
}

@media (max-width: 1024px) {
  .hero.hero--stage .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .hero.hero--stage .hero-stage {
    order: 1 !important;
    width: 100% !important;
    height: min(340px, 70vw) !important;
    min-height: 260px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .hero.hero--stage .hero-copy {
    order: 2 !important;
    width: 100% !important;
  }

  .hero-float--whatsapp {
    top: 4% !important;
    left: 2% !important;
  }

  .hero-float--ads {
    top: 4% !important;
    right: 2% !important;
  }
}

@media (max-width: 480px) {
  .about-image {
    height: 240px !important;
  }

  .cta-clay {
    padding: 72px 0 !important;
  }

  .cta-clay h2 {
    font-size: clamp(2.1rem, 11vw, 2.8rem) !important;
  }
}

/* ===== media.css ===== */
/* CMS-ready media system — placeholders, skeleton, fade-in */

.media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  overflow: hidden;
  background: #121216;
  border-radius: inherit;
}

.media-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.03) 80%
  );
  background-size: 200% 100%;
  animation: media-shimmer 1.4s ease-in-out infinite;
}

@keyframes media-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.media-img.is-loaded {
  opacity: 1;
}

.media-ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 180px;
  height: 100%;
  padding: 24px 16px;
  text-align: center;
  border-radius: inherit;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 70% 0%, rgba(212, 168, 75, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(120, 140, 200, 0.08), transparent 50%),
    linear-gradient(165deg, #1a1a20 0%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.media-ph__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.2), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  top: 20%;
  right: 15%;
}

.media-ph__icon {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  color: #e0b24a;
  opacity: 0.85;
}

.media-ph__icon--grid {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 168, 75, 0.35);
  border-radius: 8px;
  display: block;
}

.media-ph__avatar {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(224, 178, 74, 0.35), transparent 50%),
    linear-gradient(145deg, #2a2a32, #141418);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.media-ph__title {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f0ea;
  max-width: 90%;
}

.media-ph__sub {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a92;
}

.media-ph--studio { min-height: 280px; }
.media-ph--team {
  min-height: 120px;
  aspect-ratio: 1;
  max-width: 120px;
  border-radius: 50%;
  margin: 0 auto 12px;
}
.media-ph--gallery { min-height: 200px; }

.thumb .media-ph,
.case-image .media-ph,
.about-image .media-ph,
.browser-image .media-ph {
  min-height: inherit;
  height: 100%;
  border: none;
}

.thumb,
.case-image,
.browser-image {
  position: relative;
  overflow: hidden;
  background: #121216;
}

.about-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0 !important;
  color: transparent;
  letter-spacing: normal;
  text-transform: none;
}

.about-image .media-ph {
  min-height: 100%;
  width: 100%;
}

.gallery-empty { grid-column: 1 / -1; }

.team-member-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
