:root {
  --zoko-bg: #070707;
  --zoko-bg-soft: #0d0d0f;
  --zoko-card: #141416;
  --zoko-card-2: #101923;
  --zoko-graphite: #1b1b1f;
  --zoko-border: rgba(255, 255, 255, 0.09);
  --zoko-border-strong: rgba(255, 255, 255, 0.16);
  --zoko-text: #f8fafc;
  --zoko-muted: #a1a7b3;
  --zoko-muted-2: #747b88;
  --zoko-cyan: #00aeef;
  --zoko-navy: #002f66;
  --zoko-dark-blue: #061838;
  --zoko-shadow: rgba(0, 0, 0, 0.48);
  --container: min(1180px, calc(100vw - 40px));
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--zoko-bg);
}

body.zoko-theme {
  margin: 0;
  min-width: 320px;
  background: var(--zoko-bg);
  color: var(--zoko-text);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

body.zoko-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.zoko-theme a {
  color: inherit;
  text-decoration: none;
}

body.zoko-theme button,
body.zoko-theme input,
body.zoko-theme textarea {
  font: inherit;
}

body.zoko-theme button {
  cursor: pointer;
}

body.zoko-theme :focus-visible {
  outline: 2px solid var(--zoko-cyan);
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 14px;
  left: 14px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  border-radius: var(--radius);
  background: var(--zoko-cyan);
  color: #001018;
  font-weight: 800;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.text-center {
  text-align: center;
}

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

.zoko-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.04), transparent 14%),
    var(--zoko-bg);
}

.zoko-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid var(--zoko-border);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 174px;
  min-height: 54px;
}

.brand-mark img {
  width: 174px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  color: var(--zoko-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--zoko-cyan);
  transition: width 220ms ease;
}

.nav-links > a:hover {
  color: var(--zoko-text);
}

.nav-links > a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--zoko-cyan);
  color: #001018;
  box-shadow: 0 0 22px rgba(0, 174, 239, 0.17);
}

.nav-cta:hover,
.button-primary:hover {
  background: #37c9ff;
  box-shadow: 0 0 34px rgba(0, 174, 239, 0.25);
}

.button-ghost {
  background: transparent;
  color: var(--zoko-text);
  border-color: var(--zoko-border-strong);
}

.button-ghost:hover {
  border-color: rgba(0, 174, 239, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--zoko-text);
  place-items: center;
}

.nav-toggle-close {
  display: none;
}

.nav-toggle.is-open .nav-toggle-open {
  display: none;
}

.nav-toggle.is-open .nav-toggle-close {
  display: inline-flex;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(8, 8, 10, 0.98) 48%, rgba(5, 14, 24, 0.96)),
    var(--zoko-bg);
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}

.ambient-field {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 0.75;
  filter: blur(36px);
}

.ambient-one {
  top: -120px;
  right: -18vw;
  width: 74vw;
  height: 360px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.14), rgba(0, 47, 102, 0.26), transparent);
  transform: rotate(-11deg);
}

.ambient-two {
  left: -12vw;
  bottom: 2vh;
  width: 70vw;
  height: 280px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), rgba(0, 174, 239, 0.08), transparent);
  transform: rotate(9deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid var(--zoko-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--zoko-muted);
  font-size: 14px;
  font-weight: 650;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--zoko-cyan);
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.65);
}

.hero-title,
.section-title {
  margin: 0;
  color: var(--zoko-text);
  font-weight: 850;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-title {
  max-width: 800px;
  font-size: clamp(46px, 7vw, 88px);
}

.section-title {
  font-size: clamp(36px, 5vw, 66px);
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--word-index) * 36ms);
}

.is-visible .word-reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-description,
.section-lead {
  max-width: 650px;
  color: var(--zoko-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-description {
  margin: 26px 0 0;
}

.section-lead {
  margin: 22px 0 0;
}

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

.hero-actions .button {
  min-height: 54px;
  padding: 0 28px;
}

.hero-showcase {
  position: relative;
  min-height: 500px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.browser-card {
  overflow: hidden;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(20, 20, 22, 0.88);
  box-shadow: 0 24px 70px var(--zoko-shadow);
}

.browser-top {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--zoko-border);
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.browser-top span:nth-child(1) {
  background: rgba(239, 68, 68, 0.8);
}

.browser-top span:nth-child(2) {
  background: rgba(245, 158, 11, 0.8);
}

.browser-top span:nth-child(3) {
  background: rgba(34, 197, 94, 0.8);
}

.browser-top em {
  display: block;
  min-width: 0;
  flex: 1;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--zoko-muted);
  font-size: 11px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0b0c;
}

.browser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 580ms ease, opacity 360ms ease;
}

.browser-card:hover img {
  transform: scale(1.035);
}

.hero-card {
  position: absolute;
  width: min(100%, 520px);
}

.hero-card-back {
  top: 58px;
  right: -8px;
  opacity: 0.48;
  transform: rotate(4deg) translateZ(-80px);
}

.hero-card-mid {
  top: 20px;
  left: -26px;
  opacity: 0.68;
  transform: rotate(-3deg) translateZ(-40px);
}

.hero-card-front {
  top: 115px;
  left: 50%;
  translate: -50% 0;
  border-color: rgba(0, 174, 239, 0.22);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--zoko-muted-2);
  font-size: 12px;
  font-weight: 700;
  transform: translateX(-50%);
}

.scroll-cue svg {
  color: var(--zoko-cyan);
  animation: zoko-bounce 1.6s ease-in-out infinite;
}

@keyframes zoko-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.marquee-section {
  padding: 54px 0;
  background: var(--zoko-card);
  border-top: 1px solid var(--zoko-border);
  border-bottom: 1px solid var(--zoko-border);
  overflow: hidden;
}

.marquee-row {
  display: flex;
  width: max-content;
}

.marquee-row + .marquee-row {
  margin-top: 22px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.marquee-left .marquee-track {
  animation: marquee-left 54s linear infinite;
}

.marquee-right .marquee-track {
  animation: marquee-right 58s linear infinite;
}

.marquee-card {
  width: 330px;
  flex: 0 0 330px;
  overflow: hidden;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.48);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.marquee-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 520ms ease;
}

.marquee-card:hover img {
  transform: scale(1.05);
}

.marquee-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 46px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.marquee-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.marquee-card strong {
  color: var(--zoko-text);
  font-size: 14px;
}

.marquee-card span {
  color: var(--zoko-cyan);
  font-size: 12px;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.section-head {
  max-width: 720px;
  margin-bottom: 62px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--zoko-cyan);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-section {
  background: linear-gradient(180deg, #080808, #0d0d0f);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.value-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.36);
  background: rgba(0, 174, 239, 0.045);
}

.value-card svg {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  color: var(--zoko-cyan);
}

.value-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.value-card p {
  margin: 0;
  color: var(--zoko-muted);
  line-height: 1.7;
}

.services-section,
.projects-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
    var(--zoko-bg-soft);
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--zoko-border);
}

.service-row:last-child {
  border-bottom: 1px solid var(--zoko-border);
}

.service-number,
.project-number {
  color: rgba(0, 174, 239, 0.24);
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.9;
}

.service-row h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
}

.service-row p {
  max-width: 760px;
  margin: 0;
  color: var(--zoko-muted);
  font-size: 18px;
  line-height: 1.7;
}

.project-stack {
  display: grid;
  gap: 100px;
}

.project-card {
  position: sticky;
  top: 104px;
  z-index: calc(10 + var(--card-index));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(20, 20, 22, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.project-card:nth-child(even) .project-content {
  order: 2;
}

.project-content,
.project-media {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
}

.project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-media {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    #0b0b0d;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.project-meta > span:last-child {
  color: var(--zoko-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

.project-card p {
  margin: 0;
  color: var(--zoko-muted);
  line-height: 1.72;
}

.project-details {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.project-details h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  color: var(--zoko-text);
  font-size: 14px;
}

.project-details h4 span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--zoko-cyan);
}

.project-details p {
  padding-left: 16px;
  font-size: 14px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  padding: 8px 11px;
  border: 1px solid var(--zoko-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--zoko-muted);
  font-size: 12px;
  font-weight: 650;
}

.project-browser {
  width: min(100%, 580px);
  border-color: rgba(0, 174, 239, 0.18);
}

.project-browser figure {
  aspect-ratio: 16 / 10;
}

.project-image {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.project-image.is-active {
  opacity: 1;
  position: absolute;
}

.image-toggle {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.image-toggle button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 180ms ease, background 180ms ease;
}

.image-toggle button.is-active {
  width: 28px;
  background: var(--zoko-cyan);
}

.process-section {
  background: linear-gradient(180deg, var(--zoko-bg), #0a1018, var(--zoko-bg));
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.52), transparent);
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(20, 20, 22, 0.72);
}

.process-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 174, 239, 0.42);
  border-radius: 999px;
  background: #08131d;
  color: var(--zoko-cyan);
  font-weight: 900;
}

.process-card h3 {
  margin: 44px 0 12px;
  font-size: 22px;
}

.process-card p {
  margin: 0;
  color: var(--zoko-muted);
  line-height: 1.68;
}

.contact-section {
  background: var(--zoko-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--zoko-border);
  border-radius: 999px;
  color: var(--zoko-muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  color: var(--zoko-text);
  border-color: rgba(0, 174, 239, 0.38);
  background: rgba(0, 174, 239, 0.055);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(20, 20, 22, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--zoko-text);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--zoko-text);
  padding: 14px 15px;
  resize: vertical;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--zoko-muted-2);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 174, 239, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form .button {
  min-height: 52px;
  width: 100%;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--zoko-border);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-logo img {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: var(--zoko-muted);
  line-height: 1.6;
}

.site-footer span {
  justify-self: end;
  white-space: nowrap;
}

.zoko-simple-page {
  min-height: 100vh;
  padding: 140px 0 80px;
}

.content-card {
  max-width: 920px;
  padding: 36px;
  border: 1px solid var(--zoko-border);
  border-radius: var(--radius);
  background: var(--zoko-card);
}

.reveal,
.reveal-text,
.project-card,
.service-row,
.value-card,
.process-card,
.contact-form {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible,
.reveal-text.is-visible,
.project-card.is-visible,
.service-row.is-visible,
.value-card.is-visible,
.process-card.is-visible,
.contact-form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

@media (max-width: 1120px) {
  .hero-grid,
  .project-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 420px;
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .project-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .project-card:nth-child(even) .project-content {
    order: initial;
  }

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-nav {
    min-height: 70px;
  }

  .brand-mark,
  .brand-mark img {
    width: 150px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--zoko-border);
    border-radius: var(--radius);
    background: rgba(9, 9, 10, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-section {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .scroll-cue {
    display: none;
  }

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

  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-stack {
    gap: 42px;
  }

  .project-content,
  .project-media {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer span {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 310px;
  }

  .hero-card {
    width: 86%;
  }

  .hero-card-back {
    top: 34px;
    right: 0;
  }

  .hero-card-mid {
    top: 14px;
    left: 0;
  }

  .hero-card-front {
    top: 84px;
  }

  .marquee-card {
    width: 280px;
    flex-basis: 280px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-browser .browser-top em {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .word-reveal,
  .reveal,
  .reveal-text,
  .project-card,
  .service-row,
  .value-card,
  .process-card,
  .contact-form {
    opacity: 1 !important;
    transform: none !important;
  }
}
