:root {
  --bg: #08100c;
  --panel: #0f1f18;
  --panel-soft: #152a22;
  --line: #2e5a46;
  --text: #ebf5ef;
  --muted: #b9d2c4;
  --gold: #ffb81c;
  --green: #0b8f47;
  --green-2: #1fbf6d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1400px 700px at 20% -10%, #173626 0%, transparent 60%),
    radial-gradient(1200px 600px at 100% -20%, #2a2f12 0%, transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero {
  background: linear-gradient(180deg, rgba(26,49,38,0.7), rgba(10,24,18,0.92));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-row img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,184,28,0.45);
  background: #fff;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: clamp(30px, 4vw, 46px);
}

.subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.badge {
  display: inline-block;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,184,28,0.12);
  border: 1px solid rgba(255,184,28,0.5);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
}

.grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, rgba(28,52,40,0.8), rgba(13,24,19,0.92));
  border: 1px solid #2d5945;
  border-radius: 16px;
  padding: 20px;
}

.card h2 {
  margin: 0;
  font-size: 24px;
  font-family: "Playfair Display", Georgia, serif;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  text-decoration: none;
  color: #08120d;
  background: linear-gradient(180deg, #ffd06f, #ffb81c);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cb8f00;
  font-size: 13px;
}

.btn.secondary {
  background: linear-gradient(180deg, #23b867, #13884a);
  border-color: #0f6f3b;
  color: #f4fffa;
}

.note {
  margin-top: 9px;
  font-size: 12px;
  color: #9bc2ae;
}

.footer {
  margin-top: 26px;
  color: #8eb39f;
  font-size: 13px;
}

.kv {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 8px 16px;
  font-size: 14px;
}

.kv .k {
  color: #9bc6b0;
}

.kv .v {
  color: #edf7f1;
}

@media (max-width: 680px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .kv {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
