/* ==========================================================================
   Omnisight — Marketing Intelligence · Main stylesheet
   Palette: navy #0D1526/#10233F · blue #004E97/#1B6ACB · green #00853F
            orange #E8862E (resources accent) · neutral greys
   ========================================================================== */

/* ---------- 1. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); }

ul.clean, ol.clean { list-style: none; }

/* ---------- 2. Tokens ---------- */
:root {
  --navy-950: #0A1220;
  --navy-900: #0D1526;
  --navy-800: #10233F;
  --navy-700: #16325C;
  --blue-700: #004E97;
  --blue-600: #1B6ACB;
  --blue-100: #E3EDF9;
  --green-600: #00853F;
  --green-700: #006B33;
  --green-100: #E2F3EA;
  --orange-500: #E8862E;
  --orange-100: #FCEFE2;
  --ink: #15202B;
  --muted: #5A6B7E;
  --line: #E3E9F0;
  --bg: #F5F8FB;
  --white: #FFFFFF;

  --font-head: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(13, 21, 38, 0.08);
  --shadow-md: 0 6px 22px rgba(13, 21, 38, 0.10);
  --shadow-lg: 0 18px 44px rgba(13, 21, 38, 0.16);
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.17rem; font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.12rem; color: var(--muted); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { margin-top: 0.6rem; color: var(--muted); }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--blue-600));
}
.eyebrow.center::after {
  content: "";
  width: 22px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-600));
}

/* ---------- 4. Layout utilities ---------- */
.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section.tight { padding: 3.6rem 0; }
.section.alt { background: var(--bg); }
.section.navy { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%); }
.section.navy h2, .section.navy h3 { color: var(--white); }
.section.navy p { color: #B9C6D8; }

.grid { display: grid; gap: 1.5rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary { background: var(--green-600); color: var(--white); }
.btn-primary:hover { background: var(--green-700); color: var(--white); }

.btn-blue { background: var(--blue-700); color: var(--white); }
.btn-blue:hover { background: var(--blue-600); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); color: var(--white); }

.btn-outline { background: var(--white); color: var(--blue-700); border-color: var(--blue-700); }
.btn-outline:hover { background: var(--blue-700); color: var(--white); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.86rem; }

/* ---------- 6. Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #9FB2C8;
  font-size: 0.8rem;
  padding: 0.42rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: #C7D6E6; }
.topbar a:hover { color: var(--white); }
.topbar-group { display: flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar svg { width: 14px; height: 14px; flex: none; }

/* ---------- 7. Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--navy-900);
}
.brand-name .accent { color: var(--green-600); }
.brand-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy-800);
}
.nav-links a:hover { background: var(--blue-100); color: var(--blue-700); }
.nav-links a.active { color: var(--blue-700); box-shadow: inset 0 -3px 0 var(--green-600); border-radius: 8px 8px 2px 2px; }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--blue-100); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2.6px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span + span { margin-top: 5.5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.1px) rotate(-45deg); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(150deg, rgba(10, 18, 32, 0.96) 0%, rgba(16, 35, 63, 0.97) 55%, rgba(0, 78, 151, 0.88) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 2 52 16v32L28 62 4 48V16Z' fill='none' stroke='%23FFFFFF' stroke-opacity='0.05' stroke-width='1.4'/%3E%3C/svg%3E");
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5.2rem 0 5.6rem;
}
.hero h1 { color: var(--white); }
.hero .lead { color: #C3D0E0; max-width: 34rem; margin-top: 1.1rem; font-size: 1.13rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2.2rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #DDE7F2;
}
.chip svg { width: 13px; height: 13px; color: #6FD3A2; }

.hero-visual { position: relative; }
.shot-frame {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(0.6deg);
}
.shot-frame img { width: 100%; }
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
}
.float-chip svg { width: 16px; height: 16px; color: var(--green-600); flex: none; }
.float-chip.one { top: -18px; right: 4%; }
.float-chip.two { bottom: -16px; left: -3%; }
.float-chip small { display: block; font-weight: 500; color: var(--muted); font-size: 0.72rem; }

/* Slim page hero for subpages */
.page-hero {
  background:
    linear-gradient(150deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath d='M28 2 52 16v32L28 62 4 48V16Z' fill='none' stroke='%23FFFFFF' stroke-opacity='0.05' stroke-width='1.4'/%3E%3C/svg%3E");
  color: var(--white);
  padding: 3.8rem 0 4.2rem;
}
.page-hero h1 { color: var(--white); max-width: 21ch; }
.page-hero p { color: #C3D0E0; max-width: 44rem; margin-top: 0.9rem; font-size: 1.08rem; }
.page-hero .hero-cta { margin-top: 1.7rem; }
.crumbs { font-size: 0.82rem; color: #8DA2BA; margin-bottom: 1.2rem; }
.crumbs a { color: #C7D6E6; }
.crumbs a:hover { color: var(--white); }

/* ---------- 9. Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CBDAEA; }

.card .icon-wrap {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 1.05rem;
  flex: none;
}
.card .icon-wrap.green { background: var(--green-100); color: var(--green-600); }
.card .icon-wrap.orange { background: var(--orange-100); color: var(--orange-500); }
.card .icon-wrap svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.94rem; }
.card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

.product-card .badge-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.tag.free { background: var(--green-100); color: var(--green-700); }
.tag.new { background: var(--blue-100); color: var(--blue-700); }
.tag.aussie { background: var(--orange-100); color: #B45F0D; }
.tag.opensource { background: #EDEBFA; color: #4B3FA8; }

/* Feature list inside cards / sections */
.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.feature-list li:last-child { margin-bottom: 0; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32rem;
  width: 17px; height: 17px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300853F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- 10. Stats band ---------- */
.stats-band { background: var(--navy-950); border-radius: var(--radius); padding: 2.4rem 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.1;
}
.stat .num .accent { color: #38C98D; }
.stat .lbl { color: #93A8C0; font-size: 0.86rem; margin-top: 0.25rem; }

/* ---------- 11. Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split .shot-frame { transform: none; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }

/* Founder medallion */
.medallion {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  background: linear-gradient(140deg, var(--blue-600), var(--navy-800));
  border: 3px solid var(--blue-100);
  flex: none;
}

/* ---------- 12. Tables / specs ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-weight: 700; color: var(--navy-900); white-space: nowrap; width: 32%; background: var(--bg); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }

/* ---------- 13. Accordion ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); margin-bottom: 0.8rem; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.99rem;
  color: var(--navy-900);
}
.faq-q .chev { flex: none; width: 18px; height: 18px; color: var(--green-600); transition: transform 0.2s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a-inner { padding: 0 1.3rem 1.15rem; color: var(--muted); font-size: 0.94rem; }

/* ---------- 14. Notices ---------- */
.notice {
  display: flex;
  gap: 0.85rem;
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid;
}
.notice svg { width: 19px; height: 19px; flex: none; margin-top: 0.1rem; }
.notice.info { background: var(--blue-100); border-color: #BCD4EE; color: #14385F; }
.notice.warn { background: #FFF7E8; border-color: #F3DDAE; color: #6B4A0E; }

/* ---------- 15. Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.88rem; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(27, 106, 203, 0.15);
}
.form-field .error-msg { color: #C0392B; font-size: 0.78rem; display: none; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #C0392B; }
.form-field.invalid .error-msg { display: block; }
.form-success {
  display: none;
  background: var(--green-100);
  border: 1px solid #BCE3CC;
  color: var(--green-700);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 300px at 12% -10%, rgba(27, 106, 203, 0.45), transparent 60%),
    linear-gradient(140deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  padding: 3.6rem 2rem;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #B9C6D8; max-width: 40rem; margin: 0.8rem auto 1.8rem; }
.cta-band .hero-cta { justify-content: center; margin-top: 0; }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--navy-950); color: #9FB2C8; margin-top: 4.5rem; font-size: 0.92rem; }
.footer-main { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3.8rem 0 2.6rem; }
.site-footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.05rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #9FB2C8; }
.site-footer a:hover { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 0.9rem; color: #8DA2BA; font-size: 0.88rem; max-width: 30rem; }
.footer-contact li { display: flex; gap: 0.55rem; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; margin-top: 0.28rem; color: #38C98D; flex: none; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #7E93AB;
}
.footer-lang { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.footer-lang span { color: #C7D6E6; }

/* ---------- 18. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

/* ---------- 18b. Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid var(--green-600);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #FBFEFC 0%, var(--white) 30%);
}
.price-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.05rem; }
.price-for { color: var(--muted); font-size: 0.82rem; margin: 0.25rem 0 1.1rem; min-height: 2.4em; }
.price-num { font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--navy-900); line-height: 1; }
.price-num sup { font-size: 1.1rem; font-weight: 700; top: -0.55em; }
.price-per { color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.price-annual { font-size: 0.78rem; color: var(--green-700); font-weight: 600; margin-top: 0.3rem; min-height: 1.2em; }
.price-card .feature-list { margin: 1.3rem 0 1.6rem; flex: 1; }
.price-card .feature-list li { font-size: 0.88rem; margin-bottom: 0.5rem; }
.price-card .btn { width: 100%; }
.price-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 1.6rem; }

/* Comparison check/cross */
.yesno { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; vertical-align: middle; }
.yesno svg { width: 12px; height: 12px; }
.yesno.y { background: var(--green-100); color: var(--green-700); }
.yesno.n { background: #F6E4E2; color: #B23B2E; }
.spec-table td .dim { color: var(--muted); }
.spec-table .rowhighlight th, .spec-table .rowhighlight td { background: #F0F7F2; }

/* ---------- 18c. Hero dashboard mock ---------- */
.mock-dash { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.mock-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy-900);
  color: #C7D6E6;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.mock-dash-head .tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.mock-dash-head .tab { padding: 0.22rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.08); }
.mock-dash-head .tab.on { background: var(--green-600); color: var(--white); }
.mock-dash-body { padding: 1.2rem; display: grid; grid-template-columns: 1.25fr 1fr; gap: 1rem; }
.mock-panel { border: 1px solid var(--line); border-radius: 10px; padding: 0.95rem 1.05rem; background: var(--white); }
.mock-panel h5 { font-family: var(--font-head); font-size: 0.8rem; color: var(--navy-900); margin-bottom: 0.65rem; font-weight: 700; }
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.9rem; }
.mock-kpi { border: 1px solid var(--line); border-radius: 8px; padding: 0.55rem 0.7rem; }
.mock-kpi .v { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--navy-900); }
.mock-kpi .l { font-size: 0.66rem; color: var(--muted); }
.mock-kpi .d { font-size: 0.66rem; font-weight: 700; }
.d.up { color: var(--green-600); } .d.down { color: #B23B2E; }
.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 74px; }
.mock-bars i { flex: 1; background: linear-gradient(180deg, var(--blue-600), var(--blue-700)); border-radius: 3px 3px 0 0; opacity: 0.85; }
.mock-bars i.hi { background: linear-gradient(180deg, #2FBF71, var(--green-600)); opacity: 1; }
.mock-ai-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.42rem 0; border-bottom: 1px dashed var(--line); font-size: 0.75rem; color: var(--ink); }
.mock-ai-row:last-child { border-bottom: 0; }
.mock-ai-row .eng { width: 4.4rem; font-weight: 700; color: var(--navy-800); flex: none; }
.mock-ai-row .track { flex: 1; height: 7px; border-radius: 4px; background: #EAF0F6; overflow: hidden; }
.mock-ai-row .fill { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green-600), #2FBF71); }
.mock-ai-row .pct { width: 2.6rem; text-align: right; font-weight: 700; color: var(--green-700); font-size: 0.72rem; flex: none; }
.score-ring { position: relative; width: 92px; height: 92px; margin: 0.2rem auto 0.5rem; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring .val { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy-900); }
.score-ring .val small { display: block; font-size: 0.55rem; color: var(--muted); font-weight: 600; text-align: center; }
.kw-chip { display: flex; justify-content: space-between; gap: 0.6rem; font-size: 0.74rem; padding: 0.34rem 0.55rem; border-radius: 6px; }
.kw-chip:nth-child(odd) { background: var(--bg); }
.kw-chip .v { font-weight: 700; color: var(--green-700); }

@media (max-width: 1020px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .price-grid { grid-template-columns: 1fr; }
  .mock-dash-body { grid-template-columns: 1fr; }
}

/* ---------- 19. UI mocks (product visuals) ---------- */
.ui-mock {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--white);
}
.ui-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  background: #EEF2F7;
  border-bottom: 1px solid var(--line);
}
.ui-mock-dots { display: flex; gap: 0.35rem; }
.ui-mock-dots i { width: 10px; height: 10px; border-radius: 50%; background: #C7D0DB; }
.ui-mock-dots i:nth-child(1) { background: #F08A7E; }
.ui-mock-dots i:nth-child(2) { background: #F2C94C; }
.ui-mock-dots i:nth-child(3) { background: #7BD3A0; }
.ui-mock-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.28rem 0.85rem;
}
.ui-mock-body { padding: 1.2rem; }

.mock-call { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.mock-tile { aspect-ratio: 4 / 3; border-radius: 10px; display: grid; place-items: center; font-size: 0.75rem; font-weight: 600; color: var(--white); }
.mock-tile .mic-off { display: block; font-size: 0.62rem; opacity: 0.8; font-weight: 500; }
.mock-caption {
  margin-top: 0.7rem;
  background: var(--navy-900);
  color: #D9E4F0;
  border-radius: 9px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
}
.mock-caption strong { color: #6FD3A2; }

.mock-doc { font-family: "Consolas", "Menlo", monospace; font-size: 0.78rem; color: var(--ink); }
.mock-doc .ln { display: flex; gap: 0.7rem; padding: 0.14rem 0.3rem; border-radius: 4px; }
.mock-doc .ln .no { color: #A5B3C2; width: 1.4rem; text-align: right; flex: none; }
.mock-doc .ln.hi { background: var(--green-100); }
.mock-tabs { display: flex; gap: 0.45rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.mock-tab {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 8px 8px 0 0;
  background: #EEF2F7;
  color: var(--muted);
  border: 1px solid var(--line);
  border-bottom: 0;
}
.mock-tab.on { background: var(--white); color: var(--blue-700); box-shadow: inset 0 2px 0 var(--green-600); }

.mock-chat { display: flex; flex-direction: column; gap: 0.65rem; }
.mock-msg { max-width: 88%; border-radius: 12px; padding: 0.55rem 0.85rem; font-size: 0.8rem; }
.mock-msg.user { align-self: flex-end; background: var(--blue-700); color: var(--white); border-bottom-right-radius: 3px; }
.mock-msg.bot { align-self: flex-start; background: #EEF2F7; color: var(--ink); border-bottom-left-radius: 3px; }
.mock-msg .act { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.4rem; background: var(--white); border: 1px solid var(--line); border-radius: 7px; padding: 0.22rem 0.6rem; font-size: 0.7rem; font-weight: 600; color: var(--navy-800); }
.mock-msg .act svg { width: 12px; height: 12px; color: var(--green-600); }

/* ---------- 20. Skip link & a11y ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.6rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 0.6rem; color: var(--white); }

:focus-visible { outline: 3px solid rgba(27, 106, 203, 0.55); outline-offset: 2px; border-radius: 4px; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1020px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 2.5rem; }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { position: static; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.8rem 4% 1.1rem;
    gap: 0.15rem;
  }
  .nav-links.open a { padding: 0.8rem 1rem; }
  .nav-links.open a.active { box-shadow: inset 3px 0 0 var(--green-600); border-radius: 6px; }

  .hero-inner { grid-template-columns: 1fr; padding: 3.6rem 0 4rem; gap: 2.6rem; }
  .hero-visual { max-width: 560px; }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.6rem 0; }
  .topbar .container { justify-content: center; }
  .topbar-item.hide-sm { display: none; }
}

@media (max-width: 640px) {
  .grid.cols-2, .grid.cols-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .float-chip.one { right: 0; }
  .float-chip.two { left: 0; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- 22. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Omnisight usability and responsive refinements */
.eyebrow { color:var(--green-700); }
.mock-caption strong { color:#8BE2B8 !important; }
.mock-caption.light strong { color:var(--blue-700) !important; }
.mock-msg.bot span[style*="color"] { color:var(--green-700) !important; }
.price-note a, main p > a:not(.btn):not(.card-link) { text-decoration:underline; text-underline-offset:3px; }
[hidden] { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; border:0; }
html { scroll-padding-top: 100px; }
[id] { scroll-margin-top: 100px; }
main:focus { outline: none; }
fieldset { border:0; min-width:0; }
input, select, textarea { min-width:0; max-width:100%; }
button, input, select, textarea { font:inherit; }
button:disabled { cursor:wait; opacity:.65; }
.btn { white-space:normal; text-align:center; min-height:44px; }
.grid > *, .split > *, .hero-inner > *, .form-grid > *, .price-grid > * { min-width:0; }
.source-note { color:var(--muted); font-size:.87rem; margin:1.2rem 0; }
.source-note a, .source-list a, .notice a, .faq-a a, #privacy p a { text-decoration:underline; text-underline-offset:3px; }
.source-list { padding-left:1.3rem; margin:1rem 0 2.5rem; }
.source-list li { margin-bottom:.9rem; }
.preview-note, .page-hero p.preview-note { color:#C3D0E0; font-size:.82rem; line-height:1.65; margin:1.1rem 0; max-width:46rem; }
.preview-note a { color:#8BE2B8; text-decoration:underline; text-underline-offset:3px; }
.hero { background:radial-gradient(ellipse at 82% 90%,rgba(0,133,63,.2),transparent 48%),radial-gradient(ellipse at 80% 10%,rgba(27,106,203,.28),transparent 60%),linear-gradient(130deg,#0A1220,#10233F); }
.hero h1 { font-size:clamp(2.3rem,4.3vw,3.85rem); line-height:1.13; letter-spacing:-.045em; margin-top:1.1rem; }
.hero-accent { color:#78DFAC; }
.hero-inner { gap:2.8rem; padding:4.3rem 0 4.8rem; grid-template-columns:1fr 1fr; }
.hero .lead { font-size:1.06rem; line-height:1.85; }
.hero .hero-badges { margin-top:1.5rem; }
.hero .chip { font-size:.74rem; }
.status-dot { width:7px; height:7px; background:#79E8B0; border-radius:50%; display:inline-block; flex:none; }
.mock-dash { border:1px solid #344A68; box-shadow:0 20px 70px rgba(0,0,0,.24); }
.mock-dash-head { flex-wrap:wrap; font-size:.69rem; letter-spacing:.07em; padding:1rem 1.2rem; }
.mock-dash-head > span:first-child { display:flex; align-items:center; gap:.6rem; }
.sample-label { font-weight:500; letter-spacing:0; background:#1D3553; padding:.25rem .65rem; border-radius:6px; }
.mock-heading { font-family:var(--font-head); font-size:.8rem; font-weight:600; color:var(--navy-900); margin-bottom:.65rem; }
.mock-dash-body { gap:.75rem; padding:1rem; }
.mock-panel { padding:.9rem; }
.mock-kpi .v { font-size:1.18rem; }
.mock-kpi .l { font-size:.7rem; }
.mock-ai-row .eng { width:5.1rem; }
.score-ring .val { display:flex; align-items:center; justify-content:center; font-size:1.5rem; }
.ring-caption { font-size:.67rem; color:var(--muted); text-align:center; margin-bottom:.8rem; }
.visual-caption { color:#B9C6D8; font-size:.72rem; text-align:center; margin-top:1rem; }
.reveal { opacity:1; transform:none; }
.reveal-pending { opacity:0; transform:translateY(16px); }
.spec-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; max-width:100%; }
.spec-table { min-width:420px; }
.spec-table.wide-table { min-width:640px; }
.spec-table th { width:auto; white-space:normal; }
.spec-table thead th { background:#EAF0F7; }
.spec-table tbody tr:hover td, .spec-table tbody tr:hover th { background:#F1F7FB; }
.faq-q { list-style:none; min-height:56px; }
.faq-q::-webkit-details-marker { display:none; }
.faq-a { max-height:none; overflow:visible; }
.faq-item[open] .chev { transform:rotate(180deg); }
.faq-item[open] { border-color:#A4C9B6; }
.faq-item[open] .faq-q { color:var(--green-700); }
.toolkit-nav { display:flex; flex-wrap:wrap; gap:.6rem; padding:1.5rem 0; }
.toolkit-nav a { border:1px solid var(--line); border-radius:999px; padding:.55rem 1rem; font-weight:600; font-size:.84rem; }
.toolkit-nav a:hover { background:var(--blue-100); }
.phase-label { color:var(--green-700); font-size:.76rem; font-weight:700; line-height:1.5; display:block; margin-bottom:1rem; }
.pricing-intro { text-align:center; max-width:740px; margin:0 auto 2.8rem; }
.pricing-intro p { color:var(--muted); margin-top:1rem; }
.billing-control { display:inline-flex; gap:.35rem; padding:.4rem; border:1px solid var(--line); border-radius:999px; background:var(--bg); margin-top:1rem; }
.billing-control label { cursor:pointer; border-radius:999px; padding:.6rem .9rem; display:flex; gap:.45rem; align-items:center; font-weight:600; font-size:.87rem; }
.billing-control label:has(input:checked) { background:var(--navy-900); color:white; box-shadow:var(--shadow-sm); }
.billing-control input { accent-color:var(--green-600); width:16px; height:16px; }
.billing-control label span { font-size:.68rem; color:var(--green-700); }
.billing-control label:has(input:checked) span { color:#8CE7B8; }
.price-annual { min-height:3.3em; line-height:1.55; }
.price-per { margin-top:.5rem; }
.price-card { padding:1.9rem 1.25rem; }
.filter-controls { display:flex; flex-wrap:wrap; align-items:flex-end; gap:1rem; margin-bottom:1.8rem; }
.filter-controls .form-field { flex:1; min-width:180px; }
.filter-count { width:100%; font-size:.85rem; color:var(--muted); margin:0; }
.filter-empty { margin:1.5rem 0; }
.vendor-grid { list-style:none; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.65rem; }
.vendor-item { padding:1rem 1.2rem; border:1px solid var(--line); border-radius:10px; background:white; display:flex; flex-direction:column; gap:.3rem; }
.vendor-item strong { color:var(--navy-900); font-size:.9rem; }
.vendor-item span { color:var(--muted); font-size:.73rem; }
.form-field .error-msg { font-size:.84rem; }
.form-field small { font-size:.78rem; color:var(--muted); }
.form-trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.form-status:not(:empty) { padding:1rem; background:var(--blue-100); color:#14385F; border-radius:9px; margin-top:1.2rem; }
.message-preview { margin-top:1.2rem; border:1px solid #BDD7CB; background:#F5FBF8; border-radius:14px; padding:1.2rem; }
.message-preview pre { white-space:pre-wrap; overflow-wrap:anywhere; font:inherit; font-size:.9rem; margin:1rem 0; }
.draft-actions { display:flex; flex-wrap:wrap; gap:.65rem; }
.draft-actions .btn { font-size:.8rem; padding:.7rem 1rem; }
#delivery-note { display:block; margin-bottom:1.2rem; }
.footer-links { border-top:1px solid rgba(255,255,255,.09); display:flex; flex-wrap:wrap; gap:1.2rem; padding:1.2rem 0; font-size:.82rem; }
.footer-links span { margin-left:auto; color:#C7D6E6; }
.footer-brand .brand-tag { color:#A3B8CD !important; }
.footer-bottom { color:#A3B8CD; }
.topbar .container { flex-wrap:wrap; row-gap:.35rem; }
:focus-visible { outline:3px solid #DA7A25; outline-offset:4px; }
.skip-link { position:fixed; z-index:100; }
@media (min-width:1121px) {
  .nav-links a { padding:.5rem .64rem; font-size:.87rem; }
  .nav { gap:1rem; }
}
@media (max-width:1120px) {
  .nav { flex-wrap:wrap; gap:0; padding:.7rem 0; min-height:74px; }
  .nav > nav { margin-left:auto; }
  .nav-cta { display:none; }
  .nav-links { display:flex; flex-wrap:wrap; gap:.3rem; padding:1rem 0; }
  .nav-links a { font-size:.85rem; }
  .nav:not(.unused) { position:static; }
  .site-header:not(.nav-ready) .nav > nav { width:100%; }
  .nav-ready .nav-toggle { display:block; width:44px; height:44px; }
  .nav-ready .nav-links:not(.open) { display:none; }
  .nav-ready .nav-links.open { display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; padding:.65rem 4%; background:white; box-shadow:var(--shadow-lg); border-bottom:1px solid var(--line); max-height:calc(100dvh - 80px); overflow-y:auto; }
  .nav-ready .nav-links.open a { padding:.7rem 1rem; }
  .nav-links.open a.active { box-shadow:inset 3px 0 0 var(--green-600); }
}
@media (max-width:880px) {
  .hero-inner { grid-template-columns:1fr; gap:2rem; padding:3rem 0; }
  .hero-visual { max-width:640px; width:100%; }
  .hero h1 { max-width:18ch; }
  .vendor-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .site-header:not(.nav-ready) .nav-links { position:static; display:flex; }
}
@media (max-width:640px) {
  .topbar .container { justify-content:space-between; gap:.4rem; }
  .topbar { font-size:.68rem; }
  .topbar-group { gap:.5rem; }
  .hero-badges { gap:.4rem; }
  .hero .chip { font-size:.67rem; padding:.35rem .65rem; }
  .hero h1 { font-size:clamp(2.1rem,9vw,3.2rem); }
  .mock-dash-body { grid-template-columns:1fr; }
  .mock-dash-head { font-size:.65rem; padding:.75rem; }
  .mock-kpis { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .mock-bars { height:100px; }
  .price-card { padding:1.8rem; }
  .billing-control { border-radius:16px; flex-wrap:wrap; justify-content:center; }
  .billing-control label { padding:.65rem; }
  .filter-controls .form-field { min-width:100%; }
  .vendor-grid { grid-template-columns:1fr; }
  .footer-links { flex-direction:column; gap:.8rem; }
  .footer-links span { margin-left:0; }
  .page-hero { padding:2.7rem 0; }
  .spec-table { font-size:.85rem; }
  .spec-table th, .spec-table td { padding:.75rem; }
}
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  .reveal-pending { opacity:1; transform:none; }
}
@media print {
  .topbar, .site-header, .hero-cta, .filter-controls, .billing-control, .skip-link, .draft-actions { display:none !important; }
  .reveal-pending { opacity:1; transform:none; }
  .section, .section.tight { padding:1.5rem 0; }
  .spec-wrap { overflow:visible; }
  .spec-table, .spec-table.wide-table { min-width:0; }
  .price-grid { grid-template-columns:repeat(2,1fr); }
  details.faq-item .faq-a { display:block; }
  .card, .price-card { break-inside:avoid; box-shadow:none; }
}
