:root {
  --bg: #050505;
  --panel: rgba(255,255,255,.045);
  --line: rgba(212,175,55,.28);
  --gold: #d4af37;
  --text: #f5f1e8;
  --muted: rgba(245,241,232,.66);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(212,175,55,.18), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(145deg, #050505, #111);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wrap {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(212,175,55,.14), transparent 34%),
    rgba(10,10,10,.84);
  border-radius: 32px;
  padding: clamp(28px, 6vw, 64px);
  box-shadow: 0 28px 90px rgba(0,0,0,.56);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #070707;
  background: linear-gradient(135deg, #d4af37, #8f6f16);
  font-weight: 950;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.03em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.kicker {
  color: rgba(242,214,117,.92);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .96;
  letter-spacing: -.07em;
}

p {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.btn {
  border: 1px solid rgba(212,175,55,.45);
  background: linear-gradient(135deg, #d4af37, #9b791b);
  color: #070707;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.note {
  color: rgba(245,241,232,.52);
  font-size: 13px;
}

.language {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(245,241,232,.76);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

@media(max-width: 680px) {
  body {
    padding: 12px;
  }

  .wrap {
    border-radius: 24px;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}

/* v1.03.7 – clickable language buttons */
.chip {
  cursor: pointer;
  font-family: inherit;
}

.chip.is-active {
  border-color: rgba(212,175,55,.54);
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.08));
  color: #f5f1e8;
}

.chip:hover {
  border-color: rgba(212,175,55,.42);
  color: #f5f1e8;
}
