@charset "utf-8";

/*
-----------------------------------------------
Author:     Christian Hamann
Version:    8 Dezember 2025
----------------------------------------------- */


/* ============================================
   1. BASIS & RESET
   ============================================ */

body, h1, h2, h3, h4, h5, h6, p, blockquote, ul, ol, li, table, tr, th, td, form, figure, cite {
  margin: 0; 
  padding: 0; 
  border: 0; 
  list-style: none; 
  font-size: 100%; 
  font-weight: normal;
  font-style: normal;
}

img { 
  border: 0;
  max-width: 100%;
}

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

html {
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

::selection {
  background-color: var(--theme-yellow);
}


/* ============================================
   2. CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  --theme-border: #dddddd;
  --theme-black: #080b15;
  --theme-off-black: #212125;
  --theme-grey: #e2e3dc;
  --theme-yellow: #ffff33; 
  --theme-purple: #033dff;
  --theme-blue-grey: #c8d1cf;
  --theme-off-white: #f4f2f3;
  --theme-off-yellow: #ffff3325;
  --theme-off-green: #faf7f0;
  --theme-dark-green: #293c20;
  --theme-ash-grey: #a8b7ab;
  --theme-tiger-red: #ff5714;
  --theme-tomato-red: #f55d3e;
  --theme-dust-grey: #eadeda;
  --theme-indigo-black: #2e294e;
  --theme-dusty-olive: #657153;
  --theme-oxford-navy: #12355b;

  --layout-column-width: 768px;
  --spacing: 12px;
}

#canvas-container,
#bounce-container,
#ball-container {
  --ball-color: var(--theme-yellow);
}


/* ============================================
   3. TYPOGRAFIE
   ============================================ */

/* --- Font Faces --- */

@font-face {
  font-family: 'america';
  src: url('fonts/gt-america/GT-America-Standard-Regular.woff2') format('woff2'); 
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'america';
  src: url('fonts/gt-america/GT-America-Standard-Medium.woff2') format('woff2'); 
  font-weight: 500;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'america';
  src: url('fonts/gt-america/GT-America-Standard-Bold.woff2') format('woff2'); 
  font-weight: 700;
  font-style: normal;
  font-display: swap; 
}


/* --- Body & Base Typography --- */

body { 
  font-family: america, SF Pro Display, Helvetica Neue, Helvetica, Arial, sans-serif; 
  font-size: 87.5%;
  line-height: 1.5;
  color: white;
  background-color: var(--theme-black);
  min-height: 100%;
}

@media only screen and (min-width: 37.5em) {
  body {
    font-size: 100%;
  }
}

@media only screen and (min-width: 112.5em) {
  body {
    font-size: 125%;
  }
}

@media only screen and (min-width: 150em) {
  body {
    font-size: 133%;
  }
}


/* --- Headings --- */

h2, .h2 {
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding-bottom: 24px;
  text-transform: uppercase;   
}

h3, .h3 {
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 24px;  
}

section > h2,
section > .h2,
section > h3,
section > .h3 {
  padding-top: 24px;  
}

section > .alone {
  padding-top: 120px;  
}

section > .own {
  border-bottom: 1px solid var(--theme-border); 
  margin-bottom: 24px; 
}

.brand {
  font-size: 42px;
  line-height: 1.2;
  padding-top: 24px;
  padding-bottom: 24px;
  letter-spacing: -1px;
}

@media only screen and (max-width: 768px) {
  .brand {
    font-size: 36px;
  }
}

.brand .dot {
  margin: 0 8px;
}

.brand .slash {
  margin: 0 8px 0 1px;
  font-weight: normal;
}


/* --- Paragraphs & Text --- */

p, .list {
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 20px;
  max-width: 65ch;     
}

p + .btn {
  padding-top: 10px;   
}

.intro {
  font-size: 150%;
}

.big-font {
  font-size: 48px;  
}

.gigant-font {
  font-size: 24vw;  
}

.leading-snug {
  line-height: 1.35;
}

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



/* --- Lists --- */

section ul.list {
  padding-left: 2.75em !important;
  list-style-type: none;
}

@media only screen and (max-width: 768px) {
  section ul.list {
    padding-left: 2.5em !important;
  }
}

section ul.list li::before {
  content: "–";
  width: 1.5rem;
  height: 18px;
  display: inline-block;
  margin-left: -1.5rem;
}

section ul.list-pin li::before {
  content: "📍";
  margin-left: -30px;
  top: 2px;
  position: relative;
  margin-right: 9px;
}

section ul.list li {
  margin-bottom: 20px;
}

.list-swap {
  transition: transform 0.4s ease;
}

.list-swap.swapped {
  transform: translateY(0);
}

.list-swap li {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.list-swap li.swap-out {
  opacity: 0;
  transform: translateY(-0.5rem);
}

.list-swap li.swap-in {
  opacity: 1;
  transform: translateY(0);
}


/* --- Links --- */

.link_muted {
  color: inherit;
  text-decoration: none;
}


/* --- Text Utilities --- */

.nowrap {
  white-space: nowrap;
}

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

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

.select-none {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}



/* ============================================
   4. LAYOUT-SYSTEM
   ============================================ */

main {
  /* Reserved for future layout styles */
}

footer {
  min-height: 600px;
}

.root_body {
  width: 100%;
}

.root_row {
  border-bottom: 1px solid var(--theme-border);
}

.root_column {
  max-width: var(--layout-column-width);
  margin: 0 auto;
  display: block;
  border-left: 1px solid var(--theme-border);
  border-right: 1px solid var(--theme-border);
}

.root_column > section > *:not([class*="p-"]) {
  padding-left: 36px;
  padding-right: 36px;
}

@media only screen and (max-width: 768px) {
  .root_column > section > *:not([class*="p-"]) {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.column_wide {
  max-width: 1200px;
}

.column_full {
  max-width: 100%;
}


/* --- Two Column Grid --- */

.root_content_two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.root_content_two-cols > *:nth-child(2n) {
  border-left: 1px solid var(--theme-border);
}

.root_content_two-cols > *:nth-child(n+3) {
  border-top: 1px solid var(--theme-border);
}

.has-text .col {
  padding-left: 24px;
  padding-right: 24px;
}

@media only screen and (max-width: 768px) {
  .root_content_two-cols.m-one-col {
    grid-template-columns: repeat(1, 1fr);
  }
  .root_content_two-cols > *:last-child {
    border-right: 1px solid var(--theme-border);
  }
}


/* --- Three Column Grid --- */

.root_content_three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.root_content_three-cols > *:not(:first-child):not(:nth-child(4n)) {
  border-left: 1px solid var(--theme-border);
}

.root_content_three-cols > *:nth-child(n+4) {
  border-top: 1px solid var(--theme-border);
}




.link_badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}



.batch_icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--theme-black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -0.25px;
  margin-right: 18px;
  flex-shrink: 0;
}

.batch_label {}  



/* ============================================
   5. KOMPONENTEN
   ============================================ */

/* --- Buttons --- */

button {
  all: unset;
}

button:focus {
  outline: revert;
}

.btn {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 44.4px !important;
}


.btn:hover .btn_outer {
  background-color: var(--theme-black);
  background-image: linear-gradient(rgba(0, 0, 255, 0.2), rgba(0, 0, 255, 0.2));
}

@supports (background-color: color-mix(in srgb, black, white)) {
  .btn:hover .btn_outer {
    background-color: color-mix(in srgb, var(--theme-black) 80%, blue);
    background-image: none;
  }
}


.btn_outer {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  cursor: pointer;
  background-color: var(--theme-black);
  color: white;
  font-size: 150%;
  line-height: 0.85;
}

.btn-secondary .btn_outer {
  background-color: white;
  color: var(--theme-black);
  border: 2px solid;
}

.btn_text-group {
  position: relative;
  padding: 12px 24px;
  display: flex;
}

.btn_text-group > span {
  transition: transform 333ms cubic-bezier(.04, .69, .31, .98);
}

.btn_text-roll {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, 150%);
  white-space: nowrap;
}

.btn:hover:not(:disabled) .btn_text {
  transform: translateY(-200%);
}

.btn:hover:not(:disabled) .btn_text-roll {
  transform: translate(-50%, -50%);
}

#btn-start {
  position: absolute;
  top: 36px;
  left: 36px;
}

@media only screen and (max-width: 768px) {
  #btn-start { 
    top: 24px;
    left: 24px;
  }
}

#btn-start:disabled {
  cursor: not-allowed;
}

#btn-start:disabled .btn_outer {
  cursor: not-allowed;
  background-color: var(--theme-grey);
}


/* --- Tables --- */

.works-table {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table.big td {
  padding: 1rem 0 1rem 1rem;
}

table.big td.big {
  font-size: 24px;
  line-height: 1;
}

thead, tbody {
  display: table-row-group;
}

tr {
  display: table-row;
}


th {
  text-transform: uppercase;
  font-size: 100%;
  letter-spacing: 2px;
  padding: 0 0 1.25rem 0.75rem;
  font-weight: bold;
  left: 5px;
  position: relative;
  border-bottom: 1px solid var(--theme-border);
}


th, td {
  display: table-cell;
  text-align: left;
}

td {
  border-bottom: 1px dotted var(--theme-border);
  padding: 0.5rem;
}

tbody tr {
  transition: background-color 1s ease; 
}

tbody tr:hover {
  transition: background-color 0s ease; 
  background-color: color-mix(in srgb, var(--theme-yellow) 75%, transparent);
}

tbody tr:last-child td {
  border-bottom: none;
}


/* --- Canvas / Artboards --- */

.canvas {
  width: 100%;           
  aspect-ratio: 18 / 10;
  position: relative;
}

.canvas canvas {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.canvas-long {
  aspect-ratio: 24 / 10;
}

#wave-container {
  height: 250px;
  --band-color: #FFFFFF;
  --text-color: #FFFFFF;
  font-weight: bold;
}


/* --- Boxes & Cards --- */

.box {
  margin: 12px 24px 0 24px;
}

@media only screen and (max-width: 768px) {
  .box {
    margin: 0 12px 0 12px;
  }
}

section .cap {
  font-size: 12px;
  font-weight: bold;
  border-radius: 24px;
  line-height: 1;
  border: 2px solid;
  display: inline-block;
  padding: 10px 12px 8px !important;
  margin: 24px 0 24px 24px;
}


cite .photo img {
  max-width: 60px;
}


/* --- Icons --- */

[class^="icon-"] {
  display: inline;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -9%;
  fill: currentcolor;
  margin-top: 0;
  margin-bottom: 0;
  overflow: visible !important;
}

.big .icon-arrow-right {
  width: 24px;
  height: auto;
  vertical-align: 0%;
  margin-left: -5px;
  margin-right: 24px;
}


/* ============================================
   6. UTILITY-KLASSEN
   ============================================ */

/* --- Background Colors --- */

.bg-white {
  background-color: white;
  color: var(--theme-black);
}

.bg-off-white {
  background-color: var(--theme-off-white);
  color: var(--theme-black);
}

.bg-off-yellow {
  background-color: var(--theme-off-yellow);
  color: var(--theme-black);
}

.bg-grey {
  background-color: var(--theme-grey);
  color: var(--theme-black);
  border-color: white !important;
}

.bg-blue-grey {
  background-color: var(--theme-blue-grey);
  color: var(--theme-black);
  border-color: white !important;
}

.bg-off-green {
  background-color: var(--theme-off-green);
  color: var(--theme-dark-green);
}

.bg-purple {
  background-color: var(--theme-purple);
  color: white;
}

.bg-grey *,
.bg-blue-grey * {
  border-color: white !important;
}

.invert {
  background-color: var(--theme-black);
  color: white;
}

.invert table tr td {
  border-style: dotted;
}


/* --- Text Colors --- */

.c-yellow {
  color: var(--theme-yellow);
}

.muted {
  opacity: 0.5 !important;
}


/* --- Spacing --- */
.p-0 {
  padding: calc(var(--spacing) * 0.5);
}

.p-1 {
  padding: calc(var(--spacing) * 1);
}

.p-2 {
  padding: calc(var(--spacing) * 2);
}

.p-3 {
  padding: calc(var(--spacing) * 3);
}

.p-4 {
  padding: calc(var(--spacing) * 4);
}

.p-5 {
  padding: calc(var(--spacing) * 5);
}

.p-6 {
  padding: calc(var(--spacing) * 6);
}

.p-8 {
  padding: calc(var(--spacing) * 8);
}

@media only screen and (max-width: 768px) {
  .m-p-3 {
    padding: calc(var(--spacing) * 3);
  }
}




/* --- Borders & Shapes --- */

.rounded {
  border-radius: 1.5em;
  /*border-radius: clamp(1.5em, 5vw, 2.5em);*/
}

.pill {
  border-radius: 120px;
  overflow: hidden;
}

.no-border {
  border: none !important;
}

.has-border {
  border: 1px solid !important;
}


/* --- Positioning --- */

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.centered {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* --- Interaction --- */

.cursor-pointer {
  cursor: pointer;
}

.clickable:hover {
  cursor: pointer;
}

.flex {
  display: flex;
}

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

.gap-4 {
  gap: 1rem; 
}


/* --- Emoji Utilities --- */

.emo.h100 {
  transform: scale(1.5);
  margin-left: 7px;
  margin-right: 3px;
  top: 3px;
}

.emo.hand {
  transform: scale(1.666) rotate(90deg) scaleX(-1);
  margin-left: 7px;
  margin-right: 14px;
}

.emo.flash  {
  transform: scale(1.1);
}

.emo.brain  {
  margin-right: 3px;
}

.emo.mic  {
  transform: scale(0.9);
  margin-right: 2px;
}

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


/* ============================================
   7. ANIMATIONEN
   ============================================ */

.ani-typed::after {
  content: '|';
  animation: blink 1s infinite; 
}

.ani-typed.completed::after {
  display: none;
}

.ani-typed span.highlight {
  color: var(--theme-yellow); 
  transition: color 0.3s ease; 
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}



.comic-text-css {
  position: absolute;
  top: -33px;
  left: 27%;
  transform: translateX(-50%) rotate(-3deg);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.195em;
  color: #fff;
  
  --text-shadow-color: var(--theme-tomato-red);

  text-shadow:
    4px 4px 0 var(--text-shadow-color),
    -2px -2px 0 var(--text-shadow-color),
    2px -2px 0 var(--text-shadow-color),
    -2px 2px 0 var(--text-shadow-color),
    2px 2px 0 var(--text-shadow-color),
    12px 12px 0 var(--theme-off-green);

  z-index: 10;
}


.stroked {
  color: transparent;
  -webkit-text-stroke-color: var(--theme-border);
  text-stroke-color: var(--theme-border);
  -webkit-text-stroke-width: 1px;
  text-stroke-width: 1px;
}

.rose {
  position: absolute;
  bottom: 15%;
  right: 30%;
  font-size: 3.75rem;
  transform: rotate(30deg);
  z-index: 10;
}


/* ============================================
   8. RESPONSIVE & MEDIA QUERIES
   ============================================ */

@media only screen and (max-width: 768px) {
  .m-hide {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .d-hide {
    display: none !important;
  }
}


/* ============================================
   SLIDER
   ============================================ */

.slider-container {
  height: 500px;
  padding-bottom: 75px;
}

@media only screen and (max-width: 768px) {
  .slider-container {
    height: 350px;
    padding-bottom: 50px;
  }
}

.slider-stack {
  position: relative;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;    
}

.slide {
  position: absolute;
  max-width: 50%;
  height: auto;
  max-height: 100%; 
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  /*transition: all 333ms cubic-bezier(.04, .69, .31, .98);*/
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 2; 
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.slide.active {
  left: 30%;
  top: 0;
  transform: rotate(0deg) scale(1);
  z-index: 3;
}

.slide.next {
  top: 5%;
  left: 32%;
  transform: rotate(3deg) scale(0.95);
  z-index: 2;
}

.slide.next-next {
  top: 10%;
  left: 34%;
  transform: rotate(6deg) scale(0.9);
  z-index: 1;
}

.slide.hidden {
  left: -103%;
  transform: rotate(-3deg) scale(0.95);
  opacity: 0;
  z-index: 0;
}

