:root {
  --bg: #080b10;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .12);
  --line: rgba(255, 255, 255, .16);
  --text: #f7f1e7;
  --muted: rgba(247, 241, 231, .72);
  --soft: rgba(247, 241, 231, .52);
  --teal: #65f4dc;
  --teal-soft: rgba(101, 244, 220, .18);
  --amber: #c98d4a;
  --wood: #9d6335;
  --cream: #fff7e8;
  --shadow: 0 30px 90px rgba(0, 0, 0, .36);
  --radius: 18px;
  --container: 1220px;
  --font: "Sora", "Aptos", "Segoe UI Variable", "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", "Sora", "Aptos Display", "Segoe UI Variable Display", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(101, 244, 220, .16), transparent 21rem),
    radial-gradient(circle at 90% 8%, rgba(201, 141, 74, .16), transparent 22rem),
    linear-gradient(180deg, #11141b, var(--bg) 34%, #0d0a08 100%);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 92px 92px;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
  content: "";
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--teal);
  text-underline-offset: .2em;
}

a:hover {
  color: var(--cream);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.table-wrap:focus-visible {
  outline: 3px solid rgba(101, 244, 220, .55);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 820;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 12.4ch;
  font-size: clamp(2.35rem, 4.55vw, 4.25rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.05;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

strong {
  color: var(--cream);
}

.container {
  width: min(100% - 28px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 28px, 860px);
}

.section {
  padding: clamp(72px, 10vw, 136px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 92px) 0;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-140%);
  color: #07100e;
  background: var(--teal);
  border-radius: 999px;
  font-weight: 850;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8, 11, 16, .92), rgba(8, 11, 16, .58) 72%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-kicker {
  color: var(--teal);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(.86rem, 1.5vw, 1rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.brand-mark {
  width: 54px;
  height: 32px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 6px 18px 6px 18px;
  background:
    linear-gradient(90deg, transparent 0 9px, rgba(8,11,16,.76) 9px 11px, transparent 11px 18px, rgba(8,11,16,.76) 18px 20px, transparent 20px 29px, rgba(8,11,16,.76) 29px 31px, transparent 31px),
    linear-gradient(135deg, var(--teal), #f4c47a 50%, #4d2c18);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 14px 32px rgba(101, 244, 220, .14);
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: rgba(8, 11, 16, .72);
  box-shadow: -14px 0 0 rgba(8, 11, 16, .58);
  content: "";
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px 16px 8px 16px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  left: 14px;
  right: 14px;
  top: 88px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0 22px 0 22px;
  background:
    linear-gradient(135deg, rgba(101, 244, 220, .12), transparent 34%),
    rgba(8, 11, 16, .96);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 0 12px 0 12px;
  color: var(--text);
  font-size: .94rem;
  font-weight: 830;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #06100e;
  background: linear-gradient(135deg, var(--teal), #ffd28a);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 0 18px 0 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button::after {
  content: "->";
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #06100e;
  background: linear-gradient(135deg, var(--teal), #ffd28a);
  box-shadow: 0 0 32px rgba(101, 244, 220, .22);
}

.button-primary:hover {
  color: #06100e;
  background: #9bf9ea;
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}

.button-secondary:hover {
  color: var(--text);
  border-color: rgba(101, 244, 220, .55);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  font-weight: 850;
}

.text-link::after {
  content: "->";
}

.hero,
.page-hero,
.split,
.legal-shell {
  display: grid;
  gap: 34px;
}

.hero {
  min-height: calc(100svh - 96px);
  align-items: center;
  padding: clamp(36px, 6vw, 76px) 0 clamp(54px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  min-width: 0;
  z-index: 2;
}

.hero-copy::before {
  position: absolute;
  left: -22px;
  top: -28px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(101, 244, 220, .28);
  border-radius: 8px 48px 8px 48px;
  transform: rotate(12deg);
  content: "";
}

.hero-media,
.page-media,
.feature-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 0 22px 0 22px;
  box-shadow: var(--shadow);
}

.hero-media img,
.page-media img,
.feature-media img {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  max-width: none;
  margin: -4px;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stat-chip {
  width: min(100%, 330px);
  margin: -42px 18px 0 auto;
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(101, 244, 220, .32);
  border-radius: 14px;
  background: rgba(8, 11, 16, .86);
  backdrop-filter: blur(18px);
}

.stat-chip strong {
  display: block;
  color: var(--teal);
  font-size: 2.15rem;
  line-height: 1;
}

.scan-strip {
  border-block: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(101,244,220,.16), rgba(255,210,138,.13), rgba(157,99,53,.15)),
    rgba(255,255,255,.035);
}

.scan-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 13px 0;
  color: transparent;
  background: linear-gradient(90deg, var(--teal), #fff0b7 26%, var(--amber) 48%, var(--wood) 68%, var(--teal));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: drift 36s linear infinite;
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 62ch;
  color: var(--muted);
}

.glass {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 0 34px 0 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.glass::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(101, 244, 220, .12), transparent 58%);
  content: "";
}

.glass > * {
  position: relative;
  z-index: 1;
}

.large-copy {
  color: var(--muted);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.45;
}

.bento-grid,
.image-mosaic,
.material-grid,
.care-grid {
  display: grid;
  gap: 14px;
}

.card,
.material-card,
.care-item,
.legal-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card {
  min-height: 220px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.material-card p,
.care-item p {
  color: var(--muted);
}

.card.accent {
  color: #090d12;
  background: linear-gradient(135deg, var(--teal), #f2d5a8);
}

.card.accent h3,
.card.accent p,
.card.accent strong {
  color: #090d12;
}

.number-tag {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #06100e;
  background: var(--teal);
  font-weight: 900;
}

.image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 230px;
  border: 0;
  border-radius: 0 18px 0 18px;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.image-card img {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  max-width: none;
  margin: -4px;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.image-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 16, .58));
  content: "";
}

.image-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 10px 12px;
  border: 0;
  border-radius: 0 14px 0 14px;
  color: var(--text);
  background: rgba(8, 11, 16, .78);
  backdrop-filter: blur(12px);
  font-size: .84rem;
  font-weight: 850;
}

.journey {
  display: grid;
  gap: 14px;
}

.journey-step {
  position: relative;
  padding: 22px 22px 22px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.journey-step::before {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06100e;
  background: var(--teal);
  font-weight: 900;
  content: attr(data-step);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.material-card,
.care-item,
.legal-card {
  padding: 24px;
}

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

.impressum-image {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0 28px 0 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(101,244,220,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impressum-image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.legal-note-section {
  padding-top: 0;
}

.legal-note-grid {
  display: grid;
  gap: 24px;
}

.legal-note-grid h2 {
  max-width: 10ch;
}

.legal-note-grid .legal-card {
  max-width: 720px;
  align-self: start;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: #06100e;
  background: var(--teal);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgba(101, 244, 220, .28);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(101,244,220,.18), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.legal-list dt {
  color: var(--teal);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.warning-text {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(101, 244, 220, .4);
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-weight: 900;
}

.site-footer {
  margin-top: 40px;
  padding: 74px 0 58px;
  border-top: 0;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(101,244,220,.18), transparent 24%, rgba(201,141,74,.16)),
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 36%),
    #030508;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-grid::before {
  display: none;
  content: none;
}

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

.site-footer nav {
  display: grid;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.motion-ready .reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: transform .7s ease, opacity .7s ease;
}

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

@keyframes drift {
  to { transform: translateX(-50%); }
}

@media (min-width: 680px) {
  .section-head,
  .cta-panel {
    grid-template-columns: .9fr 1fr;
  }

  .legal-note-grid {
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
  }

  .bento-grid,
  .image-mosaic,
  .material-grid,
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-mosaic {
    grid-auto-rows: 260px;
  }

  .image-card {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .wide {
    grid-column: span 2;
  }
}

@media (min-width: 920px) {
  body { font-size: 18px; }

  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 0 22px 0 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
    box-shadow: 0 16px 44px rgba(0,0,0,.18);
  }

  .site-nav a {
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 0 14px 0 14px;
    font-size: .86rem;
  }

  .hero,
  .page-hero,
  .split,
  .legal-shell {
    grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
    align-items: center;
  }

  .reverse {
    grid-template-columns: minmax(440px, 1.08fr) minmax(0, .92fr);
  }

  .reverse .copy {
    order: 2;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 3.35vw, 3.55rem);
  }

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

  .card {
    grid-column: span 2;
  }

  .card.wide {
    grid-column: span 4;
  }

  .image-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .image-card {
    min-height: 0;
  }

  .image-card.tall {
    grid-row: span 2;
    min-height: 0;
  }

  .image-card.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, max-content);
    column-gap: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: min(74vw, 260px);
    gap: 10px;
    font-size: .9rem;
  }

  .brand-mark {
    width: 44px;
    height: 28px;
  }

  .brand-name {
    font-size: .88rem;
  }

  .button {
    width: 100%;
  }

  .stat-chip {
    margin: -30px auto 0;
  }
}

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

  .motion-ready .reveal {
    transform: none;
    opacity: 1;
  }
}
