body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #e5e7eb;
  background: radial-gradient(1200px 600px at 20% 0%, #1a2338 0%, #05070d 60%, #03040a 100%);
}

.container {
  max-width: 1000px;
  margin: 26px auto 60px;
  padding: 0 16px;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 4, 10, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.brand {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brandLogo {
  width: 78px;
  height: auto;
  border-radius: 14px;
  display: block;
}

.brandLogoWrap {
  padding: 7px 8px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(242, 209, 107, 0.18) 0%,
    rgba(201, 155, 47, 0.06) 100%
  );
  border: 1px solid rgba(242, 209, 107, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18) inset,
    0 12px 34px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(242, 209, 107, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand:hover .brandLogoWrap {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18) inset,
    0 16px 44px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(242, 209, 107, 0.28);
}

.brandText {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brandTitle {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brandSubtitle {
  color: rgba(229, 231, 235, 0.72);
  font-size: 13px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.hero {
  padding: 26px;
}

.heroTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.heroTitle {
  font-size: 36px;
  margin: 0;
}

.heroTag {
  margin-top: 6px;
  color: rgba(242, 209, 107, 0.92);
  font-weight: 800;
}

.heroSub {
  margin: 14px 0 0;
  color: rgba(229, 231, 235, 0.7);
}

.heroButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ctaPrimary {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e6c15a 0%, #c99b2f 100%);
  color: #0b0b0b;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ctaSecondary {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(229, 231, 235, 0.12);
  color: #e5e7eb;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(229, 231, 235, 0.12);
}

.heroFacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fact {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(0, 0, 0, 0.16);
}

.factTitle {
  color: rgba(229, 231, 235, 0.72);
  font-size: 13px;
}

.factValue {
  color: #f2d16b;
  font-weight: 900;
  margin-top: 4px;
}

.marketingSection {
  margin-top: 18px;
  padding: 18px 0;
}

.marketingSection > h2 {
  margin-bottom: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(0, 0, 0, 0.14);
}

.stepNumber {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(242, 209, 107, 0.18);
  color: #f2d16b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

.stepTitle {
  font-weight: 900;
}

.stepText {
  color: rgba(229, 231, 235, 0.72);
  margin-top: 6px;
  font-size: 14px;
}

.buttonRow {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead {
  color: rgba(229, 231, 235, 0.72);
}

h1,
h2 {
  margin-top: 0;
}

.subtitle {
  color: rgba(229, 231, 235, 0.68);
  margin-top: -8px;
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
}

input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid rgba(229, 231, 235, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: #e5e7eb;
  border-radius: 8px;
}

button {
  margin-top: 16px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #e6c15a 0%, #c99b2f 100%);
  color: #0b0b0b;
  cursor: pointer;
  font-weight: 700;
}

button.secondary {
  background: rgba(229, 231, 235, 0.12);
  color: #e5e7eb;
}

.error {
  color: #ff6b6b;
  min-height: 20px;
}

.hint {
  margin-top: 14px;
  color: rgba(229, 231, 235, 0.62);
  font-size: 14px;
}

.hidden {
  display: none;
}

.dashboardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid rgba(229, 231, 235, 0.12);
  padding: 10px 8px;
}

a {
  color: #f2d16b;
}

a {
  text-decoration: none;
}

hr {
  border: none;
  border-top: 1px solid rgba(229, 231, 235, 0.12);
  margin: 24px 0;
}

.addForm {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.formGrid {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.addForm button {
  margin-top: 0;
}

.formInfo {
  grid-column: 1 / -1;
  margin: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.filterGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filterGroup input,
.filterGroup select {
  width: 260px;
}

.filterGroup select {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(229, 231, 235, 0.18);
  color: #e5e7eb;
  padding: 10px;
  border-radius: 8px;
}

.filterGroup input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(229, 231, 235, 0.18);
  color: #e5e7eb;
}
