@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --bg: #fffaf6;
  --panel: #ffffff;
  --panel-strong: #fff2eb;
  --ink: #1f1c22;
  --muted: #6f6b73;
  --accent: #d26f6f;
  --accent-2: #f3b27a;
  --border: #f1e4d9;
  --shadow: 0 28px 72px rgba(63, 52, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 18% 20%, rgba(210, 111, 111, 0.12), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(243, 178, 122, 0.14), transparent 32%),
    radial-gradient(circle at 40% 78%, rgba(255, 216, 196, 0.25), transparent 38%),
    var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.page {
  padding-bottom: 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d26f6f, #c45a5a);
  color: #fff;
  font-size: 14px;
}

.brand-name {
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  background: rgba(210, 111, 111, 0.1);
  color: #b04b4b;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-weight: 700;
  color: var(--muted);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-balanced {
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(210, 111, 111, 0.12);
  color: #b04b4b;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  font-family: 'Playfair Display', 'Manrope', serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Playfair Display', 'Manrope', serif;
  margin: 6px 0 10px;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.01em;
}

h3 {
  margin: 6px 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn-small {
  padding: 10px 14px;
}

.btn-primary {
  background: linear-gradient(130deg, #d26f6f, #f3b27a);
  color: #402622;
  box-shadow: 0 18px 40px rgba(210, 111, 111, 0.25);
}

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

.btn-ghost {
  border-color: rgba(63, 52, 39, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(63, 52, 39, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(210, 111, 111, 0.3);
  color: #b04b4b;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(210, 111, 111, 0.12);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  border: 1px solid rgba(210, 111, 111, 0.32);
}

.pill-amber {
  background: rgba(243, 178, 122, 0.22);
  border-color: rgba(243, 178, 122, 0.4);
}

.pill-outline {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.metric-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.metric-value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #b04b4b;
}

.metric-label {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-board {
  background: linear-gradient(150deg, #ffffff, #fff2eb);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero-board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(243, 178, 122, 0.2), transparent 42%);
  pointer-events: none;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.board-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  font-weight: 800;
}

.board-title {
  margin: 2px 0 0;
  font-size: 20px;
}

.board-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(210, 111, 111, 0.14);
  color: var(--ink);
  font-weight: 800;
  border: 1px solid rgba(210, 111, 111, 0.4);
}

.board-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.board-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(63, 52, 39, 0.03);
  border: 1px solid rgba(63, 52, 39, 0.06);
}

.board-name {
  margin: 0;
  font-weight: 800;
}

.board-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green { background: #d26f6f; }
.dot-blue { background: #f3b27a; }
.dot-amber { background: #f3c9a8; }

.board-highlight {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(63, 52, 39, 0.14);
  background: rgba(255, 242, 235, 0.7);
}

.board-highlight-title {
  margin: 0 0 4px;
  font-weight: 800;
}

.board-highlight-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.board-foot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.panel-metric {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #b04b4b;
}

.panel-label {
  margin: 2px 0 0;
  color: var(--muted);
}

.section {
  margin: 66px 0 0;
  padding: 18px 0 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tile {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(210, 111, 111, 0.12);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 8px;
}

.ribbon {
  margin-top: 70px;
  padding: 26px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

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

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b04b4b;
  font-weight: 800;
}

.note {
  background: linear-gradient(150deg, #ffffff, #fff2eb);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.note-title {
  margin: 0 0 6px;
  font-weight: 800;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.02);
}

.step {
  min-width: 58px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #b04b4b;
  background: rgba(210, 111, 111, 0.1);
  padding: 4px 10px;
}

.step-title {
  margin: 0 0 4px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(210, 111, 111, 0.5);
  box-shadow: 0 26px 60px rgba(210, 111, 111, 0.18);
}

.plan-name {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 800;
}

.plan-price {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 6px;
}

.plan-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.5;
  display: grid;
  gap: 6px;
}

.plan-footnote {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cta {
  margin: 70px 0 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, rgba(210, 111, 111, 0.12), rgba(243, 178, 122, 0.16));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

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

  .hero {
    padding-top: 38px;
  }

  .hero-board {
    margin-top: 4px;
  }

  .board-foot {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .board-foot {
    grid-template-columns: 1fr;
  }
}
