:root {
  --navy-950: #071525;
  --navy-900: #0b2139;
  --navy-800: #103150;
  --navy-700: #16466e;
  --blue-500: #2c7fb8;
  --silver-50: #f7f9fb;
  --silver-100: #edf1f5;
  --silver-200: #dbe2e8;
  --silver-400: #98a7b5;
  --silver-600: #5a6a78;
  --red-500: #b84045;
  --red-600: #963137;
  --white: #ffffff;
  --ink: #14212b;
  --success: #166534;
  --warning: #9a6700;
  --shadow: 0 18px 50px rgba(7, 21, 37, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--silver-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: white; padding: 10px 14px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 37, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; display: inline-flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-size: 1.02rem; font-weight: 820; letter-spacing: -.01em; }
.site-brand-logo {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 12px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  border-radius: 12px;
  background: url("fieldfindings-professional-icon-v2.png") center / contain no-repeat;
}
.brand > span[data-product-name] {
  color: white;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #d9e4ee; text-decoration: none; font-size: 0.94rem; font-weight: 650; }
.nav-links a:hover, .nav-links a:focus { color: white; }
.nav-toggle { display: none; border: 0; background: transparent; color: white; font-size: 1.4rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 760; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red-500); color: white; box-shadow: 0 10px 25px rgba(184,64,69,0.26); }
.btn-primary:hover { background: var(--red-600); }
.btn-secondary { background: white; color: var(--navy-900); border-color: var(--silver-200); }
.btn-dark { background: var(--navy-900); color: white; }
.btn-small { min-height: 38px; padding: 0 16px; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(44,127,184,.26), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(184,64,69,.18), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  padding: 92px 0 86px;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: #cbd9e6; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red-500); }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); color: var(--navy-950); }
h3 { color: var(--navy-900); }
.hero p { max-width: 670px; color: #dbe6ef; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 18px; color: #c6d4df; font-size: .92rem; }
.trust-line span::before { content: "\2713"; margin-right: 7px; color: #8fc5a2; font-weight: 900; }

.product-window { background: white; color: var(--ink); border-radius: 20px; box-shadow: 0 28px 70px rgba(0,0,0,.28); overflow: hidden; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.window-bar { display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; background: #e9eef3; border-bottom: 1px solid #d4dce3; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #9aa8b4; }
.product-ui { display: grid; grid-template-columns: 150px 1fr; min-height: 370px; }
.ui-sidebar { background: var(--navy-900); color: white; padding: 24px 16px; }
.ui-sidebar strong { display: block; margin-bottom: 22px; }
.ui-nav-item { padding: 9px 10px; border-radius: 8px; margin-bottom: 5px; color: #bed0de; font-size: .78rem; }
.ui-nav-item.active { background: rgba(255,255,255,.12); color: white; }
.ui-main { padding: 25px; background: #f6f8fa; }
.ui-title { font-weight: 800; color: var(--navy-900); margin-bottom: 16px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { background: white; border: 1px solid #e2e8ed; border-radius: 10px; padding: 13px; }
.metric strong { display: block; font-size: 1.3rem; color: var(--navy-900); }
.metric span { font-size: .7rem; color: var(--silver-600); }
.finding-card { margin-top: 12px; padding: 14px; background: white; border: 1px solid #e2e8ed; border-left: 4px solid var(--red-500); border-radius: 10px; }
.finding-card b { display: block; font-size: .78rem; color: var(--navy-900); }
.finding-card span { font-size: .7rem; color: var(--silver-600); }

.section { padding: 90px 0; }
.section.alt { background: white; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p { color: var(--silver-600); font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: white; border: 1px solid var(--silver-200); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 34px rgba(7,21,37,.06); }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: white; background: var(--navy-800); font-size: 1.2rem; }
.card p { color: var(--silver-600); }

.workflow { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px; background: white; border: 1px solid var(--silver-200); border-radius: 14px; }
.step-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: white; font-weight: 850; }
.step h3 { margin: 2px 0 6px; font-size: 1.04rem; }
.step p { margin: 0; color: var(--silver-600); }

.pricing-wrap { display: grid; grid-template-columns: 1fr 430px; gap: 46px; align-items: center; }
.pricing-card { background: var(--navy-950); color: white; border-radius: 24px; padding: 38px; box-shadow: var(--shadow); }
.pricing-card h3 { color: white; font-size: 1.55rem; }
.price { margin: 18px 0 4px; font-size: 2.45rem; font-weight: 850; letter-spacing: -0.04em; }
.price-note { color: #bdcbd6; }
.regular-price { color: #bdcbd6; font-weight: 700; text-decoration: line-through; }
.bundle-offer { margin: 22px 0; padding: 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.06); }
.bundle-offer strong, .bundle-offer span { display: block; }
.bundle-offer span { margin-top: 4px; color: #bdcbd6; }
.check-list { list-style: none; padding: 0; margin: 26px 0; }
.check-list li { margin: 12px 0; color: #dbe5ed; }
.check-list li::before { content: "\2713"; color: #83c298; font-weight: 900; margin-right: 10px; }
.notice { padding: 16px 18px; border-left: 4px solid var(--red-500); background: #fff7f7; color: #5e2c2e; border-radius: 8px; }

.faq { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--silver-200); border-radius: 12px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 760; color: var(--navy-900); }
details p { color: var(--silver-600); }

.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: white; border-radius: 24px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: white; margin-bottom: 8px; }
.cta-band p { margin: 0; color: #d7e3ec; }

.site-footer { background: var(--navy-950); color: #c6d3dd; padding: 55px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 42px; }
.footer-title { color: white; font-weight: 800; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c6d3dd; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }

.page-hero { padding: 72px 0 58px; color: white; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 12px; }
.page-content { max-width: 850px; padding: 65px 0 90px; }
.page-content h2 { margin-top: 38px; font-size: 1.75rem; }
.page-content h3 { margin-top: 26px; }
.page-content p, .page-content li { color: #3e4e5b; }
.placeholder { display: inline-block; padding: 2px 7px; border-radius: 5px; background: #fff1bf; color: #5f4800; font-weight: 700; }
.hash-box { overflow-wrap: anywhere; padding: 16px; background: var(--navy-950); color: white; border-radius: 10px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(4,15,26,.72); }
.modal-backdrop.open { display: grid; }
.modal { width: min(520px, 100%); background: white; border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.modal h2 { font-size: 1.65rem; }
.modal-actions { display: flex; justify-content: flex-end; margin-top: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: 74px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: var(--navy-950); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; }
  .hero-grid, .workflow, .pricing-wrap { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .product-window { transform: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand { font-size: .94rem; }
  .brand-mark, .site-brand-logo { width: 42px; height: 42px; border-radius: 10px; }
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding: 70px 0 64px; }
  .section { padding: 68px 0; }
  .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .product-ui { grid-template-columns: 1fr; }
  .ui-sidebar { display: none; }
  .metric-row { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 30px; }
  .pricing-card { padding: 28px; }
}

.preview-banner {
  background: #8f1d2c;
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}

[data-support-link][aria-disabled="true"] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}


.interface-caption {
  margin: 12px 4px 0;
  color: #cbd9e6;
  font-size: 0.82rem;
  text-align: center;
}

.btn.is-disabled {
  opacity: 0.78;
}

body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


.hero-screenshot {
  margin: 0;
}
.hero-screenshot a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.hero-screenshot img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: auto;
}
.hero-screenshot figcaption {
  margin-top: 14px;
  color: #cbd9e6;
  font-size: .84rem;
  text-align: center;
}
.screenshot-section {
  background: #eef3f7;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}
.screenshot-card {
  margin: 0;
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid var(--silver-200);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 36px rgba(7,21,37,.08);
  overflow: hidden;
}
.screenshot-card a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px;
  background: #f3f6f8;
  border-bottom: 1px solid var(--silver-200);
}
.screenshot-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: auto;
}
.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(149, 164, 175, 0.18);
}
.screenshot-card figcaption strong {
  color: var(--navy-900);
  font-size: 1.06rem;
}
.screenshot-card figcaption span {
  color: var(--silver-600);
  font-size: .94rem;
}
@media (max-width: 760px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Findings product family additions. */
.product-family { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-choice { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.product-choice .btn { margin-top: auto; align-self: flex-start; }
.product-tag { display: inline-flex; align-self: flex-start; margin-bottom: 16px; padding: 5px 10px; border-radius: 999px; background: #e7f1f8; color: var(--navy-700); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.workplace-hero-art { display: grid; place-items: center; min-height: 430px; padding: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.workplace-hero-art img { width: min(360px, 85%); height: auto; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 28px; color: var(--silver-600); }
.feature-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.security-panel { padding: 28px; border: 1px solid #c9d8e4; border-radius: 18px; background: #edf5fa; }
.security-panel h3 { margin-bottom: 10px; }
.security-panel p:last-child { margin-bottom: 0; }
.product-nav-link { color: #fff !important; }
.muted { color: var(--silver-600); }
.legal-pre { white-space: pre-wrap; overflow-wrap: anywhere; padding: 22px; border: 1px solid var(--silver-200); border-radius: 14px; background: white; font: inherit; color: #3e4e5b; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #eef5ef; color: var(--success); font-weight: 760; }
.status-pill::before { content: "\2713"; }
code { padding: 2px 6px; border-radius: 5px; background: var(--silver-100); }

@media (max-width: 760px) {
  .product-family, .feature-list { grid-template-columns: 1fr; }
  .workplace-hero-art { min-height: 300px; padding: 28px; }
}

/* Three-domain Findings Professional family homepage. */
.family-brand { gap: 12px; font-size: 1.06rem; font-weight: 820; letter-spacing: -.01em; }
.family-brand-symbol { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.32); border-radius: 12px; background: linear-gradient(145deg, var(--blue-500), var(--red-500)); color: white; font-size: 1.2rem; font-weight: 900; }
.family-hero { padding-top: 82px; }
.family-hero h1 { font-size: clamp(2.6rem, 4.5vw, 3.55rem); }
.family-hero-panel { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; padding: 24px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 28px 70px rgba(0,0,0,.24); }
.family-hero-panel article { display: grid; align-content: center; justify-items: center; min-width: 0; padding: 22px; border-radius: 18px; background: white; text-align: center; }
.family-hero-panel img { width: min(230px, 100%); max-height: 150px; object-fit: contain; }
.family-hero-panel .field-family-icon, .family-hero-panel .workplace-family-icon { width: min(145px, 80%); }
.family-hero-panel p { margin: 18px 0 0; color: var(--silver-600); font-size: .9rem; }
.family-plus { align-self: center; color: white; font-size: 2rem; font-weight: 850; }
.family-product-grid .product-choice { gap: 4px; }
.compact-check-list { display: grid; gap: 8px; margin: 12px 0 26px; padding: 0; list-style: none; color: var(--silver-600); }
.compact-check-list li::before { content: "\2713"; margin-right: 9px; color: var(--success); font-weight: 900; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid var(--silver-200); border-radius: 18px; background: white; box-shadow: 0 12px 34px rgba(7,21,37,.06); }
.comparison-table { width: 100%; min-width: 690px; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td { padding: 18px 20px; border-bottom: 1px solid var(--silver-200); vertical-align: top; }
.comparison-table thead th { background: var(--navy-900); color: white; }
.comparison-table tbody th { width: 25%; color: var(--navy-900); }
.comparison-table tbody td { width: 37.5%; color: var(--silver-600); }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.family-pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.family-price-card { display: flex; flex-direction: column; min-width: 0; padding: 30px; }
.family-price-card .price { font-size: 2.05rem; }
.family-price-card p { color: #dbe5ed; }
.family-price-card .btn { align-self: flex-start; margin-top: auto; }
.bundle-price-card { background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); }

@media (max-width: 980px) {
  .family-hero-panel { grid-template-columns: 1fr; }
  .family-plus { justify-self: center; }
  .family-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .family-brand { font-size: .98rem; }
  .family-brand-symbol { width: 36px; height: 36px; }
  .family-hero-panel { padding: 16px; }
  .family-hero-panel article { padding: 18px; }
}
