:root {
  --bg: #070812;
  --bg-soft: #0d0f1d;
  --panel: rgba(16, 18, 34, .76);
  --panel-strong: #111426;
  --text: #f7f8ff;
  --muted: #a8adc3;
  --line: rgba(255,255,255,.12);
  --blue: #18a8ff;
  --purple: #853dff;
  --pink: #ff3f9b;
  --lime: #a2ff62;
  --orange: #ff9a3d;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 30px 80px rgba(0,0,0,.42);
  --font-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --font-body: "Manrope", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(24,168,255,.11), transparent 27rem),
    radial-gradient(circle at 90% 22%, rgba(133,61,255,.12), transparent 25rem),
    var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 72%);
}

::selection { background: var(--purple); color: #fff; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: .55;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 999;
  opacity: .028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grainMove .25s steps(2) infinite;
}

@keyframes grainMove {
  0% { transform: translate(0,0); }
  25% { transform: translate(2%,-3%); }
  50% { transform: translate(-3%,2%); }
  75% { transform: translate(3%,3%); }
  100% { transform: translate(-2%,-2%); }
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: .18;
  background: radial-gradient(circle, rgba(79,88,255,.45), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1240px, calc(100% - 32px));
  min-height: 74px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(7,8,18,.66);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 12px 50px rgba(0,0,0,.24);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.site-header.scrolled {
  background: rgba(7,8,18,.88);
  border-color: rgba(255,255,255,.18);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  padding: 0 5px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(24,168,255,.2), rgba(133,61,255,.2) 55%, rgba(255,63,155,.2));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 0 28px rgba(255,255,255,.04);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
}
.brand-symbol > span:first-child { color: var(--blue); }
.brand-symbol > span:last-child { color: var(--pink); }
.brand-symbol b { color: #fff; font-size: 12px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 8px; letter-spacing: .22em; }

.desktop-nav { justify-self: center; display: flex; gap: 26px; }
.desktop-nav a {
  position: relative;
  color: #cdd1e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a:hover { color: #fff; }

.header-cta {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 15px;
  background: #fff;
  color: #090a14;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { box-shadow: 0 12px 35px rgba(255,255,255,.16); }

.hero {
  min-height: 100svh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-copy { position: relative; z-index: 2; }
.availability {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 28px;
  color: #dfe4f4;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(162,255,98,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(162,255,98,0); } 100% { box-shadow: 0 0 0 0 rgba(162,255,98,0); } }

.kicker, .section-number {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.2vw, 94px);
  line-height: .91;
  letter-spacing: -.065em;
}
.gradient-line {
  display: block;
  width: fit-content;
  padding-right: .08em;
  background: linear-gradient(90deg, #fff 0%, #a9dcff 28%, #a680ff 62%, #ff7ab8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#rotatingWord { display: inline-block; min-width: 4.8ch; transition: opacity .18s ease, transform .18s ease; }
#rotatingWord.swap { opacity: 0; transform: translateY(14px); }

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: #bec3d5;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}
.hero-intro strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple) 60%, var(--pink));
  color: #fff;
  box-shadow: 0 14px 40px rgba(101,70,255,.28);
}
.btn-primary:hover { box-shadow: 0 18px 48px rgba(101,70,255,.4); }
.btn-secondary { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.04); color: #f6f7fd; }
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.btn-light { background: #fff; color: #0a0b14; }
.btn-outline-light { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.06); }

.hero-meta {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}
.hero-meta > div { padding: 15px 18px; background: rgba(8,9,20,.8); }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 11px; letter-spacing: .12em; }
.hero-meta span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }

.hero-visual { min-height: 660px; display: grid; place-items: center; position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(24,168,255,.18), rgba(133,61,255,.28), rgba(255,63,155,.14), rgba(24,168,255,.18));
  filter: blur(50px);
  opacity: .62;
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.12) rotate(20deg); opacity: .82; } }

.hero-frame {
  width: min(440px, 78%);
  aspect-ratio: .72;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 32px;
  box-shadow: 0 44px 120px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
  transform: rotate(2deg);
  transform-style: preserve-3d;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero .hero-frame {
  width: min(760px, 100%);
  aspect-ratio: 1672 / 941;
  transform: rotate(-2deg);
}

.hero-poster {
  background: linear-gradient(135deg, rgba(24,168,255,.14), rgba(133,61,255,.12), rgba(255,63,155,.08));
}

.hero-poster img {
  object-fit: cover;
  object-position: center;
}

.hero-poster .frame-overlay {
  background:
    linear-gradient(to bottom, rgba(5,6,15,.04), rgba(5,6,15,.08) 45%, rgba(5,6,15,.78)),
    linear-gradient(135deg, rgba(24,168,255,.12), transparent 42%, rgba(255,63,155,.08));
}

.artist-badge {
  position: absolute;
  right: 5%;
  bottom: 8%;
  z-index: 6;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
}
.artist-badge small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .18em;
}
.artist-badge strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 16px;
}
.artist-badge span {
  display: block;
  color: #d9def0;
  font-size: 11px;
  line-height: 1.45;
}

.frame-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,6,15,.02), rgba(5,6,15,.2) 52%, rgba(5,6,15,.94)); }
.frame-topline { position: absolute; inset: 18px 18px auto; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 9px; letter-spacing: .12em; }
.live-pill { padding: 7px 9px; border-radius: 999px; background: rgba(8,9,19,.58); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); }
.live-pill i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--lime); }
.frame-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.frame-caption span { display: block; color: #b9bed2; font-size: 9px; letter-spacing: .18em; }
.frame-caption strong { display: block; margin-top: 7px; font-family: var(--font-display); font-size: 22px; }

.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 24px var(--blue); }
.orbit-one { width: 520px; height: 520px; animation: orbitSpin 16s linear infinite; }
.orbit-one::before { left: 38px; top: 88px; }
.orbit-two { width: 390px; height: 620px; transform: rotate(35deg); animation: orbitSpinReverse 22s linear infinite; }
.orbit-two::before { right: 30px; bottom: 120px; background: var(--pink); box-shadow: 0 0 24px var(--pink); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { from { transform: rotate(35deg); } to { transform: rotate(-325deg); } }

.glass-card { border: 1px solid rgba(255,255,255,.16); background: rgba(15,17,31,.72); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 170px;
  min-height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  animation: floatCard 5s ease-in-out infinite;
}
.floating-card small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.floating-card strong { font-family: var(--font-display); font-size: 13px; }
.card-camera { left: -10px; top: 22%; }
.card-code { right: -10px; top: 33%; animation-delay: -1.6s; }
.card-ai { left: 4%; bottom: 18%; animation-delay: -3.1s; }
@keyframes floatCard { 50% { transform: translateY(-12px) rotate(-1deg); } }
.mini-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.08); color: #fff; font-family: var(--font-display); font-size: 12px; }
.aperture-icon { background: conic-gradient(from 0deg, var(--blue), var(--purple), var(--pink), var(--blue)); border: 8px solid rgba(9,10,18,.8); }
.spark-icon { color: var(--lime); font-size: 20px; }
.code-icon { color: #78d1ff; }

.skill-ring { position: absolute; right: -8px; bottom: 2%; width: 180px; aspect-ratio: 1; animation: orbitSpin 24s linear infinite; }
.skill-ring span {
  position: absolute;
  left: 50%; top: 50%;
  transform: rotate(calc(var(--i) * 60deg)) translateY(-82px) rotate(calc(var(--i) * -60deg));
  transform-origin: 0 0;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  letter-spacing: .14em;
}

.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: #7f8499; font-size: 8px; letter-spacing: .22em; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 42px; background: linear-gradient(to bottom, #fff, transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 50% { transform: scaleY(.45); transform-origin: top; opacity: .35; } }

.manifesto { padding: 120px 0 70px; }
.manifesto-label { color: var(--muted); font-size: 10px; letter-spacing: .18em; }
.manifesto-text {
  max-width: 1120px;
  margin: 28px 0 80px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.manifesto-text em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 20px; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.marquee-track i { color: var(--pink); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.skills, .projects, .about, .process, .links-section { padding: 120px 0; }
.section-heading { margin-bottom: 56px; display: grid; grid-template-columns: 210px 1fr; align-items: start; gap: 24px; }
.section-heading h2, .about h2, .links-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading > div > p { max-width: 560px; margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(160px, auto); gap: 18px; }
.skill-card {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  box-shadow: 0 18px 60px rgba(0,0,0,.17);
  transform-style: preserve-3d;
}
.skill-card:hover { border-color: rgba(255,255,255,.22); }
.skill-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 1px rgba(255,255,255,.06); border-radius: inherit; }
.photo-card { grid-column: span 7; min-height: 540px; }
.web-card { grid-column: span 5; background: radial-gradient(circle at 20% 15%, rgba(24,168,255,.18), transparent 18rem), radial-gradient(circle at 85% 20%, rgba(255,63,155,.12), transparent 16rem), linear-gradient(145deg, #101423, #090b15 70%); color: var(--text); }
.game-card { grid-column: span 5; background: radial-gradient(circle at 50% 12%, rgba(24,168,255,.18), transparent 18rem), linear-gradient(160deg, #101526, #070913 74%); color: var(--text); }
.ai-card { grid-column: span 7; background: radial-gradient(circle at 18% 16%, rgba(24,168,255,.16), transparent 18rem), radial-gradient(circle at 78% 28%, rgba(255,72,159,.18), transparent 20rem), linear-gradient(145deg, #11172b, #090d18 72%); }
.strategy-card { grid-column: span 12; min-height: 420px; background: linear-gradient(150deg, #ffc341, #ff8b35); color: #241000; }

.skill-card-bg, .skill-card-bg img, .skill-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.skill-card-bg img { object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.photo-card:hover .skill-card-bg img { transform: scale(1.055); }
.skill-shade { background: linear-gradient(180deg, rgba(6,8,16,.04), rgba(6,8,16,.28) 44%, rgba(6,8,16,.92)); }
.skill-index { position: absolute; right: 24px; top: 22px; z-index: 3; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .12em; opacity: .7; }
.skill-content { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 28px; }
.skill-content.dark-copy { color: #0b1020; }
.skill-tag { display: inline-flex; margin-bottom: 14px; font-size: 9px; font-weight: 800; letter-spacing: .17em; opacity: .72; }
.skill-content h3 { margin: 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 43px); line-height: 1; letter-spacing: -.045em; }
.skill-content p { max-width: 520px; margin: 16px 0 0; color: #c3c8db; font-size: 13px; line-height: 1.65; }
.dark-copy p { color: rgba(7,16,24,.7); }
.skill-content a { display: inline-block; margin-top: 16px; font-size: 10px; font-weight: 800; letter-spacing: .1em; }



.web-results-copy { color: var(--text); }
.web-results-copy .skill-tag { color: #7fd0ff; opacity: 1; }
.web-results-copy p { color: #b8c0d8; }

.results-slider {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  z-index: 3;
}

.results-stage {
  position: relative;
  height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.result-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: scale(.97);
  transition: opacity .45s ease, transform .45s ease;
  cursor: zoom-in;
}
.result-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.result-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: radial-gradient(circle at center, rgba(10,16,30,.75), rgba(8,10,20,.98));
}

.results-nav {
  position: absolute;
  top: 148px;
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,9,18,.68);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.results-nav.prev { left: 12px; }
.results-nav.next { right: 12px; }
.results-nav:hover { background: rgba(24,168,255,.22); }

.results-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.results-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
}
.results-dots button.is-active { background: linear-gradient(90deg, var(--blue), var(--pink)); box-shadow: 0 0 14px rgba(24,168,255,.45); }

.results-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.result-thumb {
  height: 92px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  opacity: .7;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease, border-color .25s ease;
}
.result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.result-thumb.is-active,
.result-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(24,168,255,.46);
}
.poster-stack { position: absolute; inset: 28px 30px 130px; }
.poster { position: absolute; width: 46%; aspect-ratio: .72; padding: 15px; border-radius: 8px; box-shadow: 0 24px 45px rgba(0,0,0,.35); font-family: var(--font-display); }
.poster-a { left: 0; top: 15px; transform: rotate(-9deg); background: #f5f0e8; color: #101018; }
.poster-a b, .poster-a strong { display: block; font-size: 23px; line-height: .86; }
.poster-a span { color: var(--pink); font-size: 12px; }
.poster-b { left: 29%; top: -3px; z-index: 2; transform: rotate(3deg); background: linear-gradient(145deg, var(--blue), var(--purple)); }
.poster-b span, .poster-b b { display: block; font-size: 24px; line-height: .85; }
.poster-b i { display: block; margin-top: 25px; color: var(--lime); font-size: 35px; }
.poster-c { right: 0; top: 32px; transform: rotate(10deg); background: #ffdd32; color: #121212; }
.poster-c strong { display: block; font-size: 22px; }
.poster-c b { display: block; margin: 8px 0; font-size: 34px; }
.poster-c span { font-size: 9px; letter-spacing: .12em; }


.game-card-vertical {
  min-height: 820px;
}

.game-launch {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 24px;
  height: 575px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #0b0f1c;
  box-shadow: 0 28px 65px rgba(0,0,0,.38);
}
.game-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 68%, rgba(5,7,14,.82));
}
.game-launch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.game-launch:hover img {
  transform: scale(1.025);
  filter: brightness(1.06);
}
.game-launch-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,9,18,.78);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.game-launch-hint b { color: var(--lime); }
.game-copy { bottom: 26px; }
.game-copy p { color: #b8c0d8; }
.game-text-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 15px !important;
  color: #8ed8ff;
}

.compact-stack-card { min-height: 560px; }
.logo-stage {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  bottom: 90px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(24,168,255,.16), transparent 12rem),
    radial-gradient(circle at 86% 22%, rgba(255,72,159,.12), transparent 13rem),
    radial-gradient(circle at 50% 82%, rgba(255,195,65,.10), transparent 12rem),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96), rgba(0,0,0,.78) 72%, transparent 100%);
}
.logo-orb {
  position: absolute;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(16,20,34,.58);
  backdrop-filter: blur(18px) saturate(165%);
  box-shadow: 0 18px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  animation: orbFloat 6s ease-in-out infinite;
}
.logo-orb img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 16px;
}
@keyframes orbFloat { 50% { transform: translateY(-9px); } }
.logo-orb:nth-child(2n) { animation-delay: -.9s; }
.logo-orb:nth-child(3n) { animation-delay: -1.8s; }
.logo-orb:nth-child(4n) { animation-delay: -2.6s; }
.orb-1 { left: 18px; top: 28px; }
.orb-2 { left: 126px; top: 24px; }
.orb-3 { left: 236px; top: 32px; }
.orb-4 { left: 346px; top: 18px; }
.orb-5 { right: 18px; top: 30px; }
.orb-6 { left: 54px; top: 126px; }
.orb-7 { left: 170px; top: 112px; }
.orb-8 { left: 290px; top: 128px; }
.orb-9 { right: 56px; top: 118px; }
.orb-10 { left: 22px; top: 222px; }
.orb-11 { left: 132px; top: 214px; }
.orb-12 { left: 244px; top: 228px; }
.orb-13 { left: 356px; top: 208px; }
.orb-14 { right: 16px; top: 224px; }
.orb-15 { left: 82px; top: 314px; }
.orb-16 { left: 198px; top: 326px; }
.orb-17 { left: 310px; top: 312px; }
.orb-18 { right: 84px; top: 326px; }
.orb-19 { left: 146px; top: 404px; }
.orb-20 { right: 148px; top: 410px; }

.stack-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(9,12,24,.72);
  backdrop-filter: blur(14px);
}
.stack-mini {
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #88dcff;
}
.stack-meta p {
  margin: 0;
  color: #d7deef;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.analytics-art { position: absolute; left: 24px; right: 24px; top: 32px; height: 235px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.54); border: 1px solid rgba(51,24,0,.16); backdrop-filter: blur(10px); }
.metric { display: flex; align-items: end; justify-content: space-between; }
.metric span { font-size: 8px; letter-spacing: .14em; }
.metric b { font-family: var(--font-display); font-size: 29px; }
.bars { height: 90px; margin-top: 24px; display: flex; align-items: end; gap: 8px; }
.bars i { flex: 1; border-radius: 5px 5px 2px 2px; background: #241000; opacity: .8; }
.bars i:nth-child(1) { height: 26%; } .bars i:nth-child(2) { height: 44%; } .bars i:nth-child(3) { height: 35%; } .bars i:nth-child(4) { height: 65%; } .bars i:nth-child(5) { height: 56%; } .bars i:nth-child(6) { height: 82%; } .bars i:nth-child(7) { height: 100%; }
.chart-line { position: absolute; left: 14px; right: 14px; bottom: 13px; height: 62px; }
.chart-line svg { width: 100%; height: 100%; overflow: visible; }
.chart-line path { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 3px 7px rgba(0,0,0,.2)); }

.projects { position: relative; }
.project-list { border-top: 1px solid var(--line); }
.project-row {
  min-height: 220px;
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 320px 54px;
  gap: 28px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding .3s ease;
}
.project-row:hover { background: rgba(255,255,255,.025); padding-inline: 22px; }
.project-num { align-self: start; padding-top: 8px; color: var(--muted); font-family: var(--font-display); font-size: 11px; }
.project-info > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.project-info h3 { margin: 9px 0 0; font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 50px); letter-spacing: -.04em; }
.project-info p { max-width: 590px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.project-arrow { width: 48px; height: 48px; display: grid; place-items: center; justify-self: end; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; transition: transform .3s ease, background .3s ease, color .3s ease; }
.project-row:hover .project-arrow { transform: rotate(45deg); background: #fff; color: #0b0c16; }
.project-preview { height: 160px; position: relative; display: grid; place-items: center; border-radius: 22px; overflow: hidden; }
.preview-game { background: linear-gradient(145deg, #48beff, #5964ff); }
.preview-screen { width: 118px; height: 144px; position: relative; overflow: hidden; border: 5px solid #12162c; border-radius: 15px; background: #88dfff; transform: rotate(7deg); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
.preview-screen > span { position: absolute; z-index: 4; top: 8px; left: 8px; color: #10213c; font-size: 6px; font-weight: 900; }
.tiny-city { position: absolute; left: 0; right: 0; bottom: 37px; height: 50px; background: linear-gradient(90deg, #214e85 16%, transparent 16% 22%, #183d6c 22% 46%, transparent 46% 52%, #2e6299 52% 69%, transparent 69% 76%, #1a487c 76%); }
.tiny-road { position: absolute; left: 0; right: 0; bottom: 0; height: 38px; background: #2b3244; border-top: 3px solid #ffdc52; }
.tiny-road i { position: absolute; left: 25px; bottom: 7px; width: 12px; height: 21px; background: var(--pink); box-shadow: 0 -8px 0 -2px #e6ad7f; }
.tiny-road b { position: absolute; right: 20px; top: 5px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: #ffd545; color: #815100; font-size: 7px; }
.preview-world { background: linear-gradient(145deg, #151831, #242b57); }
.world-phone { width: 112px; height: 145px; padding: 10px; border: 2px solid rgba(255,255,255,.22); border-radius: 20px; background: #080a16; transform: rotate(-6deg); box-shadow: 0 18px 38px rgba(0,0,0,.35); }
.world-phone header { display: flex; justify-content: space-between; color: #fff; font-size: 7px; }
.world-phone header span { color: #ff3d57; }
.match { margin-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 5px; align-items: center; text-align: center; }
.match i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #fff; color: #111; font-style: normal; font-size: 7px; font-weight: 900; }
.match strong { color: #fff; font-size: 11px; }
.match-lines span { display: block; height: 6px; margin-top: 9px; border-radius: 4px; background: rgba(255,255,255,.13); }
.match-lines span:nth-child(2) { width: 75%; }
.match-lines span:nth-child(3) { width: 55%; }
.preview-sites { background: linear-gradient(145deg, #fff0fa, #c6d7ff); }
.site-card { position: absolute; width: 88px; height: 125px; padding: 10px; border-radius: 12px; box-shadow: 0 14px 28px rgba(58,38,95,.2); font-family: var(--font-display); }
.site-card span { font-size: 7px; letter-spacing: .12em; }
.site-card b { display: block; margin-top: 9px; font-size: 16px; line-height: .9; }
.site-card i { display: block; width: 40%; height: 5px; margin-top: 28px; border-radius: 5px; }
.site-card.one { left: 45px; top: 23px; z-index: 1; transform: rotate(-10deg); background: #171728; color: #fff; }
.site-card.one i { background: var(--pink); }
.site-card.two { left: 115px; top: 15px; z-index: 2; transform: rotate(2deg); background: #fff; color: #28142c; }
.site-card.two i { background: #d394b5; }
.site-card.three { right: 35px; top: 28px; transform: rotate(10deg); background: #b4ff53; color: #102007; }
.site-card.three i { background: #102007; }
.preview-brand { background: #f6d628; }
.brand-shape { position: absolute; }
.brand-shape.circle { width: 110px; height: 110px; left: 28px; top: 30px; border-radius: 50%; background: var(--pink); }
.brand-shape.square { width: 100px; height: 100px; right: 30px; top: 18px; background: var(--blue); transform: rotate(18deg); mix-blend-mode: multiply; }
.brand-word { position: relative; z-index: 2; color: #141019; font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -.08em; }

.photo-section { padding: 120px 0; overflow: hidden; background: #05060d; border-block: 1px solid var(--line); }
.gallery-wrap { width: 100%; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.gallery-wrap::-webkit-scrollbar { display: none; }
.gallery-wrap.grabbing { cursor: grabbing; }
.gallery-track { width: max-content; display: flex; align-items: stretch; gap: 16px; padding: 0 max(20px, calc((100vw - 1240px)/2)); }
.gallery-card { width: 300px; height: 450px; position: relative; flex: 0 0 auto; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: #111; color: #fff; cursor: zoom-in; }
.gallery-card.wide { width: 480px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 58%, rgba(5,6,12,.86)); }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.12); }
.gallery-card > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; display: flex; justify-content: space-between; align-items: end; text-align: left; }
.gallery-card b { font-family: var(--font-display); font-size: 20px; }
.gallery-card small { color: rgba(255,255,255,.7); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.gallery-footer { margin-top: 35px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gallery-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.text-link { position: relative; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px; background: currentColor; transform-origin: right; transition: transform .3s ease; }
.text-link:hover::after { transform: scaleX(.45); }

.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: center; }
.about-portrait { display: flex; justify-content: center; }
.portrait-poster { width: min(460px, 100%); aspect-ratio: .74; position: relative; overflow: hidden; border-radius: 30px; background: #111; transform: rotate(-2deg); box-shadow: var(--shadow); }
.portrait-poster img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.78); }
.portrait-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(19,165,255,.08), transparent 45%, rgba(255,55,146,.28)); }
.poster-code { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 10px; border-radius: 999px; background: rgba(5,6,12,.58); backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .13em; }
.portrait-poster > b { position: absolute; z-index: 2; left: 22px; bottom: 22px; font-family: var(--font-display); font-size: clamp(44px, 5vw, 70px); line-height: .78; letter-spacing: -.08em; }
.about-copy > p:not(.section-number) { max-width: 680px; margin: 24px 0 0; color: #b8bed1; font-size: 15px; line-height: 1.85; }
.about-signature { margin-top: 34px; padding-left: 24px; border-left: 2px solid var(--purple); }
.about-signature span { display: block; font-family: var(--font-display); font-size: 24px; }
.about-signature small { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.tool-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.tool-cloud span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.03); color: #c8cdde; font-size: 9px; letter-spacing: .06em; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step { min-height: 260px; padding: 24px; position: relative; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.028); transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.process-step:hover { transform: translateY(-7px); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.22); }
.process-step > span { position: absolute; right: 20px; top: 18px; color: var(--muted); font-family: var(--font-display); font-size: 10px; }
.process-step > i { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.06); font-style: normal; font-size: 23px; }
.process-step h3 { margin: 42px 0 0; font-family: var(--font-display); font-size: 23px; }
.process-step p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.links-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 65px; align-items: start; }
.links-intro { position: sticky; top: 130px; }
.links-intro h2 { font-size: clamp(42px, 5vw, 70px); }
.social-links { border-top: 1px solid var(--line); }
.social-link { min-height: 96px; display: grid; grid-template-columns: 52px 1fr auto 36px; gap: 18px; align-items: center; padding: 16px 8px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.social-link:hover { padding-inline: 18px; background: rgba(255,255,255,.035); }
.social-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, rgba(24,168,255,.18), rgba(133,61,255,.18), rgba(255,63,155,.18)); border: 1px solid rgba(255,255,255,.12); font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.social-link div small { display: block; color: var(--muted); font-size: 8px; letter-spacing: .15em; }
.social-link div strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 21px; }
.social-link > b { color: #bdc2d3; font-size: 10px; font-weight: 600; }
.social-link > i { font-style: normal; font-size: 18px; transition: transform .25s ease; }
.social-link:hover > i { transform: translate(4px,-4px); }

.final-cta {
  min-height: 600px;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 44px;
  background: linear-gradient(135deg, #118ee6 0%, #5f3ce4 48%, #d63a94 100%);
  box-shadow: 0 40px 100px rgba(73,46,190,.28);
}
.final-cta::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 38% 52%, black, transparent 72%); }
.cta-content { position: relative; z-index: 3; }
.cta-content > p { margin: 0 0 18px; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.cta-content h2 { margin: 0; font-family: var(--font-display); font-size: clamp(54px, 7vw, 100px); line-height: .86; letter-spacing: -.07em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-a { width: 430px; height: 430px; right: -90px; top: -130px; background: radial-gradient(circle at 35% 35%, #fff7, transparent 55%), #ff4b9f; opacity: .58; }
.orb-b { width: 260px; height: 260px; right: 18%; bottom: -120px; background: #8cff63; opacity: .28; }
.cta-stamp { position: absolute; right: 78px; bottom: 70px; z-index: 3; width: 170px; height: 170px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transform: rotate(8deg); }
.cta-stamp::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.4); border-radius: 50%; }
.cta-stamp span { margin-top: 28px; font-family: var(--font-display); font-size: 38px; font-weight: 700; letter-spacing: -.08em; }
.cta-stamp b { margin-top: -35px; font-size: 9px; letter-spacing: .2em; }
.cta-stamp i { position: absolute; top: 16px; font-style: normal; color: var(--lime); }

.footer { padding: 48px 0 110px; display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: end; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.brand-symbol.small { width: 42px; height: 42px; border-radius: 13px; }
.footer-brand p { margin: 0; color: #c1c6d7; font-size: 12px; line-height: 1.5; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 9px 24px; }
.footer-nav a { color: var(--muted); font-size: 10px; }
.footer-nav a:hover { color: #fff; }
.footer-legal { display: flex; flex-direction: column; gap: 8px; color: #777d92; text-align: right; font-size: 9px; }

.mobile-dock { display: none; }

.lightbox {
  width: min(1000px, calc(100% - 28px));
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: #06070d;
  box-shadow: 0 40px 140px rgba(0,0,0,.75);
}
.lightbox::backdrop { background: rgba(2,3,8,.88); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(6,7,13,.72); color: #fff; font-size: 24px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; gap: 30px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 620px; }
  .hero-frame { width: min(430px, 68vw); }
  .artist-hero .hero-frame { width: min(640px, 100%); }
  .card-camera { left: 10%; }
  .card-code { right: 8%; }
  .photo-card, .web-card, .game-card, .ai-card { grid-column: span 6; }
  .strategy-card { grid-column: span 12; }
  .game-card-vertical { min-height: 800px; }
  .project-row { grid-template-columns: 50px 1fr 260px 45px; }
  .links-section { grid-template-columns: 1fr; }
  .links-intro { position: static; }
  .about-grid { gap: 45px; }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 28px, 720px); }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 64px; border-radius: 20px; }
  .brand-symbol { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { font-size: 7px; }
  .header-cta { min-height: 42px; padding: 0 13px; font-size: 10px; }
  .hero { padding-top: 120px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(52px, 13.5vw, 78px); }
  .hero-visual { min-height: 560px; }
  .hero-frame { width: min(390px, 78vw); }
  .artist-hero .hero-frame { width: min(520px, 100%); }
  .artist-badge { right: 4%; bottom: 5%; max-width: 200px; }
  .orbit-one { width: 460px; height: 460px; }
  .orbit-two { width: 340px; height: 540px; }
  .floating-card { min-width: 150px; }
  .card-camera { left: -4px; }
  .card-code { right: -4px; }
  .card-ai { left: 2%; }
  .section-heading { grid-template-columns: 1fr; gap: 5px; }
  .section-heading h2, .about h2, .links-intro h2 { font-size: clamp(44px, 11vw, 68px); }
  .bento-grid { display: flex; flex-direction: column; }
  .skill-card { min-height: 480px; }
  .web-card { min-height: 720px; }
  .ai-card { min-height: 470px; }
  .strategy-card { min-height: 430px; }
  .game-card-vertical { min-height: 820px; }
  .photo-card { min-height: 600px; }
  .project-row { min-height: 320px; grid-template-columns: 38px 1fr 38px; grid-template-areas: "num info arrow" ". preview ."; gap: 14px; }
  .project-num { grid-area: num; }
  .project-info { grid-area: info; }
  .project-preview { grid-area: preview; width: 100%; height: 170px; }
  .project-arrow { grid-area: arrow; width: 38px; height: 38px; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-poster { width: min(430px, 90%); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { min-height: 650px; padding: 48px 28px; align-items: flex-start; }
  .cta-stamp { right: 26px; bottom: 28px; width: 140px; height: 140px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  body { padding-bottom: 76px; }
  .cursor-glow { display: none; }
  .site-header { padding: 8px 9px 8px 12px; }
  .brand-copy small { display: none; }
  .header-cta span { display: none; }
  .availability { font-size: 8px; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero h1 { font-size: clamp(49px, 15vw, 66px); line-height: .92; }
  .hero-intro { font-size: 14px; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { display: flex; justify-content: space-between; align-items: center; }
  .hero-meta span { margin-top: 0; }
  .hero-visual { min-height: 490px; margin-top: 15px; }
  .hero-visual::before { width: 360px; height: 360px; }
  .hero-frame { width: 78vw; max-width: 330px; border-radius: 26px; }
  .artist-hero .hero-frame { width: 92vw; max-width: 360px; aspect-ratio: 1672 / 941; transform: none; }
  .artist-badge { left: 50%; right: auto; bottom: -4px; transform: translateX(-50%); max-width: min(92vw, 320px); padding: 12px 14px; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 280px; height: 440px; }
  .floating-card { min-width: 130px; min-height: 54px; padding: 8px 10px; border-radius: 15px; }
  .floating-card strong { font-size: 10px; }
  .floating-card small { font-size: 6px; }
  .mini-icon { width: 31px; height: 31px; border-radius: 10px; }
  .card-camera { left: -5px; top: 20%; }
  .card-code { right: -4px; top: 38%; }
  .card-ai { left: 1%; bottom: 12%; }
  .skill-ring { display: none; }
  .artist-badge span { font-size: 10px; }
  .scroll-cue { display: none; }
  .manifesto { padding-top: 90px; }
  .manifesto-text { font-size: clamp(34px, 10.5vw, 52px); margin-bottom: 60px; }
  .skills, .projects, .about, .process, .links-section, .photo-section { padding-block: 90px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about h2, .links-intro h2 { font-size: clamp(40px, 12vw, 58px); }
  .skill-card { min-height: 440px; border-radius: 24px; }
  .web-card { min-height: 760px; }
  .ai-card { min-height: 430px; }
  .strategy-card { min-height: 430px; }
  .game-card-vertical { min-height: 790px; }
  .photo-card { min-height: 560px; }
  .skill-content { left: 22px; right: 22px; bottom: 23px; }
  .skill-content h3 { font-size: 32px; }
  .skill-content p { font-size: 12px; }
  .results-slider { left: 18px; right: 18px; top: 18px; }
  .results-stage { height: 340px; }
  .results-thumbs { gap: 8px; }
  .result-thumb { height: 82px; }
  .poster-stack { inset-inline: 17px; }
  .game-launch { left: 18px; right: 18px; top: 18px; height: 555px; }
  .stack-cloud { left: 16px; right: 16px; top: 18px; height: 350px; }
  .tool-chip { width: 84px; height: 84px; border-radius: 22px; }
  .tool-chip span { width: 40px; height: 40px; font-size: 16px; }
  .tool-chip small { font-size: 8px; }
  .chip-ps { left: 10px; top: 24px; } .chip-lr { left: 102px; top: 74px; } .chip-px { left: 192px; top: 18px; } .chip-sy { right: 100px; top: 72px; } .chip-ga { right: 12px; top: 24px; } .chip-as { left: 18px; top: 172px; } .chip-cf { left: 130px; top: 164px; } .chip-gh { left: 240px; top: 172px; } .chip-gpt { right: 126px; top: 172px; } .chip-gm { right: 18px; top: 166px; }
  .project-row { grid-template-columns: 28px 1fr 34px; padding: 25px 0; }
  .project-info h3 { font-size: 31px; }
  .project-preview { height: 150px; }
  .gallery-card { width: 270px; height: 405px; border-radius: 20px; }
  .gallery-card.wide { width: 330px; }
  .gallery-footer { align-items: flex-start; flex-direction: column; }
  .about-copy > p:not(.section-number) { font-size: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 230px; }
  .social-link { grid-template-columns: 48px 1fr 30px; gap: 12px; }
  .social-link > b { display: none; }
  .final-cta { width: calc(100% - 20px); min-height: 620px; margin-top: 40px; padding: 40px 24px; border-radius: 30px; }
  .cta-content h2 { font-size: clamp(54px, 16vw, 75px); }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .cta-stamp { width: 118px; height: 118px; right: 20px; bottom: 20px; }
  .cta-stamp span { font-size: 29px; }
  .footer { grid-template-columns: 1fr; gap: 30px; padding-bottom: 25px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { grid-column: auto; }
  .mobile-dock {
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    height: 64px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(8,9,19,.86);
    backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }
  .mobile-dock a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-radius: 14px; color: #8f95a9; }
  .mobile-dock a.active { background: rgba(255,255,255,.08); color: #fff; }
  .mobile-dock span { font-size: 15px; }
  .mobile-dock small { font-size: 7px; letter-spacing: .04em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


@media (max-width: 900px) {
  .results-stage { height: 320px; }
  .results-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .results-stage { height: 280px; }
  .results-nav { top: 118px; width: 38px; height: 38px; }
  .results-thumbs { grid-template-columns: repeat(2, 1fr); }
  .result-thumb { height: 88px; }
}

@media (max-width: 900px) {
  .game-card-vertical { min-height: 820px; }
  .game-launch { height: 580px; }
}

@media (max-width: 640px) {
  .game-card-vertical { min-height: 790px; }
  .game-launch { left: 16px; right: 16px; top: 18px; height: 550px; border-radius: 20px; }
  .game-launch-hint { bottom: 14px; padding: 9px 13px; font-size: 9px; }
}




@media (max-width: 820px) {
  .compact-stack-card { min-height: 520px; }
  .logo-stage { bottom: 84px; }
  .logo-orb { width: 74px; height: 74px; border-radius: 22px; }
  .logo-orb img { width: 52px; height: 52px; border-radius: 14px; }
  .orb-1 { left: 12px; top: 20px; } .orb-2 { left: 102px; top: 18px; } .orb-3 { left: 188px; top: 28px; } .orb-4 { left: 272px; top: 14px; } .orb-5 { right: 12px; top: 24px; }
  .orb-6 { left: 38px; top: 104px; } .orb-7 { left: 132px; top: 94px; } .orb-8 { left: 228px; top: 108px; } .orb-9 { right: 36px; top: 98px; }
  .orb-10 { left: 16px; top: 186px; } .orb-11 { left: 104px; top: 180px; } .orb-12 { left: 192px; top: 192px; } .orb-13 { left: 278px; top: 176px; } .orb-14 { right: 12px; top: 190px; }
  .orb-15 { left: 62px; top: 268px; } .orb-16 { left: 152px; top: 280px; } .orb-17 { left: 240px; top: 268px; } .orb-18 { right: 56px; top: 282px; }
  .orb-19 { left: 116px; top: 344px; } .orb-20 { right: 110px; top: 348px; }
}

@media (max-width: 640px) {
  .compact-stack-card { min-height: 500px; }
  .logo-stage { left: 12px; right: 12px; top: 12px; bottom: 78px; border-radius: 24px; }
  .logo-orb { width: 62px; height: 62px; border-radius: 18px; }
  .logo-orb img { width: 44px; height: 44px; border-radius: 12px; }
  .orb-1 { left: 8px; top: 18px; } .orb-2 { left: 78px; top: 16px; } .orb-3 { left: 146px; top: 24px; } .orb-4 { left: 214px; top: 12px; } .orb-5 { right: 8px; top: 18px; }
  .orb-6 { left: 28px; top: 92px; } .orb-7 { left: 100px; top: 84px; } .orb-8 { left: 172px; top: 96px; } .orb-9 { right: 28px; top: 88px; }
  .orb-10 { left: 10px; top: 160px; } .orb-11 { left: 78px; top: 154px; } .orb-12 { left: 146px; top: 166px; } .orb-13 { left: 214px; top: 150px; } .orb-14 { right: 8px; top: 162px; }
  .orb-15 { left: 46px; top: 226px; } .orb-16 { left: 114px; top: 238px; } .orb-17 { left: 182px; top: 228px; } .orb-18 { right: 42px; top: 240px; }
  .orb-19 { left: 88px; top: 292px; } .orb-20 { right: 84px; top: 296px; }
  .stack-meta { left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; }
  .stack-mini { font-size: 9px; }
  .stack-meta p { font-size: 9px; }
}


.floating-stack-card {
  min-height: 470px;
}

.floating-logo-field {
  position: absolute;
  inset: 16px 16px 84px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(24,168,255,.15), transparent 11rem),
    radial-gradient(circle at 82% 22%, rgba(255,72,159,.12), transparent 12rem),
    radial-gradient(circle at 52% 78%, rgba(255,195,65,.10), transparent 11rem),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.floating-logo-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.96), rgba(0,0,0,.78) 74%, transparent 100%);
}
.floating-logo {
  position: absolute;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(14,18,30,.60);
  backdrop-filter: blur(16px) saturate(165%);
  box-shadow: 0 14px 28px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
  animation: randomBob var(--dur, 6.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  transform: translate3d(0,0,0);
  will-change: transform;
}
.floating-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
@keyframes randomBob {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(var(--dx1, 8px), var(--dy1, -10px)) rotate(var(--rot1, -4deg)); }
  66% { transform: translate(var(--dx2, -10px), var(--dy2, 8px)) rotate(var(--rot2, 4deg)); }
  100% { transform: translate(var(--dx3, 12px), var(--dy3, -6px)) rotate(var(--rot3, -3deg)); }
}
.stack-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(9,12,24,.72);
  backdrop-filter: blur(12px);
}
.stack-caption p {
  margin: 6px 0 0;
  color: #d8dfef;
  font-size: 11px;
  line-height: 1.35;
}
.floating-stack-card .stack-mini {
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #88dcff;
}

@media (max-width: 1100px) {
  .floating-stack-card { min-height: 450px; }
}
@media (max-width: 900px) {
  .floating-stack-card { min-height: 430px; }
  .floating-logo-field { inset: 14px 14px 78px; }
  .floating-logo { width: 56px; height: 56px; border-radius: 16px; }
  .floating-logo img { width: 38px; height: 38px; }
}
@media (max-width: 640px) {
  .floating-stack-card { min-height: 410px; }
  .floating-logo-field { inset: 12px 12px 74px; border-radius: 22px; }
  .floating-logo { width: 50px; height: 50px; border-radius: 15px; }
  .floating-logo img { width: 34px; height: 34px; }
  .stack-caption p { font-size: 10px; }
}


/* Optimización móvil: conserva la estética y reduce trabajo durante el scroll */
.floating-logo-field:not(.is-active) .floating-logo,
body.is-scrolling .floating-logo,
body.is-scrolling .marquee-track,
body.is-scrolling .orbit,
body.is-scrolling .floating-card {
  animation-play-state: paused !important;
}

@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  html { scroll-behavior: auto; }
  body {
    background: #070812;
    overscroll-behavior-y: none;
  }
  body::before {
    position: absolute;
    opacity: .55;
  }
  #ambientCanvas,
  .grain,
  .cursor-glow {
    display: none !important;
  }

  .hero-visual::before,
  .orbit,
  .floating-card,
  .skill-ring,
  .pulse-dot,
  .marquee-track {
    animation: none !important;
  }

  .site-header,
  .mobile-dock,
  .glass-card,
  .live-pill,
  .artist-badge,
  .poster-code,
  .results-nav,
  .game-launch-hint,
  .floating-logo,
  .stack-caption,
  .lightbox::backdrop {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .site-header {
    background: rgba(7,8,18,.97);
    box-shadow: 0 8px 24px rgba(0,0,0,.24);
  }
  .mobile-dock {
    background: rgba(8,9,19,.98);
    box-shadow: 0 10px 28px rgba(0,0,0,.34);
  }
  .glass-card,
  .floating-logo,
  .stack-caption {
    background: rgba(14,18,30,.94);
  }
  .skill-card,
  .gallery-card,
  .portrait-poster,
  .game-launch,
  .results-stage {
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
  }

  .floating-logo-field.is-active .floating-logo {
    animation-play-state: running;
  }
  .floating-logo {
    animation-duration: calc(var(--dur, 6.2s) * 1.35);
  }
  .floating-logo:nth-child(n+13) {
    display: none;
  }

  .skills,
  .photo-section,
  .about,
  .process,
  .links-section,
  .final-cta,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }

  .gallery-wrap {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .gallery-card { scroll-snap-align: start; }
}

@media (max-width: 560px) {
  .floating-stack-card { min-height: 390px; }
  .floating-logo-field { inset: 12px 12px 72px; }
  .floating-logo { width: 48px; height: 48px; }
  .floating-logo img { width: 32px; height: 32px; }
  .stack-caption { padding: 10px 12px; }
}


/* Ajuste mobile-first y navegación rápida */
section[id] { scroll-margin-top: 88px; }
.section-jumper { display: none; }

@media (max-width: 640px) {
  body { padding-bottom: 92px; }
  .section-shell { width: min(100% - 20px, 520px); }

  .site-header {
    top: 7px;
    width: calc(100% - 14px);
    min-height: 56px;
    padding: 6px 7px 6px 10px;
    border-radius: 17px;
  }
  .brand-symbol { width: 36px; height: 36px; border-radius: 12px; }
  .brand-copy strong { font-size: 10px; }
  .header-cta { min-height: 38px; padding: 0 11px; border-radius: 12px; }

  .hero {
    padding-top: 86px;
    padding-bottom: 46px;
    gap: 18px;
  }
  .hero-copy { max-width: 100%; }
  .eyebrow { margin-bottom: 14px; font-size: 8px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: .91; }
  .hero-intro { margin-top: 18px; font-size: 13px; line-height: 1.55; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { min-height: 48px; }
  .hero-meta { margin-top: 24px; gap: 7px; }
  .hero-meta > div { min-height: 48px; padding: 10px 12px; }
  .hero-visual { min-height: 330px; margin-top: 2px; }
  .artist-hero .hero-frame { width: min(96vw, 390px); max-width: 100%; border-radius: 22px; }
  .artist-badge { bottom: -2px; max-width: min(90vw, 300px); padding: 10px 12px; }
  .floating-card, .orbit { display: none !important; }

  .manifesto { padding-top: 58px; padding-bottom: 52px; }
  .manifesto-text { margin-bottom: 38px; font-size: clamp(30px, 9.5vw, 42px); line-height: 1.02; }
  .marquee { padding-block: 13px; }

  .skills, .about, .process, .links-section, .photo-section { padding-block: 58px; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2, .about h2, .links-intro h2 { font-size: clamp(34px, 10vw, 48px); line-height: .98; }
  .section-heading > div > p { margin-top: 12px; font-size: 13px; line-height: 1.55; }

  .bento-grid { gap: 12px; }
  .skill-card { min-height: 390px; border-radius: 22px; }
  .photo-card { min-height: 480px; }
  .web-card { min-height: 620px; }
  .game-card-vertical { min-height: 690px; }
  .floating-stack-card, .ai-card { min-height: 370px; }
  .strategy-card { min-height: 350px; }
  .skill-content { left: 18px; right: 18px; bottom: 18px; }
  .skill-content h3 { font-size: 28px; }
  .skill-content p { margin-top: 12px; font-size: 11px; line-height: 1.55; }
  .skill-content a { margin-top: 12px; }

  .results-slider { left: 12px; right: 12px; top: 12px; }
  .results-stage { height: 250px; border-radius: 18px; }
  .results-nav { top: 105px; width: 34px; height: 34px; font-size: 23px; }
  .results-dots { margin-top: 9px; }
  .results-thumbs { margin-top: 9px; gap: 6px; }
  .result-thumb { height: 68px; border-radius: 11px; }

  .game-launch { left: 12px; right: 12px; top: 12px; height: 485px; border-radius: 19px; }
  .game-launch-hint { bottom: 11px; padding: 8px 11px; font-size: 8px; }

  .floating-logo-field { inset: 11px 11px 72px; }
  .floating-logo { width: 46px; height: 46px; border-radius: 14px; }
  .floating-logo img { width: 31px; height: 31px; }
  .stack-caption { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; }
  .stack-caption p { font-size: 9px; }

  .analytics-art { left: 14px; right: 14px; top: 16px; height: 190px; padding: 14px; }
  .bars { height: 70px; margin-top: 17px; }

  .gallery-wrap { padding-inline: 10px; gap: 10px; }
  .gallery-card, .gallery-card.wide { width: 76vw; max-width: 286px; height: 365px; border-radius: 18px; }
  .gallery-footer { padding-inline: 10px; margin-top: 18px; }

  .about-grid { gap: 28px; }
  .portrait-poster { width: min(330px, 88vw); border-radius: 24px; }
  .about-copy > p:not(.section-number) { margin-top: 16px; font-size: 13px; line-height: 1.65; }
  .about-signature { margin-top: 22px; }
  .tool-cloud { margin-top: 22px; gap: 6px; }
  .tool-cloud span { padding: 7px 9px; font-size: 8px; }

  .process-grid { gap: 10px; }
  .process-step { min-height: 170px; padding: 18px; border-radius: 20px; }
  .process-step i { font-size: 26px; }
  .process-step h3 { margin-top: 30px; font-size: 22px; }
  .process-step p { font-size: 11px; line-height: 1.5; }

  .links-section { gap: 30px; }
  .social-links { gap: 8px; }
  .social-link { min-height: 76px; padding: 12px; border-radius: 18px; grid-template-columns: 42px 1fr 26px; }
  .social-icon { width: 42px; height: 42px; border-radius: 14px; }
  .social-link strong { font-size: 15px; }
  .social-link small { font-size: 7px; }

  .final-cta { width: calc(100% - 14px); min-height: 500px; margin-top: 28px; padding: 34px 20px; border-radius: 26px; }
  .cta-content h2 { font-size: clamp(44px, 14vw, 62px); }
  .cta-actions { margin-top: 25px; gap: 9px; }
  .cta-actions .btn { min-height: 48px; }
  .cta-stamp { width: 96px; height: 96px; right: 14px; bottom: 14px; }
  .cta-stamp span { font-size: 24px; }

  .footer { gap: 22px; padding-top: 48px; padding-bottom: 24px; }

  .mobile-dock {
    left: 7px;
    right: 7px;
    bottom: max(7px, env(safe-area-inset-bottom));
    height: 70px;
    padding: 5px;
    grid-template-columns: repeat(5, 1fr);
    border-radius: 19px;
  }
  .mobile-dock a { gap: 3px; border-radius: 13px; }
  .mobile-dock span { font-size: 17px; line-height: 1; }
  .mobile-dock small { font-size: 7px; font-weight: 700; letter-spacing: 0; }
  .mobile-dock a.active {
    background: linear-gradient(145deg, rgba(24,168,255,.20), rgba(154,104,255,.18));
    box-shadow: inset 0 0 0 1px rgba(130,208,255,.14);
  }

  .section-jumper {
    position: fixed;
    z-index: 59;
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    display: grid;
    gap: 7px;
  }
  .section-jumper button {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(8,9,19,.96);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,.34);
  }
  .section-jumper button:active { transform: scale(.94); }
}

@media (max-width: 370px) {
  .mobile-dock small { font-size: 6px; }
  .mobile-dock span { font-size: 15px; }
  .section-jumper button { width: 38px; height: 38px; }
  .hero h1 { font-size: 40px; }
}


/* Recorrido narrativo y tarjeta vertical de resultados */
.results-feature-card {
  min-height: 900px;
  display: block;
}
.results-card-title {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 28px;
  right: 28px;
  text-align: center;
}
.results-card-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}
.results-feature-card .results-slider {
  top: 104px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 44px), 420px);
  transform: translateX(-50%);
}
.results-feature-card .results-stage {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
}
.results-feature-card .result-slide img {
  object-fit: contain;
  object-position: center top;
}
.results-feature-card .results-nav {
  top: 50%;
  transform: translateY(-50%);
}
.results-feature-card .results-dots { margin-top: 13px; }

@media (max-width: 1100px) {
  .results-feature-card { min-height: 850px; }
}

@media (max-width: 640px) {
  .results-feature-card,
  .web-card { min-height: 740px; }
  .results-card-title {
    top: 20px;
    left: 18px;
    right: 18px;
  }
  .results-card-title h3 { font-size: 32px; }
  .results-feature-card .results-slider {
    top: 76px;
    width: min(calc(100% - 24px), 350px);
  }
  .results-feature-card .results-stage {
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
  }
  .results-feature-card .results-nav {
    top: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .results-feature-card .results-dots { margin-top: 10px; }
}

@media (max-width: 370px) {
  .results-feature-card,
  .web-card { min-height: 690px; }
  .results-card-title h3 { font-size: 29px; }
  .results-feature-card .results-slider { width: min(calc(100% - 20px), 320px); }
}


/* En móvil, la tarjeta editorial de Aarón abre la experiencia */
@media (max-width: 640px) {
  .hero-visual { order: -1; margin-top: 0; }
  .hero-copy { order: 0; }
}
