/* =====================================================
   SISGLM PSI — Landing 2
   ===================================================== */

:root {
  --navy:        #0c1a2b;
  --navy-mid:    #122035;
  --ink:         #1a2533;
  --muted:       #607088;
  --line:        #e0eaf4;
  --paper:       #ffffff;
  --soft:        #f5f8fc;
  --mint:        #00c9b1;
  --mint-dark:   #00a898;
  --mint-light:  rgba(0,201,177,.12);
  --purple:      #6c63ff;
  --purple-dark: #5248d4;
  --rose:        #f05c74;
  --amber:       #f5a623;
  --sh-sm:  0 4px 16px rgba(12,26,43,.07);
  --sh-md:  0 14px 36px rgba(12,26,43,.11);
  --sh-lg:  0 28px 64px rgba(12,26,43,.17);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
p { margin: 0; }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(224,234,244,.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}
.brand img { display: block; }
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--mint-dark); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.login-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
}
.login-link:hover { color: var(--purple-dark); }
.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  background: var(--mint-dark);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background .18s, transform .18s;
}
.btn-header:hover { background: var(--mint); transform: translateY(-1px); }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--mint), var(--purple));
  box-shadow: 0 12px 28px rgba(108,99,255,.3);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(108,99,255,.4); }
.btn-ghost {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover { border-color: var(--mint); color: var(--mint-dark); }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 0 24px;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  padding: 60px 0 80px;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0,201,177,.12);
  border: 1px solid rgba(0,201,177,.28);
  border-radius: 999px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  line-height: .95;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--mint);
}
.hero-lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.68);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-bullets li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding-left: 20px;
  position: relative;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}

/* Dashboard mock */
.browser-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,.44), 0 0 0 1px rgba(255,255,255,.07);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1a2d45;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red    { background: #f05c74; }
.dot-yellow { background: #f5a623; }
.dot-green  { background: var(--mint); }
.address-bar {
  flex: 1;
  margin-left: 10px;
  height: 22px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: monospace;
}
.app-shell {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 400px;
}
.app-sidebar {
  background: linear-gradient(180deg, #1b3050, #0d4f55);
  padding: 20px 14px;
  color: #fff;
}
.sidebar-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--mint);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav li {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.48);
  padding: 7px 10px;
  border-radius: 5px;
  cursor: default;
}
.sidebar-nav li.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.app-content {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f5f8fc);
}
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.app-title-bar {
  width: 110px;
  height: 13px;
  background: #dce8f2;
  border-radius: 999px;
}
.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--purple));
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 8px;
  text-align: center;
}
.kpi b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.2;
}
.kpi-ok b { color: var(--mint-dark); font-size: 13px; }
.kpi small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 12px;
}
.app-chart span {
  flex: 1;
  background: linear-gradient(180deg, var(--mint), var(--purple));
  border-radius: 3px 3px 0 0;
  opacity: .7;
}
.app-rows { display: flex; flex-direction: column; gap: 8px; }
.app-row {
  height: 9px;
  background: #dce8f2;
  border-radius: 999px;
}
.app-row.short { width: 55%; }

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.trust-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.trust-scroll::-webkit-scrollbar { display: none; }
.trust-scroll span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.48);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-scroll .sep {
  color: var(--mint);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

/* ─── SECTION BASE ───────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}
.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
}
.eyebrow.light { color: rgba(255,255,255,.6); }
.eyebrow.light::before { background: var(--mint); }
h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  margin: 10px 0 0;
}
.section-desc {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ─── MODULES GRID ───────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mod-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.mod-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.mod-mint   { background: rgba(0,201,177,.13); }
.mod-purple { background: rgba(108,99,255,.12); }
.mod-rose   { background: rgba(240,92,116,.11); }
.mod-amber  { background: rgba(245,166,35,.12); }
.mod-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mod-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.mod-card ul { display: flex; flex-direction: column; gap: 6px; }
.mod-card li {
  font-size: 12px;
  font-weight: 500;
  color: #3e5068;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}
.mod-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-size: 11px;
  top: 1px;
}

/* ─── BAND WHITE ─────────────────────────────── */
.band-white { background: #fff; }

/* ─── SECURITY ───────────────────────────────── */
.security-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}
.security-copy { display: flex; flex-direction: column; }
.security-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.65;
}
.security-pillars { display: grid; gap: 14px; }
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--soft);
  border-left: 4px solid var(--mint);
  border-radius: 0 8px 8px 0;
  box-shadow: var(--sh-sm);
}
.pillar-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pillar p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* ─── ENCRYPTION ─────────────────────────────── */
.encryption-section {
  background: var(--navy);
}
.encryption-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}
.enc-demo {
  background: #172137;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 28px 64px rgba(0,0,0,.42);
}
.enc-plain { background: #fff; border-radius: 8px; padding: 16px 18px; }
.enc-cipher { background: #0e1628; border-radius: 8px; padding: 16px 18px; }
.enc-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.enc-plain .enc-label { color: var(--mint-dark); }
.enc-cipher .enc-label { color: rgba(0,201,177,.65); }
.enc-plain p { font-size: 14px; font-weight: 600; color: #334057; line-height: 1.5; }
.enc-cipher code {
  display: block;
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: #f4d27c;
  word-break: break-all;
  line-height: 1.65;
}
.enc-meta { color: rgba(0,201,177,.55) !important; font-size: 11px !important; margin-top: 6px; }
.enc-arrow {
  text-align: center;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 0;
}
.enc-copy h2 { color: #fff; }
.enc-copy > p { color: rgba(255,255,255,.62); font-size: 15px; margin-top: 14px; line-height: 1.65; }
.enc-warn {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(245,166,35,.1);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.enc-warn strong { color: var(--amber); }

/* ─── STEPS ──────────────────────────────────── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), var(--purple));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 52px;
  color: var(--mint);
  font-size: 22px;
  font-weight: 400;
  opacity: .6;
}

/* ─── REFERRALS ──────────────────────────────── */
.referral-section { background: var(--navy-mid); }
.referral-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}
.referral-copy h2 { color: #fff; margin-top: 10px; }
.referral-copy > p { color: rgba(255,255,255,.62); font-size: 16px; margin-top: 14px; line-height: 1.65; }
.referral-copy strong { color: var(--mint); }
.referral-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.referral-list li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.referral-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}
.calc-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 24px;
}
.calc-header {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: rgba(255,255,255,.62);
}
.calc-row:last-of-type { border-bottom: none; }
.calc-val { color: var(--mint); font-weight: 700; }
.calc-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ─── PRICING ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
}
.plan-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card.plan-featured {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(0,201,177,.1), var(--sh-md);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mint-dark), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 700;
}
.plan-price small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}
.plan-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 16px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}
.plan-features li {
  font-size: 13px;
  font-weight: 500;
  color: #3e5068;
  padding-left: 18px;
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: 800;
}
.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* ─── FAQ ────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.faq-head h2 { font-size: clamp(24px, 3vw, 36px); }
.faq-head > p { color: var(--muted); font-size: 14px; margin-top: 12px; }
.faq-head a { color: var(--mint-dark); font-weight: 600; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: var(--ink);
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--mint-dark);
  transition: transform .22s ease;
  line-height: 1;
}
.faq-item[open] > summary { color: var(--mint-dark); }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 18px;
}
.faq-item p strong { color: var(--ink); }

/* ─── SIGNUP ─────────────────────────────────── */
.signup-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: start;
}
.signup-copy h2 { font-size: clamp(26px, 3.5vw, 42px); }
.signup-copy > p { color: var(--muted); font-size: 16px; margin-top: 14px; line-height: 1.65; }
.signup-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px;
}
.signup-bullets li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.signup-bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-size: 20px;
  top: -3px;
  font-weight: 700;
}
.signup-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.signup-trust span {
  font-size: 12px;
  font-weight: 700;
  color: #3e5068;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 6px;
}
.signup-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--sh-lg);
}
.signup-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #334057;
}
.field-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.signup-form input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(0,201,177,.12);
}
.signup-form input::placeholder { color: #aab8c8; font-weight: 400; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500 !important;
  color: var(--muted);
}
.check-line input { margin-top: 3px; flex-shrink: 0; accent-color: var(--mint); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
}
.footer-brand strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.footer-brand span { color: #8fa0b4; font-size: 13px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: #8fa0b4;
  font-size: 13px;
  font-weight: 600;
  transition: color .15s;
}
.footer-links a:hover { color: var(--mint); }

/* ─── MOBILE FAB ─────────────────────────────── */
.mobile-fab { display: none; }

/* ─── REVEAL ANIMATION ───────────────────────── */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

body.reveal-ready [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .hero-visual { width: 100%; max-width: 560px; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .security-section { grid-template-columns: 1fr; gap: 44px; }
  .encryption-inner { grid-template-columns: 1fr; gap: 44px; }
  .referral-inner { grid-template-columns: 1fr; gap: 44px; }
  .signup-section { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .brand img { width: 128px; }
  .nav-links { display: none; }
  .header-actions { gap: 8px; }
  .login-link { font-size: 13px; }
  .btn-header {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .section {
    padding: 64px 18px;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .hero {
    padding: 0 18px;
  }
  .hero-inner {
    gap: 38px;
    padding-top: 42px;
    padding-bottom: 52px;
  }
  .hero h1 {
    max-width: 620px;
  }
  .hero-cta .btn {
    flex: 1 1 220px;
  }
  .trust-scroll {
    padding-inline: 18px;
  }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; }
  .step-connector { transform: rotate(90deg); margin: 0; padding: 4px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .app-shell { grid-template-columns: 96px 1fr; }
  .sidebar-nav li { font-size: 9px; padding: 5px 8px; }
  .encryption-inner,
  .referral-inner {
    padding: 64px 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
  }
  .header-inner {
    padding: 10px 14px;
  }
  .brand img {
    width: 112px;
  }
  .login-link {
    display: none;
  }
  .btn-header {
    min-height: 36px;
    padding: 0 14px;
  }
  .hero {
    padding: 0 16px;
  }
  .hero-inner {
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 44px;
  }
  .pill {
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: 0;
  }
  .hero-lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-bullets li {
    font-size: 13px;
  }
  .browser-frame {
    border-radius: 8px;
  }
  .window-bar {
    padding: 10px;
  }
  .address-bar {
    display: none;
  }
  .app-shell {
    grid-template-columns: 74px 1fr;
    min-height: 300px;
  }
  .app-sidebar {
    padding: 14px 8px;
  }
  .sidebar-brand {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .sidebar-nav li {
    font-size: 8px;
    padding: 5px 6px;
  }
  .app-content {
    padding: 12px;
  }
  .kpi-row {
    gap: 6px;
  }
  .kpi {
    padding: 8px 4px;
  }
  .kpi b {
    font-size: 15px;
  }
  .kpi small {
    font-size: 7px;
  }
  .app-chart {
    height: 86px;
    padding: 10px;
    gap: 5px;
  }
  .section {
    padding: 54px 16px;
  }
  h2 {
    font-size: 30px;
  }
  .section-desc,
  .security-copy > p,
  .signup-copy > p,
  .referral-copy > p {
    font-size: 15px;
  }
  .modules-grid { grid-template-columns: 1fr; }
  .mod-card,
  .pillar,
  .step,
  .plan-card {
    padding: 20px;
  }
  .security-section {
    gap: 28px;
  }
  .pillar {
    gap: 12px;
  }
  .encryption-inner,
  .referral-inner {
    padding: 54px 16px;
    gap: 30px;
  }
  .enc-demo {
    padding: 18px;
  }
  .enc-cipher code {
    font-size: 12px;
  }
  .calc-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .faq-layout {
    gap: 24px;
  }
  .faq-item summary {
    align-items: flex-start;
    font-size: 14px;
  }
  .form-row { grid-template-columns: 1fr; }
  .signup-section {
    gap: 30px;
  }
  .signup-trust span {
    width: 100%;
  }
  .signup-form {
    padding: 18px;
    border-radius: 10px;
  }
  .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
  }
  .cf-turnstile iframe {
    max-width: 100% !important;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    gap: 12px 18px;
  }
  .site-footer { padding-bottom: 72px; }
  .mobile-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--mint), var(--purple));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(108,99,255,.38);
    text-decoration: none;
  }
  .pricing-grid { max-width: 100%; }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 35px;
  }
  .btn {
    padding-inline: 16px;
  }
  .app-shell {
    grid-template-columns: 64px 1fr;
  }
  .sidebar-nav li {
    font-size: 7px;
    padding-inline: 4px;
  }
  .cf-turnstile {
    transform: scale(.92);
    transform-origin: left top;
    margin-bottom: -6px;
  }
}
