:root {
  --background: #F6F5F0;
  --surface: #FFFFFF;
  --surface-soft: #FBFAF6;
  --dark: #050907;
  --dark-soft: #070B09;
  --green: #2F6F3E;
  --green-2: #214D2C;
  --green-accent: #7A8F2A;
  --text: #111111;
  --muted: #5F625D;
  --muted-2: #8E918A;
  --border: #DCDAD2;
  --shadow: 0 24px 80px rgba(5, 9, 7, 0.10);
  --radius: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
p { color: var(--muted); font-size: 1.03rem; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 920px; }
.legal { max-width: 940px; }
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(5, 9, 7, 0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { display: block; height: 38px; width: auto; }
.logo-footer img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a, .nav button { color: rgba(255,255,255,.78); font-weight: 650; font-size: .94rem; background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }
.nav a:hover, .nav button:hover { color: white; }
.nav-products { position: relative; }
.nav-product-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-product-trigger::after { content: "⌄"; font-size: 1rem; line-height: 1; opacity: .8; }
.dropdown {
  position: absolute; top: 100%; left: -18px; width: 260px;
  padding: 12px 0 0; /* hover bridge — keeps menu open while moving pointer */
  background: transparent; border: 0; box-shadow: none; display: none; z-index: 90;
}
.nav-products:hover .dropdown,
.nav-products:focus-within .dropdown,
.nav-products.open .dropdown { display: block; }
.dropdown.product-ladder { width: 310px; }
.dropdown.product-ladder::before {
  content: "";
  position: absolute;
  top: 12px; left: 0; right: 0; bottom: 0;
  background: #101612;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  z-index: -1;
}
.dropdown a {
  display: block; position: relative; z-index: 1;
  padding: 12px 12px; margin: 0 10px; border-radius: 10px;
  color: rgba(255,255,255,.82);
}
.dropdown > a:first-of-type { margin-top: 10px; }
.dropdown .dropdown-sub { margin: 0 0 10px; }
.dropdown .dropdown-sub a { margin-left: 10px; margin-right: 10px; }
.dropdown a:hover { background: rgba(255,255,255,.06); color: white; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border-radius: 999px; font-weight: 750; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--green); color: white; }
.btn.primary:hover { background: #377F49; }
.btn.secondary { border-color: rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.03); }
.btn.light { background: white; color: var(--dark); border-color: white; }
.btn.ghost { border-color: var(--border); color: var(--text); background: transparent; }
.menu-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,.2); color: white; border-radius: 12px; padding: 8px 10px; font-size: 1.2rem; }
.mobile-menu { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,.08); padding: 12px 24px 24px; }
.mobile-menu a, .mobile-menu button { display: block; width: 100%; text-align: left; padding: 13px 0; color: rgba(255,255,255,.86); background: none; border: 0; font: inherit; font-weight: 650; }
.mobile-menu .mobile-sub { display: none; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.12); }
.mobile-products.open .mobile-sub { display: block; }
.mobile-menu .mobile-ctas { display: grid; gap: 10px; padding-top: 12px; }
.hero {
  background: radial-gradient(circle at 75% 20%, rgba(47,111,62,.25), transparent 30%), linear-gradient(180deg, var(--dark), #07100A);
  color: white; padding: 96px 0 72px;
}
.hero.compact { padding: 76px 0 58px; }
.hero .eyebrow { color: #A5C98F; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .97; letter-spacing: -0.07em; max-width: 960px; margin-bottom: 24px; }
.hero.compact h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); max-width: 1000px; }
.hero p { color: rgba(255,255,255,.72); font-size: clamp(1.06rem, 1.6vw, 1.25rem); max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { color: rgba(255,255,255,.58); margin-top: 24px; font-size: .95rem; }
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.dark { background: var(--dark); color: white; }
.section.dark p { color: rgba(255,255,255,.68); }
.section.dark .card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(122,143,42,.35);
  color: #fff;
  box-shadow: none;
}
.section.dark .card h3,
.section.dark .card h4 { color: #fff; }
.section.dark .card p { color: rgba(255,255,255,.74); }
.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 780px; }
.kicker { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-size: .78rem; margin-bottom: 12px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -0.045em; margin-bottom: 16px; }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.14; letter-spacing: -0.03em; margin-bottom: 10px; }
h4 { font-size: 1.08rem; line-height: 1.2; margin-bottom: 8px; }
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 26px;
  box-shadow: 0 8px 24px rgba(5,9,7,.035);
}
.card.soft { background: var(--surface-soft); }
.card.dark { background: #0D140F; border-color: rgba(255,255,255,.1); color: white; }
.card.dark p { color: rgba(255,255,255,.68); }
.card.highlight { background: linear-gradient(135deg, #132719, #0D140F); color: white; border-color: rgba(122,143,42,.35); box-shadow: 0 24px 80px rgba(5,9,7,.16); }
.card.highlight p { color: rgba(255,255,255,.74); }
.pill-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.pill { display: flex; align-items: center; min-height: 52px; padding: 12px 16px; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 999px; font-weight: 700; }
.flow-rail {
  margin: 34px 0; padding: 26px; background: #ECEAE1; border: 1px solid var(--border); border-radius: 28px;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px;
}
.flow-step {
  background: white; border: 1px solid var(--border); border-radius: 18px; padding: 14px 12px;
  font-weight: 750; font-size: .86rem; min-height: 82px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.timeline { display: grid; gap: 16px; counter-reset: step; }
.step-card { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start; padding: 24px; background: white; border: 1px solid var(--border); border-radius: 24px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: white; display: grid; place-items: center; font-weight: 850; }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.feature-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; font-weight: 700; }
.cta-panel { padding: 48px; border-radius: 32px; background: linear-gradient(135deg, #132719, #0D140F); color: white; text-align: center; border: 1px solid rgba(122,143,42,.35); }
.cta-panel p { color: rgba(255,255,255,.72); max-width: 720px; margin: 0 auto 24px; }
.table-wrap { overflow-x: auto; background: white; border: 1px solid var(--border); border-radius: 22px; margin: 20px 0 34px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: #EFEEE8; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; }
tr:last-child td { border-bottom: 0; }
.accordion { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
details p, details ul { margin-top: 14px; }
ul.clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
ul.clean li { position: relative; padding-left: 24px; color: var(--muted); }
ul.clean li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.legal-page { background: var(--background); }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: clamp(28px, 5vw, 58px); box-shadow: var(--shadow); }
.legal-card p { font-size: 1rem; }
.legal-card h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin-top: 36px; }
.legal-card h3 { font-size: 1.15rem; margin-top: 24px; }
.toc { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin: 24px 0 8px; }
.toc a { color: var(--green); font-weight: 700; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; font-size: .9rem; }
.site-footer { background: var(--dark); color: white; padding: 64px 0 34px; }
.footer-container { max-width: 1180px; }
.footer-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: stretch; margin-bottom: 36px; }
.footer-company, .footer-cta-compact { border: 1px solid rgba(255,255,255,.09); border-radius: 28px; padding: 28px; background: rgba(255,255,255,.025); }
.footer-company p { max-width: 720px; }
.footer-tagline { margin-top: 18px; color: rgba(255,255,255,.82) !important; font-weight: 700; }
.footer-cta-compact { background: linear-gradient(135deg, #132719, #0D140F); border-color: rgba(122,143,42,.35); }
.footer-cta-compact h3 { color: white; margin-bottom: 10px; }
.footer-cta-compact p { color: rgba(255,255,255,.72); }
.footer-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.footer-nav { display: grid; grid-template-columns: .75fr .75fr .85fr 1.2fr; gap: 32px; align-items: start; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer p { color: rgba(255,255,255,.64); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-weight: 650; }
.footer-links a:hover { color: white; }
.footer-title { color: white; font-weight: 850; margin-bottom: 14px; }
.footer-bottom { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .92rem; }
.product-footer-ladder { gap: 8px; }
.product-footer-ladder .footer-main-link { margin-bottom: 2px; }
@media (max-width: 1020px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: block; }
  .header-actions .btn:not(.primary) { display: none; }
  .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pill-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .flow-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .toc { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 36px, var(--max)); }
  .header-inner { height: 68px; }
  .logo img { height: 34px; }
  .header-actions { display: none; }
  .hero { padding: 70px 0 54px; }
  .section { padding: 56px 0; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .flow-rail { grid-template-columns: minmax(0, 1fr); padding: 18px; }
  .step-card { grid-template-columns: 1fr; }
  .cta-panel { padding: 32px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 18px; }
  .footer-company, .footer-cta-compact { padding: 22px; }
  .footer-nav { grid-template-columns: 1fr; gap: 24px; }
  .toc { grid-template-columns: 1fr; }
  h1 { word-break: normal; }
  .hero h1 { letter-spacing: -0.055em; }
}

/* Product navigation ladder */
.dropdown.product-ladder { width: 310px; }
.dropdown-main {
  font-weight: 850 !important;
  color: #fff !important;
  background: rgba(47,111,62,.18);
  border: 1px solid rgba(122,143,42,.25);
  margin-bottom: 6px;
}
.dropdown-sub { display: grid; gap: 2px; }
.dropdown-sub a { padding-left: 22px !important; font-size: .92rem !important; }
.dropdown-sub a::before { content: "↳ "; color: var(--green-accent); }
.product-ladder-mobile .mobile-main { color: white; font-weight: 850; }
.product-ladder-mobile a:not(.mobile-main) { padding-left: 16px; font-size: .96rem; opacity: .9; }
.footer-main-link { color: white !important; font-weight: 850 !important; }
.product-footer-ladder a:not(.footer-main-link) { padding-left: 14px; position: relative; }
.product-footer-ladder a:not(.footer-main-link)::before { content: "↳"; position: absolute; left: 0; color: var(--green-accent); }
