:root {
  --black: #0b0b0b;
  --charcoal: #141414;
  --gold: #c9a24d;
  --muted-gold: #9e8450;
  --text: #e6e6e6;
  --muted: #b5b5b5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.5px;
  text-align: left;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.container.narrow {
  max-width: 800px;
}

section {
  padding: 40px 0px 0px 0px;
  position: relative;
}

.hero {
  text-align: center;
}

.eyebrow {
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--muted-gold);
}

.hero h1 span { color: var(--gold); }

.subtitle {
  max-width: 700px;
  margin: auto;
  color: #000;
  margin-top: 20px;
}

.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--muted-gold));
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.geometry-divider svg {
  width: 100%;
  height: 80px;
  fill: rgba(201,162,77,0.08);
}

.geometry-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(201, 162, 77, 0.63) 0,
      rgba(201,162,77,0.03) 1px,
      transparent 1px,
      transparent 24px),
    repeating-linear-gradient(-45deg,
      rgba(201, 162, 77, 0.632) 0,
      rgba(201,162,77,0.03) 1px,
      transparent 1px,
      transparent 24px);
  z-index: 0;
}

section > .container {
  position: relative;
  z-index: 1;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #101010;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid rgba(201,162,77,0.08);
}

.card h3 { color: var(--gold); }

.pricing {
  background: linear-gradient(180deg, #0e0e0e, #080808);
  text-align: center;
}

.price-box {
  background: #0f0f0f;
  padding: 50px;
  border-radius: 18px;
  border: 1px solid rgba(201,162,77,0.15);
}

.old-price {
  color: #777;
  text-decoration: line-through;
}

.new-price {
  font-size: 2.2rem;
  color: var(--gold);
}

.savings {
  color: var(--muted-gold);
  letter-spacing: 1px;
}

.star-separator {
  margin: 10px auto;
  width: 200px;
}

.star-separator svg {
  stroke: rgba(201,162,77,0.4);
  fill: rgba(201,162,77,0.6);
  stroke-width: 1;
}

.form-placeholder {
  background: #fff;
  border: 1px dashed rgba(201,162,77,0.25);
  padding: 0px;
  border-radius: 14px;
  text-align: center;
}

footer {
  background: #000;
  text-align: center;
  padding: 30px;
  font-size: 0.75rem;
  color: #666;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: 0.9;
}

.center-image img {
  width: 100%;
}

.center-btn {
  margin: 20px;
  width: 190px;
  border: 0px;
  position: relative;
  display: block;
  margin: auto;
}

.mgBtm40 {
  margin-bottom: 40px;
}

.w100 {
  width: 100%;
}

.mg5p {
  position: relative;
  display: block;
  margin: 20px;
  margin-top: 5%;
}

ul li {
  text-align: left;
}

li::marker {
  color: var(--gold);
  font-size: 1.5em;
  content: ">> ";
}

.posRel10 {
    top: 10px;
    position: relative;
}

.topSec {
  background: #f9f9f9;
  padding-bottom: 40px;
  margin-top: 40px;
}

.btn-sponsor {
  background: linear-gradient(135deg, #7ad581, var(--muted-gold));
}