@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg-primary: #ffffff;
  --bg-surface: #f7f8fa;
  --bg-card: #ffffff;
  --border-color: #e3e6ea;
  --border-strong: #cdd2d9;
  --text-primary: #1a2c44;
  --text-secondary: #4b5563;
  --text-body: #3c4257;
  --text-muted: #6b7280;
  --accent-blue: #2451e0;
  --accent-blue-hover: #1c3fb8;
  --accent-blue-tint: #eef2ff;
  --accent-blue-ring: rgba(36, 81, 224, 0.25);
  --accent-green: #0f7a3d;
  --accent-green-bg: #e7f6ec;
  --accent-green-border: #b6e3c6;
  --accent-warning: #92600a;
  --accent-warning-bg: #fdf1dc;
  --accent-warning-border: #f2cf8f;
  --accent-red: #b42318;
  --accent-red-bg: #fee4e2;
  --accent-red-border: #f5a99e;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-xs: 0 1px 2px rgba(16, 21, 31, 0.05);
  --shadow-sm:
    0 1px 3px rgba(16, 21, 31, 0.08), 0 1px 2px rgba(16, 21, 31, 0.04);
  --shadow-md: 0 4px 12px rgba(16, 21, 31, 0.1);
  --shadow-lg: 0 20px 40px -16px rgba(16, 21, 31, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
}
code {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.92em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-blue);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(36, 81, 224, 0.15);
}

.btn-primary:hover {
  background: var(--accent-blue-hover);
  box-shadow: 0 6px 16px -4px rgba(36, 81, 224, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: var(--accent-blue-tint);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}

/* Header */

site-header,
site-footer {
  display: contents;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions .signin {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-actions .signin:hover {
  color: var(--text-primary);
}

/* Sections */

section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(25px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 12px 0 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 15.5px;
}

/* Footer */

footer {
  padding: 48px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  max-width: 300px;
  margin-top: 10px;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-primary);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
  transition: color 0.15s ease;
}

.footer-bottom a:hover {
  color: var(--accent-blue);
}

/* ---------------------------------------------------------------- */
/* Home page                                                         */
/* ---------------------------------------------------------------- */

.hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(
      640px 280px at 15% -10%,
      rgba(36, 81, 224, 0.06),
      transparent 60%
    ),
    radial-gradient(
      520px 260px at 90% 0%,
      rgba(15, 122, 61, 0.05),
      transparent 60%
    );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

.hero h1 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 18px;
  /* max-width: 800px; */
}

.hero p.lead {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}

.browser-frame {
  width: 100%;
  max-width: 1040px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.browser-frame,
.browser-frame * {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  -webkit-user-drag: none; /* Images/elements drag disable */
  cursor: default; /* I-beam text cursor nahi aane dega */
}

.browser-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
}

.browser-urlbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 11px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.browser-urlbar .lock {
  color: var(--accent-green);
  flex-shrink: 0;
}

.browser-viewport {
  position: relative;
  padding: 0;
  min-height: 460px;
  background: var(--bg-primary);
}

.dash-page {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  min-height: 100%;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 18px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-org-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-body);
}

.dash-org-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-blue-tint);
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 700;
}

.dash-body {
  flex: 1;
  padding: 22px 24px 26px;
}

.dash-title-row {
  margin-bottom: 18px;
}
.dash-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.dash-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-xs);
}

.dash-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dash-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dash-stat-delta {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.dash-stat-safe .dash-stat-value {
  color: var(--accent-green);
}
.dash-stat-suspicious .dash-stat-value {
  color: var(--accent-warning);
}
.dash-stat-malicious .dash-stat-value {
  color: var(--accent-red);
}

.dash-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.dash-table-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
}

.dash-table-scroll {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.dash-table th {
  text-align: left;
  padding: 9px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.dash-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-body);
  white-space: nowrap;
}

.dash-table tr:last-child td {
  border-bottom: none;
}

.dash-sender-cell {
  white-space: normal;
}

.dash-sender {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-sender-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-sender-name {
  font-weight: 600;
  color: var(--text-primary);
}
.dash-sender-email {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 3px;
}
.dash-sender-subject {
  font-size: 11px;
  color: #64748b;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 9px;
  flex-shrink: 0;
}

.tag-safe {
  background: #dcfce7;
  color: #15803d;
}
.tag-suspicious {
  background: #fef3c7;
  color: #b45309;
}
.tag-malicious {
  background: #fee2e2;
  color: #b91c1c;
}

.dash-risk {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-risk-track {
  position: relative;
  width: 60px;
  height: 4px;
  background: #f1f5f9;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.dash-risk-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
}

.dash-risk-score {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.client-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
}

.client-pill-gmail {
  background: #fee2e2;
  color: #b91c1c;
}
.client-pill-outlook {
  background: #dbeafe;
  color: #1d4ed8;
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.dash-arrow-col {
  width: 20px;
  text-align: right;
  color: #94a3b8;
  font-weight: 600;
}

.ecosystem {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  transition:
    border-color 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.pillar-card:hover {
  border-color: var(--accent-blue-ring);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pillar-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-blue);
  background: var(--accent-blue-tint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.pillar-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.pillar-card ul svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
}

.privacy-callout {
  background: linear-gradient(
    135deg,
    var(--accent-blue-tint),
    var(--accent-green-bg)
  );
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.privacy-callout h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.privacy-callout p {
  color: var(--text-muted);
  font-size: 14.5px;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s ease;
}

.privacy-item:hover {
  box-shadow: var(--shadow-sm);
}

.privacy-item svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}
.privacy-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.cta {
  text-align: center;
}

.cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 48px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(24px, 3.4vw, 31px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .privacy-callout {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .browser-viewport {
    min-height: auto;
  }
  .dash-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .dash-stat-grid {
    grid-template-columns: 1fr;
  }
  .dash-body {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 560px) {
  .nav-actions .signin {
    display: none;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-cols {
    gap: 36px;
  }
  section {
    padding: 56px 0;
  }
  .cta-card {
    padding: 32px 24px;
  }
}

/* ---------------------------------------------------------------- */
/* Privacy policy page                                                */
/* ---------------------------------------------------------------- */

.doc-header {
  padding: 64px 0 44px;
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(
    640px 260px at 15% -10%,
    rgba(36, 81, 224, 0.05),
    transparent 60%
  );
}

.doc-header h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 12px 0 12px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.doc-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: bold;
}
.doc-meta svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.policy {
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 88px;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.toc h4 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.toc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc li {
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
  transition: border-color 0.2s ease;
}

.toc a {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.15s ease, font-weight 0.15s ease;
}
.toc a:hover {
  color: var(--accent-blue);
}

.toc li.active {
  border-left-color: var(--accent-blue);
}

.toc li.active a {
  color: var(--accent-blue);
  font-weight: 600;
}

.policy-body section {
  padding: 0 0 36px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 36px;
  scroll-margin-top: 88px;
}

.policy-body section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-body h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-tint);
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-body p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 13px;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

/* Clean modern bullet list layout */
ul.bullet {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.bullet li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

ul.bullet li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #16a34a; /* Crisp green check */
}

/* Ensure text and strong flow inline together inside the li */
ul.bullet li .bullet-content {
  flex: 1;
  display: inline;
}

ul.bullet li strong {
  color: #0f172a;
  font-weight: 600;
  margin-right: 0.35rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 4px 0 13px;
}

.scope-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: box-shadow 0.2s ease;
}

.scope-item:hover {
  box-shadow: var(--shadow-sm);
}

.scope-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.scope-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.callout {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 14px;
}

.callout.amber {
  border-left-color: var(--accent-warning);
}

.callout strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.callout p {
  font-size: 13.5px;
  margin-bottom: 0;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .policy {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
  .scope-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------- */
/* About page                                                        */
/* ---------------------------------------------------------------- */

.about-shell {
  width: 100%;
  max-width: 680px;
  box-sizing: border-box;
}

.about-body {
  padding: 56px 24px 88px;
}

.about-article {
  width: 100%;
  max-width: 100%;
}

.about-article p {
  font-size: 17.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 26px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-article p:last-of-type {
  margin-bottom: 0;
}

.signature-card {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
}

.signature-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-blue-tint);
  color: var(--accent-blue);
  font-size: 17px;
  font-weight: 700;
}

.signature-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.signature-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.signature-email {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--accent-blue);
  width: fit-content;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.signature-email:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .about-body {
    padding: 48px 24px 76px;
  }
}

@media (max-width: 560px) {
  .about-article p {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-body {
    padding: 40px 24px 64px;
  }
}

@media (max-width: 400px) {
  .doc-header .about-shell h1 {
    font-size: 26px;
  }
  .about-article p {
    font-size: 15px;
    line-height: 1.75;
  }
  .signature-card {
    padding-top: 24px;
  }
}

@media (max-width: 340px) {
  .about-body {
    padding: 32px 24px 56px;
  }
  .about-article p {
    font-size: 14.5px;
  }
  .signature-card {
    gap: 12px;
    row-gap: 10px;
  }
  .signature-avatar {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .signature-name {
    font-size: 16px;
  }
  .signature-email {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------- */
/* Contact page                                                       */
/* ---------------------------------------------------------------- */

.contact-shell {
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
}

.contact-body {
  padding: 56px 24px 88px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-blue-tint);
  color: var(--accent-blue);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-email:hover {
  color: var(--accent-blue);
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
}

.contact-copy {
  position: relative;
}

.contact-copy::after {
  content: "Copied";
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: var(--text-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.contact-copy.is-copied::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact-body {
    padding: 48px 24px 76px;
  }
}

@media (max-width: 560px) {
  .contact-body {
    padding: 40px 24px 64px;
  }
  .contact-card {
    padding: 22px;
    gap: 16px;
  }
  .contact-actions {
    margin-left: 0;
    width: 100%;
  }
  .contact-actions .btn {
    flex: 1;
  }
}

@media (max-width: 400px) {
  .doc-header .contact-shell h1 {
    font-size: 26px;
  }
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-actions {
    margin-left: 0;
  }
}

@media (max-width: 340px) {
  .contact-body {
    padding: 32px 24px 56px;
  }
  .contact-card {
    padding: 18px;
  }
  .contact-email {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------- */
/* 404 page                                                          */
/* ---------------------------------------------------------------- */

.notfound {
  padding: 88px 0 100px;
  background: radial-gradient(
    640px 280px at 15% -10%,
    rgba(99, 102, 241, 0.07),
    transparent 60%
  );
}

.notfound-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.notfound-content .eyebrow {
  margin-bottom: 14px;
}

.notfound-content h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.notfound-content .lead {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 28px;
}

.notfound-help {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.notfound-help a {
  color: var(--accent-blue);
  font-weight: 600;
}

.notfound-help a:hover {
  text-decoration: underline;
}

.notfound-visual {
  display: flex;
  justify-content: center;
}

.notfound-visual svg {
  width: 100%;
  height: auto;
  max-width: 420px;
}

@media (max-width: 900px) {
  .notfound {
    padding: 56px 0 72px;
  }
  .notfound-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .notfound-content .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .notfound-actions {
    display: flex;
    justify-content: center;
  }
  .notfound-visual {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notfound {
    padding: 44px 0 56px;
  }
  .notfound-content h1 {
    font-size: 26px;
  }
  .notfound-visual {
    max-width: 240px;
  }
}

@media (max-width: 340px) {
  .notfound-content .lead {
    font-size: 15px;
  }
  .notfound-actions .btn {
    width: 100%;
  }
}
