@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #070707;
  --bg-soft: #0c0c0c;
  --panel: #101010;
  --line: #242424;
  --text: #f4f4f0;
  --muted: #8d8d88;
  --accent: #d7ff3f;
  --accent-dark: #a8cf17;
  --max: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::selection { background: var(--accent); color: #000; }

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .025;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.navbar {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 700 14px "Space Grotesk", sans-serif;
  letter-spacing: .08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 10px;
}

.muted { color: var(--accent); }

nav { display: flex; gap: 34px; }

nav a {
  color: #a9a9a4;
  font-size: 12px;
  font-weight: 600;
  transition: color .25s ease;
}

nav a:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid #383838;
  padding: 11px 15px;
  font-size: 11px;
  font-weight: 700;
  transition: .25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.nav-cta span { margin-left: 8px; }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
  padding: 80px 0 100px;
}

.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  box-shadow: 0 0 14px var(--accent);
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(58px, 7.3vw, 112px);
  line-height: .88;
  letter-spacing: -.065em;
  margin: 26px 0 30px;
}

h1 span, h2 span { color: var(--accent); }

.hero-text {
  max-width: 560px;
  color: #9d9d98;
  line-height: 1.75;
  font-size: 15px;
}

.hero-text strong { color: #fff; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 19px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  transition: .25s ease;
}

.button.primary {
  background: var(--accent);
  color: #050505;
}

.button.primary:hover {
  background: #efffb4;
  transform: translateY(-3px);
}

.button.secondary {
  border: 1px solid #363636;
  color: #ddd;
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 62px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-meta span {
  color: #666;
  font-size: 8px;
  letter-spacing: .17em;
  font-weight: 800;
}

.hero-meta strong {
  font-size: 10px;
  letter-spacing: .07em;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  width: min(480px, 90%);
  aspect-ratio: .82;
  overflow: hidden;
  border: 1px solid #343434;
  background: #151515;
  transform: rotate(2deg);
  box-shadow: 35px 35px 0 rgba(215,255,63,.04);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75));
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.72) contrast(1.05);
  transition: transform 1s ease;
}

.portrait-frame:hover img { transform: scale(1.035); }

.portrait-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.portrait-label span {
  font: 700 20px "Space Grotesk", sans-serif;
  letter-spacing: .02em;
}

.portrait-label small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .16;
  pointer-events: none;
}

.orb-one {
  width: 240px;
  height: 240px;
  background: var(--accent);
  top: 5%;
  right: 2%;
}

.orb-two {
  width: 180px;
  height: 180px;
  background: #6f40ff;
  bottom: 10%;
  left: 0;
}

.floating-card {
  position: absolute;
  z-index: 4;
  background: rgba(12,12,12,.9);
  border: 1px solid #343434;
  backdrop-filter: blur(15px);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-top { top: 15%; left: 0; }
.card-bottom { bottom: 13%; right: 0; }

.floating-card small {
  display: block;
  color: #666;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 4px;
}

.floating-card strong { font-size: 10px; letter-spacing: .05em; }

.mini-icon {
  color: var(--accent);
  font-size: 20px;
}

.number {
  color: var(--accent);
  font: 700 20px "Space Grotesk", sans-serif;
}


.hero-studio {
  margin-top: 34px;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 13px;
  border: 1px solid #292929;
  background: rgba(255,255,255,.018);
  transition: .25s ease;
}
.hero-studio:hover {
  border-color: rgba(215,255,63,.45);
  background: rgba(215,255,63,.035);
  transform: translateX(4px);
}
.hero-studio img {
  width: 54px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}
.hero-studio div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hero-studio span {
  color: #5f5f5a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hero-studio strong {
  font: 700 11px "Space Grotesk", sans-serif;
  letter-spacing: .05em;
}
.hero-studio b {
  margin-left: auto;
  color: var(--accent);
  font-size: 17px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  margin-bottom: 75px;
}

.section-number {
  color: #4b4b47;
  font: 700 12px "Space Grotesk", sans-serif;
  padding-top: 5px;
}

h2 {
  font-size: clamp(45px, 5vw, 75px);
  line-height: .96;
  letter-spacing: -.055em;
  margin-top: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
}

.about-main {
  max-width: 760px;
}

.about-main p {
  color: #92928d;
  line-height: 1.85;
  font-size: 14px;
  margin-top: 20px;
}

.about-main .large-copy {
  color: #e9e9e5;
  font: 500 24px/1.45 "Space Grotesk", sans-serif;
  margin-top: 0;
}

.about-side {
  border-top: 1px solid var(--line);
}

.stat {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font: 700 17px "Space Grotesk", sans-serif;
}

.stat span {
  color: #656561;
  font-size: 10px;
}

.skills { border-top: 1px solid var(--line); }

.skill-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.skill-card {
  grid-column: span 2;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #111, #0b0b0b);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s ease;
}

.skill-card:hover {
  border-color: #454545;
  transform: translateY(-6px);
}

.skill-card.featured {
  border-color: rgba(215,255,63,.35);
  background: linear-gradient(145deg, rgba(215,255,63,.08), #0c0c0c);
}

.skill-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #3a3a3a;
  color: var(--accent);
  font: 700 13px "Space Grotesk", sans-serif;
}

.skill-index {
  color: #5b5b56;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.skill-content h3 {
  margin: 9px 0 9px;
  font-size: 25px;
}

.skill-content p {
  color: #777772;
  font-size: 12px;
  line-height: 1.65;
}

.projects { border-top: 1px solid var(--line); }

.project-placeholder {
  min-height: 350px;
  border: 1px dashed #373737;
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  padding: 55px;
  background: radial-gradient(circle at 70% 40%, rgba(215,255,63,.06), transparent 30%);
  transition: .3s ease;
}

.project-placeholder:hover {
  border-color: var(--accent-dark);
}

.project-placeholder-number {
  color: var(--accent);
  font: 700 35px "Space Grotesk", sans-serif;
}

.project-placeholder h3 {
  font-size: clamp(28px, 4vw, 50px);
  margin: 12px 0;
}

.project-placeholder p:not(.eyebrow) {
  max-width: 650px;
  color: #777772;
  font-size: 13px;
  line-height: 1.7;
}

.project-arrow {
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid #333;
  display: grid;
  place-items: center;
  color: var(--accent);
}


.featured-project{display:grid;grid-template-columns:1.05fr .95fr;gap:55px;border:1px solid #292929;background:linear-gradient(135deg,#0f0f0f,#090909);padding:14px}
.project-media{position:relative;min-height:580px;background:#080808;border:1px solid #242424;overflow:hidden}
.media-grid{height:100%;min-height:580px;display:grid;grid-template-columns:1.5fr 1fr;grid-template-rows:1fr 1fr;gap:8px;padding:8px}
.media-placeholder{position:relative;border:1px dashed #393939;background:linear-gradient(135deg,rgba(215,255,63,.035),transparent 45%),repeating-linear-gradient(135deg,#0d0d0d 0,#0d0d0d 12px,#101010 12px,#101010 24px);display:grid;place-items:center;color:#454541;font-size:8px;font-weight:800;letter-spacing:.18em}
.media-placeholder:first-child{grid-row:1/3}
.media-placeholder::before,.media-placeholder::after{content:"";position:absolute;background:#252525}
.media-placeholder::before{width:30%;height:1px}.media-placeholder::after{width:1px;height:30%}
.media-status{position:absolute;left:25px;bottom:24px;padding:10px 13px;background:rgba(7,7,7,.9);border:1px solid #303030;color:#ddd;font-size:8px;font-weight:800;letter-spacing:.14em}
.media-status span{display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--accent);margin-right:7px;box-shadow:0 0 10px var(--accent)}
.project-details{padding:45px 35px 45px 10px;align-self:center}
.project-kicker{display:flex;justify-content:space-between;color:#5c5c58;border-bottom:1px solid #252525;padding-bottom:16px;font-size:8px;font-weight:800;letter-spacing:.14em}
.project-kicker span:first-child{color:var(--accent)}
.project-details h3{font-size:clamp(40px,4.5vw,66px);line-height:.92;letter-spacing:-.055em;margin:34px 0 25px}
.project-details h3 span{color:var(--accent)}
.project-lead{color:#e4e4df!important;font:500 19px/1.5 "Space Grotesk",sans-serif!important}
.project-details p:not(.project-lead){color:#777772;font-size:12px;line-height:1.8;margin-top:16px}
.project-features{margin-top:30px;border-top:1px solid #252525}
.project-features div{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid #1c1c1c}
.project-features span{color:var(--accent);font-size:8px;font-weight:800}
.project-features strong{font-size:9px;letter-spacing:.08em}
.project-tech{display:flex;flex-wrap:wrap;gap:7px;margin-top:28px}
.project-tech span{padding:8px 9px;border:1px solid #303030;color:#858580;font-size:7px;font-weight:800;letter-spacing:.1em}

.studio { border-top: 1px solid var(--line); }

.studio-box {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 65px;
  border: 1px solid #292929;
  background:
    radial-gradient(circle at 85% 45%, rgba(215,255,63,.12), transparent 30%),
    linear-gradient(135deg, #111, #080808);
}

.studio-content { position: relative; z-index: 2; max-width: 700px; }

.studio-box h2 {
  margin-top: 20px;
  font-size: clamp(45px, 6vw, 82px);
}

.studio-box h2 span {
  color: #74746f;
}

.studio-box p:not(.eyebrow) {
  max-width: 620px;
  color: #858580;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 25px;
}

.studio-note {
  display: inline-block;
  color: var(--accent);
  border: 1px solid rgba(215,255,63,.25);
  padding: 9px 12px;
  margin-top: 28px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}


.studio-logo-wrap {
  position: absolute;
  right: 55px;
  bottom: 48px;
  width: 360px;
  max-width: 36%;
  z-index: 1;
  opacity: .92;
}
.studio-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(215,255,63,.08));
}

.wolf-mark {
  position: absolute;
  right: -20px;
  bottom: -65px;
  color: rgba(255,255,255,.025);
  font: 800 270px "Space Grotesk", sans-serif;
  letter-spacing: -.12em;
}

.contact {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 170px 0;
}

.contact-inner h2 {
  margin: 25px auto 45px;
}

.email-link {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid #454545;
  padding-bottom: 12px;
  font-size: clamp(15px, 2vw, 21px);
  transition: .25s ease;
}

.email-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.social-placeholder {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 55px;
}

.social-placeholder span {
  color: #4f4f4b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #4e4e4a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.reveal {
  animation: reveal .8s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-visual { min-height: 560px; }

  .about-grid { grid-template-columns: 1fr; gap: 55px; }

  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .skill-card { grid-column: span 1; }

  .featured-project { grid-template-columns: 1fr; }
  .project-details { padding: 35px 25px 40px; }
  .project-media, .media-grid { min-height: 500px; }

  .studio-box { padding: 45px; }
  .studio-logo-wrap { right: 35px; bottom: 35px; max-width: 32%; }
}

@media (max-width: 600px) {
  .navbar, .hero, .section, footer {
    width: min(100% - 30px, var(--max));
  }

  .navbar { height: 72px; }

  .nav-cta { display: none; }

  h1 { font-size: clamp(50px, 16vw, 78px); }

  .hero { padding: 55px 0 75px; }

  .hero-meta {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 45px;
  }

  .hero-meta div { min-width: 100px; }

  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }

  .portrait-frame { width: 86%; }

  .card-top { left: 0; top: 10%; }
  .card-bottom { right: 0; bottom: 10%; }

  .section { padding: 100px 0; }

  .section-heading {
    grid-template-columns: 40px 1fr;
    gap: 15px;
    margin-bottom: 50px;
  }

  h2 { font-size: 46px; }

  .about-main .large-copy { font-size: 21px; }

  .skill-grid { grid-template-columns: 1fr; }
  .skill-card { min-height: 230px; }

  .project-media, .media-grid { min-height: 390px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .project-details h3 { font-size: 43px; }
  .project-details { padding: 30px 20px 35px; }

  .studio-box { padding: 35px 25px; min-height: 430px; }
  .studio-logo-wrap { position: relative; right: auto; bottom: auto; width: 230px; max-width: 80%; margin-top: 35px; }
  .hero-studio { margin-top: 27px; }

  .wolf-mark { font-size: 150px; }

  .contact { padding: 110px 0; }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}

/* Project system */
nav a.active { color: var(--accent); }
.project-preview-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:14px; }
.project-preview { border:1px solid #292929; background:#0d0d0d; display:grid; grid-template-rows:280px auto; overflow:hidden; transition:.3s ease; }
.project-preview:hover { border-color:rgba(215,255,63,.45); transform:translateY(-5px); }
.project-preview.featured { grid-row:span 1; }
.preview-art,.row-art,.detail-visual { position:relative; overflow:hidden; background:linear-gradient(180deg,#17211b,#0a0d0b); }
.preview-art::before,.row-art::before,.detail-visual::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 75% 25%,rgba(215,255,63,.13),transparent 30%),linear-gradient(180deg,transparent 40%,rgba(0,0,0,.45)); }
.dino-art { background:linear-gradient(160deg,#23372b 0%,#16251c 52%,#0a0d0b 100%); }
.dino-art::after { content:""; position:absolute; left:-10%; right:-10%; bottom:0; height:32%; background:linear-gradient(180deg,#253b20,#10180f); border-top:1px solid rgba(215,255,63,.12); transform:skewY(-2deg); }
.knight-art { background:radial-gradient(circle at 60% 25%,rgba(215,255,63,.08),transparent 25%),linear-gradient(145deg,#171719,#09090a); }
.knight-art::after { content:""; position:absolute; left:0; right:0; bottom:0; height:24%; background:repeating-linear-gradient(90deg,#121214 0,#121214 34px,#1b1b1e 34px,#1b1b1e 37px); border-top:1px solid #28282b; }
.preview-badge { position:absolute; z-index:3; top:18px; left:18px; padding:8px 10px; border:1px solid rgba(215,255,63,.25); background:rgba(5,5,5,.72); color:var(--accent); font-size:7px; font-weight:800; letter-spacing:.15em; }
.dino-silhouette,.dino-big { position:absolute; z-index:2; left:50%; top:45%; transform:translate(-50%,-50%); font-size:100px; filter:grayscale(1) brightness(.35); text-shadow:0 15px 35px rgba(0,0,0,.6); }
.dino-big { font-size:170px; top:48%; }
.knight-mark,.knight-big { position:absolute; z-index:2; left:50%; top:46%; transform:translate(-50%,-50%); font-size:105px; color:#c9c9c3; opacity:.65; filter:drop-shadow(0 20px 25px rgba(0,0,0,.7)); }
.knight-big { font-size:180px; }
.preview-ground { display:none; }
.preview-copy { padding:28px 28px 30px; }
.preview-copy .project-kicker { margin-bottom:22px; }
.preview-copy h3 { font-size:clamp(30px,3.4vw,48px); line-height:.94; letter-spacing:-.05em; margin-bottom:15px; }
.preview-copy h3 span { color:var(--accent); }
.preview-copy p { color:#777772; font-size:12px; line-height:1.7; max-width:600px; }
.preview-link,.all-projects-link { display:inline-flex; margin-top:22px; color:var(--accent); font-size:8px; font-weight:800; letter-spacing:.14em; }
.all-projects-link { display:flex; width:max-content; margin:28px auto 0; gap:18px; padding-bottom:8px; border-bottom:1px solid #343434; }
.page-hero { padding-top:120px; padding-bottom:85px; border-bottom:1px solid var(--line); }
.page-hero h1 { margin-bottom:25px; }
.page-intro { max-width:650px; color:#777772; line-height:1.8; font-size:14px; }
.project-list { border-top:1px solid #292929; }
.project-row { display:grid; grid-template-columns:250px 1fr 60px; gap:35px; align-items:stretch; min-height:250px; border-bottom:1px solid #292929; transition:.3s ease; }
.project-row:hover { background:rgba(215,255,63,.025); padding-left:10px; }
.row-art { min-height:250px; border-right:1px solid #292929; }
.row-art > span { position:absolute; z-index:2; left:50%; top:50%; transform:translate(-50%,-50%); font-size:70px; filter:grayscale(1) brightness(.4); }
.row-main { align-self:center; padding:30px 0; }
.row-number { color:var(--accent); font-size:9px; font-weight:800; letter-spacing:.12em; }
.row-main h2 { font-size:clamp(32px,4vw,58px); margin:12px 0 13px; }
.row-main p { color:#6f6f6b; font-size:11px; letter-spacing:.04em; }
.row-arrow { align-self:center; width:45px; height:45px; border:1px solid #343434; display:grid; place-items:center; color:var(--accent); }
.project-detail-hero { display:grid; grid-template-columns:1fr .9fr; gap:70px; align-items:center; min-height:calc(100vh - 86px); padding-top:90px; padding-bottom:100px; }
.detail-lead { max-width:650px; color:#8d8d88; font-size:17px; line-height:1.75; }
.detail-actions { display:flex; gap:12px; margin-top:32px; flex-wrap:wrap; }
.detail-meta { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:55px; max-width:700px; }
.detail-meta div { border-top:1px solid #2b2b2b; padding-top:12px; display:flex; flex-direction:column; gap:6px; }
.detail-meta span,.detail-facts span { color:#5f5f5a; font-size:7px; font-weight:800; letter-spacing:.14em; }
.detail-meta strong,.detail-facts strong { font-size:9px; letter-spacing:.06em; }
.detail-visual { min-height:600px; border:1px solid #292929; box-shadow:28px 28px 0 rgba(215,255,63,.025); }
.detail-section { border-top:1px solid var(--line); }
.detail-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:100px; }
.detail-grid p { color:#777772; font-size:13px; line-height:1.85; margin-top:20px; }
.detail-grid .large-copy { color:#e9e9e5; font:500 24px/1.45 "Space Grotesk",sans-serif; margin-top:0; }
.detail-facts { border-top:1px solid #292929; }
.detail-facts div { padding:18px 0; border-bottom:1px solid #222; display:flex; flex-direction:column; gap:7px; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.feature-grid article { min-height:220px; border:1px solid #292929; padding:28px; background:#0d0d0d; }
.feature-grid article > span { color:var(--accent); font-size:8px; font-weight:800; }
.feature-grid h3 { margin:35px 0 12px; font-size:20px; }
.feature-grid p { color:#70706c; font-size:11px; line-height:1.7; }
.dark-section { background:linear-gradient(180deg,#090909,#070707); width:100%; max-width:none; padding-left:max(24px,calc((100% - var(--max))/2)); padding-right:max(24px,calc((100% - var(--max))/2)); }
.quote-box { border-left:2px solid var(--accent); padding:18px 0 18px 28px; max-width:850px; }
.quote-box p { font:500 28px/1.4 "Space Grotesk",sans-serif; color:#deded8; }
.quote-box span { display:block; margin-top:18px; color:#666661; font-size:8px; font-weight:800; letter-spacing:.15em; }
.bottom-actions { margin-top:45px; }
@media (max-width:900px){ .project-preview-grid,.project-detail-hero,.detail-grid{grid-template-columns:1fr}.project-row{grid-template-columns:170px 1fr 50px;gap:20px}.feature-grid{grid-template-columns:repeat(2,1fr)}.detail-visual{min-height:500px}.detail-meta{grid-template-columns:repeat(2,1fr)} }
@media (max-width:600px){.project-preview-grid{grid-template-columns:1fr}.project-row{grid-template-columns:110px 1fr 40px;gap:14px}.row-art{min-height:190px}.row-main h2{font-size:28px}.project-row{min-height:190px}.feature-grid{grid-template-columns:1fr}.detail-visual{min-height:400px}.dino-big{font-size:120px}.knight-big{font-size:120px}.detail-lead{font-size:15px}.detail-meta{margin-top:40px}.quote-box p{font-size:21px}.page-hero{padding-top:85px}}

/* Portfolio refresh */
:root{--lime:#d7ff3f;--bg:#080a09;--panel:#101311;--line:rgba(255,255,255,.09);--muted:#8d958f}
body{background:var(--bg)}
.navbar{backdrop-filter:blur(16px);background:rgba(8,10,9,.78);border-bottom:1px solid var(--line)}
.button{transition:transform .2s ease,background .2s ease,border-color .2s ease}.button:hover{transform:translateY(-2px)}
.project-card,.project-row,.feature-grid article,.quote-box{transition:transform .25s ease,border-color .25s ease,background .25s ease}
.project-card:hover,.project-row:hover,.feature-grid article:hover{transform:translateY(-4px);border-color:rgba(215,255,63,.35)}
.project-thumb{position:relative;overflow:hidden;background:#111}
.project-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}.project-card:hover .project-thumb img{transform:scale(1.04)}
.badge{display:inline-flex;align-items:center;gap:7px;border:1px solid rgba(215,255,63,.25);color:var(--lime);padding:7px 10px;border-radius:999px;font-size:11px;font-weight:800;letter-spacing:.08em}
.project-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}.project-actions .button{min-width:130px;text-align:center}
.detail-hero-image{border:1px solid var(--line);border-radius:24px;overflow:hidden;background:#0e110f;box-shadow:0 25px 70px rgba(0,0,0,.35)}
.detail-hero-image img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
.game-shell{margin-top:28px;border:1px solid rgba(215,255,63,.25);border-radius:18px;overflow:hidden;background:#050605;box-shadow:0 25px 80px rgba(0,0,0,.45)}
.game-shell iframe{display:block;width:100%;height:min(70vh,720px);border:0;background:#000}
.game-note{padding:12px 16px;color:#8d958f;font-size:12px;border-top:1px solid var(--line)}
.kpi-row{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:24px}.kpi{padding:16px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.025)}.kpi span{display:block;color:var(--muted);font-size:10px;font-weight:800;letter-spacing:.1em}.kpi strong{display:block;margin-top:7px;font-size:15px}
@media(max-width:800px){.kpi-row{grid-template-columns:repeat(2,1fr)}.game-shell iframe{height:62vh}}
@media(max-width:520px){.kpi-row{grid-template-columns:1fr 1fr}.game-shell iframe{height:56vh}}


.play-card {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, .95fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #101311;
}
.play-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.play-card-copy {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.play-card-copy h3 {
  font: 700 clamp(38px, 5vw, 64px) "Space Grotesk", sans-serif;
  margin: 18px 0 12px;
}
.play-card-copy p {
  color: #aeb4af;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
@media (max-width: 760px) {
  .play-card { grid-template-columns: 1fr; }
  .play-card img { min-height: 220px; }
  .play-card-copy { padding: 30px; }
}
