:root {
  color-scheme: dark;
  --ink: #0b0c0e;
  --ink-soft: #111317;
  --surface: #181b20;
  --surface-strong: #20242a;
  --line: #343941;
  --text: #f7f8fa;
  --muted: #b8bec8;
  --paper: #f1f3f5;
  --paper-text: #17191d;
  --accent: #ff4fd2;
  --accent-strong: #d92eb5;
  --cyan: #44d5e7;
  --green: #53df8c;
  --warning: #f0bf58;
  --danger: #ff646f;
  --header-height: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--paper-text);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 12, 14, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: #20242a;
  transform: rotate(45deg);
}

.brand-mark span {
  display: block;
  width: 11px;
  height: 11px;
  background: var(--accent);
  box-shadow: 8px 8px 0 -3px var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a {
  color: #d9dde3;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:hover {
  color: #ffffff;
}

.site-nav .nav-command {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid #4c525c;
  border-radius: 6px;
  background: #1a1d22;
}

.site-nav .nav-command:hover {
  border-color: var(--accent);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.icon-button:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--surface-strong);
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 72px);
  min-height: 520px;
  max-height: 820px;
  align-items: center;
  overflow: hidden;
  background: #2c3439;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: rgba(5, 7, 9, 0.43);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(620px, 100%);
  padding: 34px 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.85);
}

.status-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(8, 10, 12, 0.72);
  color: #f3f5f8;
  font-size: 13px;
  font-weight: 750;
  text-shadow: none;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 3px rgba(240, 191, 88, 0.17);
}

.status-label[data-state="online"] .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(83, 223, 140, 0.17);
}

.status-label[data-state="offline"] .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 100, 111, 0.17);
}

.hero h1 {
  max-width: 100%;
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 76px;
  font-weight: 900;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: #f4f6f8;
  font-size: 22px;
  font-weight: 620;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-shadow: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #22091c;
}

.button-primary:hover {
  background: #ff79dc;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(13, 15, 18, 0.78);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: #ffffff;
  background: rgba(13, 15, 18, 0.95);
}

.server-address {
  display: grid;
  width: min(390px, 100%);
  min-height: 62px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  margin-top: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(8, 10, 12, 0.78);
  color: #ffffff;
  text-align: left;
  text-shadow: none;
  cursor: pointer;
}

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

.server-address-label {
  color: #bfc5ce;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.server-address strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.server-address svg {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--cyan);
}

.copy-feedback {
  min-height: 20px;
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 2px 12px #000000;
}

.server-strip {
  padding: 52px 0;
  background: var(--paper);
  color: var(--paper-text);
}

.server-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.5fr);
  gap: 64px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-intro h2,
.section-heading h2,
.support-section h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.server-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.server-facts > div {
  min-width: 0;
  padding: 4px 26px;
  border-left: 1px solid #cdd2d7;
}

.server-facts dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #656c75;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.server-facts dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 850;
}

.shop-section {
  padding: 86px 0 96px;
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.shop-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.search-field,
.category-field {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.search-field {
  width: min(440px, 100%);
}

.search-field svg {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}

.search-field input,
.category-field select {
  width: 100%;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-field input {
  padding: 0 14px 0 43px;
}

.category-field {
  width: 210px;
}

.category-field select {
  appearance: none;
  padding: 0 42px 0 14px;
}

.category-field svg {
  position: absolute;
  right: 13px;
  pointer-events: none;
}

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

.product-grid[data-empty="true"]::after {
  grid-column: 1 / -1;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  content: "Keine passenden Produkte gefunden.";
  text-align: center;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #30353d;
  border-radius: 8px;
  background: var(--surface);
}

.product-media {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #30353d;
  background: #23272d;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.product-body {
  padding: 20px;
}

.product-category {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-description {
  min-height: 48px;
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-footer > strong {
  font-size: 18px;
}

.shop-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-empty-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #454b55;
  border-radius: 6px;
  background: var(--surface);
  color: var(--accent);
}

.shop-empty-icon svg {
  width: 26px;
  height: 26px;
}

.shop-empty h3 {
  margin: 0;
  font-size: 19px;
}

.shop-empty p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  color: #8beaf3;
}

.support-section {
  padding: 80px 0;
  background: #e5eaed;
  color: var(--paper-text);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  align-items: center;
}

.support-copy {
  max-width: 520px;
  margin: 15px 0 0;
  color: #59616a;
}

.support-actions {
  border-top: 1px solid #bbc2c8;
}

.support-actions > a {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #bbc2c8;
}

.support-actions > a:hover {
  color: var(--accent-strong);
}

.support-actions > a > svg:first-child {
  width: 23px;
  height: 23px;
}

.support-actions span {
  display: grid;
  min-width: 0;
}

.support-actions small {
  color: #737b84;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.support-actions strong {
  overflow-wrap: anywhere;
  font-size: 16px;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid #25292f;
  background: #090a0c;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 34px 60px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-inner > div > p {
  max-width: 520px;
  margin: 0;
  color: #9097a1;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #25292f;
  color: #737b85;
  font-size: 12px;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    padding: 0 18px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: #0d0f12;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid #292d33;
  }

  .site-nav .nav-command {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 1px solid #4c525c;
  }

  .hero h1 {
    font-size: 58px;
  }

  .server-grid,
  .section-heading,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .server-facts > div:first-child {
    border-left: 0;
  }

  .support-grid {
    max-width: 760px;
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: 64px;
  }

  .page-shell {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .hero {
    height: calc(100svh - 48px);
    min-height: 520px;
    max-height: 700px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background: rgba(5, 7, 9, 0.58);
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    padding: 86px 0 30px;
  }

  .status-label {
    min-height: 31px;
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 46px;
  }

  .hero-lead {
    max-width: 470px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 19px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .server-address {
    min-height: 56px;
    margin-top: 9px;
  }

  .server-address strong {
    font-size: 16px;
  }

  .copy-feedback {
    margin-bottom: 0;
  }

  .server-strip,
  .support-section {
    padding: 54px 0;
  }

  .shop-section {
    padding: 62px 0 70px;
  }

  .section-intro h2,
  .section-heading h2,
  .support-section h2 {
    font-size: 29px;
  }

  .server-facts {
    grid-template-columns: 1fr;
    border-top: 1px solid #cdd2d7;
  }

  .server-facts > div,
  .server-facts > div:first-child {
    padding: 18px 0;
    border-bottom: 1px solid #cdd2d7;
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .shop-controls {
    display: grid;
  }

  .category-field,
  .search-field {
    width: 100%;
  }

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

  .shop-empty {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 26px 0;
  }

  .shop-empty .text-link {
    grid-column: 1 / -1;
  }

  .shop-empty-icon {
    width: 48px;
    height: 48px;
  }

  .support-grid {
    gap: 30px;
  }

  .support-actions > a {
    min-height: 74px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .copyright {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
