:root {
  --bg: #050706;
  --surface: #0a0d0c;
  --surface-soft: #101514;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(68, 255, 155, 0.28);
  --text: #f4f7f5;
  --muted: #a3ada8;
  --dim: #626b67;
  --green: #37ff91;
  --green-deep: #0ea65a;
  --green-soft: rgba(55, 255, 145, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 48% 4%, rgba(55, 255, 145, 0.14), transparent 24rem),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.09), transparent 16rem),
    linear-gradient(180deg, #010202 0%, var(--bg) 42%, #030403 100%);
  font-family: var(--font);
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(55, 255, 145, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(1, 2, 2, 0.98), rgba(5, 7, 6, 0.96));
  opacity: 1;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.page-loader::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(55, 255, 145, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 255, 145, 0.08) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(55, 255, 145, 0.14) 49%, transparent 50%);
  background-size: 86px 86px, 86px 86px, 360px 360px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-card {
  position: relative;
  display: grid;
  gap: 10px;
  place-items: center;
  width: min(300px, calc(100% - 40px));
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 10, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.loader-mark {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(55, 255, 145, 0.07);
}

.loader-mark::before,
.loader-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.loader-mark::before {
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: var(--green);
  border-right-color: rgba(55, 255, 145, 0.35);
  animation: loader-spin 950ms linear infinite;
}

.loader-mark::after {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(55, 255, 145, 0.35), transparent 70%);
  filter: blur(3px);
  animation: loader-pulse 1.35s ease-in-out infinite;
}

.loader-mark span {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(55, 255, 145, 0.75);
}

.loader-mark span:nth-child(1) {
  transform: translateY(-22px);
}

.loader-mark span:nth-child(2) {
  transform: rotate(120deg) translateY(-22px);
}

.loader-mark span:nth-child(3) {
  transform: rotate(240deg) translateY(-22px);
}

.loader-card strong {
  font-size: 1.1rem;
}

.loader-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .loader-mark::before,
  .loader-mark::after {
    animation: none;
  }

  .page-loader {
    transition: opacity 180ms ease, visibility 180ms ease;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(55, 255, 145, 0.18) 49%, transparent 50%),
    linear-gradient(65deg, transparent 0 50%, rgba(255, 255, 255, 0.055) 51%, transparent 52%);
  background-size: 360px 360px, 520px 520px;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(920px, 100%);
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 11, 10, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #04120b;
  background: linear-gradient(135deg, var(--green), #d8ffe9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.84rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #d6ddd9;
  font-size: 0.78rem;
}

.main-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.header-cta,
.button-primary {
  color: #04120b;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(55, 255, 145, 0.18);
}

.header-cta i,
.button-primary span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 18, 11, 0.12);
  font-style: normal;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 82px);
}

.status-pill,
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 20px;
  color: #c9d3cf;
  font-size: 0.76rem;
  font-weight: 750;
}

.status-pill {
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(55, 255, 145, 0.08);
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-text,
.intro p,
.section-heading > div > p:not(.eyebrow),
.process-panel p,
.contact-card p,
.work-card p,
.service-card p,
.case-content p,
.education-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 1.04rem;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.proof-row {
  margin-top: 44px;
  color: #b9c2be;
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-row span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.proof-row span::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, var(--green) 0 2px, transparent 3px),
    rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 54% 44%, rgba(55, 255, 145, 0.19), transparent 18rem),
    linear-gradient(145deg, #080b0a, #030504 58%, #0b100e);
  box-shadow: var(--shadow);
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(55, 255, 145, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 255, 145, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 55% 48%, #000, transparent 68%);
}

.portrait-card {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: min(58%, 360px);
  height: 84%;
}

.portrait-glow {
  position: absolute;
  right: 5%;
  bottom: 6%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 255, 145, 0.18), transparent 68%);
  filter: blur(18px);
}

.avatar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 78%;
  overflow: hidden;
  border-radius: 190px 190px 0 0;
  background:
    radial-gradient(circle at 50% 18%, #ffd8ba 0 13%, transparent 14%),
    radial-gradient(circle at 43% 18%, #15110f 0 2%, transparent 2.4%),
    radial-gradient(circle at 57% 18%, #15110f 0 2%, transparent 2.4%),
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 39% 41%, transparent 42%),
    linear-gradient(#1a2a3a 36%, #101820 36% 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.48);
}

.avatar::before {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 33%;
  aspect-ratio: 1;
  border-radius: 50% 50% 46% 46%;
  content: "";
  background:
    linear-gradient(90deg, transparent 34%, rgba(255, 255, 255, 0.45) 35% 39%, transparent 40% 60%, rgba(255, 255, 255, 0.45) 61% 65%, transparent 66%),
    linear-gradient(#da7a44 0 18%, #f1bf9a 18% 100%);
  box-shadow:
    0 -22px 0 #8d472c,
    0 3px 0 22px rgba(13, 18, 17, 0.18);
  transform: translateX(-50%);
}

.avatar::after {
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 46%;
  border-radius: 56px 56px 0 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.1) 49% 51%, transparent 52%),
    linear-gradient(135deg, #152334, #0b1119);
}

.avatar span {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 2;
  width: 18%;
  height: 5%;
  border-radius: 0 0 999px 999px;
  background: #59271d;
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #d9e2de;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 900;
}

.orbit-one {
  top: 22%;
  left: -5%;
}

.orbit-two {
  top: 13%;
  right: 5%;
}

.orbit-three {
  top: 40%;
  left: -18%;
}

.creator-badge {
  position: absolute;
  right: -32px;
  bottom: 164px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transform: rotate(90deg);
  transform-origin: right center;
}

.floating-card {
  position: absolute;
  width: min(46%, 270px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 17, 15, 0.78);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.floating-card small,
.work-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
}

.floating-card strong {
  display: block;
  margin-bottom: 8px;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.card-a {
  top: 18%;
  left: 34px;
}

.card-b {
  right: 34px;
  bottom: 34px;
}

.mini-stack {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.mini-stack span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(135deg, rgba(55, 255, 145, 0.95), rgba(255, 255, 255, 0.16));
}

.intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 span,
.intro h2,
.section-heading h2 {
  text-wrap: balance;
}

.intro p {
  width: min(620px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-heading a {
  min-width: max-content;
  color: var(--green);
  font-weight: 850;
}

.section-heading-centered {
  justify-content: center;
  text-align: center;
}

.section-heading-centered h2 {
  margin-right: auto;
  margin-left: auto;
}

.tools {
  padding-top: 60px;
  padding-bottom: 60px;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 255, 145, 0.12), transparent 20rem),
    rgba(255, 255, 255, 0.015);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.tool-card {
  display: grid;
  gap: 10px;
  min-height: 112px;
  place-items: center;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.tool-card strong {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--green);
  background: rgba(55, 255, 145, 0.08);
  font-size: 1rem;
  font-weight: 950;
}

.tool-card span {
  color: #d6ddd9;
  font-size: 0.73rem;
  font-weight: 760;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-list {
  display: grid;
  gap: 46px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.case-media {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1c281f;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.media-smartdocu {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.46), transparent 12rem),
    linear-gradient(135deg, #edf7e5 0%, #94da43 48%, #c6f4a1 100%);
}

.media-campaign {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.55), transparent 13rem),
    linear-gradient(135deg, #8ae4f2 0%, #d2ffc4 100%);
}

.media-corporate {
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.86), transparent 12rem),
    linear-gradient(135deg, #f4f5f2, #c8cbc8 54%, #fdfdfb);
}

.device-row {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 22px;
  width: 82%;
}

.phone-mock,
.desktop-mock {
  display: block;
  border: 6px solid #111614;
  background:
    linear-gradient(var(--green) 0 12%, transparent 12%),
    repeating-linear-gradient(180deg, #ffffff 0 12px, #e8ece9 12px 18px);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.22);
}

.phone-mock {
  width: 72px;
  height: 150px;
  border-radius: 18px;
}

.phone-dark {
  background:
    linear-gradient(var(--green) 0 10%, transparent 10%),
    repeating-linear-gradient(180deg, #101513 0 14px, #1d2622 14px 22px);
}

.phone-tilt {
  transform: rotate(-12deg) translateY(10px);
}

.desktop-mock {
  position: relative;
  width: min(270px, 44vw);
  height: 170px;
  border-width: 8px;
  border-radius: 8px;
}

.desktop-mock::after {
  position: absolute;
  right: 28%;
  bottom: -28px;
  left: 28%;
  height: 20px;
  border-radius: 0 0 8px 8px;
  content: "";
  background: #141a18;
}

.desktop-wide {
  width: min(360px, 54vw);
}

.case-content {
  padding: 12px 10px;
}

.case-content small,
.education-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
}

.case-content ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.case-content li {
  position: relative;
  padding-left: 18px;
  color: #d9e2de;
  font-size: 0.9rem;
  line-height: 1.45;
}

.case-content li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: #04120b;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.work-card,
.service-card,
.contact-card,
.process-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.work-card {
  min-height: 420px;
  padding: 14px;
}

.work-featured {
  grid-column: span 1;
}

.work-preview {
  position: relative;
  display: grid;
  min-height: 250px;
  margin-bottom: 20px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101513;
}

.work-preview::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  content: "";
}

.work-preview span {
  position: relative;
  width: 58%;
  aspect-ratio: 1.2;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 24%, transparent 24% 100%),
    linear-gradient(var(--green) 0 12%, transparent 12% 100%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    28px 28px 0 rgba(55, 255, 145, 0.15),
    -22px -18px 0 rgba(255, 255, 255, 0.06);
}

.preview-one {
  background:
    radial-gradient(circle at 28% 24%, rgba(55, 255, 145, 0.28), transparent 12rem),
    linear-gradient(135deg, #121716, #080a09);
}

.preview-two {
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.16), transparent 11rem),
    linear-gradient(145deg, #0e1211, #070908);
}

.preview-three {
  background:
    radial-gradient(circle at 50% 60%, rgba(55, 255, 145, 0.2), transparent 12rem),
    linear-gradient(155deg, #141918, #060807);
}

.work-card h3,
.work-card p {
  padding: 0 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 26px;
}

.service-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  padding: 42px;
  background:
    radial-gradient(circle at 88% 18%, rgba(55, 255, 145, 0.14), transparent 20rem),
    rgba(255, 255, 255, 0.035);
}

.process-panel ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 6, 5, 0.44);
}

.process-panel li span {
  grid-row: span 2;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-panel li p {
  margin-bottom: 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.education-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.education-visual {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visual-degree {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0 28%, transparent 29%),
    linear-gradient(135deg, #352737, #c38471 62%, #e9c7ab);
}

.visual-ux {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(55, 255, 145, 0.12) 62px 64px),
    linear-gradient(135deg, #171b1d, #303535);
}

.contact {
  padding-bottom: 120px;
}

.contact-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 54px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(55, 255, 145, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.contact-card p {
  width: min(560px, 100%);
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.project-hero {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.project-hero h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.project-lead {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(960px, 100%);
  margin: 0 auto 34px;
}

.project-meta span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #d9e2de;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.8rem;
  font-weight: 780;
}

.project-cover,
.showcase-image,
.image-gallery figure,
.poster-grid figure {
  margin: 0;
}

.project-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(55, 255, 145, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.project-cover > img:first-child {
  display: block;
  width: 100%;
  height: auto;
}

.project-cover-campaign {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.project-cover-campaign > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-device {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.3);
}

.cover-device-phone {
  width: min(26vw, 250px);
  transform: rotate(-9deg) translateX(-110px);
}

.cover-device-screen {
  width: min(56vw, 620px);
  margin-left: -120px;
}

.case-section {
  max-width: 1180px;
  margin: 0 auto;
}

.case-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.case-section-heading h2 {
  margin-bottom: 16px;
}

.case-section-heading p:not(.eyebrow),
.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.15);
}

.detail-card h3 {
  color: var(--green);
}

.detail-card p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.showcase-row-reverse {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.showcase-row-reverse .showcase-image {
  order: 2;
}

.showcase-row-reverse .showcase-copy {
  order: 1;
}

.showcase-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.showcase-image img,
.image-gallery img,
.poster-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-copy {
  padding: 12px 0;
}

.showcase-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.showcase-copy li {
  position: relative;
  padding-left: 18px;
  color: #d9e2de;
  line-height: 1.5;
}

.showcase-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.6rem;
}

.metric-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.image-gallery figure,
.poster-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.image-gallery-posters {
  width: min(860px, 100%);
}

.image-gallery-posters figure {
  background: #111513;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.poster-grid figure {
  background: #101513;
}

.next-project {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: min(980px, 100%);
  margin: 0 auto 80px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 12%, rgba(55, 255, 145, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.next-project h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 22px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
    align-items: start;
    border-radius: 24px;
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    justify-content: stretch;
    padding: 12px 4px 4px;
  }

  .site-header.is-open .main-nav a {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 68px;
  }

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

  .work-grid,
  .service-grid,
  .process-panel,
  .case-study,
  .education-grid,
  .education-card,
  .project-meta,
  .case-detail-grid,
  .showcase-row,
  .showcase-row-reverse,
  .metric-grid,
  .image-gallery,
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-content {
    padding: 0 4px 8px;
  }

  .showcase-row-reverse .showcase-image,
  .showcase-row-reverse .showcase-copy {
    order: initial;
  }

  .project-cover-campaign {
    min-height: 480px;
  }

  .cover-device-phone {
    width: min(42vw, 210px);
    transform: rotate(-8deg) translateX(-52px);
  }

  .cover-device-screen {
    width: min(74vw, 520px);
    margin-top: -40px;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small,
  .header-cta {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero {
    gap: 34px;
  }

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

  .portrait-card {
    right: 12px;
    width: 68%;
    height: 82%;
  }

  .floating-card {
    width: 58%;
    padding: 14px;
  }

  .card-a {
    top: 12%;
    left: 12px;
  }

  .card-b {
    right: 12px;
    bottom: 12px;
  }

  .creator-badge,
  .orbit-three {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 18px;
  }

  .work-card {
    min-height: 360px;
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card {
    min-height: 96px;
  }

  .case-list {
    gap: 24px;
  }

  .case-study {
    gap: 22px;
    padding: 12px;
  }

  .case-media {
    min-height: 280px;
  }

  .device-row {
    width: 94%;
    gap: 12px;
  }

  .phone-mock {
    width: 54px;
    height: 116px;
    border-width: 5px;
  }

  .desktop-mock,
  .desktop-wide {
    width: 170px;
    height: 116px;
    border-width: 6px;
  }

  .education-visual {
    min-height: 190px;
  }

  .project-lead {
    font-size: 1rem;
  }

  .project-cover-campaign {
    min-height: 430px;
  }

  .cover-device-phone {
    width: min(48vw, 170px);
    transform: rotate(-8deg) translateX(-34px);
  }

  .cover-device-screen {
    width: min(86vw, 360px);
  }

  .detail-card {
    min-height: auto;
    padding: 22px;
  }

  .next-project {
    display: grid;
    padding: 24px;
  }

  .work-preview {
    min-height: 210px;
  }

  .service-card,
  .process-panel,
  .contact-card {
    padding: 24px;
  }

  .contact {
    padding-bottom: 80px;
  }
}
