:root {
  --background: #f4f1ea;
  --surface: #fffaf0;
  --surface-strong: #ffffff;
  --text: #241f1a;
  --muted: #6f675c;
  --line: #ddd3c4;
  --accent: #2f3a32;
  --accent-soft: #e5ded0;
  --shadow: 0 20px 50px rgba(46, 38, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  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(255, 242, 168, 0.45), transparent 34rem),
    linear-gradient(135deg, #f8f5ee 0%, var(--background) 100%);
}

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

.hero {
  max-width: 820px;
  margin-bottom: 40px;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.45);
}

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

.license-card,
.note {
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.license-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 28px;
}

.license-card.highlighted {
  background: var(--surface-strong);
  border-color: #b7aa97;
  transform: translateY(-8px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.description {
  color: var(--muted);
  line-height: 1.55;
}

.features {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.features li {
  position: relative;
  padding-left: 24px;
  color: #3e372f;
  line-height: 1.4;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.price {
  margin: auto 0 0;
  color: var(--muted);
  font-weight: 700;
}

.price span {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

.note {
  margin-top: 24px;
  padding: 28px;
}

.note p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

  .license-card,
  .license-card.highlighted {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding: 34px 0;
  }

  .license-card,
  .note {
    border-radius: 22px;
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
