:root {
  --g900: #041e3a; /* Azul marino muy oscuro */
  --g800: #072a4f; /* Azul marino oscuro */
  --g700: #0b3c66; /* Azul profundo */
  --g600: #0f4c81; /* Azul clásico */
  --g500: #0284c7; /* Azul brillante / Cielo */
  --g400: #38bdf8; /* Azul claro / Cian */
  --g300: #7dd3fc; /* Azul pastel */
  --g200: #bae6fd; /* Azul muy claro */
  --g100: #e0f2fe; /* Blanco azulado */
  --g50:  #f0f9ff; /* Sutil tinte azul de fondo */
  --ink:  #081726; /* Texto principal oscuro con matiz azul */
  --muted:#334e68; /* Texto secundario apagado */
  --white:#ffffff;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mw:   1200px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font); color:var(--ink); background:var(--white); line-height:1.72; overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
strong { font-weight:700; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:900;
  height:64px; padding:0 40px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid transparent;
  transition:background .3s, border-color .3s;
}
.nav.scrolled {
  background:rgba(4,30,58,.97);
  backdrop-filter:blur(12px);
  border-color:rgba(255,255,255,.08);
}
.nav-logo { font-size:15px; font-weight:800; letter-spacing:-.03em; color:var(--white); }
.nav-logo em { font-style:normal; color:var(--g300); }
.nav-links { display:flex; gap:28px; }
.nav-links a { font-size:13px; font-weight:500; color:rgba(255,255,255,.65); transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-ham {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:5px; background:none; border:none;
}
.nav-ham span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; transition:all .3s; }
.nav-ham.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-ham.open span:nth-child(2) { opacity:0; }
.nav-ham.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mob-menu {
  display:none; position:fixed; inset:0; z-index:850;
  background:rgba(4,30,58,.98); backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center; gap:24px;
}
.mob-menu.open { display:flex; }
.mob-menu a { font-size:26px; font-weight:800; color:var(--white); letter-spacing:-.03em; transition:color .2s; }
.mob-menu a:hover { color:var(--g300); }

/* ── BACK TO TOP ───────────────────────────────── */
.btt {
  position:fixed; bottom:28px; right:28px; z-index:800;
  width:42px; height:42px; border-radius:50%;
  background:var(--g500); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:17px;
  box-shadow:0 4px 18px rgba(2,132,199,.4); cursor:pointer;
  opacity:0; transform:translateY(8px); transition:all .25s;
}
.btt.show { opacity:1; transform:translateY(0); }
.btt:hover { background:var(--g400); transform:translateY(-3px); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height:100vh; display:flex; align-items:center;
  background:linear-gradient(145deg, var(--g900) 0%, var(--g800) 55%, var(--g900) 100%);
  position:relative; overflow:hidden;
}
.hero-glow {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(56,189,248,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(2,132,199,.08) 0%, transparent 55%);
}
.hero-dots {
  position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:32px 32px;
}
.hero-letter {
  position:absolute; right:-60px; bottom:-60px;
  font-size:min(60vw,680px); font-weight:900; line-height:.85; letter-spacing:-.1em;
  color:rgba(255,255,255,.022); pointer-events:none; user-select:none;
}
.hero-in {
  position:relative; z-index:1;
  max-width:var(--mw); margin:0 auto; width:100%;
  padding:116px 40px 80px;
  display:grid; grid-template-columns:1fr 400px; gap:72px; align-items:center;
}
.hero-kicker {
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:var(--g300); margin-bottom:22px;
}
.hero-kicker::before { content:""; width:30px; height:1px; background:var(--g300); }
h1.hname {
  font-size:clamp(50px,7.5vw,90px);
  font-weight:900; line-height:.9; letter-spacing:-.055em; color:var(--white);
}
h1.hname em { font-style:normal; display:block; color:var(--g300); }
.hero-role { margin-top:20px; font-size:15px; color:rgba(255,255,255,.5); line-height:1.5; }
.hero-tagline { margin-top:26px; font-size:18px; color:rgba(255,255,255,.85); line-height:1.65; max-width:480px; }
.hero-quote {
  margin-top:28px; padding:16px 18px;
  border-left:3px solid var(--g400);
  background:rgba(255,255,255,.04); border-radius:0 6px 6px 0;
  font-size:14px; color:rgba(255,255,255,.62); line-height:1.72; max-width:480px;
}
.hero-stats {
  display:flex; margin-top:40px;
  border-top:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:20px 0;
}
.hs { flex:1; padding-right:20px; margin-right:20px; border-right:1px solid rgba(255,255,255,.1); }
.hs:last-child { border-right:none; padding-right:0; margin-right:0; }
.hs-n { font-size:32px; font-weight:900; letter-spacing:-.06em; color:var(--white); line-height:1; }
.hs-n b { color:var(--g300); }
.hs-l { font-size:11px; color:rgba(255,255,255,.4); letter-spacing:.06em; margin-top:4px; }
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; margin-top:36px; }
.btn-g {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; background:var(--g500); color:var(--white);
  border-radius:6px; font-size:14px; font-weight:700; transition:all .2s;
}
.btn-g:hover { background:var(--g400); transform:translateY(-2px); box-shadow:0 8px 24px rgba(2,132,199,.4); }
.btn-go {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border:1.5px solid rgba(255,255,255,.22); color:rgba(255,255,255,.85);
  border-radius:6px; font-size:14px; font-weight:500; transition:all .2s;
}
.btn-go:hover { border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.06); }

.hphoto-wrap {
  position:relative; border-radius:20px; overflow:hidden;
  aspect-ratio:2/3; max-height:570px; background:var(--g700);
}
.hphoto-wrap img { width:100%; height:100%; object-fit:cover; }
.hphoto-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(4,30,58,.6) 0%, transparent 45%);
}
.hphoto-badge {
  position:absolute; bottom:18px; left:18px; right:18px;
  background:rgba(4,30,58,.82); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.1); border-radius:10px; padding:12px 14px;
}
.hphoto-badge .hb-name { font-size:14px; font-weight:800; color:var(--white); }
.hphoto-badge .hb-role { font-size:12px; color:var(--g300); margin-top:2px; }
.hero-chips { display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.h-chip {
  font-size:11px; font-weight:600; letter-spacing:.05em; padding:5px 11px; border-radius:999px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.13); color:rgba(255,255,255,.65);
}
.scroll-hint {
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:5px;
  color:rgba(255,255,255,.3); font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  animation:bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(7px); }
}

/* ── SECCIONES BASE ────────────────────────────── */
.section { padding:88px 40px; }
.sec-in  { max-width:var(--mw); margin:0 auto; }
.eyebrow { font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--g500); margin-bottom:10px; }
.sec-title { font-size:clamp(26px,3.8vw,44px); font-weight:900; letter-spacing:-.04em; line-height:1.08; color:var(--ink); }
.sec-lead  { font-size:16px; color:var(--muted); max-width:640px; margin-top:12px; line-height:1.8; }
.sec-lead-wide { max-width:none; }
.sec-lead-wide + .sec-lead-wide { margin-top:14px; }
.sec-hd    { margin-bottom:56px; }

.bg-white { background:var(--white); }
.bg-mint  { background:var(--g50); }
.bg-dark  { background:linear-gradient(145deg, var(--g900) 0%, var(--g800) 100%); }
.bg-dark .sec-title { color:var(--white); }
.bg-dark .sec-lead  { color:rgba(255,255,255,.58); }
.bg-dark .eyebrow   { color:var(--g300); }

.hr    { height:1px; background:var(--g100); max-width:var(--mw); margin:0 auto; }

/* ── RESUMEN ───────────────────────────────────── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.about-item h3 { font-size:19px; font-weight:800; letter-spacing:-.025em; color:var(--ink); margin-bottom:14px; }
.about-item h3::before { content:""; display:block; width:28px; height:2px; background:var(--g500); margin-bottom:12px; }
.about-item p { font-size:16px; color:var(--muted); line-height:1.82; }

/* ── EXPERIENCIA — TIMELINE ────────────────────── */
.exp-grid { display:grid; grid-template-columns:300px 1fr; gap:64px; align-items:start; }
.exp-photo-col { position:sticky; top:84px; }
.exp-photo-frame { border-radius:16px; overflow:hidden; aspect-ratio:3/4; background:var(--g100); }
.exp-photo-frame img { width:100%; height:100%; object-fit:cover; }
.exp-photo-cap { margin-top:14px; }
.exp-photo-cap strong { font-size:14px; font-weight:800; color:var(--ink); display:block; }
.exp-photo-cap span   { font-size:13px; color:var(--muted); display:block; margin-top:2px; }

.timeline { position:relative; padding-left:32px; }
.timeline::before {
  content:""; position:absolute;
  left:7px; top:8px; bottom:20px; width:2px;
  background:linear-gradient(to bottom, var(--g400), var(--g100));
}
.tl-item { position:relative; padding-bottom:36px; }
.tl-item:last-child { padding-bottom:0; }
.tl-dot {
  position:absolute; left:-28px; top:5px;
  width:14px; height:14px; border-radius:50%; background:var(--g400);
  box-shadow:0 0 0 3px var(--g50), 0 0 0 5px var(--g200);
}
.tl-title { font-size:17px; font-weight:800; letter-spacing:-.02em; color:var(--ink); margin-bottom:3px; }
.tl-org   { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--g500); margin-bottom:10px; }
.tl-body  { font-size:14px; color:var(--muted); line-height:1.72; }
.tl-sub   { margin-top:10px; }
.tl-sub h4 { font-size:13px; font-weight:800; color:var(--ink); margin-bottom:2px; }
.tl-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px 24px; margin-top:4px; }
.tl-card { padding:15px 17px; background:rgba(2,132,199,.05); border-radius:10px; border:1px solid rgba(2,132,199,.13); border-top:2px solid var(--g400); }

/* ── COLABORACIONES ────────────────────────────── */
.collab-item { display:grid; grid-template-columns:300px 1fr; gap:64px; align-items:start; }
.collab-item + .collab-item { margin-top:56px; padding-top:56px; border-top:1px solid var(--g100); }
.collab-photo-frame { border-radius:16px; overflow:hidden; aspect-ratio:3/4; background:var(--g100); }
.collab-photo-frame img { width:100%; height:100%; object-fit:cover; }
.collab-body h3 { font-size:22px; font-weight:900; letter-spacing:-.03em; color:var(--ink); margin-bottom:16px; }
.collab-body h3::before { content:""; display:block; width:28px; height:2px; background:var(--g500); margin-bottom:14px; }
.collab-body p { font-size:16px; color:var(--muted); line-height:1.82; margin-bottom:20px; }
.collab-link {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:700; color:var(--g500); transition:color .2s;
}
.collab-link:hover { color:var(--g600); }

/* ── MEDIOS — CARRUSEL ─────────────────────────── */
.media-carousel { position:relative; }
.mc-track {
  display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth;
  padding:4px 4px 12px; margin:0 -4px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.mc-track::-webkit-scrollbar { display:none; }
.mc-card {
  flex:0 0 280px; background:var(--white); border-radius:14px; overflow:hidden;
  border:1px solid var(--g100); cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}
.mc-card:hover { transform:translateY(-5px); box-shadow:0 14px 30px rgba(2,132,199,.16); }
.mc-thumb { position:relative; aspect-ratio:16/9; background:var(--g700); overflow:hidden; }
.mc-thumb-empty { background:linear-gradient(135deg, var(--g700) 0%, var(--g900) 100%); }
.mc-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.mc-card:hover .mc-thumb img { transform:scale(1.06); }
.mc-play {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(to top, rgba(4,30,58,.35) 0%, transparent 55%);
}
.mc-play span {
  width:52px; height:52px; border-radius:50%; background:rgba(4,30,58,.72);
  display:flex; align-items:center; justify-content:center; color:var(--white); font-size:16px;
  transition:background .2s ease, transform .2s ease;
}
.mc-card:hover .mc-play span { background:var(--g500); transform:scale(1.08); }
.mc-info { padding:14px 16px 16px; }
.mc-date { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--g500); margin-bottom:6px; }
.mc-title { font-size:14px; font-weight:700; color:var(--ink); line-height:1.4; }
.mc-arrow {
  position:absolute; top:calc(50% - 34px); z-index:2;
  width:40px; height:40px; border-radius:50%; background:var(--white); border:1px solid var(--g100);
  box-shadow:0 6px 18px rgba(8,23,38,.12); color:var(--g600); font-size:20px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .2s ease;
}
.mc-arrow:hover { background:var(--g500); color:var(--white); border-color:var(--g500); }
.mc-prev { left:-20px; }
.mc-next { right:-20px; }

/* ── MEDIOS — MODAL ─────────────────────────────── */
.mc-modal {
  display:none; position:fixed; inset:0; z-index:1000;
  background:rgba(4,30,58,.92); backdrop-filter:blur(6px);
  align-items:center; justify-content:center; padding:24px;
}
.mc-modal.open { display:flex; }
.mc-modal-in { position:relative; width:100%; max-width:920px; }
.mc-modal-close {
  position:absolute; top:-46px; right:0; background:none; border:none;
  color:var(--white); font-size:24px; cursor:pointer; line-height:1;
}
.mc-modal-close:hover { color:var(--g300); }
.mc-modal-frame { position:relative; aspect-ratio:16/9; background:#000; border-radius:12px; overflow:hidden; box-shadow:0 30px 70px rgba(0,0,0,.5); }
.mc-modal-frame iframe { width:100%; height:100%; border:0; }

/* ── RECONOCIMIENTOS ───────────────────────────── */
.awards-cols { display:grid; grid-template-columns:1fr 1fr 1fr; gap:0; }
.aw-col { padding:0 32px; border-right:1px solid rgba(255,255,255,.1); }
.aw-col:first-child { padding-left:0; }
.aw-col:last-child  { border-right:none; padding-right:0; }
.aw-col h3 {
  font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--g300); margin-bottom:18px; padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.aw-col p  { font-size:14px; color:rgba(255,255,255,.65); line-height:1.72; margin-bottom:9px; }
.aw-col p:last-child { margin-bottom:0; }
.aw-col b  { color:rgba(255,255,255,.9); }
.aw-col a  { color:var(--g300); }
.aw-col a:hover { text-decoration:underline; }
.aw-col li { font-size:14px; color:rgba(255,255,255,.65); line-height:1.72; margin-bottom:9px; padding-left:14px; position:relative; }
.aw-col li::before { content:"–"; position:absolute; left:0; color:var(--g300); }

.talks-wrap { margin-top:60px; }
.talks-label { font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--g300); margin-bottom:8px; }
.talks-lead  { font-size:14px; color:rgba(255,255,255,.5); margin-bottom:28px; }
.talks-grid  { display:grid; grid-template-columns:1fr 1fr; gap:0 56px; }
.talk-row {
  display:grid; grid-template-columns:56px 1fr; gap:0 14px; align-items:baseline;
  padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.talk-row:last-child { border-bottom:none; }
.t-yr { font-size:11px; font-weight:700; letter-spacing:.1em; color:var(--g300); }
.t-ev { font-size:14px; font-weight:600; color:rgba(255,255,255,.82); line-height:1.35; }
.t-ev a { color:rgba(255,255,255,.82); }
.t-ev a:hover { color:var(--g300); }
.t-ds { font-size:12px; color:rgba(255,255,255,.42); margin-top:2px; }

/* ── VALOR ─────────────────────────────────────── */
.val-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.val-col  { padding:0 24px; border-right:1px solid var(--g100); }
.val-col:first-child { padding-left:0; }
.val-col:last-child  { border-right:none; padding-right:0; }
.val-n  { font-size:40px; font-weight:900; letter-spacing:-.07em; color:var(--g100); line-height:1; margin-bottom:14px; }
.val-col h3 { font-size:16px; font-weight:800; letter-spacing:-.02em; color:var(--ink); margin-bottom:12px; }
.val-col li { font-size:13px; color:var(--muted); padding:5px 0; border-bottom:1px solid var(--g100); line-height:1.55; }
.val-col li:last-child { border-bottom:none; }
.val-col h4 { font-size:10px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--g200); margin:14px 0 8px; }
.val-pull {
  margin-top:52px; max-width:640px; font-size:20px; font-style:italic;
  color:var(--muted); padding-left:24px; border-left:3px solid var(--g200); line-height:1.65;
}

/* ── SERVICIOS ─────────────────────────────────── */
.svc-block { padding-bottom:72px; }
.svc-block:last-child { padding-bottom:0; }
.svc-head { padding-bottom:28px; margin-bottom:40px; border-bottom:2px solid var(--g100); }
.svc-num  { font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--g500); margin-bottom:8px; }
.svc-htitle {
  font-size:clamp(18px,2.4vw,26px); font-weight:900; letter-spacing:-.03em;
  color:var(--ink); max-width:720px; line-height:1.2;
}
.svc-cols { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.svc-col-lbl {
  font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--g500); margin-bottom:18px; padding-bottom:10px; border-bottom:1px solid var(--g100);
}
.svc-col p { font-size:15px; color:var(--muted); line-height:1.82; margin-bottom:14px; }
.svc-col p:last-child { margin-bottom:0; }
.svc-pull {
  font-size:15px; font-style:italic; color:var(--g600);
  border-left:2px solid var(--g200); padding-left:14px; margin:14px 0; line-height:1.72;
}
/* Lista con estructura explícita — evita el bug de grid-items partidos */
.aporte-list li {
  display:grid; grid-template-columns:32px 1fr; gap:0 10px;
  padding:12px 0; border-bottom:1px solid var(--g100); align-items:start;
}
.aporte-list li:last-child { border-bottom:none; }
.al-n { font-size:11px; font-weight:700; letter-spacing:.06em; color:var(--g500); padding-top:3px; }
.al-b { font-size:15px; color:var(--muted); line-height:1.65; }
.al-b strong { color:var(--ink); }

/* ── MODELOS ───────────────────────────────────── */
.mdl-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.mdl-item { padding:36px 40px 36px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.mdl-item:nth-child(even) { padding-left:40px; padding-right:0; border-left:1px solid rgba(255,255,255,.08); }
.mdl-item:nth-child(3),
.mdl-item:nth-child(4)    { border-bottom:none; }
.mdl-n { font-size:12px; font-weight:700; letter-spacing:.16em; color:var(--g300); margin-bottom:12px; }
.mdl-item h3 { font-size:22px; font-weight:900; letter-spacing:-.03em; color:var(--white); margin-bottom:12px; }
.mdl-item p  { font-size:15px; color:rgba(255,255,255,.6); line-height:1.75; }
.mdl-quote   { margin-top:56px; text-align:center; font-size:22px; font-style:italic; color:rgba(255,255,255,.5); }

/* ── CONTACTO ──────────────────────────────────── */
.ct-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.ct-lbl  { font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--g300); margin-bottom:24px; }
.ct-link {
  display:block; font-size:clamp(18px,2.5vw,28px); font-weight:900;
  letter-spacing:-.03em; color:var(--white);
  margin-bottom:18px; padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.1); transition:color .2s;
}
.ct-link:last-child { border-bottom:none; }
.ct-link:hover { color:var(--g300); }
.ct-link span { display:block; font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:6px; }
.ct-sum h3 { font-size:18px; font-weight:800; color:var(--white); margin-bottom:20px; }
.ct-sum li { font-size:15px; color:rgba(255,255,255,.62); padding:9px 0; border-bottom:1px solid rgba(255,255,255,.08); display:flex; align-items:center; gap:10px; }
.ct-sum li:last-child { border-bottom:none; }
.ct-sum li::before { content:"·"; color:var(--g300); font-size:22px; line-height:0; }

/* ── BANNER FOTO ───────────────────────────────── */
.photo-banner {
  width:100%;
}
.photo-banner img {
  width:100%; height:auto; display:block;
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  text-align:center; padding:22px 40px; font-size:13px; color:rgba(255,255,255,.3);
  border-top:1px solid rgba(255,255,255,.06);
  background:linear-gradient(145deg, var(--g900) 0%, var(--g800) 100%);
}

/* ── REVEAL ────────────────────────────────────── */
.rv { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.rv.in { opacity:1; transform:translateY(0); }
.d1{transition-delay:.07s} .d2{transition-delay:.14s}
.d3{transition-delay:.21s} .d4{transition-delay:.28s}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width:1024px) {
  .val-grid { grid-template-columns:1fr 1fr; gap:0; }
  .val-col  { padding:0 20px 28px; border-right:none; border-bottom:1px solid var(--g100); }
  .val-col:nth-child(odd)  { padding-left:0; }
  .val-col:nth-child(even) { padding-right:0; }
  .val-col:nth-child(3),
  .val-col:nth-child(4)    { border-bottom:none; padding-bottom:0; }
  .awards-cols { grid-template-columns:1fr; }
  .aw-col { padding:0 0 28px; border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }
  .aw-col:last-child { border-bottom:none; padding-bottom:0; }
}
@media (max-width:900px) {
  .section   { padding:64px 20px; }
  .nav       { padding:0 20px; }
  .nav-links { display:none; }
  .nav-ham   { display:flex; }
  .hero-in   { grid-template-columns:1fr; padding:96px 20px 60px; gap:44px; }
  .hphoto-wrap { order:-1; max-height:340px; aspect-ratio:4/3; }
  .about-grid  { grid-template-columns:1fr; }
  .exp-grid    { grid-template-columns:1fr; }
  .exp-photo-col { position:static; }
  .exp-photo-frame { max-width:260px; }
  .collab-item { grid-template-columns:1fr; gap:28px; }
  .collab-photo-frame { max-width:260px; }
  .svc-cols  { grid-template-columns:1fr; gap:36px; }
  .mdl-grid  { grid-template-columns:1fr; }
  .mdl-item  { border-left:none !important; padding-left:0 !important; padding-right:0 !important; border-bottom:1px solid rgba(255,255,255,.08) !important; }
  .mdl-item:last-child { border-bottom:none !important; }
  .ct-grid   { grid-template-columns:1fr; gap:44px; }
  .talks-grid{ grid-template-columns:1fr; }
  .tl-grid   { grid-template-columns:1fr; }
  .mc-arrow  { display:none; }
}
@media (max-width:600px) {
  .hero-stats { flex-direction:column; }
  .hs { border-right:none; padding-right:0; margin-right:0; border-bottom:1px solid rgba(255,255,255,.1); padding-bottom:14px; }
  .hs:last-child { border-bottom:none; padding-bottom:0; }
  .hero-ctas { flex-direction:column; }
  .val-grid  { grid-template-columns:1fr; }
  .val-col   { border-right:none; padding:0 0 24px; border-bottom:1px solid var(--g100); }
  .val-col:last-child { border-bottom:none; padding-bottom:0; }
}
