:root {
  --ink: #f8ead0;
  --night: #0b0a0d;
  --deep: #151016;
  --lacquer: #2a0f12;
  --cinnabar: #c84b31;
  --cinnabar-dark: #8e2d25;
  --jade: #1f8a72;
  --gold: #d4a647;
  --old-gold: #9f7630;
  --paper: #f4e2c2;
  --smoke: rgba(248, 234, 208, 0.72);
  --dim: rgba(248, 234, 208, 0.58);
  --line: rgba(212, 166, 71, 0.26);
  --line-strong: rgba(212, 166, 71, 0.48);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(212, 166, 71, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 166, 71, 0.035) 1px, transparent 1px),
    var(--night);
  background-size: 54px 54px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(11, 10, 13, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-weight: 780;
  letter-spacing: 0;
  text-decoration: none;
}

.seal {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 166, 71, 0.7);
  background: linear-gradient(135deg, #6d1919, #c84b31);
  color: #ffe9b5;
  font-family: Georgia, serif;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(200, 75, 49, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--dim);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 214, 128, 0.55);
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd36d, #bb7d22 54%, #7d331d);
  color: #150d08;
  font-weight: 840;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.48);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

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

.button.secondary {
  background: rgba(248, 234, 208, 0.08);
  color: var(--paper);
  border-color: rgba(248, 234, 208, 0.28);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(212, 166, 71, 0.68);
}

.button-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(20, 10, 4, 0.34);
  color: #4d1a0e;
  font-weight: 900;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(11, 10, 13, 0.9), rgba(11, 10, 13, 0.68) 46%, rgba(11, 10, 13, 0.42)),
    url("./hero.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(212, 166, 71, 0.16) 46.2% 46.5%, transparent 46.8%),
    linear-gradient(20deg, transparent 0 62%, rgba(31, 138, 114, 0.12) 62.2% 62.5%, transparent 62.8%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--night));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  min-height: 92vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
  padding: 76px 0 68px;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.44);
}

.hero-copy {
  max-width: 690px;
  color: var(--smoke);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(212, 166, 71, 0.28);
  background: rgba(11, 10, 13, 0.46);
  color: rgba(248, 234, 208, 0.72);
  font-size: 13px;
}

.mystic-preview {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.compass {
  position: relative;
  width: min(390px, 80vw);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(212, 166, 71, 0.42) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(212, 166, 71, 0.42) 50%, transparent calc(50% + 1px)),
    rgba(12, 8, 10, 0.58);
  box-shadow: 0 0 0 10px rgba(212, 166, 71, 0.05), var(--shadow);
  transform: rotate(45deg);
}

.compass::before,
.compass::after,
.ring {
  content: "";
  position: absolute;
  border: 1px solid rgba(212, 166, 71, 0.54);
  border-radius: 50%;
  inset: 10%;
}

.compass::after {
  inset: 24%;
  border-color: rgba(31, 138, 114, 0.46);
}

.ring-a {
  inset: 36%;
  border-color: rgba(248, 234, 208, 0.28);
}

.ring-b {
  inset: 2%;
  border-color: rgba(200, 75, 49, 0.44);
}

.axis,
.star-point {
  position: absolute;
  background: var(--gold);
}

.axis-x {
  width: 58%;
  height: 1px;
  top: 50%;
  left: 21%;
}

.axis-y {
  width: 1px;
  height: 58%;
  top: 21%;
  left: 50%;
}

.star-point {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 18px rgba(212, 166, 71, 0.9);
}

.p1 {
  top: 16%;
  left: 47%;
}

.p2 {
  top: 48%;
  right: 15%;
}

.p3 {
  bottom: 16%;
  left: 49%;
}

.p4 {
  top: 48%;
  left: 15%;
}

.seal-mark {
  position: absolute;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  left: 50%;
  top: 50%;
  border: 2px solid rgba(200, 75, 49, 0.9);
  color: #ffdba0;
  background: rgba(120, 29, 25, 0.84);
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.talisman {
  width: min(320px, 78vw);
  padding: 22px;
  border: 1px solid rgba(212, 166, 71, 0.5);
  background:
    repeating-linear-gradient(180deg, rgba(212, 166, 71, 0.12) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(244, 226, 194, 0.92), rgba(221, 191, 135, 0.9));
  color: #25120d;
  box-shadow: var(--shadow);
}

.talisman span,
.talisman small {
  display: block;
  color: #7c2b1f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.talisman strong {
  display: block;
  margin: 10px 0 4px;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, #171016, #100d10);
}

.proof strong {
  display: block;
  color: var(--paper);
  font-size: 19px;
}

.proof span {
  color: var(--dim);
  font-size: 14px;
}

section {
  padding: 88px clamp(18px, 4vw, 54px);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--dim);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 226, 194, 0.08), rgba(200, 75, 49, 0.06)),
    #120d11;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 166, 71, 0.16);
  pointer-events: none;
}

.card-sigil {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 166, 71, 0.55);
  color: var(--gold);
  font-weight: 850;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: 21px;
}

.card p,
.card li {
  color: var(--dim);
}

.band {
  background:
    linear-gradient(90deg, rgba(200, 75, 49, 0.1), transparent 42%),
    #130d10;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 13, 17, 0.94);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(212, 166, 71, 0.22);
  background: rgba(244, 226, 194, 0.05);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 75, 49, 0.72);
  background: rgba(200, 75, 49, 0.16);
  color: #ffc376;
  font-weight: 900;
}

.step h3 {
  color: var(--paper);
  margin-bottom: 4px;
}

.step p {
  color: var(--dim);
  margin-bottom: 0;
}

.price-box {
  position: relative;
  background:
    linear-gradient(145deg, rgba(200, 75, 49, 0.24), transparent 44%),
    #0f0b0e;
  color: var(--paper);
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 166, 71, 0.22);
  pointer-events: none;
}

.price {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: #ffd778;
}

.price-box p,
.price-box li {
  color: var(--smoke);
}

.price-box .button {
  width: 100%;
  margin-top: 16px;
}

.price-box .button.secondary {
  color: var(--paper);
}

.fineprint {
  margin-top: 14px;
  color: var(--dim);
  font-size: 13px;
}

.footer {
  padding: 38px clamp(18px, 4vw, 54px);
  background: #070608;
  color: rgba(248, 234, 208, 0.66);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.policy-page {
  padding: 68px clamp(18px, 4vw, 54px);
}

.policy-page article {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 13, 17, 0.96);
  box-shadow: var(--shadow);
}

.policy-page h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.policy-page h2 {
  color: var(--gold);
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(212, 166, 71, 0.12);
  color: var(--smoke);
}

.intake-shell {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 48px clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(200, 75, 49, 0.14), transparent 42%),
    var(--night);
}

.intake-box {
  width: min(790px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 13, 17, 0.96);
  box-shadow: var(--shadow);
}

.intake-box h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.field-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.field-list li {
  padding: 12px 14px;
  border: 1px solid rgba(212, 166, 71, 0.23);
  color: var(--smoke);
  background: rgba(244, 226, 194, 0.05);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 0 56px;
  }

  .mystic-preview {
    justify-self: start;
  }

  .proof,
  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    display: block;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  section {
    padding: 64px 18px;
  }

  .hero-actions .button,
  .price-box .button {
    width: 100%;
  }

  .compass {
    width: min(300px, 86vw);
  }
}
