:root {
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root {
  color-scheme: dark;
  --bg: #0B0C0E;
  --bg-soft: #17191C;
  --surface: #17191C;
  --surface-strong: #17191C;
  --line: rgba(138, 144, 151, 0.32);
  --line-soft: rgba(138, 144, 151, 0.16);
  --text: #F4F4F2;
  --text-muted: rgba(244, 244, 242, 0.72);
  --text-dim: #8A9097;
  --blue-wash: rgba(95, 132, 164, 0.16);
  --accent: #F4F4F2;
  --accent-dark: #0B0C0E;
  --secondary: #8A9097;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.noscript {
  padding: 12px 18px;
  background: #F4F4F2;
  color: #0B0C0E;
  font-size: 13px;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 3vw, 42px);
  background: rgba(11, 12, 14, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  inset: 4px;
  border: 1px dashed var(--secondary);
}

.brand-mark::after {
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: var(--text);
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.section-inner {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 12, 14, 0.95) 0%, rgba(11, 12, 14, 0.72) 42%, rgba(11, 12, 14, 0.14) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11, 12, 14, 0.15) 44%, rgba(11, 12, 14, 0.62) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.72) contrast(1.06);
}

.hero-content {
  padding: 150px 0 62px;
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-facts {
  animation: heroReveal 900ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero h1 {
  animation-delay: 90ms;
}

.hero-lead {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 270ms;
}

.hero-facts {
  animation-delay: 360ms;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(138, 144, 151, 0.12);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(31px, 4.6vw, 64px);
  line-height: 1.04;
  font-weight: 500;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
}

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

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(244, 244, 242, 0.1);
}

.hero-facts {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 54px 0 0;
}

.hero-facts div {
  padding: 4px 20px 4px 0;
}

.hero-facts div + div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--text-dim);
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

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

.section-split {
  background: #0E1013;
}

.section-band {
  background: #08090B;
}

.section-quiet {
  background: #11151A;
}

#inhalt {
  background: var(--bg);
}

.split-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.copy-stack p,
.signup-copy p,
.section-head p,
.module-card p,
.thanks-copy p {
  color: var(--text-muted);
}

.copy-stack p {
  margin-bottom: 20px;
  font-size: 18px;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.row-list,
.format-list {
  display: grid;
  gap: 0;
}

.row-list div,
.format-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.row-list div + div,
.format-list div + div {
  border-top: 1px solid var(--line-soft);
}

.row-list span,
.format-list span {
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
}

.row-list p,
.format-list p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}

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

.format-list div {
  display: block;
  min-height: 118px;
  padding: 8px 22px 8px 0;
}

.format-list div + div {
  border-top: 0;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.format-list span {
  display: block;
  margin-bottom: 36px;
}

.webinar-details {
  margin-top: clamp(46px, 7vw, 82px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.module-card {
  min-height: 230px;
  padding: 8px 24px 8px 0;
}

.module-card + .module-card {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.module-index {
  display: block;
  margin-bottom: 54px;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
}

.module-card p {
  max-width: 250px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.image-scroll {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(11, 12, 14, 0.9), rgba(11, 12, 14, 0.54) 46%, rgba(11, 12, 14, 0.18)),
    linear-gradient(0deg, rgba(11, 12, 14, 0.78), transparent 42%, rgba(11, 12, 14, 0.28)),
    linear-gradient(90deg, var(--blue-wash), transparent 44%),
    url("artist-studio-review.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.image-sticky {
  display: none;
}

.image-sticky img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.35) saturate(0.55) contrast(1.05);
}

.image-overlay {
  position: relative;
  z-index: 1;
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(36px, 6vw, 68px);
}

.image-overlay h2 {
  max-width: 720px;
  margin-bottom: clamp(26px, 5vw, 54px);
}

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

.diagnostic-line li {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: space-between;
  padding: 8px 22px 8px 0;
}

.diagnostic-line li + li {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.diagnostic-line span {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.diagnostic-line strong {
  max-width: 180px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.1;
  font-weight: 500;
}

.form-section {
  background: #101216;
}

.signup-copy {
  max-width: 600px;
}

.signup-copy p {
  margin-top: 22px;
  font-size: 18px;
}

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

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

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

.signup-panel {
  padding: 0;
}

.fallback-form {
  display: grid;
  gap: 13px;
}

.fallback-form label:not(.consent-row) {
  color: var(--text);
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
}

.fallback-form input[type="text"],
.fallback-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 0 14px;
}

.fallback-form input::placeholder {
  color: rgba(244, 244, 242, 0.35);
}

.fallback-form input:focus-visible {
  outline: 2px solid var(--secondary);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--text);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
}

.site-footer {
  padding: 30px 0;
  color: var(--text-dim);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.motion-ready .section-head,
.motion-ready .split-grid > *,
.motion-ready .module-card,
.motion-ready .image-overlay > *,
.motion-ready .diagnostic-line li,
.motion-ready .row-list div,
.motion-ready .format-list div,
.motion-ready .signup-copy,
.motion-ready .signup-panel,
.motion-ready .next-steps li {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(32px);
  transition: opacity 820ms cubic-bezier(0.19, 1, 0.22, 1), filter 820ms cubic-bezier(0.19, 1, 0.22, 1), transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.motion-ready .module-card:nth-child(2),
.motion-ready .diagnostic-line li:nth-child(2),
.motion-ready .row-list div:nth-child(2),
.motion-ready .format-list div:nth-child(2),
.motion-ready .next-steps li:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .module-card:nth-child(3),
.motion-ready .diagnostic-line li:nth-child(3),
.motion-ready .row-list div:nth-child(3),
.motion-ready .format-list div:nth-child(3),
.motion-ready .next-steps li:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .module-card:nth-child(4) {
  transition-delay: 270ms;
}

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

  .motion-ready .section-head,
  .motion-ready .split-grid > *,
  .motion-ready .module-card,
  .motion-ready .image-overlay > *,
  .motion-ready .diagnostic-line li,
  .motion-ready .row-list div,
  .motion-ready .format-list div,
  .motion-ready .signup-copy,
  .motion-ready .signup-panel,
  .motion-ready .next-steps li {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-facts {
    animation: none;
  }
}

.thank-you-page {
  min-height: 100svh;
  background: var(--bg);
}

.thanks-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
}

.thanks-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 12, 14, 0.96) 0%, rgba(11, 12, 14, 0.82) 48%, rgba(11, 12, 14, 0.35) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11, 12, 14, 0.1) 42%, rgba(11, 12, 14, 0.66) 100%),
    linear-gradient(90deg, var(--blue-wash), transparent 40%),
    url("artist-studio-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.65) contrast(1.05);
}

.thanks-panel {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(38px, 6vw, 78px);
}

.thanks-brand {
  margin-bottom: auto;
}

.thanks-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.5fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
  margin-top: clamp(120px, 18vh, 220px);
}

.thanks-copy {
  max-width: 760px;
}

.thanks-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8.4vw, 112px);
  line-height: 0.96;
}

.thanks-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.next-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  min-height: 104px;
  padding: 18px 0;
}

.next-steps li + li {
  border-top: 1px solid var(--line-soft);
}

.next-steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 500;
}

.next-steps p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.thanks-actions {
  margin-top: 42px;
}

@media (max-width: 900px) {
  .section {
    padding: 52px 0;
  }

  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 50px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(11, 12, 14, 0.95), rgba(11, 12, 14, 0.56)),
      linear-gradient(0deg, var(--bg) 0%, rgba(11, 12, 14, 0.25) 52%, rgba(11, 12, 14, 0.72) 100%);
  }

  .split-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .image-scroll {
    min-height: 54svh;
    background-attachment: scroll;
    background-position: 58% center;
  }

  .image-sticky {
    display: none;
  }

  .image-overlay {
    padding-top: 72px;
    padding-bottom: 38px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 38px 0;
  }

  .section-inner {
    width: min(100% - 40px, var(--max));
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(42px, 13.5vw, 60px);
  }

  h2 {
    font-size: clamp(31px, 9.6vw, 45px);
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 32px;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .module-grid,
  .diagnostic-line,
  .format-list {
    grid-template-columns: 1fr;
  }

  .row-list div,
  .format-list div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .format-list div {
    min-height: auto;
  }

  .format-list div + div {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-left: 0;
  }

  .format-list span {
    margin-bottom: 8px;
  }

  .hero-facts div {
    padding: 0 9px 0 0;
  }

  .hero-facts div + div {
    border-left: 1px solid var(--line-soft);
    border-top: 0;
    padding-left: 9px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 13px;
    line-height: 1.2;
  }

  .module-card {
    min-height: auto;
    padding: 18px 0;
  }

  .module-card + .module-card {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-left: 0;
  }

  .diagnostic-line li {
    min-height: auto;
    padding: 16px 0;
  }

  .diagnostic-line li + li {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .image-scroll {
    min-height: 58svh;
    background-position: 66% center;
  }

  .image-overlay {
    padding-top: 56px;
    padding-bottom: 30px;
  }

  .image-overlay h2 {
    margin-bottom: 26px;
  }

  .module-index {
    margin-bottom: 18px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .copy-stack p,
  .signup-copy p {
    font-size: 16px;
  }

  .section-split {
    background: #11151A;
  }

  .section-band {
    background: #08090B;
  }

  .section-quiet {
    background: #0E1013;
  }

  #inhalt {
    background: #0B0C0E;
  }

  .form-section {
    padding-top: 38px;
    background: #15191F;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .thanks-panel {
    min-height: 100svh;
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .thanks-brand {
    margin-bottom: 0;
  }

  .thanks-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 118px;
  }

  .thanks-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .thanks-copy p:not(.section-kicker) {
    font-size: 17px;
  }

  .next-steps li {
    min-height: auto;
    padding: 15px 0;
  }

  .next-steps span {
    margin-bottom: 10px;
  }

  .thanks-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }
}
