:root {
  --bg: #050c18;
  --bg-alt: #0a1425;
  --surface: #0c1729;
  --surface-2: #101d31;
  --line: #1c2b42;
  --line-bright: #1e6d67;
  --text: #f4f7fb;
  --muted: #94a2b8;
  --green: #18e6a1;
  --green-dark: #0dbb82;
  --blue: #51a8ff;
  --danger: #ff5c70;
  --warning: #ffbb55;
  --radius: 14px;
  --shadow: 0 24px 80px rgb(0 0 0 / 34%);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(255 255 255 / 1.6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 1.6%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 52%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: clamp(3rem, 7vw, 6.3rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
}

h3 {
  font-size: 1.28rem;
}

h1 span,
h2 span {
  color: var(--green);
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 116px 0;
}

.section--alternate {
  background: var(--bg-alt);
}

.section--border {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.centered {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: #03120d;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(5 12 24 / 78%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 5px;
  background: var(--green);
  color: #03130e;
  font-size: 0.78rem;
  letter-spacing: -0.08em;
}

.brand-product {
  padding-left: 7px;
  border-left: 1px solid var(--line);
  color: var(--green);
  font-size: 0.62rem;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(81 168 255 / 45%);
  outline-offset: 3px;
}

.button--primary {
  background: var(--green);
  color: #02140e;
  box-shadow: 0 0 36px rgb(24 230 161 / 16%);
}

.button--primary:hover {
  background: #3bf0b3;
}

.button--secondary {
  border-color: var(--line);
  background: rgb(12 23 41 / 75%);
  color: var(--text);
}

.button--secondary:hover {
  border-color: #365275;
  background: var(--surface-2);
}

.button--small {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 0.72rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--pill {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgb(24 230 161 / 30%);
  border-radius: 99px;
  background: rgb(24 230 161 / 7%);
}

.hero {
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 920px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgb(24 230 161 / 13%), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-copy {
  max-width: 710px;
  margin: 0 auto 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

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

.hero-note {
  margin-bottom: 48px;
  font-size: 0.76rem;
}

.product-window,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-window {
  max-width: 1030px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 0 0 1px rgb(24 230 161 / 5%),
    0 0 80px rgb(24 230 161 / 9%),
    var(--shadow);
}

.window-bar {
  display: grid;
  min-height: 46px;
  padding: 0 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #0a1423;
  color: #72829a;
  font-size: 0.67rem;
}

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

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #314157;
}

.window-dots span:first-child {
  background: #ff6074;
}

.window-dots span:nth-child(2) {
  background: #ffc35c;
}

.window-dots span:last-child {
  background: var(--green);
}

.live-indicator {
  justify-self: end;
  color: var(--green);
}

.dashboard-layout {
  display: grid;
  min-height: 390px;
  grid-template-columns: 168px 1fr;
}

.dashboard-sidebar {
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: #091322;
}

.mini-brand {
  margin-bottom: 30px;
  color: #bac5d4;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.mini-brand span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 6px;
  place-items: center;
  border-radius: 4px;
  background: var(--green);
  color: #04130e;
}

.side-item {
  margin-bottom: 7px;
  padding: 8px 10px;
  border-radius: 5px;
  color: #62728a;
  font-size: 0.66rem;
}

.side-item.active {
  background: rgb(24 230 161 / 8%);
  color: var(--green);
}

.dashboard-main {
  padding: 26px;
}

.audit-heading {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audit-heading strong {
  display: block;
  margin-top: 5px;
  color: #d8e1ec;
  font-size: 0.83rem;
}

.dashboard-label {
  color: #5e7089;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.status-pass,
.severity,
.pricing-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 99px;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pass {
  background: rgb(24 230 161 / 10%);
  color: var(--green);
}

.score-grid {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.score-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a1526;
}

.score-card > span,
.score-card small {
  display: block;
  color: #718199;
  font-size: 0.6rem;
}

.score-card strong {
  display: block;
  margin: 5px 0;
  font-size: 1.45rem;
}

.score-card strong span {
  color: #64748a;
  font-size: 0.7rem;
}

.score-card .accent,
.positive {
  color: var(--green);
}

.score-card .danger {
  color: var(--danger);
}

.finding-list {
  display: grid;
  gap: 9px;
}

.finding {
  display: grid;
  padding: 12px 14px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #091424;
}

.finding-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 900;
}

.finding strong,
.finding small {
  display: block;
}

.finding strong {
  color: #cbd5e2;
  font-size: 0.68rem;
}

.finding small,
.finding > span:last-child {
  color: #687991;
  font-size: 0.57rem;
}

.finding--critical .finding-icon {
  background: rgb(255 92 112 / 12%);
  color: var(--danger);
}

.finding--warning .finding-icon {
  background: rgb(255 187 85 / 12%);
  color: var(--warning);
}

.finding--pass .finding-icon {
  background: rgb(24 230 161 / 12%);
  color: var(--green);
}

.trust-row {
  display: flex;
  margin-top: 42px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  color: #5f6e83;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.trust-row strong {
  color: #8695a9;
}

.split-intro {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-intro h2,
.section-heading h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.split-intro > div:last-child p,
.split-intro > p {
  margin-bottom: 18px;
}

.text-link {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.outcome-grid,
.feature-grid,
.workflow-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.outcome-grid {
  grid-template-columns: repeat(3, 1fr);
}

.outcome-card,
.workflow-card,
.feature-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.outcome-card {
  min-height: 280px;
  padding: 32px;
}

.card-number {
  position: absolute;
  right: 20px;
  bottom: -22px;
  color: rgb(255 255 255 / 3%);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.outcome-card h3 {
  max-width: 270px;
  font-size: 1.5rem;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading.centered h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin-top: 20px;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.audit-example {
  overflow: hidden;
}

.audit-example-top {
  display: flex;
  padding: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.audit-example-top h3 {
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.audit-example-top p:last-child {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.grade-ring {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  align-content: center;
  border: 7px solid var(--green);
  border-left-color: #21433f;
  border-radius: 50%;
  box-shadow: 0 0 32px rgb(24 230 161 / 13%);
}

.grade-ring strong {
  font-size: 1.8rem;
  line-height: 1;
}

.grade-ring span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.audit-columns {
  display: grid;
  grid-template-columns: 270px 1fr;
}

.audit-summary {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.audit-summary h4 {
  margin-bottom: 22px;
  color: #c9d3df;
}

.summary-stat {
  display: flex;
  margin-bottom: 10px;
  padding: 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-stat strong {
  font-size: 1.45rem;
}

.summary-stat span {
  color: var(--muted);
  font-size: 0.72rem;
}

.summary-stat.critical strong {
  color: var(--danger);
}

.summary-stat.warning strong {
  color: var(--warning);
}

.summary-stat.success strong {
  color: var(--green);
}

.audit-details {
  padding: 18px 30px;
}

.audit-details article {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.audit-details article:last-child {
  border-bottom: 0;
}

.audit-details h4 {
  margin-bottom: 5px;
  color: #d6deea;
}

.audit-details p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.severity {
  align-self: start;
  justify-content: center;
}

.severity--critical {
  background: rgb(255 92 112 / 12%);
  color: var(--danger);
}

.severity--warning {
  background: rgb(255 187 85 / 12%);
  color: var(--warning);
}

.severity--success {
  background: rgb(24 230 161 / 12%);
  color: var(--green);
}

.workflow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.workflow-card {
  min-height: 245px;
  padding: 28px;
}

.workflow-card::after {
  position: absolute;
  top: 45px;
  right: -12px;
  z-index: 2;
  color: var(--green);
  content: "→";
}

.workflow-card:last-child::after {
  display: none;
}

.step-icon,
.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgb(24 230 161 / 28%);
  border-radius: 8px;
  background: rgb(24 230 161 / 8%);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.prompt-card {
  display: flex;
  margin-top: 18px;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #081321;
}

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

.copy-button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 30px;
}

.feature-card:hover {
  border-color: #2a5264;
}

.feature-icon {
  margin-bottom: 36px;
}

.comparison-section {
  background: #0c1729;
}

.comparison-grid {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comparison-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #091322;
}

.comparison-card--muted {
  opacity: 0.8;
}

.comparison-card--accent {
  border-color: rgb(24 230 161 / 42%);
  background: linear-gradient(145deg, rgb(24 230 161 / 12%), #0b1d20);
  box-shadow: 0 0 60px rgb(24 230 161 / 8%);
}

.comparison-card ul,
.check-list {
  padding: 0;
  list-style: none;
}

.comparison-card li,
.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 23px;
  color: var(--muted);
  font-size: 0.83rem;
}

.comparison-card--muted li::before {
  position: absolute;
  left: 0;
  color: var(--danger);
  content: "×";
}

.check-list li::before,
.comparison-card--accent li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.stats-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
  padding: 10px 28px 25px;
  border-right: 1px solid var(--line);
}

.stats-grid > div:first-child {
  padding-left: 0;
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.06em;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.security-note {
  display: flex;
  margin-top: 32px;
  padding: 15px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #081321;
}

.security-note > span {
  color: var(--green);
}

.security-note p {
  margin: 0;
  font-size: 0.72rem;
}

.security-note a {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.7rem;
  white-space: nowrap;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  min-height: 450px;
  padding: 30px;
  flex-direction: column;
}

.pricing-card--popular {
  border-color: rgb(24 230 161 / 55%);
  box-shadow: 0 0 55px rgb(24 230 161 / 9%);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #03130e;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.pricing-card h3 span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.pricing-price {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 850;
}

.pricing-description {
  min-height: 52px;
  font-size: 0.78rem;
}

.pricing-card .check-list {
  margin-bottom: 26px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.68rem;
}

.pricing-unavailable {
  padding: 42px;
  grid-column: 1 / -1;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--green);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 50px;
  padding-bottom: 22px;
  font-size: 0.88rem;
}

.final-cta {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 120%, rgb(24 230 161 / 17%), transparent 47%),
    #06101c;
}

.final-cta h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta > .container > p:not(.eyebrow, .hero-note) {
  max-width: 640px;
  margin: 0 auto 30px;
}

.site-footer {
  padding: 70px 0 25px;
  border-top: 1px solid var(--line);
  background: #030914;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
  font-size: 0.78rem;
}

.footer-brand > a:last-child {
  color: var(--green);
  font-size: 0.7rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: #8594a9;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.66rem;
}

.auth-dialog {
  width: min(calc(100% - 32px), 500px);
  padding: 38px;
  border: 1px solid #28405d;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.auth-dialog::backdrop {
  background: rgb(1 6 14 / 82%);
  backdrop-filter: blur(5px);
}

.auth-dialog h2 {
  font-size: 2rem;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.6rem;
}

.auth-dialog label {
  display: block;
  margin-bottom: 8px;
  color: #cdd7e4;
  font-size: 0.76rem;
  font-weight: 700;
}

.auth-dialog input {
  width: 100%;
  min-height: 52px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid #2a3c56;
  border-radius: 7px;
  background: #081321;
  color: var(--text);
}

.auth-dialog .button {
  width: 100%;
}

.dialog-note,
.form-status {
  margin: 15px 0 0;
  font-size: 0.7rem;
}

.dialog-note a {
  color: var(--green);
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--green);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #081321;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 10px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
  }

  .header-actions .text-button {
    display: none;
  }

  .split-intro,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .outcome-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-card::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .stats-grid > div:nth-child(2) {
    border-right: 0;
  }

  .dashboard-layout {
    grid-template-columns: 120px 1fr;
  }

  .dashboard-sidebar {
    padding: 20px 10px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .header-actions {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .dashboard-layout {
    display: block;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 14px;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .finding {
    grid-template-columns: 26px 1fr;
  }

  .finding > span:last-child {
    display: none;
  }

  .window-bar {
    grid-template-columns: 1fr 1fr;
  }

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .trust-row span {
    flex-basis: 100%;
  }

  .outcome-grid,
  .feature-grid,
  .workflow-grid,
  .comparison-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .audit-example-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-columns {
    grid-template-columns: 1fr;
  }

  .audit-summary {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audit-details article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .severity {
    justify-self: start;
  }

  .prompt-card,
  .security-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-note a {
    margin-left: 0;
    white-space: normal;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid > div {
    padding: 10px 15px 20px;
  }

  .stats-grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .auth-dialog {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.policy-main {
  min-height: calc(100vh - 72px);
}

.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 75px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgb(24 230 161 / 12%), transparent 42%),
    var(--bg);
}

.policy-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.policy-container {
  max-width: 820px;
}

.policy-intro {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: 1.1rem;
}

.policy-date {
  margin: 0;
  color: #75859b;
  font-size: 0.76rem;
}

.policy-date strong {
  color: #aeb9c8;
}

.policy-content {
  padding: 80px 0 110px;
  background: var(--bg-alt);
}

.policy-content h2 {
  margin-top: 58px;
  margin-bottom: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-content h2:first-of-type {
  margin-top: 46px;
}

.policy-content p,
.policy-content li {
  color: #a3b0c2;
  font-size: 0.96rem;
}

.policy-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgb(24 230 161 / 30%);
  text-underline-offset: 3px;
}

.policy-content ul {
  padding-left: 22px;
}

.policy-content li {
  margin: 10px 0;
  padding-left: 4px;
}

.policy-footer {
  padding-top: 25px;
}

.policy-footer a {
  color: var(--muted);
}

.policy-footer a:hover,
.policy-footer a[aria-current="page"] {
  color: var(--green);
}

.support-callout {
  display: flex;
  margin-bottom: 65px;
  padding: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgb(24 230 161 / 35%);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgb(24 230 161 / 10%), #0b1726);
  box-shadow: 0 0 55px rgb(24 230 161 / 7%);
}

.support-callout h2 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.support-callout p:last-child {
  margin-bottom: 0;
}

.support-callout .button {
  flex: 0 0 auto;
  color: #02140e;
  text-decoration: none;
}

.support-callout .button--secondary {
  color: var(--text);
}

.support-prompt {
  margin: 22px 0;
  padding: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #07111f;
}

.support-prompt code {
  color: #c9d7e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.83rem;
}

@media (max-width: 680px) {
  .policy-home {
    margin-left: auto;
  }

  .policy-hero {
    padding: 70px 0 55px;
  }

  .policy-content {
    padding: 55px 0 75px;
  }

  .support-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-callout .button {
    width: 100%;
  }
}

.guest-audit {
  max-width: 980px;
  margin: 58px auto 72px;
  padding: clamp(26px, 5vw, 48px);
  text-align: left;
  border-color: rgb(24 230 161 / 30%);
  background:
    radial-gradient(circle at 100% 0%, rgb(24 230 161 / 10%), transparent 35%),
    #0a1422;
  box-shadow: 0 24px 80px rgb(0 0 0 / 28%);
  scroll-margin-top: 95px;
}

.guest-audit-intro {
  max-width: 680px;
  margin-bottom: 28px;
}

.guest-audit-intro h2,
.guest-report-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.guest-audit-intro p:last-child {
  margin-bottom: 0;
}

.guest-audit-form label {
  display: block;
  margin-bottom: 9px;
  color: #dbe7f5;
  font-size: 0.84rem;
  font-weight: 700;
}

.guest-audit-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.guest-audit-controls input[type="url"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #eef6ff;
  border: 1px solid #2a3a50;
  border-radius: 9px;
  outline: none;
  background: #07111f;
  font: inherit;
}

.guest-audit-controls input[type="url"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(24 230 161 / 12%);
}

.guest-audit-controls .button {
  min-width: 185px;
}

.guest-audit-note {
  margin: 12px 0 0;
  color: #75859b;
  font-size: 0.78rem;
}

.guest-audit .form-status {
  min-height: 24px;
  margin: 12px 0 0;
}

.guest-report {
  scroll-margin-top: 95px;
}

.guest-report-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.guest-report-heading .eyebrow {
  margin-bottom: 8px;
}

.guest-report-heading h2 {
  margin-bottom: 0;
}

.guest-report-summary {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guest-report-metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #07111f;
}

.guest-report-metric span {
  display: block;
  margin-bottom: 8px;
  color: #8291a5;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.guest-report-metric strong {
  color: #edf6ff;
  font-size: 1.8rem;
}

.guest-report-metric.is-error {
  border-color: rgb(255 104 104 / 35%);
}

.guest-report-metric.is-warning {
  border-color: rgb(255 192 84 / 35%);
}

.guest-report-metric.is-info {
  border-color: rgb(103 170 255 / 35%);
}

.guest-report-section {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #07111f;
}

.guest-report-section h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
}

.guest-issue-list {
  display: grid;
  gap: 10px;
}

.guest-issue {
  padding: 16px;
  border-left: 3px solid #6d7d91;
  border-radius: 8px;
  background: #0b1726;
}

.guest-issue.is-error {
  border-left-color: #ff6868;
}

.guest-issue.is-warning {
  border-left-color: #ffc054;
}

.guest-issue.is-info {
  border-left-color: #67aaff;
}

.guest-issue.is-pass {
  border-left-color: var(--green);
}

.guest-issue-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.guest-issue-heading span {
  color: #8fa0b6;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.guest-issue p {
  margin: 8px 0 0;
}

.guest-issue code {
  display: inline-block;
  margin-top: 10px;
  color: #71849b;
  font-size: 0.7rem;
}

.guest-report-fields {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.guest-report-field {
  min-width: 0;
  padding: 14px 16px;
  background: #0b1726;
}

.guest-report-field dt {
  margin-bottom: 6px;
  color: #7f90a6;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guest-report-field dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #d7e2ef;
  font-size: 0.86rem;
  line-height: 1.5;
}

.guest-report-cta {
  display: flex;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 32px);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgb(24 230 161 / 30%);
  border-radius: 12px;
  background: rgb(24 230 161 / 7%);
}

.guest-report-cta h3 {
  margin: 0 0 8px;
}

.guest-report-cta p {
  max-width: 560px;
  margin: 0;
}

.guest-report-cta .hero-actions {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 820px) {
  .guest-report-summary {
    grid-template-columns: 1fr 1fr;
  }

  .guest-report-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .guest-audit {
    margin-top: 40px;
    padding: 24px 18px;
  }

  .guest-audit-controls,
  .guest-report-fields {
    grid-template-columns: 1fr;
  }

  .guest-audit-controls .button {
    width: 100%;
  }

  .guest-report-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .guest-report-heading .button {
    width: 100%;
  }

  .guest-report-cta .hero-actions,
  .guest-report-cta .button {
    width: 100%;
  }
}

.guest-audit[hidden] {
  display: none;
}


/* How to use */
.help-hero { padding-bottom: 78px; }
.help-hero h1 { max-width: 780px; margin-left: 0; }
.help-hero .policy-intro { max-width: 700px; }
.help-hero-actions { justify-content: flex-start; margin-top: 30px; }
.help-intro { padding: 34px; margin-bottom: 78px; background: linear-gradient(145deg, rgb(24 230 161 / 9%), #0c1729); }
.help-intro h2, .help-section h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
.help-intro p:last-child, .help-section > p:last-child { margin-bottom: 0; }
.help-section { padding: 70px 0; border-top: 1px solid var(--line); }
.help-steps { display: grid; gap: 15px; margin: 26px 0; padding: 0; list-style: none; counter-reset: help-step; }
.help-steps li { position: relative; padding: 18px 20px 18px 62px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--muted); }
.help-steps li::before { position: absolute; top: 18px; left: 20px; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgb(24 230 161 / 13%); color: var(--green); content: counter(help-step); counter-increment: help-step; font-size: .72rem; font-weight: 850; }
.help-steps strong { color: var(--text); }
.help-note { padding: 15px 18px; border-left: 3px solid var(--green); background: rgb(24 230 161 / 6%); font-size: .88rem; }
.help-grid, .help-credit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; }
.help-grid--three { grid-template-columns: repeat(3, 1fr); }
.help-card, .help-credit-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.help-card h3, .help-credit-card h3 { margin-bottom: 12px; color: var(--text); }
.help-card p, .help-credit-card p { margin-bottom: 0; font-size: .88rem; }
.help-card code, .help-prompt-list code { display: block; overflow-wrap: anywhere; color: #b9d2ec; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .81rem; line-height: 1.65; }
.help-card code { margin-bottom: 18px; padding: 14px; border-radius: 8px; background: #07101f; }
.help-prompt-list { display: grid; gap: 12px; margin-top: 28px; }
.help-prompt-list > div { padding: 18px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.help-prompt-label { display: inline-flex; margin-bottom: 10px; padding: 4px 8px; border-radius: 99px; background: rgb(81 168 255 / 13%); color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.help-prompt-label--reuse { background: rgb(24 230 161 / 12%); color: var(--green); }
.help-prompt-label--new { background: rgb(255 187 85 / 13%); color: var(--warning); }
.help-credit-card--safe { border-color: rgb(24 230 161 / 38%); background: linear-gradient(145deg, rgb(24 230 161 / 10%), #0c1729); }
.help-section ul { padding-left: 21px; color: var(--muted); }
.help-section li { margin: 10px 0; }
.help-section code { overflow-wrap: anywhere; color: #b9d2ec; }
.help-links { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) {
  .help-grid, .help-grid--three, .help-credit-grid { grid-template-columns: 1fr; }
  .help-intro { padding: 24px; margin-bottom: 50px; }
  .help-section { padding: 52px 0; }
  .help-hero-actions { justify-content: flex-start; }
  .help-links, .help-links .button { width: 100%; }
}


/* Homepage audit preview animation */
.demo-window {
  position: relative;
}

.demo-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgb(81 168 255 / 12%);
}

.demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width 700ms ease;
}

.demo-window.is-scanning .demo-progress span {
  width: 82%;
  transition-duration: 2200ms;
}

.demo-window.is-complete .demo-progress span {
  width: 100%;
}

.demo-window.is-scanning .live-indicator {
  color: var(--warning);
}

.demo-window.is-scanning .live-indicator::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  animation: demo-pulse 950ms ease-in-out infinite;
}

.demo-window.is-scanning [data-demo-url]::after {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -0.15em;
  background: var(--green);
  content: "";
  animation: demo-caret 700ms steps(1, end) infinite;
}

.demo-window.is-scanning .score-card {
  border-color: rgb(81 168 255 / 26%);
}

.demo-window.is-scanning .finding {
  opacity: 0.48;
  transform: translateX(-4px);
}

.demo-window.is-complete .finding {
  animation: demo-reveal 420ms ease both;
}

.demo-window.is-complete .finding:nth-child(2) {
  animation-delay: 110ms;
}

.demo-window.is-complete .finding:nth-child(3) {
  animation-delay: 220ms;
}

@keyframes demo-pulse {
  50% {
    opacity: 0.28;
    transform: scale(0.75);
  }
}

@keyframes demo-caret {
  50% {
    opacity: 0;
  }
}

@keyframes demo-reveal {
  from {
    opacity: 0.48;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
