:root {
  --bg0: #080508;
  --bg1: #150d0a;
  --sand: #DEB887;
  --gold: #FFD700;
  --gold-deep: #DAA520;
  --gold-dark: #B8860B;
  --ink: #1a1510;
  --text: #fff7e8;
  --muted: rgba(255, 247, 232, 0.72);
  --line: rgba(255, 215, 0, 0.28);
  --ok: #7dffa8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg0) 0%, #120a0e 35%, #1a0f0c 70%, var(--bg1) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(218, 165, 32, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(184, 134, 11, 0.18), transparent 55%),
    url("https://backiee.com/static/wallpapers/1000x563/363627.jpg") center / cover no-repeat;
  opacity: 0.45;
  transform: scale(1.04);
  animation: drift 28s ease-in-out infinite alternate;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 8, 0.55) 0%, rgba(8, 5, 8, 0.78) 45%, rgba(8, 5, 8, 0.92) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

@keyframes drift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.2%, -0.6%); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3.5rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 8vh, 5rem);
  animation: rise 0.7s ease both;
}

.brand {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 40%, #DAA520 75%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-mini {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-mini a:hover { color: var(--gold); }

.hero {
  min-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1rem;
  animation: rise 0.85s 0.08s ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(2rem, 6.2vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 35%, #DAA520 70%, #DEB887 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.28);
}

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

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  margin-top: clamp(2.5rem, 7vh, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  animation: rise 0.9s 0.16s ease both;
}

.section h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffe4b5;
  margin: 1.15rem 0 0.45rem;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 42rem;
  margin-bottom: 0.85rem;
}

.section p strong {
  color: #fff3d1;
  font-weight: 600;
}

.keys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0.25rem;
}

.keys span {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 247, 232, 0.78);
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.06);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.faq {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.faq details {
  border: 1px solid rgba(255, 215, 0, 0.18);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #fff3d1;
  line-height: 1.4;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  margin: 0.7rem 0 0;
  max-width: none;
}

.related {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.related a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.related a:hover {
  border-color: rgba(255, 215, 0, 0.45);
  color: var(--text);
  transform: translateY(-1px);
}

.related a strong {
  color: #ffe4b5;
  font-weight: 600;
}

.related a span { white-space: nowrap; color: var(--gold); }

.mid-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.crumb {
  font-size: 0.78rem;
  color: rgba(255, 247, 232, 0.5);
  margin-bottom: 1rem;
}

.crumb a:hover { color: var(--gold); }

.crumb span { margin: 0 0.35rem; opacity: 0.6; }

.steps {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.num {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin-top: 1.2rem;
  color: var(--sand);
  font-size: 0.92rem;
}

.proof span::before {
  content: "✓ ";
  color: var(--ok);
  font-weight: 700;
}

.footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 247, 232, 0.55);
  font-size: 0.82rem;
}

.footer a:hover { color: var(--gold); }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .top { margin-bottom: 2.2rem; }
  .nav-mini { display: none; }
  .hero { min-height: 62vh; }
  h1 { max-width: 12ch; }
}
