:root {
  --ui-bg-page: #111318;
  --ui-bg-panel:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.00) 18%),
    linear-gradient(180deg, #232529 0%, #1a1c20 100%);
  --ui-bg-surface: #111318;
  --ui-bg-soft: #0d0f13;
  --ui-border: rgba(255, 255, 255, 0.08);
  --ui-border-strong: rgba(255, 255, 255, 0.12);
  --ui-text: #bbb09e;
  --ui-text-muted: #a98d63;
  --ui-text-soft: #8d7047;
  --coin-dark: #53442e;
  --coin-mid: #8d7047;
  --coin-light: #bbb09e;
  --ui-button-text: #0f1216;
  --ui-button-bg: linear-gradient(180deg, #bbb09e 0%, #a98d63 100%);
  --ui-shadow-md:
    0 18px 42px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    Inter,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: var(--ui-bg-page);
  color: var(--ui-text);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100vw - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  background: var(--ui-bg-panel);
}

.studio-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 680px;
  padding: 72px 64px;
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  background: var(--ui-bg-panel);
  color: var(--ui-text);
  text-align: center;
}

.studio-logo {
  width: min(260px, 62vw);
  height: auto;
}

.studio-kicker {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coin-dark);
}

h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  color: var(--coin-mid);
  text-wrap: balance;
}

.studio-description {
  max-width: 860px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
  text-align: justify;
  color: var(--coin-mid);
}

.plain-text-link,
.plain-text-link:hover,
.plain-text-link:focus-visible,
.plain-text-link:active {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.12em;
  outline: none;
}

.studio-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.studio-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-height: 56px;
  max-width: 100%;
  padding: 0 20px;
  color: var(--ui-button-text);
  background: var(--ui-button-bg);
  border: 0;
  border-radius: 12px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.studio-link-button:hover,
.studio-link-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  outline: none;
}

.studio-link-button:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.site-footer {
  color: var(--ui-text-soft);
  font-size: 14px;
}

@media (max-width: 700px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding: 12px 0;
    gap: 12px;
  }

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

  .studio-panel {
    min-height: 0;
    padding: 48px 20px;
  }

  .studio-description {
    text-align: left;
  }

  .studio-link-button {
    width: 100%;
  }
}
