* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f7f3ea;
  color: #1d3328;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d8ccb9;
}

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

.brand img {
  height: 48px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #405247;
}

.nav-links a:hover {
  color: #b45d33;
}

.menu-button {
  display: none;
  background: #1f5b3d;
  color: white;
  border: 0;
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: 0;
  background: #1f5b3d;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #17452e;
}

.button.secondary {
  background: transparent;
  color: #1f5b3d;
  border: 2px solid #1f5b3d;
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
}

.pill {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid #c7b99f;
  background: rgba(255,255,255,0.62);
  color: #b45d33;
  font-weight: 900;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 760px;
}

.hero p {
  margin-top: 24px;
  max-width: 650px;
  font-size: 1.16rem;
  color: #4c5d52;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(29, 51, 40, 0.12);
}

.hero-card-inner {
  background: #1f5b3d;
  color: white;
  border-radius: 26px;
  padding: 28px;
}

.hero-card-inner small {
  color: #e9dfcf;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.hero-card-inner h2 {
  font-size: 2.2rem;
  line-height: 1.05;
  margin-top: 12px;
}

.checklist-preview {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.check {
  background: #f7f3ea;
  color: #405247;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 750;
}

section {
  padding: 78px 0;
}

.dark {
  background: #1f5b3d;
  color: white;
}

.dark p {
  color: #e7eadf;
}

.section-label {
  color: #b45d33;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 950;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.dark .section-label {
  color: #e9dfcf;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 780px;
  font-size: 1.1rem;
  color: #596a60;
}

.center {
  text-align: center;
}

.center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid #d8ccb9;
  border-radius: 28px;
  padding: 24px;
  min-height: 220px;
  box-shadow: 0 12px 36px rgba(29, 51, 40, 0.06);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #e9dfcf;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.18;
}

.card p {
  color: #596a60;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.checklist-section {
  background: white;
  border-top: 1px solid #d8ccb9;
  border-bottom: 1px solid #d8ccb9;
}

.progress-box {
  margin-top: 26px;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 20px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.text-button {
  border: 0;
  background: transparent;
  color: #b45d33;
  font-weight: 900;
  cursor: pointer;
}

.progress-bar {
  height: 14px;
  background: #e9dfcf;
  border-radius: 999px;
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 0%;
  background: #1f5b3d;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.todo-card {
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.todo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
}

.todo-item input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #1f5b3d;
}

.todo-item span {
  font-weight: 750;
  color: #405247;
}

.todo-item:has(input:checked) {
  background: #edf5ef;
  border-color: #9bb9a4;
}

.todo-item:has(input:checked) span {
  text-decoration: line-through;
  color: #6f8177;
}

.panel {
  background: #e9dfcf;
  border-radius: 34px;
  padding: 36px;
}

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

.list-item {
  background: rgba(255,255,255,0.76);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(216, 204, 185, 0.8);
}

.list-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.list-item span {
  color: #596a60;
}

.directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.directory-card {
  background: white;
  border: 1px solid #d8ccb9;
  border-radius: 24px;
  padding: 20px;
}

.directory-card h3 {
  margin-bottom: 8px;
}

.directory-card p {
  color: #596a60;
  font-size: 0.98rem;
}

.contact {
  padding-bottom: 78px;
}

.contact-box {
  background: #1d3328;
  color: white;
  border-radius: 34px;
  padding: 46px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(29, 51, 40, 0.2);
}

.contact-box p {
  color: #e7eadf;
  max-width: 760px;
  margin: 0 auto 28px;
}

.fake-form {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 26px auto 0;
}

input, textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.disclaimer {
  font-size: 0.92rem;
  color: #d9ded4 !important;
  margin-top: 18px !important;
}

.founder {
  background: white;
  border-top: 1px solid #d8ccb9;
}

.founder-box {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 28px;
  align-items: center;
  background: #f7f3ea;
  border: 1px solid #d8ccb9;
  border-radius: 34px;
  padding: 34px;
}

.founder-logo {
  background: white;
  border-radius: 30px;
  padding: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d8ccb9;
}

.founder-logo img {
  width: 100%;
  max-width: 260px;
}

.founder-extra {
  margin-top: 14px;
}

footer {
  padding: 28px 0;
  border-top: 1px solid #d8ccb9;
  text-align: center;
  color: #596a60;
  font-size: 0.95rem;
}

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

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid #d8ccb9;
    border-radius: 22px;
    padding: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .founder-box {
    grid-template-columns: 1fr;
  }

  .cards,
  .directory {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .contact-box {
    padding: 30px 20px;
  }
}
a.card {
  display: block;
}

.card-action {
  display: inline-flex;
  margin-top: 18px;
  color: #b45d33;
  font-weight: 900;
}
