*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --page: #f1f2f4;
  --card: #0b0f0c;
  --text: #f5f5f1;
  --muted: #8f958d;
  --accent: #c8f443;
  --line: rgba(200, 244, 67, 0.18);
}

body {
  min-height: 100vh;
  background: var(--card);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

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

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

.page {
  max-height: 100%;
  max-width:100%;
  display: grid;
  place-items: center;
}

.studio-card {
  height: 675px;
  padding: 125px 40px 34px;
  background: var(--card);
  border: 1px solid rgba(92, 38, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 190px;
  display: block;
  margin: 0 auto;
}

.copy-block {
  max-width: 1000px;
  margin-top: 34px;
  text-align: center;
}

h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--accent);
}

.subhead {
  max-width: 1000px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  min-height: 56px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0f0c;
  font-size: 1rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
}


.quote {
  max-width: 560px;
  margin-top: 28px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}

.quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .page {
    padding: 20px 12px;
  }

  .studio-card {
    padding: 22px 18px 24px;
  }

  .logo {
    width: 160px;
  }

  .copy-block {
    margin-top: 26px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .subhead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
