
    :root {
      --deep: #000000;
      --bg: #fbfaf2;
      --bg-alt: #f2f6fc;
      --bg-dark: #373737;
      --text-dark: #1a1a1a;
      --text: #373737;
      --text-negativ: #fbfaf2;
      --border: rgba(26, 26, 26, 0.12);
      --accent: #f04344;
      --accent-dark: #b33232;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    }

    html[data-theme="dark"] {
      --deep: #ffffff;
      --bg: #373737;
      --bg-alt: #1a1a1a;
      --bg-dark: #fbfaf2;
      --text: #fbfaf2;
      --text-dark: #f2f6fc;
      --text-negativ: #373737;
      --border: rgba(251, 250, 242, 0.14);
      --accent: #f04344;
      --accent-dark: #b33232;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
    }

    .page {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 32px;
      background:
        radial-gradient(circle at 15% 20%, rgba(240, 67, 68, 0.12), transparent 0 35%),
        radial-gradient(circle at 85% 80%, rgba(240, 67, 68, 0.10), transparent 0 30%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
    }

    .theme-toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      appearance: none;
      border: 1px solid var(--border);
      background: color-mix(in srgb, var(--bg) 80%, transparent);
      color: var(--text);
      backdrop-filter: blur(10px);
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 0.95rem;
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease;
      z-index: 10;
    }

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

    .hero {
      width: min(1120px, 100%);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: stretch;
    }

    .panel,
    .visual {
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
      min-height: 560px;
    }

    .panel {
      background: color-mix(in srgb, var(--bg) 92%, transparent);
      backdrop-filter: blur(12px);
      padding: clamp(28px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
      opacity: 0.8;
    }

    h1 {
      margin: 0;
      font-size: clamp(3rem, 8vw, 7rem);
      line-height: 0.92;
      letter-spacing: -0.06em;
      color: var(--text);
    }

    .subtitle {
      max-width: 34rem;
      margin: 22px 0 0;
      font-size: clamp(1rem, 2vw, 1.2rem);
      line-height: 1.65;
      color: color-mix(in srgb, var(--text) 86%, transparent);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .button,
    .ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .button {
      background: var(--accent);
      color: #ffffff;
      border: 1px solid transparent;
    }

    .button:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
    }

    .ghost {
      border: 1px solid var(--border);
      color: var(--text);
      background: transparent;
    }

    .ghost:hover {
      transform: translateY(-2px);
      background: color-mix(in srgb, var(--bg-alt) 72%, transparent);
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .meta span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--bg-alt) 72%, transparent);
      border: 1px solid var(--border);
      font-size: 0.92rem;
      color: color-mix(in srgb, var(--text) 88%, transparent);
    }

    .visual {
      position: relative;
      background:

        var(--bg-dark);
      isolation: isolate;
    }

    .visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--text);
      opacity: 0.45;
      pointer-events: none;
    }

    .visual-inner {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 34px;
    }

    .art {
      width: 100%;
      height: 100%;
      border-radius: 22px;
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      background: var(--text);
    }

    .art-copy {
      position: absolute;
      inset: auto 24px 24px 24px;
      z-index: 2;
      color: var(--text-negativ);
    }

    .art-copy small {
      display: block;
      margin-bottom: 10px;
      opacity: 0.72;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .art-copy strong {
      display: block;
      font-size: clamp(1.8rem, 4vw, 3.3rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      max-width: 10ch;
    }

    .art-copy p {
      margin: 14px 0 0;
      max-width: 20rem;
      line-height: 1.55;
      opacity: 0.88;
    }

    .image-slot {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .art.has-image .image-slot {
      opacity: 0.78;
    }

.art.has-image::after {
      content: "";
      position: absolute;
      inset: 0;

      z-index: 1;
    }

    .footer-note {
      position: absolute;
      left: 24px;
      bottom: 20px;
      font-size: 0.84rem;
      opacity: 0.62;
    }

    @media (max-width: 920px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .panel,
      .visual {
        min-height: auto;
      }

      .visual {
        min-height: 420px;
      }
    }

    @media (max-width: 640px) {
      .page {
        padding: 18px;
      }

      .theme-toggle {
        top: 16px;
        right: 16px;
        padding: 10px 14px;
      }

      .panel {
        padding: 26px 22px;
      }

      .actions {
        flex-direction: column;
      }

      .button,
      .ghost {
        width: 100%;
      }
    }


    #artwork {
  cursor: pointer;
}


.seo-copy {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 0 1.5rem 3rem;
  color: var(--text);
}

.seo-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.seo-copy p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.82;
}

.claim {
  margin: 0.35em 0 0.75em;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}

