:root {
  --ink: #17130f;
  --muted: #6f6459;
  --paper: #f8f1e7;
  --card: #fffaf2;
  --line: #eadbca;
  --ember: #c86a24;
  --ember-dark: #8f3f16;
  --green: #325b3a;
  --shadow: 0 30px 80px rgba(74, 44, 20, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(200, 106, 36, 0.22), transparent 34rem),
    linear-gradient(135deg, #fff7ed 0%, #efe1cf 48%, #f9efe3 100%);
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--ink);
}

.nav-links {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: 72vh;
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--ember-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  box-shadow: 0 12px 32px rgba(200, 106, 36, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel {
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(80, 44, 18, 0.14);
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d7c2aa;
}

.license-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #1f1a15, #4c2c18);
}

.license-card h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.license-card strong {
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffe9d1;
  background: rgba(255, 255, 255, 0.13);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.status-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.42);
  font-weight: 800;
}

.typing-preview {
  margin-top: 42px;
  padding: 24px;
  border-radius: 24px;
  background: #241a13;
  color: #f8e6d2;
}

.cursor-line {
  color: #fff7ed;
  font-size: 1.35rem;
  line-height: 1.4;
}

.cursor-line span {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  margin-left: 4px;
  vertical-align: -0.18em;
  background: var(--ember);
  animation: blink 1s steps(2, jump-none) infinite;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.cards article,
.pricing {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 50px rgba(74, 44, 20, 0.08);
}

.cards article {
  padding: 28px;
}

.cards span {
  color: var(--ember-dark);
  font-weight: 900;
}

.cards h2,
.pricing h2 {
  margin: 12px 0;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.cards p,
.pricing p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 34px;
  margin-bottom: 44px;
}

.price-box {
  min-width: 240px;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: #20160f;
}

.price-box span {
  display: block;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.price-box p {
  color: #d8c2ac;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--muted);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

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

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

  .panel {
    min-height: auto;
  }

  footer,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
