/* =========================================================
   SECULIQ — Landing Page
   Design tokens + components
   ========================================================= */

:root {
  /* Brand */
  --primary: #173D30;
  --primary-700: #102A22;
  --secondary: #2F6F5E;
  --accent: #7FBFA6;
  --accent-soft: #C8E1D6;

  /* Surfaces */
  --bg: #F5F7F6;
  --bg-elev: #FFFFFF;
  --bg-tinted: #EEF2F0;
  --bg-dark: #0E2520;
  --bg-dark-2: #0A1C18;

  /* Text */
  --text: #1F2A26;
  --text-muted: #5A6A64;
  --text-soft: #8A9994;
  --text-on-dark: #E8EFEC;
  --text-on-dark-muted: #9CB1A9;

  /* Borders */
  --border: #E2E7E4;
  --border-strong: #CFD6D2;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Status */
  --status-ok: #3DA67F;
  --status-warn: #E0A431;
  --status-bad: #D2614A;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 30, 25, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 30, 25, 0.06), 0 1px 2px rgba(15, 30, 25, 0.04);
  --shadow-md: 0 6px 18px -6px rgba(15, 30, 25, 0.10), 0 4px 10px -4px rgba(15, 30, 25, 0.06);
  --shadow-lg: 0 24px 50px -20px rgba(15, 30, 25, 0.18), 0 10px 24px -12px rgba(15, 30, 25, 0.10);
  --shadow-xl: 0 40px 80px -30px rgba(15, 30, 25, 0.30), 0 16px 32px -16px rgba(15, 30, 25, 0.16);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing rhythm */
  --section-y: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --container-wide: 1320px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding-block: var(--section-y); position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
p { margin: 0; text-wrap: pretty; }
.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}
.serif-accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 1px 2px rgba(23,61,48,0.25);
}
.btn-primary:hover { background: var(--primary-700); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--primary); color: var(--primary); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}
.btn-link:hover { color: var(--primary); }
.btn-link svg { transition: transform 0.2s ease; }
.btn-link:hover svg { transform: translateX(3px); }
.btn-lg { height: 50px; padding: 0 22px; font-size: 15px; border-radius: 12px; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.2s ease;
}
.nav-wrap.scrolled { padding: 10px 0; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 14px 8px 18px;
  background: rgba(245, 247, 246, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(23, 61, 48, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { height: 56px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(23,61,48,0.04); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-login {
  padding: 0 14px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}
.nav-login:hover { background: rgba(23,61,48,0.05); }
.nav-cta {
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--primary-700); }

/* ---------- HERO ---------- */
.hero {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 38%, rgba(127, 191, 166, 0.22), transparent 70%),
    radial-gradient(45% 35% at 18% 20%, rgba(47, 111, 94, 0.10), transparent 70%);
}
.hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-copy { max-width: 600px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-pill .tag {
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(127,191,166,0.18);
}

/* Hero visual — dashboard composition */
.hero-visual {
  position: relative;
  min-height: 580px;
}
.dashboard-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-dash {
  position: relative;
  z-index: 2;
  transform: perspective(1800px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center left;
}
.hero-mobile {
  position: absolute;
  right: -10px;
  bottom: -30px;
  z-index: 3;
  width: 240px;
  border-radius: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 18px 14px 22px;
}
@media (max-width: 1024px) {
  .hero-visual { min-height: 520px; }
  .hero-dash { transform: none; }
  .hero-mobile { right: 0; bottom: -50px; width: 200px; }
}

/* ---------- Dashboard mockup primitives ---------- */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-tinted);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #D6DBD8; }
.dash-url {
  flex: 1;
  height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.dash-side {
  background: var(--bg-tinted);
  border-right: 1px solid var(--border);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-side .brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 14px;
  font-weight: 600;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.dash-side .brand-mark {
  width: 18px; height: 18px;
  background: var(--primary); border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
}
.dash-nav-item.active {
  background: var(--bg-elev);
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
}
.dash-nav-item .ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  opacity: 0.7;
  flex-shrink: 0;
}
.dash-nav-item.active .ico { opacity: 1; }
.dash-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.dash-h1 { font-size: 14px; font-weight: 600; color: var(--text); }
.dash-sub { font-size: 11px; color: var(--text-soft); margin-top: 2px; }
.dash-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 500;
  background: rgba(61, 166, 127, 0.12);
  color: var(--status-ok);
  border-radius: 999px;
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-kpi {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elev);
}
.dash-kpi .label { font-size: 10px; color: var(--text-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.dash-kpi .val { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; color: var(--text); }
.dash-kpi .delta { font-size: 10.5px; color: var(--status-ok); margin-top: 2px; font-weight: 500; }
.dash-kpi .delta.warn { color: var(--status-warn); }
.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}
.dash-block {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--bg-elev);
}
.dash-block .blk-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Compliance ring */
.compliance-ring {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ring {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: conic-gradient(var(--secondary) 0 84%, #E2E7E4 84% 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ring::after {
  content: "";
  position: absolute; inset: 8px;
  background: var(--bg-elev);
  border-radius: 50%;
}
.ring-val {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.compliance-ring .info .t { font-size: 12px; font-weight: 600; color: var(--text); }
.compliance-ring .info .s { font-size: 10.5px; color: var(--text-soft); margin-top: 2px; line-height: 1.45; }

/* Status list */
.status-list { display: flex; flex-direction: column; gap: 9px; }
.status-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px;
}
.status-row .pip {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.status-row .pip.ok { background: var(--status-ok); box-shadow: 0 0 0 3px rgba(61,166,127,0.18); }
.status-row .pip.warn { background: var(--status-warn); box-shadow: 0 0 0 3px rgba(224,164,49,0.18); }
.status-row .pip.bad { background: var(--status-bad); box-shadow: 0 0 0 3px rgba(210,97,74,0.18); }
.status-row .lbl { flex: 1; color: var(--text); }
.status-row .meta { color: var(--text-soft); font-size: 10.5px; font-variant-numeric: tabular-nums; }

/* Mobile mockup */
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 12px; }
.mob-title { font-size: 13px; font-weight: 600; }
.mob-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.mob-card {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: #fff;
  margin-bottom: 10px;
}
.mob-card .lab { font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
.mob-card .v { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; }
.mob-card .sub { font-size: 10.5px; opacity: 0.7; margin-top: 2px; }
.mob-list { display: flex; flex-direction: column; gap: 8px; }
.mob-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.mob-item .ic {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg-tinted);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 12px; font-weight: 600;
}
.mob-item .t { font-size: 11.5px; font-weight: 500; }
.mob-item .s { font-size: 10px; color: var(--text-soft); margin-top: 1px; }
.mob-item .right { margin-left: auto; font-size: 10px; padding: 2px 7px; border-radius: 999px; font-weight: 500; }
.mob-item .right.warn { background: rgba(224,164,49,0.14); color: var(--status-warn); }
.mob-item .right.ok { background: rgba(61,166,127,0.14); color: var(--status-ok); }

/* ---------- Trust strip ---------- */
.trust {
  padding-block: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
}
.trust-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 30px; margin-bottom: 40px; flex-wrap: wrap;
}
.trust-head h2 { font-size: clamp(24px, 2.6vw, 32px); max-width: 540px; }
.trust-metrics {
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.trust-metric .v { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--primary); }
.trust-metric .l { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .industries { grid-template-columns: repeat(2, 1fr); }
}
.industry {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.industry:hover { border-color: var(--secondary); transform: translateY(-2px); }
.industry .ind-ic {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: var(--bg-tinted);
  color: var(--secondary);
}
.industry .ind-t { font-size: 14.5px; font-weight: 600; color: var(--text); }
.industry .ind-s { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }

/* ---------- Section headers ---------- */
.sec-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p { font-size: 17px; color: var(--text-muted); line-height: 1.55; }

/* ---------- Problem / Solution ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}
.split-card {
  position: relative;
  padding: 36px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.split-card.problems {
  background:
    linear-gradient(180deg, #FAF8F5, #F5F2EE);
  border-color: #EADFD5;
}
.split-card.solutions {
  background: linear-gradient(180deg, var(--primary), var(--primary-700));
  color: var(--text-on-dark);
  border-color: transparent;
}
.split-card.solutions h3 { color: #fff; }
.split-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: var(--text-muted);
  margin-bottom: 22px;
}
.split-card.solutions .split-label {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}
.split-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.split-card.solutions .split-title { color: #fff; }
.split-list { display: flex; flex-direction: column; gap: 4px; }
.split-li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}
.split-li:first-child { border-top: 0; padding-top: 0; }
.split-card.solutions .split-li { border-top-color: rgba(255,255,255,0.08); }
.split-li .li-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.05);
  color: var(--text);
}
.split-card.solutions .split-li .li-ic {
  background: rgba(127,191,166,0.15);
  color: var(--accent);
}
.split-li .li-t { font-size: 15px; font-weight: 500; line-height: 1.35; }
.split-li .li-s { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }
.split-card.solutions .li-s { color: var(--text-on-dark-muted); }

/* Connector arrow between split cards on desktop */
.split-arrow {
  display: none;
}

/* ---------- Modules ---------- */
.modules {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.module-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-tinted);
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 48px;
  border: 1px solid var(--border);
}
.module-tab {
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.module-tab.active {
  background: var(--bg-elev);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.module-cat {
  display: none;
  animation: fadeIn 0.4s ease;
}
.module-cat.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.module-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .module-grid { grid-template-columns: 1fr; }
}
.module-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.module-features .mf-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 4px;
}
.module-features h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.module-features > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.feature-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { border-color: var(--secondary); transform: translateX(2px); }
.feature-card .fc-ic {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.feature-card .fc-t { font-size: 14.5px; font-weight: 600; color: var(--text); }
.feature-card .fc-s { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.feature-card .fc-arr { color: var(--text-soft); transition: color 0.2s ease, transform 0.2s ease; }
.feature-card:hover .fc-arr { color: var(--secondary); transform: translateX(2px); }

.module-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.module-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(127,191,166,0.12), transparent 70%);
  pointer-events: none;
}
.mp-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mp-tabs {
  display: flex; gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.mp-tab {
  padding-bottom: 10px;
  font-size: 12.5px;
  color: var(--text-soft);
  position: relative;
}
.mp-tab.on { color: var(--text); font-weight: 500; }
.mp-tab.on::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--primary);
}
.mp-table {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.mp-tr {
  display: grid;
  grid-template-columns: 28px 1.4fr 1fr 0.8fr 0.6fr;
  gap: 10px;
  padding: 11px 14px;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.mp-tr:last-child { border-bottom: 0; }
.mp-tr.head { background: var(--bg-tinted); color: var(--text-soft); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }
.mp-tr .ck { width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid var(--border-strong); }
.mp-tr.head .ck { border: 0; }
.mp-tr .t { font-weight: 500; color: var(--text); }
.mp-tr .meta { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.mp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 10.5px; font-weight: 500;
}
.mp-badge.ok { background: rgba(61,166,127,0.12); color: var(--status-ok); }
.mp-badge.warn { background: rgba(224,164,49,0.14); color: var(--status-warn); }
.mp-badge.bad { background: rgba(210,97,74,0.14); color: var(--status-bad); }

/* ---------- Platform / Dashboard preview ---------- */
.platform {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.platform::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 35% at 12% 30%, rgba(47, 111, 94, 0.06), transparent 70%),
    radial-gradient(45% 40% at 85% 70%, rgba(127, 191, 166, 0.10), transparent 70%);
  pointer-events: none;
}
.platform .container { position: relative; z-index: 1; }
.platform-shell {
  margin-top: 56px;
  position: relative;
}
.platform-frame {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.pf-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-tinted);
}
.pf-bar .pf-brand { display: flex; align-items: center; gap: 10px; }
.pf-bar .pf-brand .mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
}
.pf-bar .pf-brand .name { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.pf-bar .pf-tabs { display: flex; gap: 4px; margin-left: 20px; }
.pf-bar .pf-tabs span {
  font-size: 12.5px; padding: 6px 12px; border-radius: 7px;
  color: var(--text-muted);
}
.pf-bar .pf-tabs span.on { background: var(--bg-elev); color: var(--text); font-weight: 500; box-shadow: var(--shadow-xs); }
.pf-bar .pf-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.pf-search {
  width: 200px; height: 30px; border-radius: 8px;
  background: var(--bg-elev); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-soft);
  padding: 0 10px; display: inline-flex; align-items: center; gap: 8px;
}
.pf-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--accent)); }

.pf-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 600px;
}
.pf-side {
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf-side-group {
  font-size: 10.5px; color: var(--text-soft); letter-spacing: 0.1em;
  text-transform: uppercase; padding: 16px 10px 6px;
}
.pf-side-group:first-child { padding-top: 0; }
.pf-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-muted);
}
.pf-side a:hover { background: var(--bg-tinted); color: var(--text); }
.pf-side a.on { background: var(--primary); color: #fff; font-weight: 500; }
.pf-side a .pf-ico { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.8; }
.pf-side a.on .pf-ico { opacity: 1; }
.pf-side a .count {
  margin-left: auto; font-size: 10.5px; padding: 2px 7px; border-radius: 999px;
  background: rgba(0,0,0,0.05); color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}
.pf-side a.on .count { background: rgba(255,255,255,0.15); color: #fff; }

.pf-main {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pf-greeting { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.pf-greeting h3 { font-size: 22px; letter-spacing: -0.02em; }
.pf-greeting .pf-date { font-size: 12.5px; color: var(--text-soft); margin-top: 4px; }
.pf-cta-grp { display: flex; gap: 8px; }
.pf-btn-sm {
  height: 32px; padding: 0 12px; border-radius: 7px;
  font-size: 12.5px; font-weight: 500;
}
.pf-btn-sm.prim { background: var(--primary); color: #fff; }
.pf-btn-sm.gst { background: var(--bg-elev); color: var(--text); border: 1px solid var(--border); }

.pf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) {
  .pf-stats { grid-template-columns: repeat(2, 1fr); }
}
.pf-stat {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elev);
  position: relative;
}
.pf-stat .lab { font-size: 11.5px; color: var(--text-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.pf-stat .val { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
.pf-stat .sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.pf-stat .pip-corner {
  position: absolute; top: 16px; right: 16px;
  width: 8px; height: 8px; border-radius: 50%;
}
.pf-stat .pip-corner.ok { background: var(--status-ok); }
.pf-stat .pip-corner.warn { background: var(--status-warn); }
.pf-stat .pip-corner.bad { background: var(--status-bad); }

.pf-twocol {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 14px;
}
@media (max-width: 1024px) {
  .pf-twocol { grid-template-columns: 1fr; }
}
.pf-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elev);
}
.pf-card-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.pf-card-h h4 { font-size: 14px; font-weight: 600; }
.pf-card-h .h-link { font-size: 12px; color: var(--secondary); font-weight: 500; }

/* Inspection list rows */
.insp-row {
  display: grid;
  grid-template-columns: 28px 1.4fr 1fr 0.9fr 0.7fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
}
.insp-row:first-of-type { border-top: 0; }
.insp-row .ico-sq {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-tinted);
  color: var(--secondary);
  font-size: 11px;
}
.insp-row .name { font-weight: 500; color: var(--text); }
.insp-row .loc { color: var(--text-muted); font-size: 11.5px; }
.insp-row .due { color: var(--text-muted); font-variant-numeric: tabular-nums; font-size: 11.5px; }

/* Activity log */
.act-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  font-size: 12.5px;
  border-top: 1px solid var(--border);
}
.act-row:first-of-type { border-top: 0; padding-top: 0; }
.act-row .dot-tl {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 4px;
}
.act-row .tx { line-height: 1.4; color: var(--text); }
.act-row .tx span { color: var(--text-muted); }
.act-row .tx b { font-weight: 600; color: var(--text); }
.act-row .when { font-size: 11px; color: var(--text-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Floating cards on the platform shell */
.pf-float {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  z-index: 2;
}
.pf-float.f1 {
  left: -28px;
  top: 38%;
  width: 250px;
  transform: rotate(-2deg);
}
.pf-float.f2 {
  right: -32px;
  bottom: 14%;
  width: 240px;
  transform: rotate(2deg);
}
@media (max-width: 1024px) {
  .pf-float { display: none; }
}
.pf-float .fl-h { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--text-soft); }
.pf-float .fl-t { font-size: 13px; font-weight: 600; margin-top: 6px; line-height: 1.35; }
.pf-float .fl-bar { height: 6px; border-radius: 999px; background: var(--bg-tinted); margin-top: 10px; overflow: hidden; position: relative; }
.pf-float .fl-bar i { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--secondary), var(--accent)); border-radius: 999px; }
.pf-float .fl-row { display: flex; justify-content: space-between; font-size: 11px; margin-top: 8px; color: var(--text-muted); }

/* ---------- Why SECULIQ (dark) ---------- */
.why {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(35% 30% at 20% 20%, rgba(127, 191, 166, 0.15), transparent 70%),
    radial-gradient(40% 35% at 85% 80%, rgba(47, 111, 94, 0.18), transparent 70%);
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }
.why .eyebrow { color: var(--accent); }
.why .eyebrow::before { background: var(--accent); }
.why h2 { color: #fff; }
.why .lede { color: var(--text-on-dark-muted); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-dark);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,191,166,0.5), transparent);
}
.why-card .ic {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: rgba(127,191,166,0.14);
  color: var(--accent);
}
.why-card h3 { color: #fff; font-size: 18px; }
.why-card p { color: var(--text-on-dark-muted); font-size: 13.5px; line-height: 1.55; }
.why-card .why-num {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: rgba(127,191,166,0.25);
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
.price-card {
  display: flex; flex-direction: column;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, #143A2D, #0D2A20);
  color: var(--text-on-dark);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 1024px) {
  .price-card.featured { transform: none; }
}
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-name { font-size: 14px; font-weight: 600; color: var(--secondary); letter-spacing: 0.04em; text-transform: uppercase; }
.price-card.featured .price-name { color: var(--accent); }
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 20px;
}
.price-amount .amt { font-size: 52px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; }
.price-amount .per { font-size: 14px; color: var(--text-muted); }
.price-card.featured .price-amount .per { color: var(--text-on-dark-muted); }
.price-card.featured .price-amount .amt { color: #fff; }
.price-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 10px;
  min-height: 38px;
}
.price-card.featured .price-desc { color: var(--text-on-dark-muted); }
.price-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  border-radius: 10px;
  margin-top: 22px;
  background: var(--text);
  color: #fff;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s ease;
}
.price-cta:hover { background: var(--primary); }
.price-card.featured .price-cta {
  background: var(--accent);
  color: var(--primary-700);
}
.price-card.featured .price-cta:hover { background: #9BD0BC; }
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0 22px;
}
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-feats {
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  flex: 1;
}
.price-feats .pf-li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--text);
}
.price-card.featured .pf-li { color: var(--text-on-dark); }
.price-feats .pf-li .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(47,111,94,0.12);
  color: var(--secondary);
}
.price-card.featured .pf-li .check { background: rgba(127,191,166,0.18); color: var(--accent); }
.price-feats .pf-li.muted { color: var(--text-soft); }
.price-feats .pf-li.muted .check { background: rgba(0,0,0,0.04); color: var(--text-soft); }

/* ---------- Final CTA ---------- */
.cta {
  padding-block: 80px;
}
.cta-shell {
  position: relative;
  padding: clamp(48px, 7vw, 96px) clamp(36px, 6vw, 80px);
  background: linear-gradient(135deg, #143A2D 0%, #0D2A20 60%, #0E2520 100%);
  color: var(--text-on-dark);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-align: center;
}
.cta-shell svg.netbg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.35;
  pointer-events: none;
}
.cta-shell .glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,191,166,0.25), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta-shell .glow.g1 { top: -200px; left: -100px; }
.cta-shell .glow.g2 { bottom: -250px; right: -50px; background: radial-gradient(circle, rgba(47,111,94,0.3), transparent 60%); }
.cta-shell > * { position: relative; z-index: 1; }
.cta-shell h2 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.cta-shell h2 em { font-family: var(--font-serif); color: var(--accent); font-style: italic; font-weight: 400; }
.cta-shell p {
  font-size: 17px;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-shell .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-shell .btn-primary { background: var(--accent); color: var(--primary-700); }
.cta-shell .btn-primary:hover { background: #9BD0BC; }
.cta-shell .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.cta-shell .btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 44px; width: auto; opacity: 0.9; }
.footer-brand .ft-tag { font-size: 12px; color: var(--text-soft); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-meta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--text-soft);
  flex-wrap: wrap;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive cleanup ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  section { padding-block: 72px; }
  h1 { font-size: 40px; }
  .hero { padding-top: 40px; padding-bottom: 60px; }
  .hero-mobile { display: none; }
  .pf-side { display: none; }
  .pf-body { grid-template-columns: 1fr; }
}
