:root {
  --black: #030303;
  --black-2: #0a0907;
  --panel: #11100d;
  --panel-soft: #17140f;
  --gold: #ead8a6;
  --gold-2: #c8a86a;
  --gold-3: #8d6f37;
  --ivory: #fff7e6;
  --muted: #b9ad93;
  --line: rgba(234, 216, 166, 0.26);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 168, 106, 0.18), transparent 26%),
    linear-gradient(180deg, #030303 0%, #0b0907 48%, #030303 100%);
  color: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  margin: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.nav,
.nav-action,
.btn,
.social-list a,
.social-item {
  align-items: center;
  display: inline-flex;
}

.brand {
  gap: 11px;
  font-weight: 850;
}

.brand-mark {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  color: #0a0804;
  display: grid;
  font-size: 12px;
  height: 36px;
  place-items: center;
  width: 54px;
}

.nav {
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 15px;
  gap: 22px;
}

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

.nav-action,
.btn,
.social-list a,
.social-item {
  border-radius: 8px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-action {
  background: var(--gold);
  color: var(--black);
  min-height: 42px;
  padding: 0 16px;
}

svg {
  height: 18px;
  width: 18px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.68fr);
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: 0 clamp(20px, 6vw, 84px);
  position: relative;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 42%, rgba(234, 216, 166, 0.18), transparent 24%),
    radial-gradient(circle at 18% 22%, rgba(200, 168, 106, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.96), rgba(10, 9, 7, 0.98));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 640px;
  padding: clamp(72px, 9vw, 118px) 0 clamp(58px, 7vw, 90px);
  position: relative;
  z-index: 1;
}

.hero-visual {
  align-items: end;
  align-self: end;
  display: grid;
  justify-items: center;
  min-height: min(72vh, 660px);
  position: relative;
  z-index: 1;
}

.hero-visual::before {
  background:
    radial-gradient(circle, rgba(234, 216, 166, 0.24), rgba(234, 216, 166, 0.06) 48%, transparent 72%);
  border-radius: 50%;
  content: "";
  filter: blur(18px);
  height: min(34vw, 430px);
  position: absolute;
  transform: translate(20px, -24px);
  width: min(34vw, 430px);
}

.avatar-card {
  background: transparent;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(234, 216, 166, 0.12);
  padding: 0;
  position: relative;
  width: min(35vw, 430px);
}

.avatar-card img {
  display: block;
  filter: saturate(0.98) contrast(1.04) brightness(0.95);
  height: auto;
  object-fit: contain;
  transform: translateY(16px) scale(1.08);
  transform-origin: center bottom;
  width: 100%;
}

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

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

h1 {
  color: var(--gold);
  font-size: clamp(46px, 7.6vw, 96px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 560px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

h2 {
  color: var(--ivory);
  font-size: clamp(30px, 4.2vw, 56px);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
}

h3 {
  color: var(--ivory);
  font-size: 22px;
  line-height: 1.28;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 247, 230, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
}

.btn.ghost {
  background: rgba(234, 216, 166, 0.08);
  border: 1px solid var(--line);
  color: var(--gold);
}

.btn:hover,
.nav-action:hover,
.social-list a:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 145px));
  margin: 0;
  max-width: 520px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(234, 216, 166, 0.06);
  padding: 15px 16px;
}

.hero-stats dt {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  color: var(--muted);
  margin: 8px 0 0;
}

.proof-strip {
  background: linear-gradient(90deg, var(--gold), #fff0bf, var(--gold-2));
  color: var(--black);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  padding: 16px 20px;
  font-weight: 900;
}

.proof-strip span {
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
}

.section-heading {
  margin-bottom: 34px;
  max-width: 860px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading > p:last-child,
.promise-list p,
.step-card p,
.step-card li,
.faq-copy p,
.faq-list p,
.link-card p {
  color: var(--muted);
}

.proof {
  background: var(--black);
}

.proof-screenshot-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-table-wrap,
.proof-shot {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.proof-shot {
  margin: 0;
}

.proof-shot img {
  height: auto;
  object-fit: contain;
  object-position: top center;
  width: 100%;
}

.promise {
  background: linear-gradient(180deg, #0b0907, #11100d);
}

.promise-inner {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.promise-list {
  display: grid;
  gap: 16px;
}

.promise-list article,
.price-summary article {
  background: linear-gradient(135deg, rgba(234, 216, 166, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.promise-list svg {
  color: var(--gold);
  height: 28px;
  margin-bottom: 14px;
  width: 28px;
}

.system {
  background: var(--black);
}

.steps-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.steps-layout.detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.step-card {
  background:
    linear-gradient(135deg, rgba(234, 216, 166, 0.12), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.step-card span {
  color: var(--gold);
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.step-card ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.step-card li {
  border-top: 1px solid rgba(234, 216, 166, 0.14);
  padding-top: 13px;
}

.step-card strong {
  color: var(--ivory);
}

.pricing {
  background:
    radial-gradient(circle at 80% 18%, rgba(234, 216, 166, 0.12), transparent 22%),
    var(--black-2);
}

.pricing-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.price-summary {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.price-summary article.featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--black);
}

.price-summary article.featured h3,
.price-summary article.featured p,
.price-summary article.featured span {
  color: var(--black);
}

.price-summary p {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.price-summary h3 {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 6px;
}

.price-summary span {
  color: var(--muted);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(234, 216, 166, 0.18);
  border-right: 1px solid rgba(234, 216, 166, 0.14);
  padding: 18px 16px;
  text-align: center;
  vertical-align: middle;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table thead th {
  background: rgba(234, 216, 166, 0.11);
  color: var(--gold);
  font-size: 18px;
  line-height: 1.35;
}

.pricing-table thead span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.pricing-table tbody th {
  color: var(--ivory);
  font-weight: 850;
  text-align: left;
}

.pricing-table td {
  color: var(--gold);
  font-size: 18px;
  font-weight: 850;
}

.faq {
  align-items: center;
  background: var(--black);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
}

.faq-copy {
  max-width: 580px;
}

.faq-copy .btn {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  background:
    linear-gradient(135deg, rgba(234, 216, 166, 0.11), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.faq-list h3 {
  color: var(--gold);
  font-size: 20px;
}

.faq-list p {
  margin-bottom: 0;
}

.links {
  background: linear-gradient(180deg, #11100d, #030303);
}

.link-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(234, 216, 166, 0.16), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: clamp(28px, 5vw, 56px);
}

.social-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-list a,
.social-item {
  background: rgba(234, 216, 166, 0.08);
  border: 1px solid var(--line);
  color: var(--gold);
  justify-content: center;
  min-height: 58px;
  padding: 0 16px;
}

.footer {
  align-items: center;
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 84px);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .steps-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout,
  .faq,
  .promise-inner {
    grid-template-columns: 1fr;
  }

  .price-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-action {
    position: absolute;
    right: 18px;
    top: 14px;
  }

  .nav {
    padding-right: 128px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding-top: 36px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.72) 46%, rgba(3, 3, 3, 0.42) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.18));
  }

  .hero-content {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero-visual {
    justify-items: start;
    margin-bottom: 52px;
  }

  .hero-visual::before {
    height: 300px;
    width: 300px;
  }

  .avatar-card {
    width: min(66vw, 320px);
  }

  .proof-screenshot-grid,
  .link-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .nav {
    gap: 12px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-actions,
  .btn,
  .social-list {
    width: 100%;
  }

  .hero-stats,
  .steps-layout,
  .price-summary,
  .social-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
