:root {
  --bg: #090a0d;
  --surface: #121418;
  --surface-2: #181b22;
  --surface-elevated: #20242d;
  --line: #22262f;
  --line-gold: rgba(212, 175, 55, 0.25);
  --titanium: #2b2c30;
  --titanium-light: #464a52;
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-light: #f3d476;
  --gold-dim: #947a26;
  --cyan: #d4af37; /* Reemplazado armónicamente por el nuevo tono dorado champaña */
  --text: #f5f4ef;
  --text-dim: #9da2ac;
  --text-faint: #5b606c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

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

::selection {
  background: var(--gold);
  color: #08090a;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(9, 10, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dim);
}

.nav-links a {
  transition: color .25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-light);
  transition: all .25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #090a0d;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

@media(max-width: 860px) {
  .nav-links {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5vw 60px;
  overflow: hidden;
}

#aperture-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 990px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 50px;
  }
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, #ffffff 10%, var(--gold-light) 50%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin-top: 24px;
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0b0c0e;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  background: #ffffff;
  color: #000;
}

.btn-secondary {
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all .25s ease;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

/* Monolito Hero Card Visual */
.hero-monolith-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.monolith-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.monolith-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, rgba(30, 32, 38, 0.85) 0%, rgba(16, 18, 22, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 48px 42px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
  animation: floatMonolith 6s ease-in-out infinite;
}

.monolith-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

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

.monolith-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.7));
}

.monolith-caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.core-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.5s infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 5vw;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
}

.hero-scroll .line {
  width: 36px;
  height: 1px;
  background: var(--text-faint);
}

/* ---------- SHARED SECTIONS ---------- */
section {
  padding: 120px 5vw;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.15;
}

.section-head p {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ---------- ECOSYSTEM / LIVE NODES ---------- */
.ecosystem-section {
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

@media(max-width: 880px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }
}

.eco-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 38px 34px;
  border-radius: 8px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.eco-card:hover {
  background: var(--surface-2);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.full-span-card {
  grid-column: 1 / -1;
}

.node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.eco-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.live-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gold-pill {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.3);
}

.muted-pill {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-faint);
  border-color: var(--line);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse 1.6s infinite;
}

.node-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.brand-logo-img {
  height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

/* Logos con tipografía oscura que requieren base clara para máxima legibilidad */
.brand-logo-img.light-contrast {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Logos que brillan directamente sobre el titanio oscuro */
.brand-logo-img.direct-dark {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7));
}

.eco-ai {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.06);
}

.eco-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.eco-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Simulación de Chat Conversacional en Vivo */
.live-sim {
  margin-top: 22px;
  margin-bottom: 24px;
  background: rgba(10, 11, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.sim-indicator {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.sim-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.sim-bubble {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bubble-tag {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.user-bubble {
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid var(--text-faint);
  color: #ddd;
}

.user-bubble .bubble-tag {
  color: var(--text-dim);
}

.ai-bubble {
  background: rgba(212, 175, 55, 0.08);
  border-left: 2px solid var(--gold);
  color: #fff;
}

.ai-bubble .bubble-tag {
  color: var(--gold-light);
}

.card-footer-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-btn {
  font-size: 0.8rem;
  padding: 9px 18px;
}

.eco-status {
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* ---------- PARTNERS (ALIADOS) ---------- */
.partners {
  padding: 90px 5vw;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #08090b;
}

.partners .section-head {
  margin: 0 auto 50px auto;
}

.partners .section-tag {
  justify-content: center;
  display: flex;
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  border: 1px solid var(--line);
  padding: 42px 38px;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.partner-logo {
  max-width: 250px;
  height: auto;
  margin: 0 auto 24px auto;
  display: block;
}

.partner-name {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: #121417;
}

.partner-desc {
  font-size: 0.95rem;
  color: #4a4e56;
  line-height: 1.65;
}

/* ---------- ENGINE SECTION ---------- */
.engine {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engine-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

@media(max-width: 890px) {
  .engine-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.engine-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.engine-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.engine-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.96rem;
}

.engine-list .mono {
  font-size: 0.72rem;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(212, 175, 55, 0.05);
}

/* ---------- FOUNDER SECTION ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

@media(max-width: 860px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.founder-frame {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px 34px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fmono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.fmono.br {
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 4px;
  margin-bottom: 24px;
}

.founder-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.founder-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}

.founder-copy p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.founder-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.founder-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.07) 0%, transparent 60%);
}

.contact h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.contact-actions {
  margin: 36px 0 60px;
  display: flex;
  justify-content: center;
}

.contact-emails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.email-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 18px;
  text-align: left;
  transition: all .25s ease;
}

.email-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: var(--surface-2);
}

.email-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.email-address {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

.email-card:hover .email-address {
  color: var(--gold-light);
}

/* ---------- EQUIPO DIRECTIVO & COLABORADORES ---------- */
.team-section {
  padding: 100px 5vw;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 48px auto 0;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.team-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(212, 175, 55, 0.18);
}

.team-photo-wrap {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
  background: #090a0d;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.04);
}

.team-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 20, 24, 0.75) 75%, var(--surface) 100%);
  pointer-events: none;
}

.team-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--surface);
}

.team-role-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.team-bio {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.team-contact-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.team-btn-contact {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-card-nfc {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
}

.btn-card-nfc:hover, .btn-card-nfc:active {
  background: var(--gold);
  color: #090a0d;
  border-color: var(--gold);
}

.btn-card-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
}

.btn-card-wa:hover, .btn-card-wa:active {
  background: #25D366;
  color: #090a0d;
}

/* RESPONSIVE MÓVIL (Safari / iOS & Android) */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 32px;
  }
  
  .team-photo-wrap {
    height: 380px;
  }
  
  .team-card {
    border-radius: 22px;
    margin: 0 4px;
  }
  
  .team-body {
    padding: 24px 20px 26px;
  }
  
  .team-name {
    font-size: 1.35rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
    line-height: 1.62;
    margin-bottom: 22px;
  }

  .team-contact-row {
    flex-direction: column;
    gap: 10px;
  }

  .team-btn-contact {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}

/* ---------- FOOTER ---------- */
footer {
  padding: 38px 5vw;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #060708;
}
