:root {
  --bg: #0f1117;
  --card: rgba(255, 255, 255, 0.075);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f5f1e8;
  --muted: #c8bfae;
  --soft: #928671;
  --gold: #d8b56d;
  --gold-light: #f2d89a;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 15%, rgba(216, 181, 109, 0.18), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(124, 92, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #0b0c12 0%, #161821 48%, #0f1117 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 56px 0 28px;
}

.hero {
  width: min(820px, 100%);
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
}

.symbol {
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 181, 109, 0.42);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(216, 181, 109, 0.08);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: clamp(1.22rem, 2.6vw, 1.72rem);
  line-height: 1.45;
}

.text {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.primary {
  color: #14100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.ethic {
  max-width: 720px;
  margin: 42px auto 0;
  padding: 24px;
  border: 1px solid rgba(216, 181, 109, 0.2);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.18);
  text-align: left;
}

.ethic h2 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.ethic p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--soft);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 620px) {
  .page {
    padding-top: 28px;
  }

  .hero {
    border-radius: 26px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ethic {
    text-align: center;
  }
}
