:root {
  --bg: #f7efe2;
  --bg-accent: #f1c889;
  --surface: rgba(255, 250, 242, 0.9);
  --ink: #1f1b16;
  --muted: #5f5347;
  --line: rgba(66, 49, 30, 0.12);
  --teal: #1f7a73;
  --shadow: 0 24px 60px rgba(75, 48, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.72), transparent 30%),
    linear-gradient(180deg, var(--bg-accent), var(--bg));
}

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

.hero {
  padding: 24px 0 32px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--teal);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  max-width: 11ch;
}

.hero-copy {
  max-width: 62ch;
  margin-top: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-heading h2 {
  margin: 0;
}

.panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.signup-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: bold;
}

.hidden-field {
  display: none !important;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 1px solid rgba(66,49,30,0.18);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255,255,255,0.86);
}

.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: bold;
  background: var(--teal);
  color: white;
  cursor: pointer;
}

.fact-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}

.prices-panel {
  grid-column: 1 / -1;
}

.price-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.price-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  overflow: hidden;
}

.price-header,
.price-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.price-header span,
.price-meta span,
.form-status {
  color: var(--muted);
}

.price-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 16px;
  margin-bottom: 12px;
  color: var(--muted);
}

.included-cost {
  font-weight: bold;
  color: var(--teal);
}

.jump-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 36px);
  margin: 16px -18px -18px;
  padding: 14px 18px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.price-total {
  font-size: 1.6rem;
  font-weight: bold;
}

.meter-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.08);
  overflow: hidden;
  margin: 14px 0 12px;
}

.meter-fill {
  height: 100%;
  border-radius: inherit;
}

.meter-green {
  background: linear-gradient(90deg, #4ea96e, #7dc95e);
}

.meter-amber {
  background: linear-gradient(90deg, #d29f39, #f0c45a);
}

.meter-red {
  background: linear-gradient(90deg, #c85d5d, #ea7a7a);
}

.fact-card strong,
.fact-card span {
  display: block;
}

.fact-card span,
.form-status {
  color: var(--muted);
}

.form-status {
  min-height: 1.5em;
  margin-top: 16px;
}

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