
:root {
  --bg: #fff;
  --card: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #dddddd;
  --green: #78b443;
  --red: #d13a32;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geologica', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 em, h2 em {
  color: var(--green);
  font-style:normal;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 28px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

img {
  width: 100%;
  height: auto;
}

.logo img {
  height: 54px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.cta-small {
  background: var(--text);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
}

.hero {
  padding: 80px 0 20px;
}

.eyebrow {
  display: inline-block;
  background: rgba(120,180,67,0.12);
  color: #3f6720;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
  padding: 12px 20px;
  border-radius: 999px;

  background: #e7f0df;
  color: #5f8d3a;

  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-title {
  max-width: 900px;
  margin: 0 0 28px 0;

  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 700;

  color: #111;
}

.hero-accent {
  display: inline;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0;

  font-size: 30px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 400;

  color: #666;
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.05em;
  max-width: 900px;
}
.feature-heading {
  font-size:40px;
  text-align:center;
}

.section-copy ul li {
  margin-bottom:.5rem;
}

.hero p {
  font-size: 22px;
  color: var(--muted);
  max-width: 820px;
  margin: 0 0 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: white;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: #d9d9d9;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 24px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

section {
  padding: 60px 0;
}
section.hero {padding-top:0;}

.section-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.section-copy {
  font-size: 20px;
  color: var(--muted);
  max-width: 840px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.insight-note-list {
  margin-top: 26px;
  color: #3f7f25;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 300;
  margin-left:15px;
}

.insight-note-list p {
  margin: 0 0 10px;
}

.insight-note-list p,
.insight-note-list--negative p
{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
}

.insight-note-list p::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 800;
  line-height: 1.4;
}

.insight-note-list--negative p::before {
  content: "✕";
  flex-shrink: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #e53935;
}

.quote span {
  color: var(--green);
}

.bucket {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #efefef, #dadada);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 26px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 16px;
}

.image-placeholder {
  background: #d9d9d9;
  border-radius: 22px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 22px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--text);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing {
  background: #111;
  color: white;
  border-radius: 32px;
  padding: 60px;
  margin-top: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px;
}

.price {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 10px 0;
}

.pricing-card ul {
  padding-left: 20px;
  color: rgba(255,255,255,0.75);
}

.pricing-card li {
  margin-bottom: 10px;
}

.closing {
  text-align: center;
  padding-bottom: 120px;
}

.closing p {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 22px;
  color: var(--muted);
}

footer {
  padding: 50px 0 80px;
  color: #777;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 900px) {
  .two-col,
  .stats-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .pricing {
    padding: 36px;
  }

  .hero p,
  .section-copy,
  .closing p {
    font-size: 19px;
  }
}

.important-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid #6cab3f;
  border-radius: 14px;

  background: rgba(108, 171, 63, 0.10);
  color: #2f3a2b;

  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.important-note strong {
  display: block;
  margin-bottom: 6px;

  color: #4f8f2f;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founder-story {
  padding: 96px 0 64px;
}

.founder-story__intro h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.founder-story__intro {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.founder-story__intro p {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: 21px;
  line-height: 1.45;
  color: #5f5f5f;
}

.founder-story__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 42px 0 44px;
}

.founder-story__card {
  padding: 30px 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.founder-story__card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.founder-story__card p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.45;
  color: #666;
}

.founder-story__card p:last-child {
  margin-bottom: 0;
}

.founder-focus {
  margin-top: 34px;
  padding: 42px 48px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.founder-focus h3 {
  max-width: 740px;
  margin: 0 0 22px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.founder-focus p {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.founder-focus p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .founder-story {
    padding: 72px 0 48px;
  }

  .founder-story__grid {
    grid-template-columns: 1fr;
  }

  .founder-story__card,
  .founder-focus {
    padding: 26px 24px;
    border-radius: 22px;
  }
}

.founder-footnote {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.45;
  text-align:center;
}