:root {
  --bg: #f7f4ee;
  --paper: #fffdf9;
  --ink: #172535;
  --muted: #556777;
  --line: #e2d8ca;
  --brand: #d95b37;
  --brand-strong: #bf4828;
  --teal: #0f8b8d;
  --teal-strong: #0b6f70;
  --hero-dark: #1c3144;
  --shadow-soft: 0 14px 34px rgba(23, 37, 53, 0.10);
  --shadow-card: 0 10px 24px rgba(23, 37, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background:
    radial-gradient(circle at 10% 8%, rgba(217, 91, 55, 0.12), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(15, 139, 141, 0.12), transparent 38%),
    linear-gradient(180deg, #faf7f1 0%, #f3ece1 100%);
}

.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 84px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(226, 216, 202, 0.9);
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(6px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, var(--brand), #ea7a42);
  box-shadow: 0 7px 16px rgba(217, 91, 55, 0.28);
}

.hero {
  position: relative;
  background:
    radial-gradient(circle at 100% 100%, rgba(15, 139, 141, 0.12), transparent 44%),
    radial-gradient(circle at 0% 0%, rgba(217, 91, 55, 0.10), transparent 42%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 52px 42px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 270px;
  height: 270px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 139, 141, 0.2), transparent 70%);
  pointer-events: none;
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3d1f;
  background: #fde7db;
  border: 1px solid rgba(217, 91, 55, 0.28);
}

h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  max-width: 820px;
}

.hero-sub {
  margin: 18px 0 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), #eb7a35);
  box-shadow: 0 10px 22px rgba(217, 91, 55, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 13px 26px rgba(217, 91, 55, 0.34);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.section {
  margin-top: 32px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(23, 37, 53, 0.12);
}

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

.card p {
  margin: 0;
  color: var(--muted);
}

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

.step {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step-num {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(145deg, var(--teal), #1aa9ab);
}

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

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.price-card.highlight {
  border-color: rgba(217, 91, 55, 0.45);
  background:
    linear-gradient(0deg, rgba(255, 248, 239, 0.8), rgba(255, 248, 239, 0.8)),
    linear-gradient(140deg, rgba(217, 91, 55, 0.10), rgba(15, 139, 141, 0.08));
  box-shadow: 0 13px 30px rgba(217, 91, 55, 0.16);
}

.price {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 38px;
  line-height: 1;
  margin: 10px 0 8px;
}

.price small {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.feature-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin-top: 8px;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓ ";
  color: var(--teal-strong);
  font-weight: 700;
}

.cta {
  margin-top: 32px;
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(125deg, #1b3042 0%, #22435c 55%, #0f8b8d 120%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 37, 53, 0.22);
}

.cta h2 {
  font-size: clamp(24px, 4vw, 38px);
}

.cta p {
  margin: 10px 0 20px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.10);
}

.footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid-3,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 42px 26px;
  }
}

@media (max-width: 720px) {
  .page-wrap {
    padding: 14px 12px 60px;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .grid-3,
  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    border-radius: 18px;
    padding: 30px 18px;
  }

  .btn {
    width: 100%;
  }
}
