:root {
  --paper: #fff;
  --box-fill: #e9dcc2;
  --ink: #0b0b0b;
  --muted: #393939;
  --cyber-cyan: #5b867c;
  --cyber-red: #bd3822;
  --thin: 1px;
  --thick: 2px;
  --max: 1120px;
  --rough-line: url('assets/rough-line.svg');
  --rough-line-vertical: url('assets/rough-line-vertical.svg');
  --rough-highlight: url('assets/rough-highlight.svg');
  --rough-highlight-cyan: url('assets/rough-highlight-cyan.svg?v=20260604d');
  --rough-line-cyan: url('assets/rough-line-cyan.svg?v=20260604d');
  --rough-line-vertical-cyan: url('assets/rough-line-vertical-cyan.svg?v=20260604d');
  --rough-line-red: url('assets/rough-line-red.svg?v=20260604d');
  --rough-line-vertical-red: url('assets/rough-line-vertical-red.svg?v=20260604d');
  --rough-size: 16px;
  --rough-h-long: 1120px;
  --rough-h-medium: 760px;
  --rough-h-short: 460px;
  --rough-v-long: 760px;
  --rough-v-short: 460px;
}



* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Special Elite', monospace;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 21ch;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--cyber-cyan);
}

.cyber-red {
  color: var(--cyber-red);
}

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

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 23ch;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 0.75rem;
}


h1, h2 {
  position: relative;
}

.typed-char {
  opacity: 0;
}

.typed-char.is-visible {
  opacity: 1;
}

.typed-title.is-typing::after,
.typed-title.is-complete::after {
  content: "";
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .typed-char {
    opacity: 1;
  }
}

p {
  max-width: 66ch;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 1rem;
  border-bottom: 0;
  position: relative;
}

.site-header::after,
.tear-line::before,
.rough-box::before,
.rough-box::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::after {
  left: 0;
  right: 0;
  bottom: -12px;
  height: var(--rough-size);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
  background-position: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 20vw, 230px);
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-transform: lowercase;
  flex-wrap: wrap;
}

html[lang="de"] .nav {
  text-transform: none;
}


.nav a,
.text-link,
.site-footer a {
  border-bottom: 0;
  padding: 0.10rem 0.08rem 0.18rem;
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--ink);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-short) 7px;
  background-position: left calc(100% - 1px);
}

.nav a::before,
.text-link::before,
.site-footer a::before {
  content: "";
  position: absolute;
  left: -0.62em;
  right: -0.62em;
  top: -0.32em;
  bottom: -0.28em;
  z-index: -1;
  opacity: 0;
  background-image: var(--rough-highlight);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: opacity 120ms steps(2);
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  background-image: none;
}

.nav a:hover::before,
.nav a:focus-visible::before,
.text-link:hover::before,
.text-link:focus-visible::before,
.site-footer a:hover::before,
.site-footer a:focus-visible::before {
  opacity: 1;
}

.nav a:nth-child(odd) {
  background-image: var(--rough-line-cyan);
}

.nav a:nth-child(even) {
  background-image: var(--rough-line-red);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.hero {
  padding: clamp(3rem, 9vw, 7rem) 0 clamp(2.5rem, 8vw, 5rem);
}

.kicker,
.stamp-small,
.tiny,
figcaption,
.item-list span,
.timeline > div > span,
.site-footer {
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kicker,
.stamp-small {
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  max-width: 42rem;
}

.hero-actions,
.form-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button,
button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 12px, var(--rough-h-medium) 12px, 12px var(--rough-v-short), 12px var(--rough-v-short);
  background-repeat: no-repeat;
  color: var(--ink);
  min-height: 48px;
  padding: 0.8rem 1.1rem 0.65rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}


.hero-actions .button {
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical-red), var(--rough-line-vertical-red);
}

.hero-actions .text-link {
  background-image: var(--rough-line-cyan);
}

.launch-slash {
  color: var(--cyber-cyan);
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible {
  color: var(--paper);
  background-color: transparent;
  background-image: var(--rough-highlight);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: var(--thick) dashed var(--ink);
  outline-offset: 4px;
}

.rough-box {
  border: 0;
  position: relative;
  background-color: var(--paper);
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-long) var(--rough-size), var(--rough-h-long) var(--rough-size), var(--rough-size) var(--rough-v-long), var(--rough-size) var(--rough-v-long);
  background-repeat: no-repeat;
}

.rough-box::before,
.rough-box::after {
  display: none;
}

.transparency-grid article.rough-box {
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical);
}

.launch-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  transform: rotate(-0.7deg);
}

.launch-card.rough-box {
  background-color: transparent;
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical-red), var(--rough-line-vertical-red);
  isolation: isolate;
}

.launch-card.rough-box::before {
  display: block;
  inset: 12px;
  z-index: -1;
  background-color: var(--box-fill);
}

.launch-card.rough-box > * {
  position: relative;
}

.launch-card .progress {
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
}

.launch-card strong {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  font-weight: 400;
  margin: 0.2rem 0 0.65rem;
}

.launch-card > span {
  display: block;
  font-size: 1.05rem;
}

.progress {
  width: 100%;
  height: 18px;
  border: 0;
  margin: 1.4rem 0 1rem;
  padding: 4px;
  position: relative;
  background-color: var(--paper);
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 9px, var(--rough-h-medium) 9px, 9px var(--rough-v-short), 9px var(--rough-v-short);
  background-repeat: no-repeat;
}

.progress i {
  display: block;
  height: 100%;
  background-image: var(--rough-highlight-cyan);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
  transition: width 500ms steps(12);
}

.tiny {
  color: var(--muted);
  margin-bottom: 0;
}

.tear-line {
  position: relative;
  height: 28px;
  margin: 0 auto clamp(2.5rem, 7vw, 4rem);
}

.tear-line::before {
  left: 0;
  right: 0;
  top: 6px;
  height: var(--rough-size);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
  background-position: center;
}

.manifesto,
.content-block,
.signup-section {
  padding: clamp(2rem, 6vw, 4.5rem) 0;
}

.manifesto {
  max-width: 900px;
}

.type-line {
  display: inline-block;
  padding-right: 0.35rem;
  min-height: 1.7em;
}


.terminal-prefix {
  font-weight: 700;
}


.manifesto-quote {
  font-style: normal;
}

.quote-mark {
  color: var(--ink);
}


.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.section-heading h2 {
  max-width: 24ch;
}


.about-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.creator-photo {
  padding: 0.75rem;
  background-image: var(--rough-line-cyan), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical);
}

.creator-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-card h3 {
  color: var(--cyber-cyan);
}

.about-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .about-card {
    grid-template-columns: 1fr;
  }

  .creator-photo {
    max-width: 320px;
  }
}

.product-grid,
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-shot {
  margin: 0;
  padding: 0.8rem;
}

.product-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 0;
  margin-bottom: 0.75rem;
}

figcaption {
  min-height: 2.8em;
}

.product-shot figcaption {
  position: relative;
  padding-top: 0.85rem;
  text-align: center;
}

.product-shot figcaption::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
}

.item-list {
  list-style: none;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: clamp(1.2rem, 4vw, 2.5rem) 0 0;
}

.item-list.rough-box {
  background-image: var(--rough-line), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical-cyan);
}

.item-list li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0;
  position: relative;
}

.item-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 10px;
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
}

.product-grid .product-shot:nth-child(1) {
  background-image: var(--rough-line-cyan), var(--rough-line-cyan), var(--rough-line-vertical-cyan), var(--rough-line-vertical-cyan);
}

.product-grid .product-shot:nth-child(1) figcaption::before {
  background-image: var(--rough-line-cyan);
}

.product-grid .product-shot:nth-child(3) {
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical-red), var(--rough-line-vertical-red);
}

.product-grid .product-shot:nth-child(3) figcaption::before {
  background-image: var(--rough-line-red);
}

.item-list li > span {
  font-weight: 700;
}

.item-list li:nth-child(1) > span,
.item-list li:nth-child(4) > span {
  color: var(--cyber-cyan);
}

.item-list li:nth-child(3) > span {
  color: var(--cyber-red);
}

.item-list span {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.notice-card,
.transparency-grid article {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.notice-card p,
.transparency-grid p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.timeline div {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-right: 0;
  position: relative;
}

.timeline div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 16px;
  height: 100%;
  background-image: var(--rough-line-vertical);
  background-repeat: no-repeat;
  background-size: 100% var(--rough-v-long);
}

.timeline div:nth-child(1)::after {
  background-image: var(--rough-line-vertical-cyan);
}

.timeline div:nth-child(2)::after {
  background-image: var(--rough-line-vertical-red);
}

.timeline strong {
  display: block;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-weight: 400;
  margin: 0.65rem 0;
}

.timeline p {
  margin-bottom: 0;
}


.signup-section.rough-box {
  background-image: var(--rough-line-cyan), var(--rough-line-cyan), var(--rough-line-vertical-cyan), var(--rough-line-vertical-cyan);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  margin: clamp(1.5rem, 5vw, 3rem) 0;
}

.signup-section h2 {
  max-width: 14ch;
}

.signup-form label {
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.form-row {
  margin-top: 0;
  align-items: stretch;
}

input {
  min-height: 48px;
  flex: 1 1 260px;
  width: 100%;
  border: 0;
  background-color: var(--paper);
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 12px, var(--rough-h-medium) 12px, 12px var(--rough-v-short), 12px var(--rough-v-short);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 0.8rem 0.65rem;
  border-radius: 0;
}

input::placeholder {
  color: var(--muted);
}

.signup-form label.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.signup-form label.consent-row,
.signup-form label.consent-row span,
.signup-form label.consent-row a,
.signup-form .form-note,
.signup-form .form-note span {
  font-family: inherit;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.signup-form .form-note {
  margin: 0.9rem 0 0;
  color: inherit;
}

.signup-form label.consent-row a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.signup-form label.consent-row input {
  flex: 0 0 auto;
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--cyber-cyan);
}

.signup-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-reveal {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-reveal-button {
  min-height: 0;
  padding: 0.25rem 0.45rem 0.15rem;
  font-size: 0.8rem;
}

.contact-reveal-value a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.faq details {
  border-top: 0;
  padding: 1.15rem 0 1rem;
  position: relative;
}

.faq details::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: var(--rough-size);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
}

.faq details:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: var(--rough-size);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
}

summary {
  cursor: pointer;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1.15;
}

summary::marker {
  content: "+ ";
}

details[open] summary::marker {
  content: "- ";
}

.faq p {
  margin: 1rem 0 0 1.65rem;
  color: var(--cyber-cyan);
}


.back-top-row {
  width: min(calc(100% - 2rem), var(--max));
  margin: clamp(1rem, 4vw, 2rem) auto 0;
  display: flex;
  justify-content: flex-end;
}

.back-top-link {
  border-bottom: 0;
  padding: 0.10rem 0.08rem 0.18rem;
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--ink);
  background-image: var(--rough-line-cyan);
  background-repeat: no-repeat;
  background-size: var(--rough-h-short) 7px;
  background-position: left calc(100% - 1px);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 0;
  padding: 1.75rem 0 2rem;
  margin-top: 2rem;
  position: relative;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-short) 7px;
  background-position: left calc(100% - 1px);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--rough-size);
  background-image: var(--rough-line);
  background-repeat: no-repeat;
  background-size: var(--rough-h-long) 100%;
}

.site-footer p {
  margin: 0;
}

[data-print-reveal] {
  opacity: 0;
  transform: translateY(12px);
}

[data-print-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms steps(4), transform 420ms steps(4);
}

@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; }
  [data-print-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .section-grid,
  .signup-section {
    grid-template-columns: 1fr;
  }
  .launch-card {
    transform: none;
  }
  .product-grid,
  .transparency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline div::after,
  .timeline div:not(:last-child)::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 16px;
    background-image: var(--rough-line);
    background-size: var(--rough-h-long) 100%;
  }
  .timeline div:nth-child(1)::after {
    background-image: var(--rough-line-cyan);
  }
  .timeline div:nth-child(2)::after {
    background-image: var(--rough-line-red);
  }
  .timeline div:last-child::after {
    display: none;
  }
}


@media (max-width: 640px) {
  .nav a::before,
  .text-link::before,
  .site-footer a::before {
    left: -0.50em;
    right: -0.50em;
    top: -0.28em;
    bottom: -0.24em;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: block;
    min-height: 0;
    padding-top: 1rem;
  }
  .brand {
    width: min(210px, 70vw);
    margin: 0 auto 1rem;
  }
  .nav {
    justify-content: center;
    gap: 0.75rem 1rem;
  }
  h1 {
    max-width: 100%;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .product-grid,
  .transparency-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .item-list li {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.7rem;
  }
  .signup-section {
    padding: 1.2rem;
  }
  .form-row button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max));
  }
  body { font-size: 16px; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 1.85rem; }
  .hero { padding-top: 2.25rem; }
  .nav { font-size: 0.86rem; }
  .button, button, input { font-size: 0.95rem; }
}


.signup-form button {
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical-red), var(--rough-line-vertical-red);
}

.signup-form button:hover,
.signup-form button:focus-visible {
  color: var(--paper);
  background-color: transparent;
  background-image: var(--rough-highlight);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.faq summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

details[open] summary::marker {
  content: "";
}


.faq summary .question-text {
  display: inline-block;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--cyber-cyan);
  font-weight: 700;
  margin-left: 0.8rem;
}

.faq details[open] summary::after {
  content: "−";
  color: var(--cyber-red);
}

.launch-card .tiny {
  font-size: 1.05rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: inherit;
}

.issue-no {
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: baseline;
}

.issue-no .issue-zero,
.issue-no .issue-one {
  font-weight: inherit;
}

.issue-no .issue-zero {
  color: var(--cyber-cyan);
}

.issue-no .issue-one {
  color: var(--cyber-red);
}

.issue-no-black .issue-zero,
.issue-no-black .issue-one {
  color: var(--ink);
}


/* Legal pages */

.legal-header {
  min-height: 104px;
}

.brand-word {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  text-transform: none;
  letter-spacing: 0.04em;
}

.brand-word .brand-cyber {
  color: var(--cyber-cyan);
}

.brand-word .brand-snail {
  color: var(--cyber-red);
}

.legal-main {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.legal-hero {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.legal-hero h1 {
  max-width: 18ch;
}

.legal-page-section {
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.2rem, 4vw, 2rem);
}

.legal-page-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  max-width: 28ch;
  color: var(--cyber-cyan);
}

.legal-page-section h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-top: 1.35rem;
}

.legal-page-section p,
.legal-page-section li {
  max-width: 78ch;
}

.legal-page-section ul,
.legal-page-section ol {
  padding-left: 1.4rem;
}

.legal-note {
  color: var(--muted);
}

.placeholder {
  color: var(--cyber-red);
  font-weight: 700;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--ink);
}

.legal-form-preview {
  display: grid;
  gap: 0.8rem;
}

.legal-form-preview label {
  text-transform: uppercase;
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  letter-spacing: 0.05em;
}

.legal-form-preview input,
.legal-form-preview textarea {
  width: 100%;
}

.legal-form-preview textarea {
  min-height: 160px;
  resize: vertical;
  border: 0;
  background-color: var(--paper);
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 12px, var(--rough-h-medium) 12px, 12px var(--rough-v-short), 12px var(--rough-v-short);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 0.8rem 0.65rem;
  border-radius: 0;
}

@media (max-width: 720px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table th {
    padding-bottom: 0.25rem;
  }
}


/* SEO round 1 */

.hero-support {
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 44rem;
  color: var(--muted);
}

.gift-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background-image: var(--rough-line), var(--rough-line-cyan), var(--rough-line-vertical), var(--rough-line-vertical-red);
}

.gift-card h3:first-child {
  color: var(--cyber-red);
}

.gift-card div:nth-child(2) h3 {
  color: var(--cyber-cyan);
}

.gift-card p:last-child {
  margin-bottom: 0;
}

.keyword-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.keyword-list li {
  padding: 1rem;
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 10px, var(--rough-h-medium) 10px, 10px var(--rough-v-short), 10px var(--rough-v-short);
  background-repeat: no-repeat;
}

@media (max-width: 760px) {
  .gift-card,
  .keyword-list {
    grid-template-columns: 1fr;
  }
}


/* SEO round 2 */

.puzzle-format {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.2rem, 4vw, 2.5rem);
  background-image: var(--rough-line-cyan), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical);
}

.puzzle-format h3:first-child {
  color: var(--cyber-cyan);
}

.puzzle-format div:nth-child(2) h3 {
  color: var(--cyber-red);
}

.secondary-link {
  margin-left: 1rem;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 0;
}

.intent-grid article {
  padding: 1rem;
  background-image: var(--rough-line), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 10px, var(--rough-h-medium) 10px, 10px var(--rough-v-short), 10px var(--rough-v-short);
  background-repeat: no-repeat;
}

.intent-grid h3 {
  color: var(--cyber-cyan);
}

@media (max-width: 760px) {
  .puzzle-format,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .secondary-link {
    margin-left: 0;
    margin-top: 0.6rem;
  }
}


.faq-summary-link {
  margin-top: 1.5rem;
}


/* SEO round 4 */

.launch-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.launch-card-link .launch-card {
  height: 100%;
}

.launch-card-link:hover .launch-card,
.launch-card-link:focus-visible .launch-card {
  background-image: var(--rough-line-red), var(--rough-line-red), var(--rough-line-vertical-red), var(--rough-line-vertical-red);
}

.launch-card-link:focus-visible {
  outline: var(--thick) dashed var(--ink);
  outline-offset: 6px;
}

.cyber-gift-link-box {
  margin-top: clamp(1rem, 3vw, 1.6rem);
  padding: 1rem;
  background-image: var(--rough-line-red), var(--rough-line), var(--rough-line-vertical), var(--rough-line-vertical-cyan);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 10px, var(--rough-h-medium) 10px, 10px var(--rough-v-short), 10px var(--rough-v-short);
  background-repeat: no-repeat;
}

.answer-block {
  padding: 1rem;
  margin: 1rem 0;
  background-image: var(--rough-line-cyan), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: var(--rough-h-medium) 10px, var(--rough-h-medium) 10px, 10px var(--rough-v-short), 10px var(--rough-v-short);
  background-repeat: no-repeat;
}

.answer-block strong {
  color: var(--cyber-cyan);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
}


/* Language switch + German pages */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  border-bottom: 0;
  padding: 0.10rem 0.08rem 0.18rem;
  position: relative;
  color: var(--ink);
  background-image: var(--rough-line-red);
  background-repeat: no-repeat;
  background-size: var(--rough-h-short) 7px;
  background-position: left calc(100% - 1px);
}

.lang-switch strong {
  color: var(--cyber-cyan);
  font-weight: 700;
}

.site-header .lang-switch {
  margin-left: auto;
}

.de-note {
  color: var(--muted);
}

.legal-page-section h2 {
  color: var(--cyber-cyan);
}


.footer-copyright {
  width: 100%;
  max-width: 72ch;
  margin: 0.25rem auto 0;
  text-align: center;
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
  letter-spacing: 0.03em;
  color: var(--muted);
  font-weight: 700;
}


/* Snail mail SEO page */

.snail-mail-callout {
  margin-top: clamp(1rem, 3vw, 1.6rem);
  padding: 1rem;
  background-image: var(--rough-line-cyan), var(--rough-line-red), var(--rough-line-vertical), var(--rough-line-vertical);
  background-position: top left, bottom left, left top, right top;
  background-size: 100% 10px, 100% 10px, 10px var(--rough-v-short), 10px var(--rough-v-short);
  background-repeat: no-repeat;
}

.snail-mail-callout h3 {
  color: var(--cyber-cyan);
}
