:root {
  --bg: #06080b;
  --surface: #10151b;
  --surface-soft: #151c24;
  --text: #f4f7fb;
  --muted: #a8b1be;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff5d1e;
  --orange-soft: #ff7b3e;
  --green: #1fd28f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(900px 500px at 0% -15%, rgba(0, 170, 255, 0.16), transparent 62%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 93, 30, 0.24), transparent 66%),
    var(--bg);
  min-height: 100vh;
}

.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px 24px 56px;
}

.hero {
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(380px 220px at 8% 10%, rgba(255, 93, 30, 0.2), transparent 70%),
    radial-gradient(300px 200px at 92% 85%, rgba(0, 169, 255, 0.13), transparent 70%),
    linear-gradient(150deg, rgba(21, 26, 33, 0.96), rgba(10, 14, 19, 0.96));
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(30px, 5.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 900px;
}

.hero p {
  color: #d2dceb;
  max-width: 860px;
  font-size: 16px;
}

.metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(20, 27, 35, 0.94), rgba(13, 18, 24, 0.94));
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
}

.metric-value {
  margin-top: 6px;
  font-size: clamp(24px, 4.1vw, 34px);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section {
  margin-top: clamp(40px, 6vw, 72px);
}

.section h2 {
  font-size: clamp(28px, 4.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section p {
  color: #d0d9e6;
  max-width: 860px;
}

.problem-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(17, 23, 30, 0.96), rgba(11, 16, 21, 0.96));
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

.impact {
  margin-top: 26px;
  border: 1px solid rgba(255, 123, 62, 0.45);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(240px 140px at 84% 20%, rgba(255, 93, 30, 0.2), transparent 70%),
    linear-gradient(160deg, rgba(18, 24, 31, 0.96), rgba(10, 15, 21, 0.96));
}

.impact h3 {
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.impact p {
  color: #d5deea;
}

.highlight {
  color: #fff;
  font-weight: 700;
}

.value-box {
  margin-top: 18px;
  border: 1px solid rgba(31, 210, 143, 0.4);
  background: rgba(31, 210, 143, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #b4ffe0;
}

.results-list {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 11px;
}

.results-list li {
  color: #e7eff9;
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.results-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--orange-soft));
  position: absolute;
  left: 0;
  top: 8px;
}

.before-after {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.state-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(160deg, rgba(16, 22, 29, 0.95), rgba(10, 14, 19, 0.95));
}

.state-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.state-card.after {
  border-color: rgba(31, 210, 143, 0.45);
}

.closing {
  margin-top: 24px;
  font-size: clamp(22px, 3.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.btn-wrap {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-main {
  background: linear-gradient(120deg, var(--orange), var(--orange-soft));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 93, 30, 0.3);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 93, 30, 0.35);
}

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

  .before-after {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 20px 14px 40px;
  }

  .hero,
  .impact,
  .metric-card,
  .problem-card,
  .state-card {
    border-radius: 14px;
  }

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