:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090604;
  color: #fff7eb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100dvh;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  background: #090604;
}

main {
  width: min(100%, 390px);
  min-height: min(720px, calc(100dvh - 36px));
  padding: 28px 22px;
  border: 1px solid rgba(246, 232, 212, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(246, 232, 212, 0.07) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(225deg, rgba(246, 232, 212, 0.04) 25%, transparent 25%) 0 0 / 32px 32px,
    #1f130c;
}

.brand {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 247, 235, 0.09);
}

.brand img {
  width: 27px;
  height: 27px;
}

h1 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.05;
}

p {
  margin: 0 0 14px;
  color: #dfc7a9;
  font-size: 15px;
  line-height: 1.5;
}

.stat-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.stat-card {
  padding: 14px;
  border: 1px solid rgba(246, 232, 212, 0.14);
  border-radius: 16px;
  background: rgba(255, 247, 235, 0.07);
}

.stat-card span {
  display: block;
  margin-bottom: 6px;
  color: #c4a88a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card b {
  font-size: 18px;
}

a {
  color: #fff7eb;
  font-weight: 800;
}
