@font-face {
  font-family: "Omega Sans";
  src: url("../fonts/Omega-Sans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Omega Sans";
  src: url("../fonts/Omega-Sans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Omega Sans";
  src: url("../fonts/Omega-Sans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Omega Sans";
  src: url("../fonts/Omega-Sans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: "Omega Sans", "Segoe UI", Arial, sans-serif;
  --primary: #7fb742;
  --primary-dark: #3b6d11;
  --secondary: #818285;
  --deep: #1a2e05;
  --ink: #222222;
  --muted: #555555;
  --bg: #ffffff;
  --surface: #ffffff;
  --line: #dce8cb;
  --soft: #f8fdf4;
  --label-gray: #4b5563;
  --shadow: 0 12px 28px rgba(26, 46, 5, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: calc(100% + 1pt); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-brand);
  font-weight: 400;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--deep);
  line-height: 1.22;
}
h1 { font-size: clamp(2.2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.05rem; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.topbar {
  background: var(--deep);
  color: #b8d49a;
  font-size: 0.85rem;
}
.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 20;
}
.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}
.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--secondary);
}
.brand-tag { font-size: 0.75rem; color: var(--primary); }

.site-nav { display: flex; gap: 1.25rem; align-items: center; }
.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #444444;
}
.nav-link.active,
.nav-link:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: #444444;
}

.nav-drop { position: relative; }
.nav-drop:hover .drop,
.nav-drop:focus-within .drop { display: block; }
.nav-drop > .nav-link { cursor: pointer; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-width: 240px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
  z-index: 30;
}
.drop a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
  color: #333333;
  white-space: nowrap;
}
.drop a:hover { background: var(--soft); color: var(--primary); }
.drop a.drop-sub {
  font-size: 0.72rem;
  color: var(--label-gray);
  padding-top: 0;
  margin-top: -0.4rem;
  white-space: normal;
  max-width: 240px;
  line-height: 1.4;
}
@media (max-width: 980px) {
  .nav-drop .drop {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
  }
}

.servicer-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 1rem;
}
.footer-disclosure {
  font-size: 0.78rem;
  color: #6b9a45;
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding: 1rem 2rem 0;
  border-top: 1px solid #2d4a16;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.93rem;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: #ffffff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-secondary:hover { background: #f0faeb; }
.btn-link { color: var(--primary); font-weight: 700; }

.hero,
.page-hero {
  background: linear-gradient(155deg, var(--soft) 60%, #e4f4e0 100%);
}
.hero { padding: 5rem 0 4rem; }
.page-hero { padding: 4rem 0 2rem; }

.hero-grid,
.split-grid,
.cards-2,
.cards-3,
.cards-4,
.footer-grid,
.table-like,
.kpi-grid {
  display: grid;
  gap: 1.25rem;
}
.hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 2.5rem; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.split-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 2rem; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.kpi-grid { grid-template-columns: repeat(4, 1fr); }

.section { padding: 5rem 0; }
.section-head { max-width: 850px; margin-bottom: 2rem; }

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--label-gray);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.lead {
  font-size: 1.02rem;
  max-width: 760px;
  color: #444444;
}
.cta-row,
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

.hero-card,
.feature-card,
.panel,
.persona-card,
.trust-card,
.resource-card,
.subnav-card,
.roi-card,
.quote-card,
.kpi,
.flow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before,
.feature-card::before,
.panel::before,
.persona-card::before,
.trust-card::before,
.resource-card::before,
.subnav-card::before,
.roi-card::before,
.kpi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #a2c977);
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #edf2e5;
}
.metric:last-child { border-bottom: none; }
.metric strong { color: var(--deep); font-size: 1rem; max-width: 180px; text-align: right; }

/* Temporary content hold: hide metrics and measurable-results blocks until approved */
.hide-measurable-results,
.metric,
.kpi-grid,
.kpi,
.stat-row,
.mini-stat,
.out-grid,
.out-c {
  display: none !important;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.quote-card {
  background: linear-gradient(180deg, #2d4a16 0%, var(--deep) 100%);
  color: #ffffff;
  border-color: #2d4a16;
}
.quote-card h1, .quote-card h2, .quote-card h3, .quote-card h4 { color: #ffffff; }
.quote-card p { color: #b8d49a; }
.quote-mark { font-size: 3rem; line-height: 1; color: #d4e7bf; }

.banner {
  background: linear-gradient(135deg, var(--deep), var(--primary-dark));
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.banner h1, .banner h2, .banner h3, .banner h4 { color: #ffffff; }
.banner p { color: #d4e7bf; }

.mini-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.4rem; }
.mini-nav a {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  font-weight: 600;
  color: #444444;
}

.checklist { display: grid; gap: 10px; margin-top: 1rem; }
.checklist div { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--label-gray);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: 0 0 24px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.site-footer {
  background: #111d07;
  color: #b8d49a;
  padding: 3rem 0 1.5rem;
}
.site-footer p,
.site-footer a {
  color: #8ab46e;
  opacity: 1;
}
.site-footer a { display: block; margin-bottom: 10px; }
.site-footer a:hover { color: #ffffff; }
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
  gap: 16px;
}
.kpi strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.breadcrumbs a { color: var(--label-gray); }
.breadcrumbs a:hover { color: var(--primary-dark); }
.list-tight li { margin-bottom: 0.45rem; }

.callout {
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }
.trust-pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}
.trust-pill {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
}
.status-chip { background: #f0faeb; color: var(--primary-dark); }
.status-chip.warning { background: #fff5e9; color: #9a5a00; }
.status-chip.info { background: #f3f4f6; color: #4b5563; }
.status-chip.neutral { background: #f3f4f6; color: #4b5563; }

.product-shell {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fdf4;
}
.window-dots { display: flex; gap: 6px; }
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfcfb0;
}

.product-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 420px;
}
.product-side {
  background: #edf4e6;
  padding: 16px;
  color: var(--deep);
}
.product-side a {
  display: block;
  color: #4b5563;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.87rem;
  margin-bottom: 4px;
}
.product-side a.active {
  background: #dce8cb;
  color: var(--deep);
  font-weight: 700;
}
.product-main { padding: 18px; background: #ffffff; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.mini-stat {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}
.mini-stat strong { display: block; font-size: 1.2rem; color: var(--deep); }
.mini-stat span { font-size: 0.78rem; color: var(--muted); font-weight: 700; }

.workflow-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-top: 12px;
}
.table-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th {
  background: #f8fdf4;
  color: #6b7280;
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.data-table th,
.data-table td {
  padding: 12px;
  border-bottom: 1px solid #edf2e5;
}
.data-table tr:last-child td { border-bottom: 0; }

.flow-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.flow-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #edf4e6;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-weight: 700;
  color: #374151;
  font-size: 0.9rem;
}
.input,
select,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 118px; resize: vertical; }
.help-text { font-size: 0.82rem; color: #6b7280; }

.demo-summary { display: grid; gap: 14px; }
.summary-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8fdf4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.summary-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e4f0d8;
  color: var(--primary-dark);
  font-weight: 800;
  flex: 0 0 auto;
}

.readme-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.readme-list a {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
  color: #374151;
}
.readme-list a:hover {
  border-color: #a8d47a;
  background: #f8fdf4;
}

.file-tree {
  background: #111d07;
  color: #b8d49a;
  border-radius: 10px;
  padding: 20px;
  overflow: auto;
}

.team-section { padding-top: 3.5rem; }
.team-group-title {
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.team-photo-wrap {
  width: 50%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  margin: 0 auto 0.9rem;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  color: var(--deep);
}

.team-role {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .footer-grid,
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 2rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .row { grid-template-columns: 1fr; }
  .product-body { grid-template-columns: 1fr; }
  .product-side { display: flex; overflow: auto; gap: 4px; }
  .product-side a { white-space: nowrap; }

  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { padding: 0 1rem; }

  .topbar .container {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav {
    left: 1rem;
    right: 1rem;
    top: 66px;
    border-radius: 10px;
  }

  .hero-grid,
  .split-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .team-grid,
  .kpi-grid,
  .stat-row,
  .flow-steps,
  .form-grid,
  .readme-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 4rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .page-hero { padding: 3rem 0 1.5rem; }
  .data-table { min-width: 620px; }
  .table-card { overflow: auto; }
}
