:root {
  --ink: #0a0a0c;
  --paper: #e5e2dd;
  --cyan: #00f0ff;
  --stone: #1f1f22;
  --ash: #88888b;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "sans-serif";
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
}

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

button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

img,
svg {
  display: block;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

*:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.selection\:bg-cyan ::selection {
  background: var(--cyan);
}

.selection\:text-ink ::selection {
  color: var(--ink);
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
  min-height: 100vh;
}

.min-h-\[60vh\] {
  min-height: 60vh;
}

.min-h-\[160px\] {
  min-height: 160px;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-sm {
  max-width: 24rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-28 {
  width: 7rem;
}

.h-28 {
  height: 7rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-1 {
  width: 0.25rem;
}

.h-1 {
  height: 0.25rem;
}

.h-20 {
  height: 5rem;
}

.flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

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

.items-start {
  align-items: flex-start;
}

.items-baseline {
  align-items: baseline;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.self-start {
  align-self: flex-start;
}

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

.gap-16 {
  gap: 4rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-0 {
  gap: 0;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-8 {
  padding-right: 2rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-auto {
  margin-top: auto;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

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

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

.text-\[10px\] {
  font-size: 10px;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-7xl {
  font-size: 4.5rem;
}

.font-sans {
  font-family: var(--font-sans);
}

.font-serif {
  font-family: var(--font-serif);
}

.font-mono {
  font-family: var(--font-mono);
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.line-through {
  text-decoration: line-through;
}

.decoration-stone {
  text-decoration-color: var(--stone);
}

.decoration-1 {
  text-decoration-thickness: 1px;
}

.underline {
  text-decoration: underline;
}

.text-ink {
  color: var(--ink);
}

.text-paper {
  color: var(--paper);
}

.text-paper\/90 {
  color: rgba(229, 226, 221, 0.9);
}

.text-paper\/80 {
  color: rgba(229, 226, 221, 0.8);
}

.text-paper\/70 {
  color: rgba(229, 226, 221, 0.7);
}

.text-paper\/60 {
  color: rgba(229, 226, 221, 0.6);
}

.text-paper\/40 {
  color: rgba(229, 226, 221, 0.4);
}

.text-cyan {
  color: var(--cyan);
}

.text-cyan\/70 {
  color: rgba(0, 240, 255, 0.7);
}

.text-cyan\/20 {
  color: rgba(0, 240, 255, 0.2);
}

.text-ash {
  color: var(--ash);
}

.text-stone {
  color: var(--stone);
}

.bg-ink {
  background-color: var(--ink);
}

.bg-ink\/90 {
  background-color: rgba(10, 10, 12, 0.9);
}

.bg-ink\/50 {
  background-color: rgba(10, 10, 12, 0.5);
}

.bg-ink\/30 {
  background-color: rgba(10, 10, 12, 0.3);
}

.bg-ink\/10 {
  background-color: rgba(10, 10, 12, 0.1);
}

.bg-cyan {
  background-color: var(--cyan);
}

.bg-paper {
  background-color: var(--paper);
}

.bg-transparent {
  background-color: transparent;
}

.bg-stone\/5 {
  background-color: rgba(31, 31, 34, 0.05);
}

.bg-stone\/10 {
  background-color: rgba(31, 31, 34, 0.1);
}

.bg-stone\/20 {
  background-color: rgba(31, 31, 34, 0.2);
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-l {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-r {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-l-2 {
  border-left-width: 2px;
  border-left-style: solid;
}

.border-stone {
  border-color: var(--stone);
}

.border-stone\/50 {
  border-color: rgba(31, 31, 34, 0.5);
}

.border-stone\/30 {
  border-color: rgba(31, 31, 34, 0.3);
}

.border-stone\/20 {
  border-color: rgba(31, 31, 34, 0.2);
}

.border-cyan {
  border-color: var(--cyan);
}

.border-cyan\/50 {
  border-color: rgba(0, 240, 255, 0.5);
}

.border-paper {
  border-color: var(--paper);
}

.border-transparent {
  border-color: transparent;
}

.rounded-full {
  border-radius: 9999px;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-20 {
  top: 5rem;
}

.top-32 {
  top: 8rem;
}

.-top-px {
  top: -1px;
}

.-right-px {
  right: -1px;
}

.-bottom-px {
  bottom: -1px;
}

.-left-px {
  left: -1px;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.pointer-events-none {
  pointer-events: none;
}

.select-none {
  user-select: none;
}

.cursor-pointer {
  cursor: pointer;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-50 {
  opacity: 0.5;
}

.list-none {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

.list-disc {
  list-style-type: disc;
}

.object-cover {
  object-fit: cover;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.transition-all {
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fadeIn {
  animation: none;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hover\:text-cyan:hover {
  color: var(--cyan);
}

.hover\:text-white:hover {
  color: #ffffff;
}

.hover\:text-paper:hover {
  color: var(--paper);
}

.hover\:text-ink:hover {
  color: var(--ink);
}

.hover\:bg-cyan:hover {
  background-color: var(--cyan);
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:bg-stone\/10:hover {
  background-color: rgba(31, 31, 34, 0.1);
}

.hover\:border-ash:hover {
  border-color: var(--ash);
}

.hover\:border-cyan:hover {
  border-color: var(--cyan);
}

.hover\:border-cyan\/50:hover {
  border-color: rgba(0, 240, 255, 0.5);
}

.group:hover .group-hover\:text-cyan {
  color: var(--cyan);
}

.last\:border-0:last-child {
  border-width: 0;
}

.site-header {
  border-color: transparent;
  background-color: transparent;
}

.site-header.is-scrolled {
  background-color: rgba(10, 10, 12, 0.9);
  border-color: var(--stone);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .icon-close {
  display: none;
}

.site-header.menu-open .icon-open {
  display: none;
}

.site-header.menu-open .icon-close {
  display: block;
}

.view {
  display: none;
}

body[data-view="landing"] .view[data-view="landing"],
body[data-view="imprint"] .view[data-view="imprint"],
body[data-view="privacy"] .view[data-view="privacy"] {
  display: block;
}

.nav-back,
.nav-mobile-back {
  display: none;
}

body[data-view="landing"] .nav-landing {
  display: flex;
}

body[data-view="landing"] .nav-back {
  display: none;
}

body[data-view="landing"] .nav-mobile-landing {
  display: flex;
}

body[data-view="landing"] .nav-mobile-back {
  display: none;
}

body[data-view="imprint"] .nav-landing,
body[data-view="privacy"] .nav-landing {
  display: none;
}

body[data-view="imprint"] .nav-back,
body[data-view="privacy"] .nav-back {
  display: flex;
}

body[data-view="imprint"] .nav-mobile-landing,
body[data-view="privacy"] .nav-mobile-landing {
  display: none;
}

body[data-view="imprint"] .nav-mobile-back,
body[data-view="privacy"] .nav-mobile-back {
  display: block;
}

.status-tab {
  border-color: var(--stone);
  color: var(--ash);
  background-color: transparent;
}

.status-tab:hover {
  border-color: var(--ash);
  color: var(--paper);
}

.status-tab.is-active {
  border-color: var(--cyan);
  background-color: var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

.status-panel {
  display: none;
}

.status-panel.is-active {
  display: block;
}

.filter-button {
  border-color: var(--stone);
  color: var(--ash);
  background-color: transparent;
}

.filter-button:hover {
  border-color: var(--ash);
}

.filter-button.is-active {
  border-color: var(--paper);
  background-color: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.service-card {
  border-color: var(--stone);
  background-color: rgba(10, 10, 12, 0.3);
}

.service-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
}

.service-card.is-highlighted {
  border-color: var(--cyan);
  background-color: rgba(10, 10, 12, 0.5);
  box-shadow: 0 0 15px -5px rgba(0, 240, 255, 0.2);
  opacity: 1;
}

.service-card.is-dimmed {
  border-color: rgba(31, 31, 34, 0.3);
  background-color: rgba(10, 10, 12, 0.1);
  opacity: 0.5;
}

.deliverables-panel {
  max-height: 0;
  opacity: 0;
}

.service-card.deliverables-open .deliverables-panel {
  max-height: 12rem;
  opacity: 1;
}

.accordion-panel {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
}

.accordion-item.is-open .accordion-panel {
  max-height: 10rem;
  opacity: 1;
  padding-bottom: 1.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-safe\:animate-slow-drift {
    animation: drift 20s linear infinite;
  }
}

@keyframes drift {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

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

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

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:border-b-0 {
    border-bottom-width: 0;
  }

  .md\:first\:border-l-0:first-child {
    border-left-width: 0;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
  }
}

/* Split "How we work" into aligned desktop rows (step summary above, outputs below). */
@media (min-width: 768px) {
  .how-work-steps {
    align-items: stretch;
    grid-template-rows: auto auto;
  }

  .how-work-step-top,
  .how-work-step-bottom {
    height: 100%;
  }

  .how-work-step-first-col {
    border-left-width: 0;
  }

  .how-work-step-top.how-work-col-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .how-work-step-bottom.how-work-col-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .how-work-step-top.how-work-col-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .how-work-step-bottom.how-work-col-2 {
    grid-column: 2;
    grid-row: 2;
  }

  .how-work-step-top.how-work-col-3 {
    grid-column: 3;
    grid-row: 1;
  }

  .how-work-step-bottom.how-work-col-3 {
    grid-column: 3;
    grid-row: 2;
  }

  .how-work-step-top.how-work-col-4 {
    grid-column: 4;
    grid-row: 1;
  }

  .how-work-step-bottom.how-work-col-4 {
    grid-column: 4;
    grid-row: 2;
  }

}
