:root {
  --bg: #f6f3ee;
  --surface: #fffdf9;
  --surface-2: #efe8de;
  --text: #1f2421;
  --text-muted: #4e5651;
  --accent: #1c7c75;
  --accent-strong: #145650;
  --border: #d7d0c7;
  --ok: #1f8f51;
  --danger: #a33a2e;
  --shadow: 0 10px 30px rgba(31, 36, 33, 0.08);
  --shadow-strong: 0 16px 32px rgba(31, 36, 33, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 10% 0%, #fffdf8, #f6f3ee 42%);
  color: var(--text);
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  max-width: 720px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 238, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
}

.nav-trade-link {
  padding-right: 1rem;
  margin-right: 0.15rem;
  border-right: 1px solid var(--border);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.88rem;
  opacity: 0.82;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 18px rgba(28, 124, 117, 0.3);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 86, 80, 0.35);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface);
}

.btn-secondary:hover {
  background: #fbf8f3;
}

.hero {
  padding: 4.9rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
}

.eyebrow svg {
  width: 0.86rem;
  height: 0.86rem;
  stroke: #256b66;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.08;
}

.hero p {
  margin: 1rem 0 1.35rem;
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.03rem;
}

.hero-points {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.hero-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.hero-points li .icon {
  width: 1.1rem;
  height: 1.1rem;
  font-size: 0.95rem;
  border-radius: 999px;
  color: #12554f;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mockup {
  padding: 1.1rem;
}

.mockup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.8rem;
}

.metric:hover,
.card:hover {
  border-color: #c4bab0;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.04rem;
  font-weight: 700;
}

.metric-value.ok {
  color: var(--ok);
}

.mockup-trend {
  margin-top: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem 0.8rem;
}

.trend-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

.trend-bars {
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.trend-bars span {
  width: 100%;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #3fa89f, #1c7c75);
}

.proof {
  padding: 0.4rem 0 2rem;
}

.proof-inner {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-title {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.proof-chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.proof-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.27rem 0.66rem;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.proof-chip svg {
  width: 0.78rem;
  height: 0.78rem;
  stroke: #256b66;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.strip-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.strip-item {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cards {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.04rem;
}

.card-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #b7d8d4;
  background: #ebf7f6;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card-icon-svg svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  stroke: #256b66;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border-radius: 999px;
  border: 1px solid #b8ddd8;
  background: #edf8f7;
  color: #256b66;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.56rem;
  margin-bottom: 0.48rem;
}

.step-badge svg {
  width: 0.86rem;
  height: 0.86rem;
  stroke: #256b66;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.steps-cards .card {
  padding: 1rem 1.05rem 1.05rem;
}

.steps-cards .card h3 {
  margin-bottom: 0.35rem;
}

.steps-cards .card p {
  line-height: 1.45;
}

.list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.95rem;
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  flex: 0 0 1.15rem;
  transform: translateY(1px);
}

.list strong {
  margin-right: 0.35rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.outcomes {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.outcome {
  margin: 0;
  padding: 1.05rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.outcome-value {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 800;
}

.outcome-label {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.faq-icon {
  width: 1.15rem;
  display: inline-flex;
  justify-content: center;
}

.faq p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}

.pricing-grid {
  align-items: stretch;
}

.featured-price {
  position: relative;
  border-color: #a9d6d2;
  box-shadow: var(--shadow-strong);
}

.featured-tag {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.62rem;
}

.featured-tag svg {
  width: 0.78rem;
  height: 0.78rem;
  stroke: #fff;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.price {
  margin: 0.3rem 0 0.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price strong {
  font-size: 2rem;
  line-height: 1;
}

.price span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-cta {
  margin-top: 0.9rem;
}

.cta-block {
  padding: 2.4rem;
  background: linear-gradient(180deg, #fffdf9, #f7f2ea);
}

.waitlist-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.waitlist-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  background: #fff;
}

.waitlist-meta {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--ok);
  min-height: 1.2rem;
}

.footer {
  padding: 2.2rem 0 4.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 940px) {
  .hero-grid,
  .two-col,
  .cards,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .strip-items {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .cta-block {
    padding: 1.4rem;
  }

  .featured-tag {
    position: static;
    margin-bottom: 0.65rem;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(20, 86, 80, 0.35);
  }
}
