/* =========================================================
   Tim Markovic — moves.social
   Bold · Modern · Electric
   ========================================================= */

:root {
  /* Palette */
  --ink:        #0A0A12;
  --ink-2:      #100E1C;
  --ink-3:      #17142A;
  --card:       #1A1633;
  --card-line:  rgba(255,255,255,0.08);

  --volt:       #CCFF00;
  --volt-deep:  #A8D400;
  --purple:     #6D4AFF;
  --purple-deep:#5D3FD3;

  --paper:      #F4F2FA;
  --muted:      #A19CC0;
  --muted-2:    #6E6A8A;

  /* Type */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --radius:    20px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Animated aurora background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(circle at 80% 0%, rgba(109,74,255,0.10), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(204,255,0,0.06), transparent 45%),
    var(--ink);
}
.bg-fx__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.2s ease; }
.bg-fx.has-shader .bg-fx__canvas { opacity: 1; }
.bg-fx.has-shader .bg-fx__blob { display: none; }
.bg-fx__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.8; will-change: transform; }
.bg-fx__blob--1 {
  width: 46vw; height: 46vw; top: -10vw; left: -8vw;
  background: radial-gradient(circle, rgba(204,255,0,0.35), transparent 70%);
  animation: aurora1 26s ease-in-out infinite alternate;
}
.bg-fx__blob--2 {
  width: 56vw; height: 56vw; top: 24vh; right: -16vw;
  background: radial-gradient(circle, rgba(109,74,255,0.55), transparent 70%);
  animation: aurora2 32s ease-in-out infinite alternate;
}
.bg-fx__blob--3 {
  width: 42vw; height: 42vw; bottom: -12vw; left: 25vw;
  background: radial-gradient(circle, rgba(93,63,211,0.32), transparent 70%);
  animation: aurora3 38s ease-in-out infinite alternate;
}
.bg-fx__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent 90%);
}
@keyframes aurora1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(8vw, 10vh) scale(1.18); } }
@keyframes aurora2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-10vw, -8vh) scale(1.12); } }
@keyframes aurora3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(6vw, -12vh) scale(1.22); } }
@media (prefers-reduced-motion: reduce) {
  .bg-fx__blob { animation: none; }
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--volt); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--volt); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--volt);
  box-shadow: 0 0 0 0 rgba(204,255,0,0.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(204,255,0,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(204,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,255,0,0); }
}

.section-title {
  font-family: var(--f-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em;
  font-size: clamp(2rem, 5.2vw, 3.6rem); margin-bottom: 28px;
}
.text-volt { color: var(--volt); }
.text-muted-strong { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  cursor: pointer; white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn--volt { background: var(--volt); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(204,255,0,0.5); }
.btn--volt:hover { background: #d9ff33; box-shadow: 0 14px 40px -10px rgba(204,255,0,0.7); }
.btn--volt:hover svg { transform: translateX(4px); }
.btn--ghost { border: 1.5px solid var(--card-line); color: var(--paper); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--volt); outline-offset: 3px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 24px; transition: padding .3s var(--ease);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(16,14,28,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-line); border-radius: 999px;
  padding: 12px 14px 12px 22px; transition: background .3s, border-color .3s;
}
.nav.is-scrolled .nav__inner { background: rgba(16,14,28,0.85); border-color: rgba(255,255,255,0.12); }

.wordmark { display: flex; align-items: center; gap: 8px; }
.wordmark__name { font-family: var(--f-display); font-weight: 700; letter-spacing: 0.02em; font-size: 0.98rem; }
.wordmark__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 12px var(--volt); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a { font-size: 0.92rem; padding: 9px 14px; border-radius: 999px; color: var(--muted); transition: color .2s, background .2s; }
.nav__links > a:hover { color: var(--paper); background: rgba(255,255,255,0.05); }
.nav__cta { background: var(--volt); color: var(--ink) !important; font-weight: 600; }
.nav__cta:hover { background: #d9ff33 !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span { width: 24px; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile[hidden] { display: none; }
.nav__mobile {
  max-width: var(--container); margin: 10px auto 0; display: flex; flex-direction: column; gap: 4px;
  background: rgba(16,14,28,0.96); backdrop-filter: blur(16px); border: 1px solid var(--card-line);
  border-radius: 24px; padding: 14px;
}
.nav__mobile a { padding: 14px 18px; border-radius: 14px; font-family: var(--f-display); font-weight: 500; }
.nav__mobile a:hover { background: rgba(255,255,255,0.05); }
.nav__mobile .nav__cta { text-align: center; margin-top: 4px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.blob--volt { width: 480px; height: 480px; background: radial-gradient(circle, rgba(204,255,0,0.45), transparent 70%); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.blob--purple { width: 560px; height: 560px; background: radial-gradient(circle, rgba(109,74,255,0.55), transparent 70%); bottom: -200px; left: -120px; animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }
.grid-overlay {
  position: absolute; inset: 0;
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black, transparent 80%);
}

.hero__inner {
  position: relative; z-index: 1; max-width: var(--container); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center;
}

.hero__title {
  font-family: var(--f-display); font-weight: 700; letter-spacing: -0.03em; line-height: 0.95;
  font-size: clamp(3.2rem, 9vw, 6.6rem); margin-bottom: 26px; text-transform: uppercase;
}
.hero__title-accent {
  color: var(--volt); position: relative; display: inline-block;
  text-shadow: 0 0 40px rgba(204,255,0,0.35);
}
.hero__lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 30em; margin-bottom: 34px; }
.hero__lead strong { color: var(--paper); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats dt { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); order: 2; }
.hero__stats dd { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: var(--paper); order: 1; }

/* Hero visual */
.hero__visual { position: relative; justify-self: center; }
.portrait { position: relative; width: min(380px, 78vw); aspect-ratio: 1000 / 1500; }
.portrait img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 220px 220px 28px 28px;
  position: relative; z-index: 1;
}
.portrait__ring {
  position: absolute; inset: -14px; z-index: 0; border-radius: 230px 230px 36px 36px;
  background: linear-gradient(150deg, var(--volt), var(--purple)); opacity: 0.9;
  filter: blur(0.5px);
}
.portrait::after {
  content: ""; position: absolute; inset: -14px; z-index: 2; border-radius: 230px 230px 36px 36px;
  border: 1.5px solid rgba(204,255,0,0.4); pointer-events: none;
}

.badge-float {
  position: absolute; z-index: 3; font-family: var(--f-mono); font-size: 0.8rem; font-weight: 700;
  padding: 10px 16px; border-radius: 999px; backdrop-filter: blur(10px);
  border: 1px solid var(--card-line); white-space: nowrap;
}
.badge-float--1 { top: 14%; left: -34px; background: rgba(204,255,0,0.92); color: var(--ink); animation: bob 5s ease-in-out infinite; }
.badge-float--2 { bottom: 12%; right: -30px; background: rgba(26,22,51,0.85); color: var(--paper); animation: bob 6s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--volt); color: var(--ink); padding: 18px 0; overflow: hidden; border-block: 2px solid var(--ink); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee__track span { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 2rem); letter-spacing: -0.01em; text-transform: uppercase; }
.marquee__track .dot { font-size: 0.7rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem { padding: 110px 0; text-align: center; background: rgba(10,10,18,0.50); }
.problem .section-title { max-width: 16em; margin-inline: auto; }
.problem__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; text-align: left;
}
.pain {
  background: var(--ink-2); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}
.pain:hover { transform: translateY(-6px); border-color: rgba(109,74,255,0.5); }
.pain__x { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(109,74,255,0.16); color: var(--purple); font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.pain h3 { font-family: var(--f-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; line-height: 1.25; }
.pain p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================
   LÖSUNG
   ========================================================= */
.solution { padding: 110px 0; background: linear-gradient(180deg, rgba(10,10,18,0.42) 0%, rgba(16,14,28,0.62) 100%); position: relative; }
.solution__head { max-width: 880px; }
.solution__head .section-title { max-width: 14em; }
.solution__lead { color: var(--muted); font-size: 1.08rem; max-width: 46em; }
.solution__lead strong { color: var(--volt); font-weight: 600; }

.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; counter-reset: none; }
.step { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 32px 28px; position: relative; overflow: hidden; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--volt), var(--purple)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: var(--f-mono); font-size: 0.85rem; color: var(--volt); font-weight: 700; }
.step h3 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* =========================================================
   LEISTUNGEN
   ========================================================= */
.services { padding: 110px 0; background: rgba(16,14,28,0.54); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.service-card {
  background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 38px 34px;
  position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s;
}
.service-card::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,74,255,0.18), transparent 70%); opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(204,255,0,0.35); }
.service-card:hover::after { opacity: 1; }
.service-card--feature { background: linear-gradient(160deg, rgba(109,74,255,0.18), var(--card) 60%); border-color: rgba(109,74,255,0.4); }

.service-card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(204,255,0,0.12); color: var(--volt); border: 1px solid rgba(204,255,0,0.2);
}
.service-card--feature .service-card__icon { background: rgba(204,255,0,0.15); }
.service-card h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.service-card > p { color: var(--muted); margin-bottom: 22px; max-width: 34em; }

.tags { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.03em; color: var(--paper); background: rgba(255,255,255,0.05); border: 1px solid var(--card-line); padding: 6px 12px; border-radius: 999px; }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.about { padding: 110px 0; background: rgba(10,10,18,0.50); }
.about__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%;
  border-radius: var(--radius); border: 1px solid var(--card-line); display: block;
}
.about__tag {
  position: absolute; bottom: 18px; left: 18px; font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700;
  background: var(--volt); color: var(--ink); padding: 8px 14px; border-radius: 999px;
}
.about__copy p { color: var(--muted); margin-bottom: 18px; max-width: 40em; }
.about__copy em { color: var(--paper); font-style: normal; border-bottom: 2px solid var(--volt); }
.about__stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 30px; }
.about__stats div { display: flex; flex-direction: column; }
.about__stats dt { order: 2; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.about__stats dd { order: 1; font-family: var(--f-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; color: var(--volt); }

/* =========================================================
   REFERENZEN
   ========================================================= */
.work { padding: 110px 0; background: linear-gradient(180deg, rgba(10,10,18,0.52) 0%, rgba(16,14,28,0.64) 100%); }
.work__intro { color: var(--muted); max-width: 46em; margin-top: -8px; margin-bottom: 44px; }
.work__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.work-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; margin: 0;
  background: var(--ink-3); border: 1px solid var(--card-line); aspect-ratio: 9 / 16;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.work-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -16px rgba(0,0,0,0.6); }
.work-item img, .work-item video { width: 100%; height: 100%; object-fit: cover; }

.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(10,10,18,0.92), transparent);
  display: flex; flex-direction: column; gap: 2px; transform: translateY(0); transition: opacity .3s;
}
.work-item figcaption strong { font-family: var(--f-display); font-weight: 600; font-size: 0.98rem; }
.work-item figcaption span { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--volt); }

.work-item__play {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(204,255,0,0.92); z-index: 2; transition: transform .3s;
}
.work-item__play::before { content: ""; position: absolute; top: 50%; left: 53%; transform: translate(-50%,-50%); border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent var(--ink); }
.work-item--reel.is-playing .work-item__play { opacity: 0; }
.work-item:hover .work-item__play { transform: scale(1.1); }

.work__more {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center; margin-top: 48px;
}
.work__more-text {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); color: var(--paper);
}
.work__more-text::after {
  content: ""; display: block; width: 64px; height: 3px; margin: 18px auto 0;
  background: linear-gradient(90deg, var(--volt), var(--purple)); border-radius: 2px;
}

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { padding: 110px 0; background: rgba(16,14,28,0.58); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__copy > p { color: var(--muted); max-width: 30em; margin-bottom: 26px; }
.contact__mail {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: 0.95rem;
  background: var(--card); border: 1px solid var(--card-line); padding: 14px 20px; border-radius: 999px; color: var(--volt);
  transition: border-color .2s, transform .2s;
}
.contact__mail:hover { border-color: var(--volt); transform: translateY(-2px); }

.contact__form { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--card-line); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--paper); font-family: var(--f-body); font-size: 1rem; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(204,255,0,0.12); outline: none; }
.field.has-error input, .field.has-error textarea { border-color: #ff5d73; }
.field__err { display: none; color: #ff8493; font-size: 0.82rem; margin-top: 6px; }
.field.has-error .field__err { display: block; }
.form-hint { font-size: 0.82rem; color: var(--muted-2); text-align: center; margin-top: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: rgba(10,10,18,0.74); border-top: 1px solid var(--card-line); padding: 60px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; }
.footer__wordmark { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 10px; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer__nav a { color: var(--muted); font-size: 0.92rem; transition: color .2s; }
.footer__nav a:hover { color: var(--volt); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--card-line); color: var(--muted-2); font-size: 0.85rem; font-family: var(--f-mono); }
.footer__top:hover { color: var(--volt); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(5,5,10,0.92); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__stage { max-width: min(92vw, 520px); max-height: 88vh; }
.lightbox__stage video, .lightbox__stage img { width: 100%; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); font-size: 1.2rem; transition: background .2s; }
.lightbox__close:hover { background: var(--volt); color: var(--ink); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .work__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 130px 0 70px; }
  .hero__stats { gap: 26px; }
  .problem__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-item--wide { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .container { padding-inline: 18px; }
}

@media (max-width: 420px) {
  .badge-float--1 { left: -10px; }
  .badge-float--2 { right: -6px; }
}
