:root {
  --black: #000;
  --panel: #121212;
  --panel-2: #1d1d1d;
  --line: #343434;
  --text: #fff;
  --muted: #b7b7b7;
  --gold: #d6a72d;
  --paper: #f4f2ed;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  margin: 0;
}

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

.topbar {
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 900;
  gap: 10px;
  white-space: nowrap;
}

.brand img {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 10px;
}

nav a:hover {
  border-color: var(--text);
  color: var(--text);
}

main {
  display: grid;
  gap: 26px;
  padding: clamp(22px, 5vw, 68px);
}

.hero {
  display: grid;
  gap: 22px;
  max-width: 1280px;
}

.kicker,
.badge {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  margin: 0;
  max-width: 980px;
}

.actions,
.grid,
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
button {
  border: 1px solid var(--text);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-transform: uppercase;
}

.btn.gold,
button.gold,
.badge.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn.outline {
  background: transparent;
  color: var(--text);
}

.panel,
.card,
.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
}

.card {
  min-width: min(100%, 240px);
}

.card span,
.price {
  color: var(--text);
  display: block;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 900;
}

.card strong {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.table-row {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  min-width: 760px;
  padding: 14px;
}

.table-row.header {
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

input,
textarea {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 14px;
}

textarea {
  min-height: 130px;
}

.notice {
  background: #122416;
  border: 1px solid #32633c;
  border-radius: 8px;
  color: #d7ffdd;
  padding: 14px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 54px);
}

@media (max-width: 780px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .table-row {
    min-width: 620px;
  }

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