/* Network Scan marketing and privacy pages. Uses the shared SEM design tokens. */

.networkscan-main {
  display: block;
}

.networkscan-main .page-head {
  padding-bottom: var(--sp-6);
}

.ns-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  padding: var(--sp-8) 0 var(--sp-10);
  border-top: 1px solid var(--line);
}

.ns-kicker {
  margin: 0 0 var(--sp-3);
  color: var(--accent-ink);
  font: 500 12px/1.3 var(--font);
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ns-hero h2,
.ns-section h2,
.ns-final h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.ns-hero h2 {
  max-width: 16ch;
  font-size: var(--type-product-title);
}

.ns-lede {
  max-width: 61ch;
  margin: var(--sp-4) 0 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.ns-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.ns-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--bg);
  font: 700 var(--fs-sm)/1 var(--font);
  letter-spacing: .02em;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.ns-store-button:hover {
  background: var(--accent-2);
  text-decoration: none;
}

.ns-store-button:active {
  transform: translateY(1px);
}

.ns-text-link {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 500;
}

.ns-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: var(--sp-5) 0 0;
  padding: 0;
  list-style: none;
  color: var(--subtle);
  font: 500 10.5px/1.5 var(--font);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ns-trust li {
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.ns-trust li:first-child {
  padding-left: 0;
}

.ns-trust li:last-child {
  border-right: 0;
}

.ns-product-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.ns-product-icon {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}

.ns-hero-screen {
  position: absolute;
  bottom: -42px;
  width: 46%;
  height: auto;
  border: 5px solid color-mix(in srgb, var(--text) 12%, var(--bg));
  border-radius: 31px;
  background: var(--bg);
  box-shadow: 0 22px 50px rgba(0,0,0,.34);
}

.ns-hero-screen-one {
  z-index: 3;
  left: 22%;
  transform: rotate(-2deg);
}

.ns-hero-screen-two {
  z-index: 2;
  right: 2%;
  transform: rotate(3deg) scale(.9);
  transform-origin: bottom right;
}

.ns-section {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--line);
}

.ns-section-head {
  max-width: 760px;
  margin-bottom: var(--sp-6);
}

.ns-section h2,
.ns-final h2 {
  font-size: var(--type-section-title);
}

.ns-section-head > p:last-child {
  margin: var(--sp-3) 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ns-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.ns-capability {
  min-height: 184px;
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ns-capability .st {
  display: block;
  margin-bottom: var(--sp-3);
  color: var(--subtle);
  font: 700 10px/1 var(--font);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ns-capability .st::before {
  content: "● ";
  color: var(--ok);
}

.ns-capability h3 {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.35;
}

.ns-capability p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.ns-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.ns-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ns-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  object-position: top;
  background: var(--bg2);
}

.ns-shot figcaption {
  padding: 15px 17px 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.5;
}

.ns-shot strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.ns-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.ns-access-grid > div:first-child > p:last-child {
  margin: var(--sp-3) 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.ns-price-card {
  padding: var(--sp-6);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

.ns-price-card > span {
  display: block;
  color: var(--accent-ink);
  font: 700 10px/1.2 var(--font);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ns-price-card > strong {
  display: block;
  margin-top: var(--sp-3);
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--type-metric);
  font-weight: 400;
  line-height: 1;
}

.ns-price-card > strong small {
  color: var(--subtle);
  font: 500 11px/1 var(--font);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ns-price-card p {
  margin: var(--sp-4) 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.ns-price-card .ns-price-note {
  margin-top: var(--sp-2);
  color: var(--subtle);
  font: 500 11px/1.5 var(--font);
}

.ns-price-card ul {
  margin: var(--sp-4) 0 0;
  padding: var(--sp-4) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--text);
  font-size: var(--fs-xs);
  line-height: 1.9;
}

.ns-price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent-ink);
}

.ns-privacy-band {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ns-privacy-icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.ns-privacy-band h2 {
  margin-bottom: var(--sp-3);
}

.ns-privacy-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ns-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px var(--sp-4);
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-sm);
}

.ns-checks li::before {
  content: "●";
  margin-right: 8px;
  color: var(--accent-ink);
  font-size: 8px;
  vertical-align: 2px;
}

.ns-faq {
  display: grid;
  grid-template-columns: minmax(210px, .65fr) minmax(0, 1.35fr);
  gap: var(--sp-10);
}

.ns-faq details {
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--line);
}

.ns-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.ns-faq summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.ns-faq details p {
  margin: var(--sp-3) 0 0;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.ns-final {
  padding: var(--sp-10) var(--sp-6);
  border-top: 1px solid var(--line);
  background: var(--bg2);
  text-align: center;
}

.ns-final h2 {
  max-width: 820px;
  margin: 0 auto;
}

.ns-final .ns-actions {
  justify-content: center;
}

.ns-footer {
  margin-top: 0;
}

.ns-policy-hero {
  padding: var(--sp-8) 0 var(--sp-6);
  border-bottom: 1px solid var(--line);
}

.ns-policy-hero h1 {
  margin: 0 0 var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.ns-policy-meta {
  margin: 0;
  color: var(--subtle);
  font: 500 11px/1.5 var(--font);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ns-policy-promise {
  max-width: 900px;
  margin-top: var(--sp-5);
  padding: 20px 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  font-size: var(--fs-lg);
  line-height: 1.55;
}

.ns-policy-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 740px);
  gap: var(--sp-10);
  justify-content: center;
  padding: var(--sp-8) 0 var(--sp-10);
}

.ns-policy-index {
  align-self: start;
  position: sticky;
  top: 86px;
}

.ns-policy-index strong {
  display: block;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
  font: 700 10px/1 var(--font);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ns-policy-index a {
  display: block;
  padding: 7px 0;
  color: var(--subtle);
  font-size: var(--fs-xs);
}

.ns-policy-copy section {
  scroll-margin-top: 86px;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line2);
}

.ns-policy-copy h2 {
  margin: 0 0 var(--sp-3);
  color: var(--text);
  font-size: var(--fs-xl);
  line-height: 1.3;
}

.ns-policy-copy p,
.ns-policy-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.ns-policy-copy ul {
  padding-left: 20px;
}

.ns-policy-copy li {
  margin: 7px 0;
}

.ns-policy-copy strong {
  color: var(--text);
}

.ns-policy-contact {
  padding: var(--sp-5);
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}

@media (max-width: 900px) {
  .ns-hero,
  .ns-access-grid {
    grid-template-columns: 1fr;
  }

  .ns-product-visual {
    min-height: 540px;
  }

  .ns-capabilities,
  .ns-shot-grid {
    grid-template-columns: 1fr;
  }

  .ns-shot {
    display: grid;
    grid-template-columns: minmax(160px, 240px) 1fr;
    align-items: center;
  }

  .ns-shot figcaption {
    border-top: 0;
  }

  .ns-faq,
  .ns-policy-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .ns-policy-index {
    display: none;
  }
}

@media (max-width: 560px) {
  .ns-hero h2 {
    font-size: var(--type-product-title);
  }

  .ns-product-visual {
    min-height: 390px;
  }

  .ns-product-icon {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }

  .ns-hero-screen {
    width: 50%;
    border-width: 4px;
    border-radius: 24px;
  }

  .ns-hero-screen-one {
    left: 13%;
  }

  .ns-privacy-band {
    grid-template-columns: 1fr;
  }

  .ns-checks {
    grid-template-columns: 1fr;
  }

  .ns-shot {
    display: block;
  }

  .ns-shot figcaption {
    border-top: 1px solid var(--line);
  }

  .ns-trust li {
    width: 100%;
    padding: 3px 0;
    border: 0;
  }

  .ns-price-card {
    padding: var(--sp-5);
  }
}
