:root {
  --bg: #070a0e;
  --panel: #0d1117;
  --panel-2: #11161e;
  --line: #202834;
  --text: #f4f6f8;
  --muted: #8f98a6;
  --blue: #4d87ff;
  --blue-soft: #81a8ff;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 48% 16%, rgba(44, 102, 255, .10), transparent 25%),
    linear-gradient(180deg, #06090d 0%, #080b10 48%, #05080c 100%);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.section-frame {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  width: min(var(--max), calc(100% - 64px));
  height: 96px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { font-size: 30px; font-weight: 800; letter-spacing: -.04em; }
.brand span, .eyebrow, .text-link, .hero-intro span, .arabic-line span { color: var(--blue); }
.desktop-nav { display: flex; gap: 42px; text-transform: uppercase; font-size: 13px; }
.desktop-nav a, .footer nav a { color: #d7dbe2; transition: color .2s ease; }
.desktop-nav a:hover, .footer nav a:hover { color: var(--blue-soft); }
.header-cta { justify-self: end; }

.outline-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(77,135,255,.85);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .03em;
  transition: background .2s ease, border-color .2s ease;
}
.outline-button:hover { background: rgba(77,135,255,.10); border-color: var(--blue-soft); }

.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 24% 24% 27% 25%;
  grid-template-rows: 190px 1fr;
  border-bottom: 1px solid var(--line);
}
.hero-word {
  position: absolute;
  z-index: 0;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(128px, 18vw, 270px);
  line-height: .8;
  letter-spacing: -.055em;
  font-weight: 900;
  color: #f5f5f3;
  white-space: nowrap;
  text-transform: uppercase;
}
.hero-word--motion { top: 45px; left: 0; }
.hero-word--designer { right: 0; bottom: 116px; }
.hero-portrait-wrap {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: min(570px, 96%);
  height: 730px;
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 0 22px rgba(48,101,255,.28));
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.hero-metrics {
  grid-column: 1;
  grid-row: 2;
  z-index: 3;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero-metrics div { display: flex; flex-direction: column; gap: 3px; }
.hero-metrics strong { color: var(--blue); font-size: 34px; line-height: 1; }
.hero-metrics span { color: #d7dbe2; text-transform: uppercase; font-size: 12px; letter-spacing: .02em; }
.hero-button { width: fit-content; margin-top: 5px; }
.scroll-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted)!important; }
.hero-intro {
  grid-column: 3 / 4;
  grid-row: 1;
  z-index: 4;
  margin-top: 92px;
  margin-left: 35px;
  width: 280px;
}
.hero-intro h1 { margin: 0 0 22px; font-size: 34px; text-transform: uppercase; }
.hero-intro p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.hero-side-label {
  position: absolute;
  top: 64px;
  right: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}
.hero-side-label i { width: 1px; height: 130px; background: rgba(77,135,255,.45); margin: 18px 0; }
.hero-side-label b { font-size: 23px; font-weight: 400; }
.arabic-line {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 4;
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 27px;
  line-height: 1.25;
}

.work {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 46px;
  padding-block: 52px 26px;
  border-bottom: 1px solid var(--line);
}
.section-lead { padding-top: 14px; }
.eyebrow { display: block; margin-bottom: 18px; text-transform: uppercase; font-size: 13px; }
.section-lead h2, .about-card h2, .artist-card h2 {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 400;
}
.section-lead p, .about-copy p, .artist-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.text-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 14px; text-transform: uppercase; font-size: 12px; }

.project-list { display: flex; flex-direction: column; gap: 10px; }
.project-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 220px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 18px 16px 18px 26px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18,23,31,.94), rgba(11,15,20,.96));
}
.project-copy { align-self: stretch; padding-top: 2px; }
.project-index { color: var(--blue); font-size: 15px; }
.project-copy h3 { margin: 11px 0 3px; text-transform: uppercase; font-size: 14px; }
.project-count { margin: 0; color: #b8c0cc; text-transform: uppercase; font-size: 11px; }
.project-description { margin: 20px 0 0; max-width: 170px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.project-stack { position: relative; height: 132px; display: flex; align-items: center; justify-content: center; }
.stack-card {
  position: absolute;
  width: min(360px, 88%);
  height: 118px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #131923;
}
.stack-card--back { transform: translateX(60px) rotate(6deg); opacity: .55; }
.stack-card--middle { transform: translateX(30px) rotate(3deg); opacity: .72; }
.stack-card--front {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(60,116,255,.72), rgba(15,26,56,.25) 35%, transparent 58%),
    linear-gradient(135deg, #111826, #243d7d);
}
.project-stack--editing .stack-card--front { background: linear-gradient(135deg, #0c1523, #9d1c24 55%, #1b4f91); }
.project-stack--character .stack-card--front { background: linear-gradient(135deg, #1f3046, #8a543b); }
.project-stack--storyboard .stack-card--front { background: linear-gradient(135deg, #372b22, #b19a7e); }
.project-stack--typography .stack-card--front { background: linear-gradient(135deg, #05080c, #1b4bd5); }
.project-orb { width: 58px; height: 58px; border: 9px solid rgba(255,255,255,.82); transform: rotate(45deg); box-shadow: 0 0 24px var(--blue); }
.character-face { width: 78px; height: 94px; display: grid; place-items: center; border-radius: 44% 44% 50% 50%; background: #d89c6b; color: #17243a; font-size: 40px; }
.story-lines { font-size: 58px; color: #2c211b; }
.type-art { font-family: Impact, "Arial Narrow", sans-serif; font-size: 35px; line-height: .75; color: #77a1ff; transform: rotate(-4deg); }
.play { position: absolute; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(8px); }
.project-link {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(77,135,255,.6); border-radius: 4px; color: #dce5ff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.about-card, .artist-card {
  min-height: 390px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.about-card { border-right: 1px solid var(--line); }
.about-copy, .artist-copy { padding: 52px 34px 38px 0; z-index: 2; }
.about-photo, .artist-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo { object-fit: contain; object-position: center bottom; filter: drop-shadow(0 0 16px rgba(44,92,220,.20)); }
.artist-copy { padding-left: 34px; }
.artist-photo { object-position: center center; }
.signature { display: block; margin-top: 28px; color: var(--blue); font-family: cursive; font-size: 25px; font-style: italic; }

.details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-bottom: 1px solid var(--line);
}
.details-panel { padding: 34px 32px 38px 0; }
.tools-panel { padding-left: 32px; border-left: 1px solid var(--line); }
.panel-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.panel-title .eyebrow { margin: 0; }
.panel-title h2 { margin: 0; text-transform: uppercase; font-size: 16px; font-weight: 600; }
.industry-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 15px; }
.industry-item, .tool-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; color: var(--blue); }
.industry-item span, .tool-item span { color: #c3cad4; font-size: 10px; line-height: 1.2; }
.tools-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; }
.tool-item strong {
  width: 56px; height: 56px; display: grid; place-items: center;
  border: 1px solid var(--blue); border-radius: 8px;
  background: linear-gradient(145deg, #18213a, #0b0f16);
  color: #74a0ff; font-size: 26px;
}

.contact {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  align-items: center;
  gap: 40px;
  padding: 30px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.contact h2, .contact p { margin: 0; font-size: 31px; font-weight: 400; line-height: 1.14; }
.contact p span { color: var(--blue); }

.footer {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.footer p { color: var(--muted); font-size: 12px; }
.footer nav { display: flex; gap: 30px; text-transform: uppercase; font-size: 10px; }
.back-top { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #606975; border-radius: 50%; }

@media (max-width: 1050px) {
  .hero { min-height: 720px; grid-template-columns: 1fr 1fr; }
  .hero-word { font-size: 18vw; }
  .hero-intro { grid-column: 2; margin-left: 0; }
  .hero-portrait-wrap { grid-column: 1 / 3; width: 500px; height: 650px; }
  .hero-metrics { grid-column: 1; }
  .hero-side-label { display: none; }
  .arabic-line { font-size: 22px; }
  .work { grid-template-columns: 240px 1fr; gap: 25px; }
  .project-card { grid-template-columns: 170px 1fr 45px; }
  .industry-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 760px) {
  .section-frame, .site-header { width: min(100% - 28px, var(--max)); }
  .site-header { grid-template-columns: 1fr auto; height: 76px; }
  .desktop-nav { display: none; }
  .header-cta { padding-inline: 13px; }
  .hero {
    min-height: 760px;
    display: block;
    padding-top: 30px;
  }
  .hero-word { font-size: 23vw; }
  .hero-word--motion { top: 38px; }
  .hero-word--designer { right: 0; bottom: 200px; }
  .hero-portrait-wrap { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 430px; height: 590px; }
  .hero-intro { position: absolute; z-index: 4; top: 170px; right: 0; margin: 0; width: 48%; }
  .hero-intro h1 { font-size: 24px; }
  .hero-intro p { font-size: 13px; }
  .hero-metrics { position: absolute; z-index: 5; left: 0; bottom: 36px; gap: 15px; }
  .hero-metrics strong { font-size: 25px; }
  .hero-metrics .hero-button, .scroll-note { display: none; }
  .arabic-line { right: 0; bottom: 34px; font-size: 18px; }
  .work { display: block; }
  .section-lead { margin-bottom: 34px; }
  .project-card { grid-template-columns: 1fr; gap: 12px; min-height: 340px; }
  .project-description { max-width: 100%; }
  .project-stack { height: 150px; }
  .project-link { position: absolute; right: 28px; top: 25px; }
  .project-card { position: relative; }
  .about-grid, .details-grid { grid-template-columns: 1fr; }
  .about-card, .artist-card { grid-template-columns: 1fr; min-height: 620px; }
  .about-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-copy, .artist-copy { padding: 40px 20px 0; }
  .artist-copy { padding-left: 20px; }
  .about-photo, .artist-photo { min-height: 340px; }
  .tools-panel { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer { grid-template-columns: auto 1fr auto; }
  .footer nav { grid-column: 1 / -1; order: 4; flex-wrap: wrap; }
}

.project-card .project-link { text-decoration:none; }
.industry-grid > div, .tools-grid > div {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color:var(--blue); text-align:center;
}
.industry-grid > div span, .tools-grid > div span {
  color:#c3cad4; font-size:10px;
}
.tools-grid > div strong {
  width:56px; height:56px; display:grid; place-items:center;
  border:1px solid var(--blue); border-radius:8px;
  background:linear-gradient(145deg,#18213a,#0b0f16);
  color:#74a0ff; font-size:26px;
}
