:root {
  --bg: #130c0a;
  --bg-soft: #1b120f;
  --panel: rgba(34, 22, 18, 0.82);
  --panel-strong: rgba(49, 32, 26, 0.92);
  --line: rgba(251, 177, 35, 0.18);
  --line-strong: rgba(251, 177, 35, 0.34);
  --text: #f9efe7;
  --muted: #d2b8a6;
  --accent: #fbb123;
  --accent-soft: #e7a580;
  --accent-deep: #c3663d;
  --success: #31cb73;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --page-width: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Avenir Next', 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 177, 35, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(195, 102, 61, 0.18), transparent 24%),
    linear-gradient(180deg, #1a120f 0%, #120b09 55%, #0d0706 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  position: relative;
  overflow: hidden;
}
main {
  min-height: calc(100vh - 176px);
}
.site-header,
.hero,
.stats-strip,
.section,
.cta-section,
.site-footer {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(251, 177, 35, 0.16), rgba(195, 102, 61, 0.12));
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.site-nav a {
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  padding: 14px 0 48px;
}
.hero-copy {
  padding: 34px 0 12px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1,
.section-heading h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
}
.hero-text,
.section-heading p,
.plan-summary,
.faq-card p,
.signal-card p,
.credit-pack p,
.credits-rules p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}
.button:active {
  transform: scale(0.98);
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), #ffd261);
  color: #1b110c;
  box-shadow: 0 12px 30px rgba(251, 177, 35, 0.24);
}
.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}
.button-header {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.93rem;
}
.button-header-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.button-header-primary {
  background: linear-gradient(135deg, rgba(251, 177, 35, 0.95), rgba(231, 165, 128, 0.96));
  color: #1b110c;
}
.hero-notes {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.hero-notes li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-notes li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 16px rgba(251, 177, 35, 0.3);
}
.hero-panel {
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -30px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 177, 35, 0.22), transparent 70%);
  filter: blur(4px);
}
.panel-frame {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(51, 34, 28, 0.88), rgba(18, 12, 10, 0.96)),
    rgba(34, 22, 18, 0.88);
  box-shadow: var(--shadow);
}
.panel-kicker {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}
.panel-frame h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.signal-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.signal-card,
.workflow-card,
.plan-card,
.credits-rules,
.credit-pack,
.faq-card,
.cta-panel,
.comparison-table {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.signal-card {
  padding: 18px;
  border-radius: 18px;
}
.signal-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}
.signal-card p {
  margin: 10px 0 0;
}
.signal-card-featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(62, 38, 24, 0.92), rgba(34, 22, 18, 0.94));
}
.signal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(251, 177, 35, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 0 36px;
}
.stats-strip article {
  padding: 20px 22px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.stats-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}
.stats-strip span {
  color: var(--muted);
  line-height: 1.5;
}
.section {
  padding: 72px 0;
}
.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}
.section-heading h2,
.section-heading h1,
.cta-panel h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.section-heading p:last-child,
.cta-panel p {
  /*max-width: 65ch;  dsm 23 apr 26 */
  margin: 0;
}
.workflow-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}
.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.workflow-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 177, 35, 0.12);
  color: var(--accent);
  font-weight: 700;
}
.workflow-card h3,
.plan-card h3,
.credits-rules h3,
.faq-card h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}
.workflow-card p,
.plan-card p,
.credits-rules p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.plan-card-premium {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(251, 177, 35, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(63, 38, 24, 0.9), rgba(25, 16, 13, 0.96));
}
.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251, 177, 35, 0.12);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-name {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plan-card h3 {
  margin: 0;
  max-width: 14ch;
  font-size: 2rem;
  line-height: 1.08;
}
.plan-summary {
  margin: 14px 0 0;
}
.term-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.term {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.term-highlight {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(251, 177, 35, 0.15), rgba(255, 255, 255, 0.03));
}
.term-label,
.credit-pack-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.term strong,
.credit-pack strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.65;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 14px rgba(49, 203, 115, 0.28);
}
.credits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}
.credits-rules,
.cta-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.credit-packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.credit-pack {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.credit-pack p {
  margin: 12px 0 0;
}
.credit-pack-highlight {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(251, 177, 35, 0.16), rgba(255, 255, 255, 0.04));
}
.comparison-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.comparison-row:first-child {
  border-top: 0;
}
.comparison-head {
  background: rgba(251, 177, 35, 0.08);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.comparison-row span {
  line-height: 1.6;
}
.comparison-row span:first-child {
  color: var(--text);
  font-weight: 700;
}
.comparison-row span:not(:first-child) {
  color: var(--muted);
}
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
}
.contact-aside,
.contact-form-wrap,
.contact-success,
.contact-summary {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}
.contact-aside {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.contact-aside h2,
.contact-success h2,
.contact-summary h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.contact-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.contact-address {
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}
.contact-address strong {
  color: var(--text);
}
.contact-form-wrap {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-field {
  margin: 0;
}
.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}
.contact-control {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(8, 5, 4, 0.48);
  color: var(--text);
  font: inherit;
  line-height: 1.45;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-form textarea.contact-control {
  min-height: 170px;
  resize: vertical;
}
.contact-control:focus {
  border-color: var(--accent);
  background: rgba(8, 5, 4, 0.66);
  box-shadow: 0 0 0 4px rgba(251, 177, 35, 0.12);
}
.contact-control::placeholder {
  color: rgba(210, 184, 166, 0.68);
}
.contact-field.has-error .contact-control {
  border-color: #ff7a6f;
  box-shadow: 0 0 0 4px rgba(255, 122, 111, 0.1);
}
.contact-error {
  margin: 7px 0 0;
  color: #ffb1aa;
  font-size: 0.88rem;
  line-height: 1.45;
}
.contact-error-summary {
  padding: 14px 16px;
  border: 1px solid rgba(255, 122, 111, 0.38);
  border-radius: 12px;
  background: rgba(255, 122, 111, 0.1);
  color: #ffd4d0;
  line-height: 1.55;
}
.contact-error-summary p {
  margin: 0 0 8px;
}
.contact-error-summary ul {
  margin: 0;
  padding-left: 18px;
}
.contact-form .button {
  width: auto;
  min-width: 170px;
  border: 0;
  cursor: pointer;
}
.contact-recaptcha {
  max-width: 68ch;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
.contact-recaptcha a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-success,
.contact-summary {
  max-width: 780px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.contact-success {
  border-color: rgba(49, 203, 115, 0.34);
  background:
    linear-gradient(180deg, rgba(49, 203, 115, 0.14), rgba(255, 255, 255, 0.025)),
    var(--panel);
}
.contact-success p,
.contact-summary dd {
  color: var(--muted);
  line-height: 1.65;
}
.contact-summary {
  margin-top: 18px;
}
.contact-summary dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px 18px;
  margin: 20px 0 0;
}
.contact-summary dt {
  color: var(--accent-soft);
  font-weight: 700;
}
.contact-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.cta-section {
  padding: 12px 0 80px;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 40px;
  border-top: 1px solid var(--line);
}
.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}
.footer-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}
.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 177, 35, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(52, 34, 27, 0.95), rgba(18, 12, 10, 0.96));
}
.cta-panel::after {
  content: '';
  position: absolute;
  inset: auto -50px -70px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(195, 102, 61, 0.28), transparent 70%);
}
/* Testimonials */
.testimonials-section {
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.testimonial-quote-icon {
  font-size: 1.8rem;
  color: var(--accent, #1a2f5e);
  opacity: 0.55;
  line-height: 1;
}
.testimonial-body {
  flex: 1;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
}
.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-name {
  font-size: 0.95rem;
}
.testimonial-title {
  font-size: 0.88rem;
  opacity: 0.72;
}

@media (max-width: 1100px) {
  .hero,
  .credits-layout,
  .contact-layout,
  .pricing-grid,
  .workflow-grid,
  .credit-packs {
    grid-template-columns: 1fr;
  }
  .hero h1,
  .section-heading h2,
  .cta-panel h2,
  .panel-frame h2,
  .plan-card h3 {
    max-width: none;
  }
  .term-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-header,
  .hero,
  .stats-strip,
  .section,
  .cta-section,
  .site-footer {
    width: min(calc(100% - 28px), var(--page-width));
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-actions {
    margin-left: 0;
  }
  .stats-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 28px;
  }
  .comparison-table {
    overflow-x: auto;
  }
  .comparison-row {
    min-width: 760px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 24px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  .section {
    padding: 56px 0;
  }
  .panel-frame,
  .plan-card,
  .credits-rules,
  .credit-pack,
  .faq-card,
  .cta-panel,
  .contact-aside,
  .contact-form-wrap,
  .contact-success,
  .contact-summary,
  .workflow-card {
    padding: 22px;
  }
  .term-list {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button,
  .header-actions .button,
  .contact-form .button {
    width: 100%;
  }
  .contact-summary dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-summary dd {
    margin-bottom: 8px;
  }
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
