:root {
  --navy: #0b2a4a;
  --navy-2: #123d68;
  --blue: #1747b8;
  --blue-2: #0f3a98;
  --sky: #dbeafe;
  --light: #eff6ff;
  --line: #dbe7f5;
  --text: #172033;
  --muted: #64748b;
  --white: #fff;
  --danger: #b42318;
  --ok: #047857;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(70% 44% at 18% 12%, rgba(219, 234, 254, .72), transparent 62%),
    radial-gradient(58% 40% at 84% 20%, rgba(224, 242, 254, .78), transparent 66%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 44%, #eef6ff 100%);
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .24;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/></svg>");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }
a { color: var(--blue); text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: transparent;
  border-bottom: 0;
  position: sticky;
  top: 16px;
  z-index: 20;
  padding: 0;
}
.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(219, 231, 245, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 20px 58px rgba(11, 42, 74, .11), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { display: block; width: 164px; height: auto; }
.nav-center {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 4px;
  border: 1px solid rgba(219, 231, 245, .86);
  border-radius: 8px;
  background: rgba(239, 246, 255, .68);
}
.nav-center a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 8px;
  color: #294766;
  font-weight: 800;
  font-size: 14px;
}
.nav-center a:hover { background: #fff; color: var(--blue); box-shadow: 0 8px 18px rgba(11, 42, 74, .07); }
.nav-actions { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.nav-actions > a:not(.btn) { color: var(--navy); font-weight: 800; padding: 10px 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links > a:not(.btn) { color: var(--navy); font-weight: 800; padding: 10px 8px; }
.hero { padding: 112px 0 78px; background: transparent; margin-top: -74px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 56px; align-items: center; }
h1 { margin: 0 0 18px; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.02; color: var(--navy); letter-spacing: 0; }
h2 { color: var(--navy); margin: 0 0 16px; line-height: 1.2; }
.lead { color: #475569; font-size: 20px; max-width: 690px; margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(29, 78, 216, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-2), #1e56d8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  box-shadow: 0 12px 26px rgba(23, 71, 184, .22);
}
.btn:hover, button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(23, 71, 184, .28); }
.btn.secondary { background: #fff; color: var(--navy); border-color: #c8d8ec; }
.btn.light { background: #fff; color: var(--blue); }
.btn.danger { background: var(--danger); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(11, 42, 74, .08);
}
.hero-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 62%, #1d4ed8 100%);
  color: #fff;
  padding: 30px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-panel .brand-mark { width: min(260px, 72%); height: auto; margin-bottom: 24px; }
.hero-panel h2 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.hero-panel p { color: #dbeafe; margin: 0; }
.hero-checks { display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.hero-checks li::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: #93c5fd; flex: 0 0 auto; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.hero-metrics div { padding: 14px; border-radius: 8px; background: rgba(255, 255, 255, .12); }
.hero-metrics strong { display: block; color: #fff; font-size: 20px; line-height: 1.1; }
.hero-metrics span { display: block; color: #bfdbfe; font-size: 12px; margin-top: 4px; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(11, 42, 74, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #35506d;
  font-size: 13px;
  font-weight: 700;
}
.section-band { padding: 70px 0 76px; background: linear-gradient(180deg, rgba(239, 246, 255, .72), rgba(255, 255, 255, .46)); border-top: 1px solid #e5effc; }
.features, .stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 0; }
.stat { min-height: 118px; display: flex; flex-direction: column; justify-content: center; }
.stat strong { font-size: 30px; line-height: 1; }
.stat span { color: var(--muted); }
.feature {
  min-height: 228px;
  display: grid;
  grid-template-rows: 52px 1fr;
  align-items: start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #67a6ff);
}
.feature-body { display: grid; grid-template-rows: minmax(54px, auto) auto; gap: 10px; height: 100%; }
.feature h3, .stat strong { margin: 0; color: var(--navy); }
.feature h3 { font-size: 19px; line-height: 1.25; }
.feature p, .muted { color: var(--muted); margin: 0; }
.feature-index {
  width: 50px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f1ff, #fff);
  border: 1px solid rgba(29, 78, 216, .14);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}
.compact-heading { margin-bottom: 28px; }
.compact-heading h2 { max-width: 820px; }
.main { padding: 40px 0 64px; }
.main > h1:first-child { margin-bottom: 22px; }
.main > .card { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
label { font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(29, 78, 216, .16); border-color: var(--blue); }
textarea { min-height: 110px; resize: vertical; }
.full { grid-column: 1 / -1; }
.alert { padding: 12px 14px; border-radius: 8px; margin: 0 0 16px; border: 1px solid var(--line); background: #fff; }
.alert.error { color: var(--danger); border-color: #f2b8b5; background: #fff5f5; }
.alert.ok { color: var(--ok); border-color: #a7f3d0; background: #ecfdf5; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f8fbff; color: var(--navy); }
td .btn, td button { min-height: 34px; padding: 7px 10px; font-size: 13px; }
.tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.tab { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--navy); font-weight: 700; }
.tab.active { background: var(--navy); color: #fff; }
.paper {
  width: min(900px, calc(100% - 24px));
  margin: 24px auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
}
.paper-header { border-bottom: 3px solid var(--navy); margin-bottom: 24px; padding-bottom: 16px; }
.paper h1 { font-size: 28px; }
.paper h2 { margin-top: 24px; font-size: 18px; }
.paper-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.paper-grid div { border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.paper-grid strong { display: block; color: var(--navy); }
.hash { overflow-wrap: anywhere; }
.qr-placeholder { margin-top: 24px; padding: 18px; border: 2px dashed var(--blue); border-radius: 8px; overflow-wrap: anywhere; }
.legal-note { margin-top: 24px; color: var(--muted); font-size: 13px; }
.print-actions { width: min(900px, calc(100% - 24px)); margin: 18px auto 0; display: flex; justify-content: flex-end; gap: 8px; }
.section-block { padding: 74px 0; border-top: 1px solid rgba(219, 231, 245, .82); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .split-grid h2, .office-grid h2, .cta-grid h2 { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: 0; }
.section-heading p, .section-copy, .office-grid p, .cta-grid p { color: #52657d; font-size: 18px; margin: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-step {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(219, 231, 245, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 44px rgba(11, 42, 74, .06);
}
.process-step span { display: block; color: var(--blue); font-weight: 900; margin-bottom: 42px; }
.process-step h3 { color: var(--navy); margin: 0 0 10px; font-size: 20px; }
.process-step p { color: var(--muted); margin: 0; }
.split-section { background: rgba(255, 255, 255, .42); }
.split-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 46px; align-items: center; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.check-grid span {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #25415f;
  font-weight: 700;
}
.document-preview {
  padding: 26px;
  border: 1px solid rgba(29, 78, 216, .22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  box-shadow: 0 28px 70px rgba(11, 42, 74, .12);
}
.doc-top { padding-bottom: 18px; border-bottom: 2px solid var(--navy); margin-bottom: 18px; }
.doc-top strong { display: block; color: var(--navy); font-size: 20px; }
.doc-top span { color: var(--muted); font-size: 13px; }
.doc-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.doc-row span { color: var(--muted); }
.doc-row strong { color: var(--navy); text-align: right; }
.doc-hash { margin: 18px 0; padding: 14px; border-radius: 8px; background: #0b2a4a; color: #bfdbfe; font-family: monospace; overflow-wrap: anywhere; }
.office-section { background: linear-gradient(135deg, rgba(11, 42, 74, .97), rgba(29, 78, 216, .92)); color: #fff; }
.office-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.office-grid h2 { color: #fff; }
.office-grid .eyebrow { background: rgba(255, 255, 255, .1); color: #bfdbfe; border-color: rgba(255, 255, 255, .18); }
.office-grid p { color: #dbeafe; }
.role-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.role-card { min-height: 150px; padding: 20px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px; background: rgba(255, 255, 255, .1); }
.role-card strong { display: block; color: #fff; margin-bottom: 10px; font-size: 18px; }
.role-card span { color: #dbeafe; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
details { border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, .78); padding: 18px 20px; }
summary { cursor: pointer; color: var(--navy); font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; }
.cta-band { padding: 64px 0; background: #071d34; color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.cta-grid img { width: 210px; margin-bottom: 22px; }
.cta-grid h2 { color: #fff; max-width: 820px; }
.cta-grid p { color: #cbdff7; max-width: 760px; }
.footer {
  padding: 58px 0 0;
  background:
    radial-gradient(48% 70% at 82% 0%, rgba(29, 78, 216, .28), transparent 58%),
    #05182c;
  color: #9fb6d3;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, .7fr));
  gap: 34px;
  padding-bottom: 38px;
}
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer p { margin: 0; color: #b7cbe3; }
.footer strong { display: block; color: #fff; margin-bottom: 14px; }
.footer a { display: block; color: #b7cbe3; margin: 9px 0; font-weight: 700; }
.footer a:hover { color: #fff; }
.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #7f9bb8;
}
@media (max-width: 800px) {
  .hero-grid, .form-grid, .features, .stats, .paper-grid, .process-grid, .split-grid, .office-grid, .role-cards, .faq-grid, .cta-grid, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, 1180px); }
  .topbar { top: 8px; }
  .nav { grid-template-columns: 1fr; padding: 14px; gap: 12px; }
  .nav-center { justify-self: stretch; overflow-x: auto; justify-content: flex-start; }
  .nav-actions, .nav-links { justify-content: space-between; width: 100%; }
  .logo img { width: 156px; }
  .hero { padding: 96px 0 36px; margin-top: -80px; }
  .hero-grid { gap: 26px; }
  .hero-panel { min-height: auto; padding: 24px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .section-block { padding: 48px 0; }
  .process-step { min-height: auto; }
  .process-step span { margin-bottom: 22px; }
  .doc-row { display: block; }
  .doc-row strong { display: block; text-align: left; margin-top: 4px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .paper { padding: 22px; }
}
@media print {
  .topbar, .print-actions { display: none; }
  body { background: #fff; }
  .paper { width: 100%; margin: 0; border: 0; box-shadow: none; }
}

/* Premium landing pass */
:root {
  --ink: #071d34;
  --deep: #08243f;
  --electric: #2563eb;
  --cyan: #38bdf8;
}

body {
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(37, 99, 235, .16), transparent 62%),
    radial-gradient(700px 520px at 92% 20%, rgba(56, 189, 248, .18), transparent 64%),
    radial-gradient(700px 520px at 50% 86%, rgba(219, 234, 254, .78), transparent 70%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8ff 48%, #ffffff 100%);
}

.container { width: min(1280px, calc(100% - 56px)); }

.topbar { top: 18px; }
.nav {
  min-height: 76px;
  padding: 12px 14px 12px 20px;
  border-color: rgba(255, 255, 255, .82);
  background: linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(246, 250, 255, .66));
  box-shadow: 0 24px 72px rgba(8, 36, 63, .13), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(37, 99, 235, .18));
}
.nav-center {
  border-color: rgba(204, 221, 245, .72);
  background: rgba(255, 255, 255, .54);
}
.nav-actions .btn,
.nav-links .btn {
  min-width: 86px;
  background: linear-gradient(135deg, #082f63, #1d4ed8 58%, #2563eb);
  box-shadow: 0 14px 32px rgba(29, 78, 216, .32);
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 132px 0 92px;
  margin-top: -84px;
  overflow: hidden;
  position: relative;
}
.hero-bg-mark {
  position: absolute;
  inset: 110px auto auto 50%;
  width: min(860px, 55vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37, 99, 235, .16), transparent 56%),
    conic-gradient(from 140deg, rgba(37, 99, 235, .12), rgba(56, 189, 248, .1), rgba(255, 255, 255, 0), rgba(37, 99, 235, .12));
  filter: blur(2px);
  transform: translateX(-4%);
}
.hero-grid {
  grid-template-columns: minmax(440px, .92fr) minmax(520px, 1.08fr);
  gap: 70px;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}
.hero-copy .lead {
  max-width: 620px;
  font-size: 21px;
  color: #52657d;
}
.eyebrow {
  border-color: rgba(37, 99, 235, .18);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(8, 36, 63, .06);
}

.product-showcase {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.showcase-orbit {
  position: absolute;
  width: 94%;
  aspect-ratio: 1.18;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .2), rgba(56, 189, 248, .08)),
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .65), transparent 32%);
  box-shadow: 0 38px 100px rgba(8, 36, 63, .17);
  transform: rotate(-3deg);
}
.app-window {
  position: relative;
  width: min(100%, 680px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 34px 100px rgba(7, 29, 52, .26);
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(150%);
}
.app-window-top {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(219, 231, 245, .8);
  background: rgba(255, 255, 255, .82);
}
.app-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbe7f5;
}
.app-window-top span:first-child { background: #ef6b6b; }
.app-window-top span:nth-child(2) { background: #f1b84b; }
.app-window-top span:nth-child(3) { background: #49b782; }
.app-window-top strong { margin-left: auto; color: #52657d; font-size: 13px; }
.app-window-body {
  display: grid;
  grid-template-columns: 138px 1fr;
  min-height: 420px;
  background: linear-gradient(135deg, #08243f, #0b2a4a 58%, #123d68);
}
.app-sidebar {
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .16);
}
.app-sidebar img { width: 104px; margin-bottom: 34px; }
.app-sidebar span {
  display: block;
  width: 100%;
  height: 34px;
  margin: 10px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}
.app-sidebar span.active { background: rgba(96, 165, 250, .32); }
.app-content { padding: 26px; }
.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #bfdbfe;
}
.app-status strong {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(16, 185, 129, .16);
  color: #a7f3d0;
}
.app-card.primary {
  padding: 22px;
  border: 1px solid rgba(147, 197, 253, .24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
  color: #fff;
}
.app-card small { color: #93c5fd; font-weight: 800; }
.app-card strong { display: block; margin: 8px 0; font-size: 26px; }
.app-card p { margin: 0; color: #dbeafe; }
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.app-grid div,
.approval-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}
.app-grid span,
.approval-card span { display: block; color: #93c5fd; font-size: 12px; font-weight: 800; }
.app-grid strong { display: block; color: #fff; margin-top: 5px; }
.approval-line {
  height: 9px;
  width: 100%;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}
.approval-line.short { width: 68%; margin-bottom: 16px; }
.approval-card button {
  min-height: 38px;
  padding: 8px 13px;
  background: #fff;
  color: var(--blue-2);
  box-shadow: none;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(219, 231, 245, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 60px rgba(8, 36, 63, .1);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.proof-grid div {
  padding: 22px 24px;
  border-right: 1px solid rgba(219, 231, 245, .8);
}
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { display: block; color: var(--navy); font-size: 20px; }
.proof-grid span { display: block; color: var(--muted); margin-top: 4px; }

.section-band { padding-top: 96px; }
.compact-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.feature {
  min-height: 264px;
  padding: 26px;
  border-color: rgba(219, 231, 245, .92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 251, 255, .9)),
    radial-gradient(180px 100px at 100% 0%, rgba(37, 99, 235, .1), transparent 60%);
  box-shadow: 0 22px 58px rgba(8, 36, 63, .08);
}
.feature::before {
  width: 52px;
  height: 52px;
  position: absolute;
  right: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, .12);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}
.feature::after { height: 4px; }
.feature-sms::before { content: "SMS"; }
.feature-stamp::before { content: "TS"; }
.feature-qr::before { content: "QR"; }
.feature-office::before { content: "OF"; }
.feature-index {
  width: auto;
  height: auto;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  color: #7aa4eb;
  font-size: 13px;
  letter-spacing: .12em;
}
.feature-body {
  grid-template-rows: minmax(62px, auto) 1fr;
  align-content: end;
  padding-top: 70px;
}
.feature h3 { font-size: 21px; line-height: 1.18; }
.feature p { font-size: 16px; line-height: 1.58; }

@media (max-width: 980px) {
  .container { width: min(100% - 28px, 1280px); }
  .hero {
    min-height: auto;
    padding: 108px 0 78px;
    margin-top: -86px;
  }
  .hero-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .product-showcase { min-height: auto; }
  .app-window-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid rgba(219, 231, 245, .8); }
  .proof-grid div:last-child { border-bottom: 0; }
  .features { grid-template-columns: 1fr; }
}
