:root {
  color: #172033;
  background: #f5f7fb;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(255, 122, 26, 0.1), transparent 34%),
    linear-gradient(260deg, rgba(49, 88, 255, 0.12), transparent 36%),
    #f5f7fb;
}

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

button {
  font: inherit;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  min-height: 560px;
}

.hero-copy,
.flow-card,
.value-grid article,
.script-card {
  border: 1px solid #e6e9f2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.1);
}

.hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #d65118;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: #526078;
  font-size: 18px;
  line-height: 1.75;
}

.actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff7a1a, #e92c3a);
  box-shadow: 0 14px 30px rgba(233, 44, 58, 0.24);
}

.secondary {
  color: #172033;
  border: 1px solid #d7ddea;
  background: #fff;
}

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

.proof-row span {
  border: 1px solid #ccebdc;
  border-radius: 5px;
  padding: 6px 10px;
  color: #128450;
  background: #eafff4;
  font-size: 13px;
  font-weight: 800;
}

.flow-card {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 24px;
}

.price {
  display: grid;
  gap: 5px;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  background: #172033;
}

.price span,
.price em {
  color: #b8c1d4;
  font-style: normal;
}

.price strong {
  font-size: 58px;
  line-height: 1;
}

.flow-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #34405a;
  font-weight: 700;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.value-grid article {
  padding: 22px;
}

.value-grid span {
  color: #3158ff;
  font-weight: 900;
}

.value-grid p,
.script-card p {
  color: #526078;
  line-height: 1.7;
}

.script-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
}

.script-card p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .hero,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .script-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .hero-copy,
  .flow-card,
  .script-card {
    padding: 20px;
  }

  h1 {
    font-size: 38px;
  }

  .actions .btn {
    width: 100%;
  }
}
