/* ============ Michael Suchan · Editorial light ============ */
:root {
  --ink: #0b0b0e;
  --ink-soft: #3c3c44;
  --muted: #5c5c66;
  --bg: #fbfafc;
  --bg-alt: #f3f1f6;
  --line: rgba(11, 11, 14, 0.1);
  --grad-statement: linear-gradient(115deg, #2b2fd4 0%, #7b2ff7 48%, #ff7a00 100%);
  --radius: 22px;
  --wrap: 1240px;
  --font-head: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, .stat-num, .step-num {
  font-family: var(--font-head);
  letter-spacing: -0.03em;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(251, 250, 252, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-name {
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-lang { opacity: 0.6; }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 11px 22px; border-radius: 999px; font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: scale(1.04); background: #26262e; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #08070d;
  color: #fff;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; display: block;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(130% 95% at 50% 42%, transparent 52%, rgba(3, 2, 7, 0.6) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-top: 150px; padding-bottom: 100px;
}
.hero-copy { display: contents; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.6vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 1080px;
  text-wrap: balance;
}
.hero-kicker {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 30px;
}
.hero-sub {
  margin-top: 36px; max-width: 580px;
  font-size: 1.1rem; color: rgba(255, 255, 255, 0.72);
}
.hero-actions { margin-top: 46px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border: 1.5px solid var(--ink);
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary::after { content: "→"; font-family: var(--font-body); }
.btn-primary:hover { transform: scale(1.04); background: #26262e; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.hero .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.hero .btn-primary:hover { background: #e9e9f2; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Nav über dunkler Hero */
.nav:not(.scrolled) .nav-name { color: #fff; }
.nav:not(.scrolled) .nav-links a:not(.nav-cta) { color: rgba(255, 255, 255, 0.72); }
.nav:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: #fff; }
.nav:not(.scrolled) .nav-cta { background: #fff; color: var(--ink) !important; }
.nav:not(.scrolled) .nav-cta:hover { background: #e9e9f2; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 64px 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: inline-flex; gap: 64px;
  animation: marquee 44s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(11, 11, 14, 0.28);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section, .quote { padding: 130px 0; }
.alt { background: var(--bg-alt); }
.sec-kicker {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  font-weight: 800; line-height: 1.02;
  max-width: 880px;
}
.sec-intro { margin-top: 24px; max-width: 640px; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- About ---------- */
.about-layout {
  margin-top: 64px;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 72px; align-items: center;
}
.about-media { min-width: 0; }
.about-text p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.about-text strong { color: var(--ink); }
.about-facts { margin-top: 30px; border-bottom: 1px solid var(--line); }
.about-facts div {
  display: grid; grid-template-columns: 140px 1fr; gap: 20px;
  padding: 9px 0; border-top: 1px solid var(--line);
}
.about-facts dt {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); align-self: center;
}
.about-facts dd { margin: 0; color: var(--ink-soft); font-weight: 500; font-size: 0.98rem; }
.about-portrait { position: relative; margin: 0; max-width: 470px; justify-self: end; }
.about-portrait img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: 50% 8%;
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(20, 25, 60, 0.2);
  outline: 1px solid rgba(11, 11, 14, 0.06);
  outline-offset: -1px;
}
.about-portrait figcaption {
  margin-top: 16px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Statement / quote ---------- */
.quote {
  background: var(--ink);
  position: relative; overflow: hidden;
}
.quote::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 520px at 82% 8%, rgba(74, 60, 235, 0.22), transparent 62%),
    radial-gradient(680px 520px at 6% 96%, rgba(255, 122, 0, 0.12), transparent 60%);
  pointer-events: none;
}
.quote .wrap { position: relative; z-index: 1; }
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.9vw, 2.9rem);
  font-weight: 800; line-height: 1.25; letter-spacing: -0.02em;
  color: #fff; max-width: 880px;
}
.quote-text .w { opacity: 0.2; transition: opacity 0.35s; }
.quote-text .w.on { opacity: 1; }
.quote figcaption {
  margin-top: 40px; padding-left: 52px; position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem;
}
.quote figcaption::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 36px; height: 2px; border-radius: 2px;
  background: var(--grad-statement);
}

/* ---------- Leistungen ---------- */
.svc-list {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  grid-auto-rows: minmax(230px, auto);
}
.svc {
  background: #fff; border-radius: var(--radius);
  padding: 38px 34px;
  display: flex; flex-direction: column; justify-content: flex-start;
  box-shadow: 0 2px 5px rgba(15, 10, 30, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20, 10, 40, 0.12); }
.svc h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.svc p { color: var(--muted); font-size: 0.98rem; }
.svc-media {
  grid-row: span 2;
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 0; background: var(--ink);
}
.svc-media .svc-media-copy {
  position: absolute; left: 34px; right: 34px; bottom: 30px; z-index: 2;
}
.svc-media .svc-media-label {
  font-family: var(--font-head);
  color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
}
.svc-media .svc-media-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem; line-height: 1.55; max-width: 420px;
}
.svc-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}
.svc-media .proj-glow {
  background:
    radial-gradient(480px 360px at 25% 12%, rgba(43, 47, 212, 0.9), transparent 62%),
    radial-gradient(460px 380px at 80% 38%, rgba(123, 47, 247, 0.85), transparent 62%),
    radial-gradient(500px 420px at 30% 72%, rgba(255, 122, 0, 0.55), transparent 62%),
    radial-gradient(420px 340px at 85% 95%, rgba(64, 47, 247, 0.5), transparent 65%);
}
.svc-dark { background: var(--ink); grid-column: 1 / -1; }
.svc-dark h3 { color: #fff; }
.svc-dark p { color: rgba(255, 255, 255, 0.65); }

/* ---------- Stats ---------- */
#zahlen, #numbers { background: var(--ink); color: #fff; }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 48px;
}
.stat-num {
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 800; line-height: 1;
  background: var(--grad-statement);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { margin-top: 12px; color: rgba(255, 255, 255, 0.62); font-size: 0.98rem; max-width: 260px; }

/* ---------- Projekte ---------- */
.proj-list {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.proj {
  position: relative; overflow: hidden;
  background: #fff; border-radius: var(--radius);
  padding: 40px 36px;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 2px 5px rgba(15, 10, 30, 0.04);
  transition: transform 0.35s, box-shadow 0.35s;
}
.proj:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(20, 10, 40, 0.13); }
.proj-body { position: relative; z-index: 2; max-width: 640px; }
.proj-tag {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.proj h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.14; margin-bottom: 14px; }
.proj p { color: var(--muted); font-size: 0.97rem; }

.proj--wide { grid-column: span 2; }
.proj--wide .proj-body { max-width: 780px; }
.proj--dark { background: var(--ink); }
.proj--dark .proj-tag, .proj--hero .proj-tag { color: rgba(255, 255, 255, 0.6); }
.proj--dark h3, .proj--hero h3 { color: #fff; }
.proj--dark p, .proj--hero p { color: rgba(255, 255, 255, 0.75); }
.proj--grad { background: var(--grad-statement); }
.proj--grad::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 85% 15%, rgba(255, 255, 255, 0.2), transparent 60%);
}
.proj--grad .proj-tag { color: rgba(255, 255, 255, 0.78); }
.proj--grad h3 { color: #fff; }
.proj--grad p { color: rgba(255, 255, 255, 0.88); }
.proj--hero { min-height: 460px; padding: 52px 46px; background: var(--ink); }
.proj--hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 4, 16, 0.82), rgba(8, 4, 16, 0.25) 55%, rgba(8, 4, 16, 0.1));
}
.proj--hero h3 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.proj--hero p { font-size: 1.04rem; }
.proj-glow {
  position: absolute; inset: -20%;
  background:
    radial-gradient(520px 380px at 22% 30%, rgba(43, 47, 212, 0.85), transparent 62%),
    radial-gradient(560px 420px at 72% 22%, rgba(123, 47, 247, 0.8), transparent 62%),
    radial-gradient(520px 400px at 92% 78%, rgba(255, 122, 0, 0.7), transparent 60%);
  filter: blur(10px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to { transform: translate3d(3%, 2%, 0) scale(1.1); }
}
.proj-more { margin-top: 48px; color: var(--ink-soft); max-width: 860px; }

/* ---------- Steps ---------- */
.steps {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.step { position: relative; padding-top: 30px; }
.step::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--grad-statement);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.step.in::before { transform: scaleX(1); }
.step:nth-child(2)::before { transition-delay: 0.12s, 0s; }
.step:nth-child(3)::before { transition-delay: 0.24s, 0s; }
.step:nth-child(4)::before { transition-delay: 0.36s, 0s; }
.step:hover::before { width: 100%; transition-delay: 0s, 0s; }
.step p.step-num {
  font-size: 3.4rem; font-weight: 800;
  line-height: 1; margin-bottom: 18px; max-width: none;
  background: var(--grad-statement);
  background-size: 240% 240%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: grad-drift 8s ease-in-out infinite alternate;
}
.step:nth-child(2) .step-num { animation-delay: -2s; }
.step:nth-child(3) .step-num { animation-delay: -4s; }
.step:nth-child(4) .step-num { animation-delay: -6s; }
@keyframes grad-drift {
  from { background-position: 0% 40%; }
  to { background-position: 100% 60%; }
}
.step h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (prefers-reduced-motion: reduce) {
  .step p.step-num { animation: none; }
  .step::before { transform: none; transition: none; }
}

/* ---------- Warum ---------- */
.why-list {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 64px;
}
.why { border-top: 1px solid var(--line); padding-top: 22px; }
.why h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.why p { color: var(--muted); }

.team-card {
  margin-top: 72px;
  position: relative; overflow: hidden;
  background: #0a0a12; color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 72px);
}
.team-card::before, .team-card::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.team-card::before {
  width: 560px; height: 560px; left: -160px; top: -200px;
  background: radial-gradient(circle, rgba(43, 47, 212, 0.7), transparent 65%);
  animation: team-blob-a 16s ease-in-out infinite alternate;
}
.team-card::after {
  width: 480px; height: 480px; right: -140px; bottom: -220px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.55), transparent 65%);
  animation: team-blob-b 19s ease-in-out infinite alternate;
}
@keyframes team-blob-a {
  from { transform: translate(0, 0); }
  to { transform: translate(90px, 60px); }
}
@keyframes team-blob-b {
  from { transform: translate(0, 0); }
  to { transform: translate(-80px, -70px); }
}
.team-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 28px 64px; align-items: start;
}
.team-kicker {
  grid-column: 1 / -1;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.team-card h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800; line-height: 1.08;
}
.team-copy { color: rgba(255, 255, 255, 0.78); }
.team-roles {
  grid-column: 1 / -1;
  margin-top: 16px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; flex-wrap: wrap; gap: 10px 34px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600; font-size: 0.92rem;
}
@media (prefers-reduced-motion: reduce) {
  .team-card::before, .team-card::after { animation: none; }
}

/* ---------- Technik ---------- */
.tool-band {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 34px 24px;
  align-items: center;
}
.tool {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft); font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
  filter: grayscale(1); opacity: 0.7;
  transition: filter 0.25s, opacity 0.25s;
}
.tool:hover { filter: none; opacity: 1; }
.tool img { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) {
  .proj-glow { animation: none; }
}

.tech-list { margin-top: 56px; }
.tech-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 32px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.tech-row:first-child { border-top: 1px solid var(--line); }
.tech-row dt { font-weight: 700; font-family: var(--font-head); }
.tech-row dd { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; max-width: 860px; }
.faq { padding: 30px 0; border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.faq p { color: var(--ink-soft); }

/* ---------- Kontakt ---------- */
.contact { background: var(--ink); color: #fff; }
.contact .sec-kicker { color: rgba(255, 255, 255, 0.55); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { margin-top: 24px; color: rgba(255, 255, 255, 0.7); max-width: 460px; }
.contact-mail { margin-top: 32px; }
.contact-mail a {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s;
}
.contact-mail a:hover { border-color: #fff; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6); margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 10px 2px 14px;
  font-size: 1.05rem; font-family: inherit; color: #fff;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 34px; }
.contact .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.contact .btn-primary:hover { background: #e8e5ee; }
.form-note { margin-top: 20px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); }
.form-success { display: none; padding: 40px 0; }
.form-success h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.form-success p { color: rgba(255, 255, 255, 0.7); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.5);
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 24px; }
.foot-links a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
body.page-legal .nav:not(.scrolled) .nav-name { color: var(--ink); }
body.page-legal .nav:not(.scrolled) .nav-links a:not(.nav-cta) { color: var(--ink-soft); }
body.page-legal .nav:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: var(--ink); }
body.page-legal .nav:not(.scrolled) .nav-cta { background: var(--ink); color: #fff !important; }
body.page-legal .nav:not(.scrolled) .nav-cta:hover { background: #26262e; }

.legal-main { max-width: 840px; margin: 0 auto; padding: 180px 28px 120px; }
.legal-main h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; margin-bottom: 16px; }
.legal-updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 60px; }
.legal-main h2 { font-size: 1.4rem; margin: 52px 0 16px; }
.legal-main h3 { font-size: 1.08rem; margin: 30px 0 10px; }
.legal-main p, .legal-main li { color: var(--ink-soft); }
.legal-main p { margin-bottom: 14px; }
.legal-main ul { margin: 0 0 14px 22px; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { text-decoration: underline; text-underline-offset: 3px; }
.legal-address { padding: 26px 30px; background: var(--bg-alt); border-radius: var(--radius); margin-bottom: 14px; }
.legal-address p { margin-bottom: 4px; }

@media (max-width: 720px) {
  .legal-main { padding-top: 140px; }
}

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tool-band { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .about-portrait { justify-self: start; }
  .svc-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  section, .quote { padding: 90px 0; }
  .nav-links a:not(.nav-cta):not(.nav-lang) { display: none; }
  .hero-content { padding-top: 140px; padding-bottom: 80px; }
  .hero-sub { margin-top: 26px; }
  .about-portrait { max-width: 380px; }
  .svc-list { grid-template-columns: 1fr; }
  .svc-media { grid-row: auto; min-height: 340px; }
  .svc-dark { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .proj-list { grid-template-columns: 1fr; }
  .proj { min-height: 0; padding: 34px 28px; }
  .proj--wide { grid-column: auto; }
  .proj--hero { min-height: 0; padding: 38px 28px; }
  .steps { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .about-facts div { grid-template-columns: 108px 1fr; gap: 14px; }
  .team-inner { grid-template-columns: 1fr; gap: 20px; }
  .team-roles { gap: 8px 22px; }
  .tech-row { grid-template-columns: 1fr; gap: 6px; }
  .tool-band { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
}
