:root {
  --forest: #17332a;
  --forest-2: #21483b;
  --ink: #292922;
  --muted: #6d6a61;
  --paper: #fffdf8;
  --cream: #f3efe3;
  --sand: #e7dfcf;
  --blue: #6b8cae;
  --green: #7a9d6f;
  --gold: #d49b36;
  --line: #ded6c7;
  --shadow: 0 18px 50px rgba(23, 51, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f8f6f0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img, svg { display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #fff;
  background: rgba(23, 51, 42, .97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; font-size: 1.12rem; white-space: nowrap; }
.brand-mark { width: 35px; height: 35px; color: #fff; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: #e4ece8; text-decoration: none; font-weight: 700; font-size: .94rem; }
.nav a:hover, .nav a:focus-visible { color: #fff; }
.nav .nav-cta { background: #fff; color: var(--forest); padding: 10px 15px; border-radius: 9px; }

.hero { position: relative; overflow: hidden; background: var(--forest); color: #fff; padding: 82px 0 94px; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 18%, rgba(122,157,111,.26), transparent 30%), radial-gradient(circle at 5% 95%, rgba(107,140,174,.20), transparent 28%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: #cfddd7; font-weight: 800; font-size: .83rem; letter-spacing: .07em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #9abc8f; }
h1 { margin: 0; max-width: 740px; font-size: clamp(2.45rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.045em; }
.hero-copy { max-width: 650px; margin: 25px 0 0; color: #d7e1dc; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 18px; border-radius: 10px; text-decoration: none; font-weight: 800; border: 1px solid transparent; }
.button.primary { background: var(--green); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,.36); color: #fff; }
.button.light { background: var(--paper); color: var(--forest); }
.button:hover { transform: translateY(-1px); }

.product-card { position: relative; background: var(--paper); color: var(--ink); border: 1px solid rgba(255,255,255,.4); border-radius: 20px; padding: 18px; box-shadow: 0 28px 65px rgba(4,19,14,.32); }
.product-bar { background: var(--forest-2); color: #fff; border-radius: 12px 12px 5px 5px; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }
.product-title { font-weight: 800; }
.sync { font-size: .78rem; color: #d7e1dc; }
.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 8px 0 14px; border-bottom: 1px solid var(--line); }
.product-tabs span { text-align: center; color: var(--muted); font-weight: 700; font-size: .76rem; padding: 7px 3px; }
.product-tabs .active { color: var(--forest); background: var(--cream); border-radius: 7px; }
.day-card { margin-top: 14px; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 10px; padding: 14px; }
.day-meta { color: var(--muted); font-size: .78rem; font-weight: 700; }
.day-title { margin: 3px 0 4px; font-weight: 800; }
.day-text { margin: 0; color: var(--muted); font-size: .88rem; }
.mini-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.mini { background: var(--cream); border-radius: 9px; padding: 10px 7px; text-align: center; }
.mini strong { display: block; color: var(--forest); font-size: 1.1rem; }
.mini span { color: var(--muted); font-size: .68rem; }

section { padding: 86px 0; }
.ownership { padding: 0; position: relative; z-index: 4; margin-top: -34px; }
.ownership-card {
  display: grid;
  grid-template-columns: auto 1fr minmax(250px, .62fr);
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 27px 30px;
  box-shadow: var(--shadow);
}
.ownership-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-size: 1.5rem; font-weight: 900; }
.ownership-copy h2 { margin: 4px 0 7px; font-size: clamp(1.55rem, 3vw, 2.15rem); letter-spacing: -.025em; }
.ownership-copy p { margin: 0; color: var(--muted); }
.ownership-points { display: grid; gap: 8px; padding-left: 22px; border-left: 1px solid var(--line); color: var(--forest); font-weight: 800; font-size: .92rem; }
.section-head { max-width: 720px; margin-bottom: 38px; }
.section-kicker { color: var(--forest); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
h2 { margin: 7px 0 12px; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -.035em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: 15px; padding: 24px; box-shadow: 0 8px 24px rgba(23,51,42,.05); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--cream); color: var(--forest); font-size: 1.25rem; }
.feature h3 { margin: 17px 0 7px; font-size: 1.13rem; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 60px; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; inset: 0 auto auto 0; color: var(--forest); font-size: 2rem; line-height: 1; font-weight: 900; border-bottom: 4px solid var(--green); padding-bottom: 6px; }
.step h3 { margin: 0 0 7px; }
.step p { margin: 0; color: var(--muted); }

.principles-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.principles-note { background: var(--forest); color: #fff; border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.principles-note h2 { font-size: 2.2rem; margin-top: 0; }
.principles-note p { color: #d7e1dc; }
.check-list { display: grid; gap: 14px; }
.check { display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.check-badge { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #e3ebdd; color: var(--forest); font-weight: 900; }
.check h3 { margin: 1px 0 3px; font-size: 1rem; }
.check p { margin: 0; color: var(--muted); font-size: .93rem; }

.cta { padding-top: 10px; padding-bottom: 92px; }
.cta-box { background: linear-gradient(125deg, var(--forest), #295444); color: #fff; border-radius: 20px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-box h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 2.65rem); }
.cta-box p { margin: 0; color: #d7e1dc; }

.site-footer { background: #10271f; color: #dce6e1; padding: 44px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-copy { margin-top: 12px; max-width: 460px; color: #bfcfc7; font-size: .9rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #dce6e1; text-decoration: none; font-weight: 700; font-size: .9rem; }

.legal-main { min-height: calc(100vh - 180px); padding: 58px 0 84px; }
.legal-card { max-width: 850px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 5vw, 48px); box-shadow: 0 10px 35px rgba(23,51,42,.06); }
.legal-card h1 { color: var(--forest); font-size: clamp(2.1rem, 5vw, 3.4rem); }
.legal-card h2 { font-size: 1.35rem; margin-top: 34px; letter-spacing: -.015em; }
.legal-card p, .legal-card li { color: #55534d; }
.legal-card .updated { color: var(--muted); font-size: .9rem; }
.legal-card a { color: var(--forest); font-weight: 700; }
.support-box { margin-top: 26px; padding: 19px; background: var(--cream); border-radius: 12px; }

@media (max-width: 900px) {
  .hero-grid, .principles-grid { grid-template-columns: 1fr; }
  .ownership-card { grid-template-columns: auto 1fr; }
  .ownership-points { grid-column: 2; border-left: 0; padding-left: 0; }
  .hero-grid { gap: 46px; }
  .product-card { max-width: 620px; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 66px; }
  .nav a:not(.nav-cta) { display: none; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { padding: 58px 0 68px; }
  .ownership { margin-top: -24px; }
  .ownership-card { grid-template-columns: 1fr; padding: 23px; }
  .ownership-points { grid-column: auto; border-top: 1px solid var(--line); padding-top: 17px; }
  .features, .steps { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .cta-box, .footer-grid { flex-direction: column; align-items: flex-start; }
  .cta-box { padding: 28px; }
  .actions .button { width: 100%; }
}
@media (max-width: 420px) {
  .nav-cta { padding: 9px 11px !important; font-size: .84rem !important; }
  .brand span { max-width: 146px; white-space: normal; line-height: 1.05; }
  .product-card { padding: 11px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button:hover { transform: none; } }
