* {
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --line: #2f2f2f;
  --line-strong: #4b2d17;
  --text: #f7f4f0;
  --text-muted: #c8c1b8;
  --text-soft: #a8a29b;
  --accent: #ff8a1f;
  --accent-strong: #ff6f00;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.12em 0.35em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 138, 31, 0.24), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(255, 138, 31, 0.12), transparent 30%),
    var(--bg);
}

.page {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
  padding: 44px 0 60px;
}

.hero,
.section,
.footer-cta {
  background: linear-gradient(180deg, rgba(28, 20, 13, 0.78), rgba(12, 12, 12, 0.9));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
}

.hero {
  padding: 34px;
  margin-bottom: 18px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffbf8a;
  font-size: 12px;
  font-weight: 700;
}

.hero-tag {
  margin: 0;
  font-size: 13px;
  color: #ffcfaa;
}

.hero h1 {
  margin: 0 0 14px;
  max-width: 880px;
  font-size: clamp(34px, 5.6vw, 58px);
  line-height: 1.08;
}

.hero .lead {
  margin: 0 0 22px;
  max-width: 780px;
  color: var(--text-muted);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #2a1200;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 24px rgba(255, 126, 15, 0.27);
}

.btn.ghost {
  color: #ffd6b6;
  border-color: #6c4426;
  background: rgba(23, 23, 23, 0.9);
}

.btn.ghost:hover {
  border-color: #9f6437;
}

.hero-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats li {
  padding: 12px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid #3a3a3a;
  border-radius: 12px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #ffb16d;
  font-size: 18px;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.section {
  margin-top: 16px;
  padding: 24px;
}

.section-head {
  margin-bottom: 14px;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: #ffb470;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.section h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.steps-section {
  background: linear-gradient(180deg, rgba(22, 16, 12, 0.86), rgba(12, 12, 12, 0.94));
}

.product-shots {
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.9), rgba(12, 12, 12, 0.96));
}

.shots-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shot-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.shot-card figcaption {
  margin: 0;
  padding: 10px 12px 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.step span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffb36f;
  font-weight: 700;
  font-size: 13px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.pricing-layout {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.price {
  margin: 0;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.price-meta {
  margin: 6px 0 10px;
  color: var(--text-muted);
}

.free-plan ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.free-plan li {
  color: var(--text-muted);
}

.free-plan li::marker {
  color: var(--accent);
}

.paid-block {
  background: rgba(23, 23, 23, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.paid-title {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}

.price-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 138, 31, 0.34);
}

.badge {
  margin: 0 0 8px;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #8d5425;
  color: #ffd6b5;
  background: rgba(255, 138, 31, 0.2);
  font-size: 12px;
  font-weight: 700;
}

.price-card span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.pricing-note {
  margin: 12px 0 0;
  color: #ffcfaa;
  font-size: 14px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.faq details:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #ffdfc4;
}

.faq p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-cta {
  margin-top: 16px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 138, 31, 0.18), transparent 44%),
    #121212;
}

.footer-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.9vw, 38px);
  line-height: 1.2;
}

.footer-cta p {
  margin: 0 auto 16px;
  max-width: 760px;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(1120px, 100% - 24px);
    padding: 28px 0 42px;
  }

  .hero,
  .section,
  .footer-cta {
    border-radius: 18px;
  }

  .hero {
    padding: 22px 18px;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 18px;
  }

  .actions {
    margin-bottom: 16px;
  }

  .btn {
    width: 100%;
  }
}
