:root {
  --bg: #111416;
  --bg-deep: #0b0d0f;
  --card: #171a1d;
  --card-2: #1c2024;
  --gold: #d6b45c;
  --gold-light: #f3d98b;
  --gold-dark: #a27c2a;
  --white: #f5f5f5;
  --muted: #b8b8b8;
  --red: #9d0808;
  --red-hot: #b00000;
  --red-deep: #6e0505;
  --border: rgba(214, 180, 92, 0.28);
  --border-soft: rgba(214, 180, 92, 0.12);
  --max: 1200px;
  --hero-image: none;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", "Outfit", serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

.page-wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

.page-wallpaper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 15, 0.72) 0%, rgba(11, 13, 15, 0.88) 45%, rgba(11, 13, 15, 0.94) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(11, 13, 15, 0.2), rgba(11, 13, 15, 0.85) 70%);
}

.wallpaper-photo {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  filter: brightness(0.28) saturate(0.55) contrast(1.05) blur(10px);
  transform: scale(1.08);
  transition: opacity 0.6s ease;
}

.page-wallpaper.has-image .wallpaper-photo {
  opacity: 0.55;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.bg-glow-a {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(214, 180, 92, 0.35), transparent 70%);
}

.bg-glow-b {
  width: 480px;
  height: 480px;
  bottom: 10%;
  right: -160px;
  background: radial-gradient(circle, rgba(157, 8, 8, 0.28), transparent 70%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 13, 15, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #0b0d0f;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  padding: 6px 9px 5px;
  border-radius: 2px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--white);
}

.hero {
  padding: 36px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-banner {
  position: relative;
  min-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 48px rgba(214, 180, 92, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: #0a0c0e;
  background-image:
    var(--hero-image),
    radial-gradient(ellipse at 50% 42%, rgba(214, 180, 92, 0.16), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(157, 8, 8, 0.18), transparent 50%),
    linear-gradient(160deg, #14181c 0%, #0b0d0f 55%, #16100e 100%);
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.42) saturate(0.72) contrast(1.05);
  transform: scale(1.06);
  z-index: 0;
}

.hero-media.has-image .hero-ornament {
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.2) 0%, rgba(8, 9, 10, 0.55) 45%, rgba(8, 9, 10, 0.88) 100%);
  backdrop-filter: blur(1.5px);
}

.hero-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 180, 92, 0.22);
  border-radius: 12px;
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.55;
}

.ring {
  position: absolute;
  border: 1px solid rgba(214, 180, 92, 0.18);
  border-radius: 50%;
}

.ring-1 {
  width: 280px;
  height: 280px;
}

.ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(214, 180, 92, 0.08);
}

.diamond {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(214, 180, 92, 0.55);
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px 48px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  margin-bottom: 22px;
}

.title-white {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

.title-gold {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 700;
  letter-spacing: 0.16em;
  background: linear-gradient(180deg, #fff4c8 0%, var(--gold-light) 18%, var(--gold) 52%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(214, 180, 92, 0.28));
}

.hero-lead {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--white);
  max-width: 420px;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.buy-card {
  position: relative;
  background: linear-gradient(180deg, #1b1f23 0%, var(--card) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 32px 32px;
  box-shadow:
    0 0 0 1px rgba(214, 180, 92, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(214, 180, 92, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.buy-card-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 180, 92, 0.16), transparent 70%);
  pointer-events: none;
}

.card-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 24px rgba(214, 180, 92, 0.16);
  background:
    radial-gradient(circle at 50% 40%, rgba(214, 180, 92, 0.18), transparent 62%),
    #121518;
  display: none;
}

.card-portrait.has-image {
  display: block;
}

.card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.78) saturate(0.8);
}

.buy-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.buy-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.buy-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.buy-price,
.cta-price {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin: 8px 0 28px;
  filter: drop-shadow(0 0 12px rgba(214, 180, 92, 0.25));
}

.buy-secure {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  justify-content: center;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.trust-icon {
  color: var(--gold);
  display: inline-flex;
}

.trust-center {
  justify-content: center;
  border: 0;
  padding-top: 8px;
}

.trust-center li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-sm {
  font-size: 11px;
  padding: 11px 18px;
}

.btn-lg {
  font-size: 13px;
  padding: 16px 28px;
  min-height: 54px;
}

.btn-xl {
  font-size: 14px;
  padding: 18px 36px;
  min-height: 60px;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  color: #1a1408;
  background: linear-gradient(180deg, #f3d98b 0%, #d6b45c 48%, #b8923d 100%);
  box-shadow: 0 8px 24px rgba(214, 180, 92, 0.28), 0 0 0 1px rgba(243, 217, 139, 0.25);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.38) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 3.4s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 180, 92, 0.42);
  filter: brightness(1.06);
}

.btn-red {
  color: var(--white);
  background: linear-gradient(180deg, #c10b0b 0%, var(--red-hot) 40%, var(--red) 100%);
  box-shadow: 0 10px 28px rgba(157, 8, 8, 0.38);
}

.btn-red:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 34px rgba(176, 0, 0, 0.5);
}

.pulse {
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 180, 92, 0.45), transparent);
  border: 0;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.benefit {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 24px rgba(214, 180, 92, 0.06);
}

.benefit-icon {
  display: inline-flex;
  margin-bottom: 14px;
}

.benefit h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit p {
  font-size: 13px;
  color: var(--muted);
}

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

.step-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 26px 28px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
}

.step-icon {
  display: inline-flex;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 14.5px;
}

.cta-block {
  padding-top: 20px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 180, 92, 0.1), transparent 55%),
    linear-gradient(180deg, #1a1e22, var(--card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 28px;
  box-shadow: 0 0 60px rgba(214, 180, 92, 0.06);
}

.cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.14;
  filter: brightness(0.35) saturate(0.65) blur(6px);
  pointer-events: none;
  z-index: 0;
}

.cta-panel > *:not(.cta-photo) {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.footer-cta-title {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  margin: 8px 0 12px;
}

.cta-text {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 8px;
}

.cta-panel .cta-price {
  margin: 18px 0 28px;
}

.faq-wrap {
  max-width: 860px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  background: var(--card);
  border: 1px solid rgba(214, 180, 92, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.acc-item.is-open {
  border-color: var(--border);
}

.acc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
}

.acc-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  flex-shrink: 0;
  margin-top: -4px;
}

.acc-item.is-open .acc-arrow {
  transform: rotate(225deg);
  margin-top: 4px;
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel p {
  overflow: hidden;
  color: var(--muted);
  font-size: 14.5px;
  padding: 0 22px 0;
}

.acc-item.is-open .acc-panel p {
  padding-bottom: 20px;
}

.footer-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 48px;
}

.footer-cta .btn {
  margin-top: 28px;
}

.site-footer {
  padding: 0 0 36px;
  text-align: center;
}

.site-footer .gold-line {
  margin-bottom: 22px;
}

.site-footer p {
  font-size: 12px;
  color: #7d7d7d;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: none;
}

.reveal.in-view {
  animation: fade-up 0.7s ease forwards;
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(157, 8, 8, 0.38), 0 0 0 0 rgba(176, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 12px 36px rgba(176, 0, 0, 0.52), 0 0 22px 2px rgba(176, 0, 0, 0.28);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy {
    padding: 44px 32px;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner,
  .hero-copy,
  .hero-copy {
    min-height: 480px;
  }

  .header-cta {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    padding: 20px 0 48px;
  }

  .hero-banner,
  .hero-copy {
    min-height: 440px;
  }

  .hero-copy {
    padding: 32px 22px;
  }

  .buy-card {
    padding: 32px 22px 24px;
  }

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

  .btn {
    white-space: normal;
    width: 100%;
  }

  .header-inner .btn {
    width: auto;
  }

  .cta-panel {
    padding: 44px 18px;
  }

  .acc-trigger {
    font-size: 15px;
    padding: 18px 16px;
  }

  .title-white {
    font-size: 36px;
  }

  .title-gold {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
