:root {
  --bg: #0d0f12;
  --panel: #151a20;
  --panel-2: #202731;
  --line: #303945;
  --text: #f5f1e9;
  --muted: #aab3bd;
  --accent: #ffb545;
  --green: #38c99b;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 201, 155, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 181, 69, 0.11), transparent 30rem),
    var(--bg);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px min(5vw, 64px);
  background: rgba(13, 15, 18, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff7d4d);
  color: #17120b;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.lead,
.section-heading p,
.price p,
.feature-grid p,
.category,
.pricing-note,
footer span {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #17120b;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.ghost {
  background: var(--panel-2);
  border-color: var(--line);
  color: var(--text);
}

.button.paypal::before {
  content: "P";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 999px;
  background: #003087;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.button.small {
  min-height: 38px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  margin: 0 0 12px;
}

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

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  max-width: 820px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  max-width: 820px;
}

h3 {
  font-size: 18px;
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  max-width: 720px;
}

.actions,
.trust-row,
.export-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span,
.export-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.score-card,
.report-card,
.demo-form,
.feature-grid article,
.price,
.status-list,
.faq-grid details,
.problem-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 26, 32, 0.94);
  box-shadow: var(--shadow);
}

.score-card {
  padding: 24px;
}

.card-top,
.breakdown div,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-top strong {
  font-size: 42px;
  color: var(--accent);
}

.score-bar {
  height: 12px;
  border-radius: 999px;
  background: #101419;
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 16px 0;
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--accent), var(--green));
  transition: width 500ms ease;
}

.breakdown {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.breakdown div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
}

.problem-grid,
.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article,
.feature-grid article,
.price,
.faq-grid details {
  padding: 20px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

input,
textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101419;
  color: var(--text);
  padding: 12px;
  font: inherit;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.report-score {
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  border: 10px solid rgba(255, 181, 69, 0.24);
  border-radius: 999px;
  margin-bottom: 18px;
}

.report-score span {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
}

.report-score small {
  color: var(--muted);
}

.report-card ul {
  color: var(--muted);
  line-height: 1.55;
}

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

.steps div {
  border-top: 2px solid var(--accent);
  padding-top: 14px;
}

.steps strong {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
}

.price strong {
  display: block;
  font-size: 36px;
  margin: 12px 0;
}

.price.featured {
  border-color: var(--accent);
  background: rgba(255, 181, 69, 0.08);
}

.price .button {
  width: 100%;
}

.pricing-note {
  margin-top: 16px;
}

.status-list {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.ok,
.warn {
  font-weight: 900;
  margin-right: 10px;
}

.ok {
  color: var(--green);
}

.warn {
  color: var(--accent);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  line-height: 1.5;
  margin: 12px 0 0;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .demo-grid,
  .problem-grid,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    align-items: flex-start;
  }
}
