:root {
  --bg: #000000;
  --fg: #ffffff;
  --accent: #d4ff5b;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Whyte, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.section {
  width: min(1280px, 100vw);
  height: auto;
  padding: 0 clamp(16px, 8vw, 128px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(32px, 8vw, 128px);
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  width: min(512px, 100%);
}

.title {
  font-family: Whyte, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  margin: 0;
  word-break: keep-all;
}

.desc {
  font-family: Whyte, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.3333333;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
}

.cta {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.7777778;
}

.arrow {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
}

.art {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.art-img {
  width: clamp(240px, 40vw, 360px);
  height: auto;
}

@media (max-width: 900px) {
  .section {
    flex-direction: column;
    height: auto;
  }
}