* {
  box-sizing: border-box;
}

:root {
  --gold: #f5c45d;
  --orange: #d98a2f;
  --soft-white: rgba(255,255,255,0.84);
  --muted-white: rgba(255,255,255,0.62);
  --glass: rgba(255,255,255,0.07);
  --stroke: rgba(255,255,255,0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  background:
    radial-gradient(circle at top, rgba(99, 45, 140, 0.36), transparent 36rem),
    radial-gradient(circle at bottom right, rgba(214, 142, 49, 0.15), transparent 30rem),
    linear-gradient(135deg, #05030a 0%, #12081f 45%, #030205 100%);
}

.page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.hero {
  min-height: 74vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 96px 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    radial-gradient(circle at center, rgba(245,196,93,0.08), transparent 24rem);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}

.site-header {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.brand-mark {
  color: var(--gold);
  font-size: 16px;
}

.brand-name {
  color: #f7d98a;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mini-label {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 10%;
  background: rgba(145, 77, 255, 0.28);
}

.orb-two {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: 14%;
  background: rgba(245, 196, 93, 0.16);
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffe6a3, var(--gold), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(245,196,93,0.18);
}

.subtitle {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--soft-white);
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 15px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.primary {
  color: #15090b;
  background: linear-gradient(135deg, #ffe6a3, var(--gold), var(--orange));
  box-shadow: 0 10px 34px rgba(245,196,93,0.22);
}

.secondary {
  color: white;
  background: var(--glass);
  border: 1px solid var(--stroke);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 46px rgba(0,0,0,0.25);
}

.card span {
  color: var(--gold);
  font-size: 30px;
}

.card h2 {
  margin: 18px 0 12px;
  font-size: 24px;
  color: #ffd36f;
}

.card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted-white);
  font-size: 16px;
}

footer {
  text-align: center;
  padding: 34px 0 8px;
  color: var(--muted-white);
  font-size: 14px;
}

footer p {
  margin: 6px 0;
}

.soft {
  opacity: 0.72;
}

@media (max-width: 820px) {
  .page {
    padding: 24px 16px 28px;
  }
  
  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .brand {
    padding: 8px 14px;
  }

  .brand-name {
    font-size: 14px;
  }

  .mini-label {
    font-size: 11px;
  }

  .hero {
    min-height: 76vh;
    padding: 74px 18px;
    border-radius: 28px;
  }

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

  .button {
    width: 100%;
    max-width: 340px;
  }
}
