/* Cyber Bounds — small, dependency-free design system */
:root {
  --ink: #0b1821;
  --ink-soft: #233844;
  --paper: #f8fbfa;
  --white: #ffffff;
  --mist: #e5efec;
  --line: #c7d8d2;
  --teal: #006f68;
  --teal-dark: #00534e;
  --mint: #a8f0dc;
  --lime: #d9ff6f;
  --orange: #ffb454;
  --red: #a8223d;
  --max: 74rem;
  --shadow: 0 18px 50px rgb(11 24 33 / 9%);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.58;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -4rem; left: 1rem; z-index: 30;
  padding: .65rem 1rem; background: var(--lime); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 2.25rem 0; }
.surface { background: var(--white); }
.eyebrow {
  display: flex; align-items: center; gap: .55rem; margin: 0 0 1rem;
  color: var(--teal); font-size: .76rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.65rem; height: 2px; background: currentColor; }
.display {
  max-width: 14ch; margin: 0; font-size: clamp(2.5rem, 7vw, 5.75rem);
  line-height: .96; letter-spacing: -.065em; font-weight: 780;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h2 { max-width: 20ch; margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { margin: 0 0 .65rem; font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.lead { max-width: 42rem; color: var(--ink-soft); font-size: clamp(1.1rem, 2.5vw, 1.3rem); }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }
.no-margin { margin: 0; }
.text-teal { color: var(--teal); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-header {
  position: relative; z-index: 20; border-bottom: 1px solid rgb(199 216 210 / 65%);
  background: rgb(248 251 250 / 94%); backdrop-filter: blur(12px);
}
.header-inner { min-height: 4.7rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-size: 1rem; font-weight: 850; letter-spacing: -.04em; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 2rem; height: 2rem; border: 2px solid var(--teal);
  color: var(--teal); font-size: .76rem; letter-spacing: -.1em; transform: rotate(-6deg);
}
.brand span:last-child { white-space: nowrap; }
.nav-toggle {
  width: 2.7rem; height: 2.7rem; border: 1px solid var(--line); border-radius: .55rem; background: var(--white);
  color: var(--ink);
}
.nav-toggle .bar { display: block; width: 1.1rem; height: 2px; margin: .24rem auto; background: currentColor; }
.site-nav { display: none; }
.site-nav.is-open {
  display: grid; position: absolute; inset: 4.7rem 0 auto; gap: .2rem; padding: 1rem;
  border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow);
}
.site-nav a { padding: .7rem .8rem; border-radius: .45rem; font-weight: 690; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--mist); }
.site-nav .nav-cta { margin-top: .25rem; background: var(--teal); color: var(--white); text-align: center; }
.site-nav .nav-cta:hover { background: var(--teal-dark); color: var(--white); }

.hero { position: relative; overflow: hidden; padding: 4rem 0 3rem; background: var(--paper); }
.hero::after {
  position: absolute; content: ""; z-index: 0; width: 39rem; height: 39rem; right: -22rem; top: -15rem;
  border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 2.7rem rgb(168 240 220 / 25%), 0 0 0 8rem rgb(168 240 220 / 13%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 2.5rem; }
.hero-copy { padding-top: .35rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.65rem; }
.button {
  display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.05rem;
  border: 1px solid transparent; border-radius: .55rem; background: var(--teal); color: var(--white); font-weight: 790; line-height: 1.15; text-decoration: none;
}
.button:hover { background: var(--teal-dark); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: #c5ee45; }
.button-small { min-height: 2.55rem; padding: .56rem .8rem; font-size: .9rem; }
.arrow { font-size: 1.2em; line-height: 1; }

.hero-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-top: 2.2rem; }
.hero-notes div { border-top: 1px solid var(--line); padding-top: .6rem; color: var(--ink-soft); font-size: .82rem; }
.hero-notes strong { display: block; color: var(--ink); font-size: 1rem; }

.scanner {
  padding: 1.25rem; border: 1px solid #164a48; border-radius: var(--radius); background: var(--ink); color: var(--white);
  box-shadow: var(--shadow);
}
.scanner-kicker { display: flex; align-items: center; gap: .5rem; color: var(--mint); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.scanner-kicker::before { width: .55rem; height: .55rem; content: ""; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 .25rem rgb(217 255 111 / 12%); }
.scanner h2 { max-width: 12ch; margin: .7rem 0 .7rem; font-size: clamp(1.7rem, 5vw, 2.65rem); letter-spacing: -.05em; }
.scanner p { color: #ceddda; }
.scanner-visual {
  margin: 1rem 0 1.15rem; overflow: hidden; border: 1px solid rgb(168 240 220 / 20%);
  border-radius: .75rem; background: #112731;
}
.scanner-visual img { width: 100%; height: auto; }
.scanner-form { margin-top: 1.2rem; }
.scanner-input-row { display: grid; gap: .65rem; }
.field-label { display: block; margin-bottom: .42rem; font-size: .9rem; font-weight: 750; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: .5rem; padding: .82rem .9rem; background: var(--white); color: var(--ink);
}
textarea { min-height: 8.5rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: #62767a; }
.scanner input { border-color: transparent; }
.scanner .button { width: 100%; }
.field-hint { margin: .65rem 0 0; color: #adc2bd !important; font-size: .79rem; }
.form-status { min-height: 1.5rem; margin: .9rem 0 0; font-size: .9rem; }
.form-status[aria-live] { color: var(--mint); }

.scanner-result { margin-top: 1.3rem; }
.scan-overview { display: flex; align-items: center; gap: .85rem; padding: 1rem; border: 1px solid rgb(168 240 220 / 30%); border-radius: .75rem; background: #112731; }
.score-circle {
  display: grid; flex: 0 0 auto; place-items: center; width: 3.5rem; height: 3.5rem; border: 2px solid var(--mint); border-radius: 50%;
  color: var(--mint); font-weight: 840; font-size: .8rem; text-align: center; line-height: 1.05;
}
.scan-overview strong { display: block; }
.scan-overview p { margin: .15rem 0 0; font-size: .86rem; }
.record-list { display: grid; gap: .65rem; margin: .75rem 0; }
.record {
  padding: .85rem; border: 1px solid rgb(255 255 255 / 13%); border-radius: .7rem; background: rgb(255 255 255 / 5%);
}
.record-head { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }
.record h3 { margin: 0; font-size: 1rem; letter-spacing: 0; }
.record p { margin: .35rem 0 0; color: #d8e5e1; font-size: .87rem; }
.record details { margin-top: .5rem; color: #b9d5ce; font-size: .78rem; }
.record summary { cursor: pointer; }
.record code { overflow-wrap: anywhere; white-space: normal; }
.pill { display: inline-block; padding: .2rem .45rem; border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.pill-good { background: #b8f6cc; color: #0d4725; }
.pill-warn { background: #ffe19a; color: #694700; }
.pill-bad { background: #ffc1ce; color: #77152d; }
.result-cta { margin-top: 1rem; }
.result-cta .button { width: auto; }
.hidden { display: none !important; }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust-item { min-height: 7.8rem; display: flex; flex-direction: column; justify-content: center; padding: 1.2rem; border-bottom: 1px solid rgb(255 255 255 / 16%); }
.trust-item:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / 16%); }
.trust-item span { color: var(--mint); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-item strong { margin-top: .45rem; font-size: 1.1rem; line-height: 1.2; }

.split { display: grid; gap: 2rem; }
.check-list, .plain-list { padding: 0; margin: 1.4rem 0 0; list-style: none; }
.check-list { display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { position: absolute; left: 0; top: .25em; content: "↗"; color: var(--teal); font-weight: 900; }
.plain-list { display: grid; gap: .6rem; }

.service-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.service-card {
  display: flex; min-height: 19rem; flex-direction: column; padding: 1.35rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--white);
}
.service-card:nth-child(2) { background: var(--teal); border-color: var(--teal); color: var(--white); }
.service-card:nth-child(2) p, .service-card:nth-child(2) .card-meta { color: #d4f2ea; }
.service-card .number, .card-meta { color: var(--teal); font-size: .76rem; font-weight: 830; letter-spacing: .1em; text-transform: uppercase; }
.service-card:nth-child(2) .number { color: var(--lime); }
.service-card p { color: var(--ink-soft); }
.service-card a { margin-top: auto; padding-top: 1.4rem; font-weight: 780; }

.explainer-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.explainer { padding: 1.2rem; border-top: 3px solid var(--teal); background: var(--white); }
.explainer .letter {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1.2rem; border-radius: 50%;
  background: var(--mist); color: var(--teal); font-weight: 900;
}
.explainer p { color: var(--ink-soft); }

.process { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.process-step { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.process-step span { color: var(--teal); font-size: .79rem; font-weight: 850; letter-spacing: .1em; }
.process-step p { max-width: 35rem; margin: .5rem 0 0; color: var(--ink-soft); }

.quote-block { padding: 2rem 1.4rem; border-radius: var(--radius); background: #dff6ef; }
.quote-block blockquote { max-width: 47rem; margin: 0; font-size: clamp(1.5rem, 4vw, 2.7rem); font-weight: 680; line-height: 1.15; letter-spacing: -.04em; }
.quote-block cite { display: block; margin-top: 1.25rem; color: var(--teal); font-size: .9rem; font-style: normal; font-weight: 750; }

.cta-band { padding: 3.4rem 0; background: var(--teal); color: var(--white); }
.cta-band h2 { max-width: 14ch; }
.cta-band p { max-width: 38rem; color: #d9f6ed; font-size: 1.1rem; }
.cta-band .button { margin-top: .5rem; }

.page-hero { padding: 3.4rem 0 2.7rem; background: var(--mist); }
.page-hero .display { max-width: 13ch; font-size: clamp(2.6rem, 7vw, 4.8rem); }
.breadcrumbs { margin-bottom: 1rem; font-size: .85rem; color: var(--ink-soft); }
.breadcrumbs a { text-decoration: none; }

.detail-grid { display: grid; gap: 1.1rem; margin-top: 2rem; }
.detail-card { padding: 1.3rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); }
.detail-card p { margin-bottom: 0; color: var(--ink-soft); }
.detail-card .icon { display: grid; place-items: center; width: 2.45rem; height: 2.45rem; margin-bottom: 1rem; border-radius: .5rem; background: var(--mist); color: var(--teal); font-weight: 900; }

.pricing-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.price-card { display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--white); }
.price-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); }
.price-card .label { min-height: 1.5rem; color: var(--teal); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.price { margin: .9rem 0 .3rem; font-size: 2.5rem; line-height: 1; letter-spacing: -.065em; font-weight: 830; }
.price span { color: var(--ink-soft); font-size: .9rem; font-weight: 600; letter-spacing: 0; }
.price-card > p { color: var(--ink-soft); }
.price-card .check-list { margin-top: .5rem; }
.price-card .button { margin-top: auto; }
.bundle { display: grid; gap: 1.5rem; padding: 1.5rem; margin-top: 1rem; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.bundle h2 { margin-bottom: .75rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.bundle p { color: #c9dcda; }
.bundle .check-list li::before { color: var(--lime); }
.bundle .button { align-self: start; }
.retainer { margin-top: 1rem; padding: 1.5rem; border-radius: .9rem; background: #dff6ef; }
.retainer p { max-width: 45rem; }

.resource-grid { display: grid; gap: 1rem; margin-top: 1.8rem; }
.article-card { display: flex; min-height: 16rem; flex-direction: column; padding: 1.25rem; border: 1px solid var(--line); border-radius: .85rem; background: var(--white); text-decoration: none; }
.article-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.article-card time, .article-card .category { color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.article-card h2, .article-card h3 { max-width: 18ch; margin: .7rem 0; font-size: 1.45rem; }
.article-card p { color: var(--ink-soft); }
.article-card .read-more { margin-top: auto; padding-top: .6rem; font-weight: 760; }

.article { padding: 3rem 0 4.5rem; }
.article-content { max-width: 47rem; }
.article-content h2 { margin-top: 2.5rem; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.article-content h3 { margin-top: 1.6rem; }
.article-content p, .article-content li { color: var(--ink-soft); font-size: 1.06rem; }
.article-content ul { padding-left: 1.2rem; }
.callout { margin: 1.7rem 0; padding: 1.1rem 1.2rem; border-left: 4px solid var(--teal); background: var(--mist); }

.faq-list { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq-list details { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 760; }
.faq-list p { margin: .8rem 0 0; color: var(--ink-soft); }

.contact-grid { display: grid; gap: 2rem; }
.contact-points { display: grid; gap: .7rem; margin-top: 1.2rem; }
.contact-points a { color: var(--teal); font-weight: 750; }
.contact-form { padding: 1.25rem; border: 1px solid var(--line); border-radius: .9rem; background: var(--white); }
.form-grid { display: grid; gap: 1rem; }
.contact-form .button { margin-top: 1rem; }

.site-footer { padding: 3rem 0 1.3rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; gap: 2rem; }
.footer-intro { max-width: 24rem; }
.footer-intro p { color: #b9ccc9; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.footer-links h2 { margin: 0 0 .5rem; color: var(--mint); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-links ul { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin: .42rem 0; }
.footer-links a { color: #e8f0ee; text-decoration: none; }
.footer-bottom { display: flex; flex-direction: column; gap: .5rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgb(255 255 255 / 16%); color: #b9ccc9; font-size: .8rem; }

@media (min-width: 42rem) {
  .container { width: min(calc(100% - 3rem), var(--max)); }
  .scanner { padding: 1.75rem; }
  .scanner-input-row { grid-template-columns: 1fr auto; }
  .scanner .button { width: auto; }
  .service-grid, .explainer-grid, .detail-grid, .pricing-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(odd) { padding-right: 1.4rem; border-right: 1px solid var(--line); }
  .process-step:nth-child(even) { padding-left: 1.4rem; }
  .quote-block { padding: 3rem; }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 62rem) {
  .section { padding: 6.3rem 0; }
  .section-tight { padding: 3rem 0; }
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: .15rem; }
  .site-nav a { padding: .55rem .65rem; font-size: .9rem; }
  .site-nav .nav-cta { margin: 0 0 0 .4rem; }
  .hero { padding: 6.8rem 0 5.5rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(25rem, .95fr); align-items: center; gap: 4rem; }
  .hero-notes { margin-top: 3rem; }
  .split { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 5rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .explainer-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { min-height: 8.8rem; border-bottom: 0; border-right: 1px solid rgb(255 255 255 / 16%); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / 16%); }
  .trust-item:last-child { border-right: 0; }
  .detail-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .bundle { grid-template-columns: 1fr auto; align-items: center; padding: 2.2rem; }
  .resource-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

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