:root {
  --bg: #f5f6f3;
  --text: #101614;
  --muted: #5f6964;
  --card: #ffffff;
  --line: #dfe6de;
  --green: #4caf50;
  --green-deep: #1f5f2c;
  --green-soft: #e6f4e5;
  --dark: #08110d;
  --shadow: 0 18px 45px rgba(9, 18, 13, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: #05100b;
  color: #d6ead6;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.topbar-inner span { position: relative; }
.topbar-inner span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -16px;
  color: #7fbe79;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compact { position: static; }
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 17px;
  line-height: 1;
}
.brand em {
  display: block;
  margin-top: 4px;
  color: var(--green-deep);
  font-style: normal;
  font-weight: 700;
}
.brand-mark {
  width: 54px;
  height: 54px;
  color: var(--green);
  flex: 0 0 auto;
}
.nav {
  display: flex;
  gap: 28px;
  color: #59625f;
  font-size: 15px;
  font-weight: 600;
}
.nav a:hover { color: var(--green-deep); }
.nav-cta { min-width: 148px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #57bb59 0%, #3f9b43 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(67, 155, 67, 0.22);
}
.btn-secondary {
  background: #fff;
  color: var(--green-deep);
  border-color: var(--line);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #07110d;
}
.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg {
  background-image: linear-gradient(90deg, rgba(5, 12, 8, 0.88) 0%, rgba(5, 12, 8, 0.68) 35%, rgba(5, 12, 8, 0.36) 100%), url('../images/hero-coastal.png');
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 40px;
  padding: 54px 0 46px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(71, 145, 72, 0.18);
  border: 1px solid rgba(125, 208, 106, 0.2);
  color: #e8f7e5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow.light {
  background: #eef6ee;
  color: var(--green-deep);
  border-color: #d4e7d5;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.94;
  margin: 0 0 18px;
}
.hero h1 span { color: #68d05f; }
.hero-copy > p {
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  font-size: 23px;
  line-height: 1.5;
  margin: 0;
}
.hero-copy > p strong { color: #7fd56f; }
.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.hero-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 185px;
}
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 195, 96, 0.16);
  color: #72d76a;
  flex: 0 0 auto;
}
.icon-badge svg { width: 22px; height: 22px; }
.hero-feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-feature span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.45;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.stars {
  color: #ffcb45;
  letter-spacing: 0.1em;
  font-size: 20px;
}

.quick-card {
  align-self: start;
  background: rgba(8, 18, 14, 0.86);
  border: 1px solid rgba(87, 187, 89, 0.25);
  box-shadow: 0 22px 46px rgba(4, 8, 6, 0.38);
  border-radius: 22px;
  padding: 22px;
}
.quick-card-label {
  color: #b7ecae;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.quick-card h2 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.06;
}
.quick-card-sub {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.toggle-group { margin-bottom: 14px; }
.toggle-inline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.toggle-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 700;
}
.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-row { grid-template-columns: repeat(2, 1fr); }
.toggle,
.unit-toggle,
.volume-toggle {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
  color: #f1f4ef;
  cursor: pointer;
  font-weight: 700;
}
.toggle.active,
.unit-toggle.active,
.volume-toggle.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.range-field {
  display: block;
  margin-top: 14px;
}
.field-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 6px;
}
.field-line strong {
  color: #fff;
  font-size: 15px;
}
input[type="range"] {
  width: 100%;
  accent-color: #73c76b;
}
.calc-trigger { margin-top: 16px; }
.result-box {
  margin-top: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.result-kicker {
  margin: 0;
  color: #c9d7cc;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}
.result-value {
  margin: 10px 0 6px;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}
.result-note {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.result-link {
  display: inline-flex;
  margin-top: 14px;
  color: #c6e7bf;
  font-style: italic;
  font-size: 15px;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 16px;
  font-weight: 900;
  flex: 0 0 auto;
}
.trust-item strong {
  display: block;
  color: #2c352f;
  font-size: 14px;
}
.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 72px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head.center {
  display: block;
  text-align: center;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #d8e2d8;
  background: #fff;
  color: #38433d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 18px 18px;
  background: #f7f8f7;
  border: 1px solid #e6ebe7;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.step-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
}
.step-num {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.products {
  background: linear-gradient(180deg, #f4f6f4 0%, #eef2ee 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e1e7e1;
  box-shadow: var(--shadow);
  text-align: center;
}
.featured { outline: 2px solid rgba(76, 175, 80, 0.22); }
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef6ee;
  color: var(--green-deep);
  font-size: 26px;
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.green-badge {
  background: #5bbf5f;
  color: #fff;
}
.dark-badge {
  background: #274d2f;
  color: #d9f2d3;
}
.price-card h3 {
  margin: 4px 0 8px;
  font-size: 26px;
}
.price-card p {
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 66px;
  max-width: 240px;
}
.price {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}
.dark-card {
  background: linear-gradient(180deg, #13211a 0%, #0b1310 100%);
  color: #fff;
  border-color: rgba(103, 181, 109, 0.24);
}
.dark-card p { color: rgba(255,255,255,0.76); }
.dark-card .plan-icon {
  background: rgba(99, 190, 101, 0.16);
  color: #9ee097;
}

.about { padding-top: 42px; }
.about-shell {
  background: #f2f4f1;
  border: 1px solid #dfe5df;
  border-radius: 24px;
  padding: 28px;
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-signature {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.signature-name {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  line-height: 1;
}
.signature-role {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.about-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 48px);
}
.about-copy p {
  margin: 0 0 12px;
  color: #4f5854;
  font-size: 18px;
  line-height: 1.55;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stats strong {
  color: #2f7f35;
  font-size: 35px;
  line-height: 1;
}
.about-stats span {
  color: var(--muted);
  font-size: 14px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.cta-bg {
  background-image: linear-gradient(90deg, rgba(5, 11, 8, 0.76) 0%, rgba(5, 11, 8, 0.58) 52%, rgba(5, 11, 8, 0.46) 100%), url('../images/cta.png');
}
.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}
.cta-product-shot img {
  width: 100%;
  max-width: 230px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.34));
}
.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4vw, 56px);
}
.cta-copy p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.84);
  font-size: 20px;
  max-width: 680px;
}
.cta-note {
  margin-top: 12px;
  color: #d0e7cf;
  font-size: 14px;
}

.site-footer {
  background: #060f0b;
  color: rgba(255,255,255,0.72);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-tag {
  color: #79ce72;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.checkout-main { padding-top: 56px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.checkout-grid-cards {
  grid-template-columns: repeat(2, 1fr);
}
.checkout-side img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.mini-note-box {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.mini-note-box h3 { margin-top: 0; }
.mini-note-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #f0f4f0;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .hero-grid,
  .about-grid,
  .checkout-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }
  .quick-card { max-width: 520px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps,
  .trust-grid,
  .about-stats,
  .checkout-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar-inner {
    gap: 18px;
    font-size: 11px;
  }
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-grid { padding-top: 34px; }
  .hero-copy > p { font-size: 18px; }
  .hero-feature-row,
  .pricing-grid,
  .steps,
  .trust-grid,
  .about-stats,
  .checkout-grid-cards,
  .toggle-inline-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .step-card { grid-template-columns: 1fr; }
  .step-card img { width: 100%; height: 180px; }
  .section-head { display: block; }
  .section-pill { margin-top: 16px; }
  .about-shell { padding: 18px; }
  .footer-links { gap: 12px; }
  .btn,
  .nav-cta { width: 100%; }
}


/* April 15 update */
.hero-bg{background-position:center center;}
.hero-grid{grid-template-columns:minmax(0,1.05fr) 390px;min-height:740px;align-items:center;}
.hero-copy{padding-top:8px;padding-bottom:20px;}
.hero-copy>p{max-width:520px;font-size:20px;}
.hero-feature-row{gap:18px;}
.hero-feature{max-width:170px;}
.quick-card{justify-self:end;margin-right:8px;backdrop-filter:blur(7px);}
.trust-icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:#f1f7f1;color:#46a64f;font-size:0;}
.trust-icon svg{width:19px;height:19px;}
.plan-icon{width:56px;height:56px;border-radius:16px;background:#f2f7f2;color:#243330;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.plan-icon svg{width:26px;height:26px;}
.founder-photo-wrap{min-height:320px;}
.founder-photo-wrap img{height:100%;width:100%;object-fit:cover;}
.founder-signature{left:30px;bottom:22px;padding:0;background:none;text-shadow:0 2px 10px rgba(0,0,0,.35);}
.signature-name{font-size:34px;line-height:1;font-weight:500;opacity:.95;}
.signature-role{font-size:12px;letter-spacing:.12em;text-transform:uppercase;}
.about-grid{grid-template-columns:1.1fr 1.5fr;gap:36px;align-items:stretch;}
.about-copy p{font-size:17px;line-height:1.55;}
.section-pill{font-weight:800;letter-spacing:.08em;}
.cta-product-shot img{max-width:320px;}
@media (max-width: 980px){.hero-grid{grid-template-columns:1fr;min-height:auto}.quick-card{margin-right:0;justify-self:stretch}.about-grid{grid-template-columns:1fr;}}


.faq-section { background: linear-gradient(180deg, #f7faf7 0%, #eef6ee 100%); }
.faq-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:20px; }
.faq-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:22px; box-shadow:0 14px 30px rgba(9,18,13,.07); }
.faq-card h3 { margin:0 0 10px; font-size:20px; color:var(--green-deep); }
.faq-card p { margin:0; color:#56635c; line-height:1.7; }
.footer-links a { color: inherit; }
.footer-links-inline { display:flex; gap:16px; flex-wrap:wrap; }
.footer-inner p { color: var(--muted); max-width: 520px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
