:root {
  --teal: #0e5a4e;
  --teal-deep: #083b33;
  --mint: #e4f4ec;
  --mint-soft: #f3faf6;
  --gold: #f2b33d;
  --gold-deep: #c98a12;
  --ink: #12312b;
  --sub: #4a6b62;
  --line: #cbe3d6;
  --white: #ffffff;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--mint-soft);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.display, h1, h2, h3 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { color: var(--teal); }

/* ---------- header ---------- */
.site-header {
  background: var(--mint-soft);
  border-bottom: 3px solid var(--teal);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 16px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 26px; color: var(--teal);
  letter-spacing: -0.5px; text-decoration: none;
}
.logo span { color: var(--gold-deep); }
.nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px;
}
.nav a:hover { color: var(--teal); }
.btn {
  display: inline-block; background: var(--teal); color: #eaf7f0;
  font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 99px; font-size: 15px; font-family: inherit;
}
.btn:hover { background: var(--teal-deep); }
.btn.gold { background: var(--gold); color: var(--teal-deep); }
.btn.gold:hover { background: var(--gold-deep); color: #fff; }
.btn.big { padding: 14px 32px; font-size: 17px; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; }
.hero h1 {
  font-weight: 800; font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08; letter-spacing: -1px; max-width: 820px;
}
.hero h1 em, .hl-gold {
  font-style: normal; color: var(--teal);
  background: linear-gradient(transparent 62%, var(--gold) 62%, var(--gold) 92%, transparent 92%);
}
.lede { font-size: 19px; color: var(--sub); max-width: 720px; margin-top: 18px; }
.lede strong { color: var(--ink); }
.hero-ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 48px 0; }
.sec-label {
  font-weight: 800; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
h2 { font-weight: 800; font-size: clamp(26px, 3.5vw, 36px); letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 14px; }
h3 { font-weight: 800; font-size: 20px; color: var(--teal-deep); margin-bottom: 8px; }
.sub { color: var(--sub); }

/* ---------- cards & grids ---------- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.card {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: 16px; padding: 26px 28px;
}
.card.gold { border-color: var(--gold); background: #fff9ec; }
.card.teal { background: var(--teal); color: #eaf7f0; border-color: var(--teal); }
.card.teal h3 { color: #fff; }
.card.teal strong, .card.teal b { color: var(--gold); }

/* earn list */
.earn { list-style: none; }
.earn li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 16px;
}
.earn li:last-child { border-bottom: none; }
.earn .cr { font-weight: 700; color: var(--teal); white-space: nowrap; }
.earn .cr small { font-weight: 600; color: var(--sub); font-size: 12px; }

/* membership tiers */
.mem {
  border: 1.5px solid var(--line); border-radius: 14px; padding: 20px;
  background: var(--white); text-align: center; position: relative;
}
.mem.pop { border-color: var(--gold); background: #fff9ec; }
.mem.pop::after {
  content: "Most popular"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: var(--teal-deep);
  font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 99px; white-space: nowrap;
}
.mem .nm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; color: var(--teal-deep); }
.mem .pr { font-size: 30px; font-weight: 800; color: var(--teal); margin: 4px 0; font-family: 'Bricolage Grotesque', sans-serif; }
.mem .pr small { font-size: 14px; font-weight: 600; color: var(--sub); }
.mem .mu { font-size: 15px; font-weight: 700; color: var(--gold-deep); }
.mem .wbr {
  font-size: 12px; font-weight: 700; color: var(--teal-deep); background: var(--mint);
  border: 1px solid var(--line); border-radius: 99px; padding: 4px 12px; margin-top: 10px; display: inline-block;
}

/* ladder */
.ladder { list-style: none; position: relative; margin-left: 10px; }
.ladder::before {
  content: ""; position: absolute; left: 11px; top: 20px; bottom: 20px;
  width: 3px; background: var(--line); border-radius: 3px;
}
.rung { display: flex; align-items: center; gap: 16px; padding: 10px 0; position: relative; }
.dot {
  width: 25px; height: 25px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--teal); z-index: 1; flex-shrink: 0;
}
.rung.big .dot { background: var(--gold); border-color: var(--gold-deep); }
.rung-body { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tier .t { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; }
.tier .m { font-size: 13px; color: var(--sub); font-weight: 600; }
.amt { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 28px; color: var(--teal); white-space: nowrap; }
.rung.big .amt { font-size: 34px; color: var(--gold-deep); }

/* pricing plans */
.plan-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; color: var(--teal-deep); }
.plan-units { font-size: 14px; color: var(--sub); margin-bottom: 10px; }
.plan-fee { font-size: 17px; font-weight: 600; }
.plan-fee span { color: var(--teal); font-weight: 800; font-size: 22px; }
.plan-min { font-size: 14px; color: var(--sub); margin-top: 4px; }

/* fee examples */
.fees { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.fee { background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 8px; text-align: center; }
.fee-rent { font-size: 13px; color: var(--sub); }
.fee-amt { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 24px; color: var(--teal); margin-top: 2px; }
.fee-amt small { font-size: 12px; color: var(--sub); font-family: 'Inter', sans-serif; font-weight: 600; }
.fee.cap { border-color: var(--gold); background: #fff9ec; }
.fee.cap .fee-amt { color: var(--gold-deep); }

/* tables */
.rtable { width: 100%; border-collapse: collapse; background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.rtable th {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sub); text-align: left; padding: 12px 16px; background: var(--mint);
}
.rtable td { font-size: 16px; padding: 11px 16px; border-top: 1px solid var(--line); }
.rtable td:last-child, .rtable th:last-child { text-align: right; }
.rtable .pct { font-weight: 700; color: var(--teal); }

/* checklist */
.inc { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.inc li { font-size: 16px; display: flex; gap: 10px; line-height: 1.5; }
.inc li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* steps */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.steps li { counter-increment: step; background: var(--white); border: 1.5px solid var(--line); border-radius: 16px; padding: 24px; }
.steps li::before {
  content: counter(step); display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff;
  font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; margin-bottom: 12px;
}
.steps b { display: block; font-size: 18px; color: var(--teal-deep); margin-bottom: 4px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; }

/* FAQ */
.faq-item { background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; padding: 22px 26px; margin-bottom: 14px; }
.faq-item h3 { font-size: 18px; margin-bottom: 6px; }
.faq-item p { color: var(--sub); font-size: 16px; }
.faq-item p + p { margin-top: 8px; }

/* forms */
.wl-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.wl-form .full { grid-column: 1 / -1; }
.wl-form label { display: block; font-size: 13px; font-weight: 700; color: var(--teal-deep); margin-bottom: 4px; }
.wl-form input, .wl-form select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 16px; font-family: inherit; background: var(--white); color: var(--ink);
}
.wl-form input:focus, .wl-form select:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.wl-msg { grid-column: 1 / -1; font-weight: 600; }
.wl-msg.ok { color: var(--teal); }
.wl-msg.err { color: #a33; }

/* misc */
.note { font-size: 14px; color: var(--sub); margin-top: 12px; line-height: 1.5; }
.updated { font-size: 13px; color: var(--sub); font-style: italic; }
.band {
  background: var(--teal); color: #eaf7f0; border-radius: 18px; padding: 34px 38px;
}
.band b, .band strong { color: var(--gold); }
.band h2 { color: #fff; }

/* footer */
.site-footer { border-top: 1.5px solid var(--line); margin-top: 40px; padding: 36px 0 48px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 26px; }
.site-footer h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 10px; }
.site-footer a { display: block; text-decoration: none; color: var(--sub); font-size: 15px; padding: 3px 0; }
.site-footer a:hover { color: var(--teal); }
.fineprint { font-size: 12.5px; color: var(--sub); line-height: 1.6; border-top: 1px solid var(--line); padding-top: 18px; }

@media (max-width: 860px) {
  .grid2, .grid3, .steps, .site-footer .cols { grid-template-columns: 1fr; }
  .fees { grid-template-columns: repeat(3, 1fr); }
  .wl-form { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 36px; }
  section { padding: 34px 0; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-header { position: static; }
  .nav { gap: 12px 16px; }
  .nav a.nav-link { font-size: 14px; }
  .nav .btn { padding: 8px 16px; font-size: 14px; }
}
