:root {
  --ink: #f7efe2;
  --muted: rgba(247, 239, 226, 0.72);
  --soft: rgba(247, 239, 226, 0.5);
  --line: rgba(247, 239, 226, 0.14);
  --panel: rgba(15, 18, 18, 0.78);
  --panel-strong: rgba(9, 11, 11, 0.9);
  --gold: #d8a84f;
  --gold-soft: rgba(216, 168, 79, 0.2);
  --green: #24b079;
  --blue: #6e9fcf;
  --dark: #070808;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--dark);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Aptos, "Helvetica Neue", Helvetica, sans-serif;
  background: var(--dark);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.73) 42%, rgba(7, 8, 8, 0.14) 100%),
    url("/assets/hero-clean-premium.png") center right / cover no-repeat;
}

.shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.brand,
.brandLine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand::before,
.brandLine::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(36, 176, 121, 0.13);
}

.soft .dot {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(110, 159, 207, 0.16);
}

.niche {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.93;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.panel {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  pointer-events: none;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(247, 239, 226, 0.84);
  font-size: 16px;
  line-height: 1.38;
}

.steps li:first-child {
  padding-top: 0;
}

.number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 168, 79, 0.42);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.soft .number {
  background: rgba(110, 159, 207, 0.16);
  border-color: rgba(110, 159, 207, 0.36);
  color: var(--blue);
}

.actions {
  display: grid;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #25d383, #139f68);
  color: #06100b;
  box-shadow: 0 18px 48px rgba(19, 159, 104, 0.25);
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.secondary {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.4;
}

.directory {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.7)),
    url("/assets/hero-clean-premium.png") center right / cover no-repeat;
}

.directoryCard {
  width: min(100%, 980px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 11, 11, 0.84);
  box-shadow: var(--shadow);
}

.directoryCard h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.directoryCard p {
  max-width: 680px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.directoryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.directoryItem {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.directoryItem strong {
  color: var(--ink);
}

.directoryItem a {
  width: fit-content;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .page {
    align-items: end;
    padding: 28px 20px;
    background:
      linear-gradient(180deg, rgba(7, 8, 8, 0.24) 0%, rgba(7, 8, 8, 0.92) 38%, rgba(7, 8, 8, 0.98) 100%),
      url("/assets/hero-clean-premium.png") top center / 100% auto no-repeat,
      var(--dark);
  }

  .shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 35vh;
  }

  .brand,
  .brandLine {
    margin-bottom: 28px;
  }

  .directoryGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .page,
  .directory {
    padding: 22px 16px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 17px;
  }

  .panel,
  .directoryCard {
    padding: 22px;
  }
}
