:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #101828;
  --navy: #08214a;
  --deep: #061735;
  --muted: #667085;
  --line: #d9e2ef;
  --blue: #2457ff;
  --sky: #04a9ff;
  --teal: #12bfa3;
  --coral: #ff6b5f;
  --amber: #ffb020;
  --violet: #6c4cff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 24, 40, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Aptos", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(217, 226, 239, .75);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(36, 87, 255, .22);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus-visible { background: #eef4ff; color: var(--blue); }
.site-nav .nav-cta { color: #fff; background: var(--ink); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 65px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 530px);
  gap: 58px;
  align-items: center;
  padding: 78px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(4, 169, 255, .34), transparent 25%),
    linear-gradient(115deg, rgba(18, 191, 163, .22), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--deep));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 88px 0 auto;
  height: 210px;
  background:
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, .13) 31px 32px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(18, 191, 163, .18) 31px 32px);
  transform: skewY(-7deg);
  transform-origin: left;
  pointer-events: none;
}
.hero-copy, .hero-report { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #8ee8ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .93;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 21px; }
p { color: var(--muted); line-height: 1.65; }
.hero p { color: #d7e7ff; }
.lede { max-width: 650px; margin-bottom: 28px; font-size: 20px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 18px 42px rgba(36, 87, 255, .24);
}
.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.proof-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #eaf4ff;
  font-size: 13px;
  font-weight: 850;
}

.hero-report {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(238,244,255,.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.security-map {
  position: relative;
  min-height: 160px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #c8d6ea;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(36,87,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,191,163,.08) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #e7f6ff);
  background-size: 28px 28px, 28px 28px, auto;
}
.map-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #c8d6ea;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .12);
}
.map-node::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}
.node-a { left: 28px; top: 28px; }
.node-b { right: 34px; top: 22px; }
.node-c { right: 72px; bottom: 24px; }
.map-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform-origin: left;
}
.line-a {
  left: 74px;
  top: 54px;
  width: 245px;
  transform: rotate(-2deg);
}
.line-b {
  right: 115px;
  top: 76px;
  width: 130px;
  transform: rotate(49deg);
}
.map-shield {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 82px;
  height: 96px;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, var(--blue), var(--teal));
  clip-path: polygon(50% 0, 92% 16%, 84% 70%, 50% 100%, 16% 70%, 8% 16%);
  box-shadow: 0 22px 44px rgba(36, 87, 255, .28);
}
.map-shield::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 28px;
  height: 42px;
  border: 5px solid #fff;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
.report-browser {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.report-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d5dd;
}
.report-browser span:first-child {
  background: var(--coral);
}
.report-browser span:nth-child(2) {
  background: var(--amber);
}
.report-browser span:nth-child(3) {
  background: var(--teal);
}
.snapshot-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}
.tiny-label {
  display: block;
  color: #667085;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.snapshot-head strong, .score-card strong {
  display: block;
  margin-top: 4px;
  font-size: 52px;
  line-height: .9;
}
.snapshot-head p { margin: 0; }
.snapshot-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.snapshot-list article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}
.snapshot-list b { color: var(--blue); }
.snapshot-list article:first-child b { color: var(--coral); }
.snapshot-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.snapshot-footer span {
  padding: 10px;
  border-radius: var(--radius);
  color: #344054;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.section { padding: 88px max(20px, calc((100vw - 1180px) / 2)); }
.section-head { max-width: 780px; margin-bottom: 30px; }
.intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff, #eef4ff);
}
.intro-grid, .price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intro-grid article, .price-card, .faq details, .report-shell, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.intro-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
}
.intro-grid article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(36, 87, 255, .08);
  border-radius: 50%;
}
.feature-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  position: relative;
  box-shadow: 0 16px 34px rgba(36, 87, 255, .18);
}
.feature-icon::before, .feature-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}
.scan-icon::before {
  left: 15px;
  top: 15px;
  width: 28px;
  height: 22px;
  border-radius: 5px;
}
.scan-icon::after {
  left: 13px;
  bottom: 13px;
  width: 32px;
  height: 4px;
  border-radius: 999px;
}
.filter-icon { background: linear-gradient(135deg, var(--violet), var(--blue)); }
.filter-icon::before {
  left: 14px;
  top: 13px;
  width: 30px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 62% 48%, 62% 100%, 38% 100%, 38% 48%);
}
.fix-icon { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.fix-icon::before {
  left: 16px;
  top: 28px;
  width: 27px;
  height: 7px;
  border-radius: 999px;
  transform: rotate(-45deg);
}
.fix-icon::after {
  left: 15px;
  top: 18px;
  width: 14px;
  height: 7px;
  border-radius: 999px;
  transform: rotate(45deg);
}

.report {
  background:
    linear-gradient(120deg, rgba(36, 87, 255, .18), transparent 38%),
    linear-gradient(245deg, rgba(18, 191, 163, .16), transparent 32%),
    #e9f2ff;
}
.report-shell {
  padding: 16px;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tab {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #344054;
  background: #f8fbff;
  font-weight: 900;
  cursor: pointer;
}
.tab.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.tab-panel { display: none; padding: 22px; border-radius: var(--radius); background: #fff; }
.tab-panel.active { display: block; animation: rise .22s ease; }
.tab-panel ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.65; }
.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: stretch;
}
.score-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}
.score-card p { margin: 10px 0 0; font-size: 14px; }
.fix-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.fix-table article {
  display: grid;
  grid-template-columns: 42px minmax(130px, .45fr) 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}
.fix-table b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}
.fix-table span { font-weight: 950; }
.fix-table em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.evidence-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}
.evidence-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.evidence-grid b { display: block; margin-bottom: 8px; }
.evidence-grid p { margin: 0; font-size: 14px; }
.severity {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.severity.high { color: #fff; background: var(--coral); }
.severity.medium { color: #332100; background: var(--amber); }
.severity.low { color: #053a31; background: #b9f4e8; }

.pricing { background: #fff; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--violet));
  border-color: transparent;
}
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.86); }
.pill {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.featured .pill { color: var(--ink); background: #fff; }
.price-card strong {
  display: block;
  margin: 10px 0;
  font-size: 48px;
  letter-spacing: 0;
}
.price-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.7; }

.scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 38px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 169, 255, .22), transparent 34%),
    linear-gradient(245deg, rgba(18, 191, 163, .2), transparent 38%),
    linear-gradient(135deg, #101828, #1d2939);
}
.scope .eyebrow { color: #8ee8ff; }
.scope p, .scope h2 { color: #fff; }

.faq { background: var(--bg); }
.faq-list { display: grid; gap: 10px; }
.faq details { padding: 18px 20px; }
.faq summary { cursor: pointer; font-weight: 950; }
.faq details p { margin: 12px 0 0; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  gap: 44px;
  align-items: start;
  background: #fff;
}
.contact-form {
  display: grid;
  gap: 13px;
  padding: 22px;
}
.contact-form .form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 850;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-status { min-height: 20px; margin: 0; font-size: 14px; }

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--ink);
}
.site-footer p { margin: 0; color: #d0d5dd; }
.site-footer a { color: #fff; text-decoration: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }
  .site-nav {
    position: absolute;
    top: 65px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  .site-nav.open { display: flex; }
  .hero, .intro, .scope, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .intro-grid, .price-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero, .section { padding: 66px 18px; }
  .site-header { padding-inline: 18px; }
  h1 { font-size: 48px; }
  .actions, .button { width: 100%; }
  .hero-report { padding: 16px; }
  .snapshot-head, .snapshot-list article, .report-layout, .fix-table article, .evidence-grid {
    grid-template-columns: 1fr;
  }
  .snapshot-footer { grid-template-columns: 1fr; }
}

/* LetsSecure 2026 visual system */
:root {
  --bg: #f3f6f6;
  --surface: #ffffff;
  --ink: #0b1012;
  --navy: #071216;
  --deep: #05090b;
  --muted: #5f6b70;
  --line: #d8e0e2;
  --blue: #007f99;
  --sky: #00d8ff;
  --teal: #00b894;
  --coral: #ff5d5d;
  --amber: #f4b942;
  --violet: #374b52;
  --shadow: 0 22px 60px rgba(7, 18, 22, .12);
}

body {
  background: var(--bg);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.site-header {
  min-height: 72px;
  color: #fff;
  background: rgba(5, 9, 11, .88);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
}
.brand { letter-spacing: .01em; }
.brand-mark {
  width: 34px;
  height: 34px;
  color: #061013;
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(0, 216, 255, .1);
}
.site-nav a { color: #b8c6ca; }
.site-nav a:hover,
.site-nav a:focus-visible { color: #fff; background: rgba(255, 255, 255, .08); }
.site-nav .nav-cta {
  color: #071216;
  background: var(--sky);
}

.hero {
  isolation: isolate;
  min-height: min(860px, calc(100vh - 72px));
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 60px;
  padding-top: 92px;
  padding-bottom: 86px;
  background: var(--deep);
}
.hero::before {
  z-index: -1;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, .99) 0%, rgba(5, 9, 11, .86) 38%, rgba(5, 9, 11, .28) 72%, rgba(5, 9, 11, .62) 100%),
    linear-gradient(0deg, var(--deep) 0%, transparent 28%);
  transform: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 216, 255, .75), transparent);
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}
.hero-copy { max-width: 690px; }
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c8f7ff;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(0, 216, 255, .12), 0 0 20px rgba(0, 216, 255, .8);
}
h1 {
  max-width: 680px;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 700;
  line-height: .91;
}
h1 span { color: var(--sky); }
h2 {
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
  font-weight: 650;
  line-height: .98;
}
.hero .lede {
  max-width: 610px;
  color: #b8c6ca;
  font-size: 19px;
}
.button { border-radius: 4px; }
.button.primary {
  gap: 20px;
  color: #061013;
  background: var(--sky);
  box-shadow: 0 14px 34px rgba(0, 216, 255, .18);
}
.button.primary:hover,
.button.primary:focus-visible { background: #5ae8ff; }
.button.ghost {
  color: #f4fbfc;
  background: rgba(8, 20, 24, .6);
  border-color: rgba(255, 255, 255, .24);
}
.proof-strip {
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.proof-strip span {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 18px 24px 0 0;
  border: 0;
  border-radius: 0;
  color: #8fa0a6;
  background: transparent;
  font-weight: 600;
}
.proof-strip b {
  color: #fff;
  font-family: "Bahnschrift", sans-serif;
  font-size: 17px;
}

.hero-report {
  align-self: end;
  padding: 20px;
  color: #e9f7f9;
  background: rgba(7, 18, 22, .82);
  border: 1px solid rgba(113, 226, 244, .28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}
.report-browser {
  padding-bottom: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.report-browser span { width: 7px; height: 7px; background: #405057; }
.report-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: #9fb0b5;
  font-size: 12px;
}
.report-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #baf8e9;
  font-weight: 800;
}
.report-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(0, 184, 148, .8);
}
.report-meta small { font-family: Consolas, monospace; }
.tiny-label { color: #7f9197; letter-spacing: .06em; }
.snapshot-head {
  grid-template-columns: 94px 1fr;
  padding-bottom: 20px;
}
.snapshot-head strong {
  color: var(--sky);
  font-family: "Bahnschrift", sans-serif;
  font-size: 58px;
}
.snapshot-head p {
  color: #9fb0b5;
  font-size: 13px;
  line-height: 1.55;
}
.snapshot-head p b { color: #f3fbfc; }
.snapshot-list { gap: 0; margin-top: 0; }
.snapshot-list article {
  grid-template-columns: 74px 1fr;
  padding: 12px 0;
  color: #d7e5e8;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none;
  font-size: 13px;
}
.snapshot-list b { color: var(--amber); }
.snapshot-list article:first-child b { color: var(--coral); }
.snapshot-footer { border-top: 1px solid rgba(255, 255, 255, .1); }
.snapshot-footer span {
  color: #8fa0a6;
  background: transparent;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section { padding-top: 104px; padding-bottom: 104px; }
.eyebrow { color: #007f99; letter-spacing: .1em; }
.intro {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 76px;
  background: #eef2f2;
}
.intro > div:first-child {
  position: sticky;
  top: 110px;
}
.intro > div:first-child p:last-child { max-width: 530px; }
.intro-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #bfcacc;
}
.intro-grid article {
  display: grid;
  grid-template-columns: 56px 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bfcacc;
  border-radius: 0;
  box-shadow: none;
}
.intro-grid article::after { display: none; }
.feature-icon {
  width: auto;
  height: auto;
  margin: 3px 0 0;
  color: #007f99;
  background: transparent !important;
  box-shadow: none;
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}
.feature-icon::before,
.feature-icon::after { display: none; }
.intro-grid h3 { margin: 0; font-size: 17px; }
.intro-grid p { margin: 0; }

.report {
  color: #e9f4f5;
  background: #091316;
}
.report .eyebrow { color: var(--sky); }
.report .section-head p:not(.eyebrow) { color: #8fa0a6; }
.report-shell {
  padding: 0;
  overflow: hidden;
  background: #0d1a1e;
  border-color: #23343a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
}
.tabs {
  gap: 0;
  margin: 0;
  padding: 0 16px;
  background: #071013;
  border-bottom: 1px solid #23343a;
}
.tab {
  min-height: 56px;
  padding-inline: 18px;
  color: #7f9197;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.tab:hover,
.tab:focus-visible { color: #fff; }
.tab.active {
  color: var(--sky);
  background: transparent;
  border-color: var(--sky);
}
.tab-panel {
  min-height: 330px;
  padding: 36px;
  color: #e9f4f5;
  background: #0d1a1e;
}
.tab-panel p,
.tab-panel ul,
.fix-table em,
.score-card p,
.evidence-grid p { color: #91a1a6; }
.score-card,
.fix-table article,
.evidence-grid article {
  background: #101f23;
  border-color: #26383e;
}
.score-card strong { color: var(--sky); }
.fix-table b { color: #061013; background: var(--sky); }
.evidence-grid span { color: var(--sky); }

.pricing { background: #fff; }
.price-grid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-card,
.price-card.featured {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.price-card.featured {
  color: #fff;
  background: #0b171a;
}
.price-card.featured p,
.price-card.featured li { color: #a6b7bb; }
.pill { border-radius: 3px; }
.featured .pill { color: #061013; background: var(--sky); }
.scope {
  background: var(--coral);
}
.scope .eyebrow { color: #401111; }
.scope p,
.scope h2 { color: #1d0909; }
.faq { background: #edf1f1; }
.faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bdc8ca;
  border-radius: 0;
  box-shadow: none;
}
.contact { background: #fff; }
.contact-form {
  border-color: #c9d3d5;
  border-radius: 4px;
  box-shadow: 14px 14px 0 #d7f7fb;
}
.contact-form input,
.contact-form textarea { border-radius: 3px; }
.site-footer { background: #05090b; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .site-header { min-height: 65px; }
  .nav-toggle { background: transparent; border-color: #34454a; }
  .nav-toggle span:not(.sr-only) { background: #fff; }
  .site-nav { background: #071216; border-color: #34454a; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 30px; }
  .hero-report { max-width: 560px; }
  .intro { grid-template-columns: 1fr; gap: 42px; }
  .intro > div:first-child { position: static; }
  .price-grid { gap: 1px; }
}

@media (max-width: 620px) {
  .hero { padding-top: 74px; padding-bottom: 58px; }
  .hero::before {
    background: linear-gradient(0deg, rgba(5, 9, 11, .99) 25%, rgba(5, 9, 11, .72) 100%);
  }
  .hero-visual { object-position: 67% center; opacity: .62; }
  h1 { font-size: 56px; }
  .proof-strip span { width: 33.333%; min-width: 0; padding-right: 10px; }
  .proof-strip b { font-size: 14px; }
  .hero-report { margin-top: 10px; }
  .intro-grid article { grid-template-columns: 38px 1fr; }
  .intro-grid article p { grid-column: 2; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .tab { flex: 0 0 auto; padding-inline: 12px; }
  .tab-panel { padding: 24px 18px; }
}

/* Security Aperture brand integration */
.brand-logo {
  display: block;
  width: 184px;
  height: 58px;
  background: url("assets/logo-sophisticated/letssecure-security-aperture-transparent.png?v=20260724") -31px -22px / 226px auto no-repeat;
}

.site-header {
  padding-block: 4px;
  background: rgba(5, 9, 11, .94);
}

.site-nav .nav-cta,
.button.primary {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.site-nav .nav-cta::after,
.button.primary::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-report,
.report-shell,
.contact-form,
.price-card.featured {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

body { background: var(--deep); }
.intro,
.pricing,
.faq,
.contact {
  color: #eef8fa;
  background: #0b1518;
}
.pricing,
.contact { background: #0e1a1d; }
.intro h2,
.intro h3,
.pricing h2,
.pricing h3,
.faq h2,
.faq summary,
.contact h2,
.contact label { color: #eef8fa; }
.intro p,
.pricing p,
.pricing li,
.faq p,
.contact p { color: #91a4aa; }

.section-head {
  position: relative;
  padding-left: 24px;
}
.section-head::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 5px;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sky), #173941);
  clip-path: polygon(0 0, 100% 7px, 100% calc(100% - 7px), 0 100%);
}
.section-head::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border: 2px solid #dffaff;
  border-radius: 50%;
  background: var(--sky);
}

.intro-grid {
  border-color: #2a3a3f;
}
.intro-grid article {
  border-color: #2a3a3f;
}
.intro-grid article:hover .feature-icon { color: var(--sky); }
.feature-icon {
  color: #70dcec;
}

.report-shell {
  position: relative;
  border-color: #31505a;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .03), transparent 28%),
    #0d1a1e;
}
.tab.active {
  text-shadow: 0 0 18px rgba(0, 216, 255, .35);
}
.score-card,
.fix-table article,
.evidence-grid article {
  border-radius: 0;
  border-color: #2b434b;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.price-grid {
  gap: 12px;
  background: transparent;
  border: 0;
}
.price-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.credit-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 20px 24px;
  color: #e9f4f5;
  background: #101f23;
  border: 1px solid #2a4148;
}
.credit-note span {
  color: var(--sky);
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.credit-note span b {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 27px;
}
.credit-note p { margin: 0; }
.price-card {
  color: #e9f4f5;
  background: #101f23;
  border: 1px solid #2a4148;
}
.price-card:hover {
  border-color: #3f6973;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}
.price-card.featured {
  position: relative;
  background:
    linear-gradient(145deg, rgba(0, 216, 255, .1), transparent 42%),
    #10262c;
  border: 1px solid #2d6672;
}
.price-card strong {
  color: #fff;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
}
.price-card.featured strong { color: var(--sky); }
.pill {
  color: #9cefff;
  background: #17333a;
}
.watch-credit {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #2a4148;
}
.watch-credit span {
  display: block;
  margin-bottom: 5px;
  color: #8fa0a6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.watch-credit strong {
  margin: 0 0 7px;
  color: var(--sky);
  font-size: 25px;
}
.watch-credit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.scope {
  position: relative;
  color: #eef8fa;
  background:
    linear-gradient(110deg, rgba(255, 93, 93, .09), transparent 35%),
    #101b1e;
  border-block: 1px solid #2a3d42;
}
.scope::before {
  content: "";
  position: absolute;
  top: 50%;
  left: max(20px, calc((100vw - 1180px) / 2 - 28px));
  width: 10px;
  height: 10px;
  border: 2px solid #ffe1e1;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 18px rgba(255, 93, 93, .45);
}
.scope .eyebrow { color: #ff8c8c; }
.scope p,
.scope h2 { color: #eef8fa; }

.faq details {
  border-color: #2b3c41;
}
.faq summary {
  transition: color .18s ease;
}
.faq details[open] summary { color: var(--sky); }

.contact-form {
  position: relative;
  background:
    linear-gradient(145deg, rgba(0, 216, 255, .06), transparent 35%),
    #101f23;
  border-color: #31505a;
  box-shadow: 14px 14px 0 #071013;
}
.contact-form input,
.contact-form textarea {
  color: #eef8fa;
  background: #0a1518;
  border-color: #33484e;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  outline: 1px solid var(--sky);
}

.site-footer {
  border-top: 1px solid #203338;
}

.advantage {
  color: #e9f4f5;
  background:
    linear-gradient(145deg, rgba(0, 216, 255, .04), transparent 32%),
    #0e1a1d;
}
.advantage .eyebrow { color: var(--sky); }
.advantage .section-head > p:last-child { color: #91a4aa; }
.benefit-list {
  max-width: 940px;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid #2b4249;
  list-style: none;
}
.benefit-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #2b4249;
}
.benefit-list span {
  flex: 0 0 38px;
  padding-top: 3px;
  color: var(--sky);
  font-family: Consolas, monospace;
  font-size: 12px;
}
.benefit-list h3 {
  margin: 0 0 6px;
  color: #f1fafb;
  font-size: 19px;
}
.benefit-list p {
  margin: 0;
  color: #91a4aa;
  font-size: 15px;
}

@media (max-width: 620px) {
  .section-head { padding-left: 18px; }
  .price-grid.two-up,
  .credit-note { grid-template-columns: 1fr; }
  .benefit-list { margin-top: 28px; }
  .benefit-list li { gap: 14px; padding: 20px 0; }
  .benefit-list span { flex-basis: 30px; }
  .scope::before { display: none; }
}

/* Legal information */
.footer-meta {
  display: grid;
  gap: 9px;
  justify-items: end;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}
.footer-links a { color: #9fb0b5; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--sky); }

.legal-page {
  color: #e9f4f5;
  background: #081114;
}
.legal-nav { margin-left: auto; }
.legal-hero {
  padding: 94px max(20px, calc((100vw - 1180px) / 2)) 72px;
  background:
    linear-gradient(120deg, rgba(0, 216, 255, .09), transparent 38%),
    #0b171a;
  border-bottom: 1px solid #263a40;
}
.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 84px);
}
.legal-hero > p:not(.eyebrow) {
  max-width: 690px;
  color: #9fb0b5;
  font-size: 18px;
}
.legal-hero .legal-updated {
  margin: 32px 0 0;
  color: #6f858b;
  font-family: Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 80px;
  justify-content: center;
  padding: 76px max(20px, calc((100vw - 1180px) / 2)) 110px;
}
.legal-index {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  border-top: 1px solid #33484e;
}
.legal-index span,
.legal-index a {
  padding: 14px 0;
  border-bottom: 1px solid #263a40;
}
.legal-index span {
  color: #6f858b;
  font-family: Consolas, monospace;
  font-size: 11px;
  text-transform: uppercase;
}
.legal-index a {
  color: #b9c9cd;
  font-weight: 700;
  text-decoration: none;
}
.legal-index a:hover,
.legal-index a:focus-visible { color: var(--sky); }
.legal-content { min-width: 0; }
.legal-document {
  scroll-margin-top: 100px;
  padding-bottom: 84px;
}
.legal-document + .legal-document {
  padding-top: 84px;
  border-top: 1px solid #2a3e44;
}
.legal-document h2 {
  margin-bottom: 42px;
  color: #f2fbfc;
}
.legal-document h3 {
  margin-top: 32px;
  color: #e9f4f5;
  font-size: 18px;
}
.legal-document p,
.legal-document li {
  color: #9fb0b5;
  line-height: 1.75;
}
.legal-document ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}
.legal-document a { color: var(--sky); }

@media (max-width: 940px) {
  .footer-meta { justify-items: start; }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .legal-index {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
  .legal-index span { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .legal-nav { display: none; }
  .legal-hero { padding: 72px 18px 56px; }
  .legal-layout { padding: 48px 18px 80px; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-index span { grid-column: auto; }
  .legal-document { padding-bottom: 60px; }
  .legal-document + .legal-document { padding-top: 60px; }
  .footer-links { gap: 12px; }
}
