:root {
  --bg: #f8f0ea;
  --dot: rgba(117, 51, 70, 0.12);
  --card: rgba(255, 250, 248, 0.92);
  --text: #442b33;
  --muted: #7f6b72;
  --accent: #7b3148;
  --accent-soft: #edd7de;
  --line: #eedce2;
  --green: #29cc62;
  --green-dark: #1fb456;
  --shadow: 0 20px 50px rgba(96, 45, 61, 0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 18px 18px;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #491827, #5f2136, #491827);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 10px 16px;
}

.page {
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 34px 16px 48px;
}

.landing-card {
  width: 100%;
  max-width: 430px;
  background: var(--card);
  border: 1px solid rgba(123, 49, 72, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 24px 18px 18px;
}

.hero {
  text-align: center;
}

.avatar-ring {
  width: 94px;
  height: 94px;
  margin: 0 auto 16px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4c6d4, #ca91a3);
  box-shadow: 0 12px 28px rgba(123, 49, 72, 0.16);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff3f6, #f8e4ea);
  color: var(--accent);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 700;
  color: #41242d;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: #5d2334;
}

.subtitle {
  max-width: 320px;
  margin: 0 auto 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.cta-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15px;
  box-shadow: 0 14px 30px rgba(41, 204, 98, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow: 0 18px 34px rgba(41, 204, 98, 0.34);
}

.cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

.microcopy {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #51683c;
}

.progress-card {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fffaf8;
  padding: 12px;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #efe3e7;
}

.progress-fill {
  width: 73%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7d3048, #c36f8b);
  transition: width 0.35s ease;
}

.progress-note {
  margin-top: 8px;
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.features-title {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin: 18px 0 14px;
}

.features-list {
  display: grid;
  gap: 10px;
}

.feature-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: #fffaf8;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cb89a0, #7b3148);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 4px;
}

.feature-card h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #3f2830;
}

.feature-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.footer-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  color: #6b5660;
}

.footer-links a {
  text-decoration: none;
}

.signature-pill {
  width: fit-content;
  margin: 14px auto 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7b3148, #5f2235);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(123, 49, 72, 0.18);
}

.social-proof-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999;
  width: calc(100% - 24px);
  max-width: 430px;
  background: rgba(255, 250, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(96, 45, 61, 0.12);
  backdrop-filter: blur(8px);
}

.toast-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #764154, #5f2235);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.social-proof-toast p {
  font-size: 12px;
  color: #624d57;
}

.social-proof-toast strong {
  color: #3d2830;
}

@media (max-width: 480px) {
  .page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .landing-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 12px;
  }
}
