:root {
  --ink: #f3fbfb;
  --forest: #0c2a2f;
  --teal: #2bd8d0;
  --cyan: #75f4ff;
  --coral: #d65a45;
  --amber: #d9a441;
  --paper: #061216;
  --mist: #0a1d23;
  --white: #ffffff;
  --surface: rgba(14, 37, 43, 0.84);
  --muted: #a9c2c2;
  --line: rgba(43, 216, 208, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 216, 208, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 34%, rgba(217, 164, 65, 0.08), transparent 24rem),
    linear-gradient(135deg, #061216 0%, #081a20 54%, #0d252b 100%);
  line-height: 1.62;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(6, 18, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.18;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--teal);
}

.nav-cta {
  padding: 10px 14px;
  background: var(--coral);
  color: #ffffff !important;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061216;
}

.offer-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061216;
}

.offer-hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 44px;
}

.offer-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 52px 0 0;
  background: rgba(117, 244, 255, 0.24);
  border: 1px solid rgba(117, 244, 255, 0.22);
  box-shadow: var(--shadow);
}

.offer-facts div {
  padding: 18px;
  background: rgba(10, 29, 35, 0.86);
  backdrop-filter: blur(12px);
}

.offer-facts dt {
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.96), rgba(6, 18, 22, 0.76) 52%, rgba(6, 18, 22, 0.22)),
    linear-gradient(0deg, rgba(6, 18, 22, 0.88), rgba(6, 18, 22, 0.1) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 44px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.3vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--coral);
  color: #ffffff;
}

.button.primary:hover,
.nav-cta:hover {
  background: #a73e30;
}

.button.secondary {
  border-color: rgba(117, 244, 255, 0.52);
  color: var(--white);
  background: rgba(15, 41, 48, 0.36);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 56px 0 0;
  background: rgba(117, 244, 255, 0.24);
  border: 1px solid rgba(117, 244, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 18px;
  background: rgba(10, 29, 35, 0.82);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.offer-note {
  margin-top: 26px;
  padding: 20px;
  background: rgba(14, 37, 43, 0.78);
  border-left: 5px solid var(--teal);
}

.offer-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.offer-note p {
  margin-bottom: 0;
  font-size: 1rem;
}

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

.outcome-grid,
.topic-grid,
.audience-grid,
.process-grid,
.caution-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.outcome-grid,
.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.transparency-situations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-grid article,
.topic-grid article,
.audience-grid article,
.process-grid article,
.caution-panel > div {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.outcome-grid article {
  min-height: 205px;
}

.outcome-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.outcome-grid p,
.topic-grid p,
.audience-grid p,
.process-grid p,
.caution-panel p,
.section-heading-split > p,
.pricing-intro,
.scope-note,
.extras-list p,
.extras-list li {
  color: var(--muted);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
}

.section-heading-split > p {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: 1.06rem;
}

.topic-grid article {
  min-height: 190px;
}

.audience-section > div:first-child p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid article {
  min-height: 190px;
}

.process-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: rgba(3, 11, 14, 0.42);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 30px;
}

.process-grid article {
  min-height: 250px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
}

.offer-pricing-section {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.pricing-intro {
  max-width: 780px;
  font-size: 1.06rem;
}

.price-compliance-note {
  max-width: 980px;
  margin: 24px 0 30px;
  padding: 20px 22px;
  background: rgba(117, 244, 255, 0.07);
  border: 1px solid rgba(117, 244, 255, 0.28);
  border-left: 5px solid var(--teal);
}

.price-compliance-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
}

.price-compliance-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-detail {
  margin: -9px 0 18px !important;
  color: var(--cyan) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  line-height: 1.45;
}

.training-teaser-panel .price-detail {
  margin-top: 0 !important;
}

.article-price-note {
  margin-top: 12px;
}

.offer-pricing-grid article {
  min-height: 670px;
  display: flex;
  flex-direction: column;
}

.package-label {
  margin-bottom: 10px !important;
  color: var(--amber) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-note {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.scope-note strong {
  color: var(--ink);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.extras-list {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.extras-list ul {
  margin-top: 0;
  padding-left: 20px;
}

.extras-list p {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.caution-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.caution-panel > div {
  min-height: 250px;
  border-top: 5px solid var(--teal);
}

.caution-panel > div:nth-child(2) {
  border-top-color: var(--amber);
}

.caution-panel > div:nth-child(3) {
  border-top-color: var(--coral);
}

.intro-grid,
.two-column,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.intro-grid > *,
.two-column > *,
.trust-section > * {
  min-width: 0;
}

.text-block p,
.two-column p,
.scenario-section p,
.profile-panel p,
.faq-section p,
.article-flow p,
.article-flow li {
  color: var(--muted);
  font-size: 1.06rem;
}

.obligation-band {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.94), rgba(6, 18, 22, 0.72)),
    url("assets/presentation/ai-obligations-bg.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.obligation-band > h2 {
  max-width: 780px;
}

.obligation-grid,
.scenario-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.obligation-grid article,
.scenario-grid article,
.pricing-grid article,
.check-list article {
  background: var(--surface);
  backdrop-filter: blur(14px);
  min-width: 0;
}

.obligation-grid article {
  min-height: 310px;
  padding: 26px;
}

.obligation-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.obligation-grid p,
.scenario-grid p,
.pricing-grid p,
.pricing-grid li,
.check-list p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.check-list article {
  min-height: 160px;
  padding: 24px;
}

.scenario-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(30px, 6vw, 78px);
  border-top: 1px solid var(--line);
  position: relative;
}

.scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.scenario-grid article {
  min-height: 170px;
  padding: 24px;
}

.training-teaser {
  border-top: 1px solid var(--line);
}

.training-teaser > div:first-child > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.training-teaser-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(14, 37, 43, 0.94), rgba(15, 41, 48, 0.78)),
    url("assets/presentation/ai-risk-map-bg.png") right center / cover no-repeat;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  box-shadow: var(--shadow);
}

.training-teaser-panel h3 {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 1.55rem;
}

.training-teaser-panel ul {
  padding-left: 20px;
  color: var(--muted);
}

.training-teaser-panel p:last-child {
  margin: 22px 0 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.pricing-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.93), rgba(6, 18, 22, 0.76)),
    url("assets/presentation/ai-process-bg.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-section > h2 {
  max-width: 790px;
}

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

.pricing-grid article {
  min-height: 410px;
  padding: 28px;
}

.pricing-grid .highlight {
  border-top: 6px solid var(--teal);
}

.price {
  margin-bottom: 18px;
  color: var(--teal) !important;
  font-size: 1.55rem !important;
  font-weight: 800;
}

.pricing-grid ul {
  margin: 22px 0 0;
  padding-left: 19px;
}

li + li {
  margin-top: 7px;
}

.profile-panel {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(14, 37, 43, 0.92), rgba(15, 41, 48, 0.72)),
    url("assets/presentation/ai-risk-map-bg.png") right center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.profile-sigil {
  display: grid;
  place-items: center;
  width: 148px;
  min-height: 176px;
  border: 1px solid rgba(117, 244, 255, 0.34);
  background:
    radial-gradient(circle, rgba(43, 216, 208, 0.22), rgba(43, 216, 208, 0.05) 48%, transparent 62%),
    rgba(6, 18, 22, 0.62);
}

.profile-sigil span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: var(--coral);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
}

.profile-panel p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}

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

details {
  background: var(--surface);
  border: 1px solid var(--line);
  margin-top: 12px;
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-band {
  width: 100%;
  padding: clamp(48px, 7vw, 84px) max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.94), rgba(6, 18, 22, 0.64)),
    url("assets/presentation/ai-governance-hero.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  max-width: 760px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 58px);
  background: #030b0e;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
}

.legal-main,
.article-main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.legal-main h1,
.article-main h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.legal-main h2,
.article-flow h2 {
  margin-top: 38px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.article-main .lead {
  color: var(--muted);
}

.article-flow {
  margin-top: 42px;
}

.article-cta {
  margin-top: 48px;
  padding: 26px;
  background: var(--mist);
  border-left: 6px solid var(--teal);
}

.article-cta p {
  margin-bottom: 18px;
}

.article-cta .button.secondary {
  border-color: var(--forest);
  color: var(--forest);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav a[aria-current="page"] {
  color: var(--cyan);
}

.homepage-quickcheck {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(117, 244, 255, 0.09), transparent 48%),
    var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.homepage-quickcheck::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 50%;
  width: 320px;
  height: 320px;
  transform: translateY(-50%);
  border: 1px solid rgba(117, 244, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(43, 216, 208, 0.04), 0 0 0 84px rgba(43, 216, 208, 0.025);
}

.homepage-quickcheck-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.quickcheck-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quickcheck-benefits article {
  min-height: 132px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.quickcheck-benefits span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quickcheck-benefits strong,
.quickcheck-benefits small {
  display: block;
}

.quickcheck-benefits small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.quickcheck-hero {
  padding: clamp(82px, 10vw, 132px) max(18px, calc((100vw - 1160px) / 2)) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 46%, rgba(117, 244, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 16% 4%, rgba(217, 164, 65, 0.12), transparent 26rem),
    linear-gradient(135deg, #07171c 0%, #0b2b31 100%);
}

.quickcheck-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.quickcheck-hero h1 {
  max-width: 820px;
}

.quickcheck-orbit {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  justify-self: center;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  inset: 12%;
  border: 1px solid rgba(117, 244, 255, 0.55);
  box-shadow: inset 0 0 60px rgba(43, 216, 208, 0.06), 0 0 60px rgba(43, 216, 208, 0.08);
}

.orbit-ring-one {
  animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-ring-two {
  inset: 25%;
  border-style: dashed;
  border-color: rgba(217, 164, 65, 0.7);
  animation: orbitSpin 24s linear infinite;
}

.orbit-core {
  inset: 35%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #062126;
  background: linear-gradient(145deg, var(--cyan), #dbffff);
  box-shadow: 0 0 42px rgba(117, 244, 255, 0.42);
}

.orbit-core span {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
}

.orbit-core small {
  font-weight: 800;
  text-transform: uppercase;
}

.orbit-node {
  width: 15px;
  height: 15px;
  background: var(--amber);
  box-shadow: 0 0 20px rgba(217, 164, 65, 0.9);
}

.node-one { left: 11%; top: 42%; }
.node-two { right: 14%; top: 24%; background: var(--cyan); }
.node-three { right: 24%; bottom: 13%; background: var(--coral); }

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitPulse {
  50% { transform: scale(1.035); opacity: 0.72; }
}

.quickcheck-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 0;
  background: rgba(117, 244, 255, 0.24);
  border: 1px solid rgba(117, 244, 255, 0.24);
}

.quickcheck-facts div {
  padding: 18px;
  background: rgba(5, 22, 27, 0.89);
}

.quickcheck-facts dt {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quickcheck-facts dd {
  margin: 4px 0 0;
  color: #eefefe;
}

.check-stage {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  color: #173339;
  background:
    radial-gradient(circle at 8% 5%, rgba(43, 216, 208, 0.15), transparent 28rem),
    linear-gradient(180deg, #ecfafa 0%, #f8ffff 100%);
}

.check-stage .eyebrow {
  color: #9b4e22;
}

.check-stage-heading h2,
.check-stage-heading p {
  color: #173339;
}

.check-stage-heading > p {
  max-width: 520px;
}

.check-shell {
  margin-top: 34px;
}

.check-panel {
  scroll-margin-top: 90px;
  padding: clamp(25px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 85, 90, 0.2);
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(11, 67, 70, 0.14);
}

.check-intro-copy {
  max-width: 780px;
}

.check-intro h3,
.question-panel legend,
.result-panel h2,
.result-panel h3 {
  color: #10333a;
}

.check-kicker,
.result-kicker {
  margin: 0 0 8px;
  color: #9b4e22;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.check-meta-grid article {
  padding: 18px;
  background: #f2fbfb;
  border-top: 3px solid #1ca9a4;
}

.check-meta-grid span,
.check-meta-grid strong,
.check-meta-grid small {
  display: block;
}

.check-meta-grid span {
  color: #a4502a;
  font-size: 0.75rem;
  font-weight: 900;
}

.check-meta-grid small {
  margin-top: 5px;
  color: #536d72;
  line-height: 1.45;
}

.local-processing-note,
.check-legal-note,
.result-legal-note {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  margin: 22px 0;
  background: #e8f8f3;
  border-left: 4px solid #188b72;
}

.local-processing-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: #188b72;
  border-radius: 50%;
  font-weight: 900;
}

.local-processing-note p,
.check-legal-note p,
.result-legal-note p {
  margin: 0;
  color: #38585e;
}

.check-legal-note,
.result-legal-note {
  display: block;
  background: #fff8e8;
  border-left-color: #c28a22;
}

.check-legal-note strong,
.result-legal-note strong {
  display: block;
  margin-bottom: 4px;
  color: #6e4d10;
}

.check-progress-wrap {
  margin-bottom: 35px;
}

.check-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 9px;
  color: #31575e;
  font-size: 0.84rem;
  font-weight: 800;
}

.check-progress {
  height: 8px;
  overflow: hidden;
  background: #dbecec;
  border-radius: 99px;
}

#progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #168d89, #54dcd8);
  border-radius: inherit;
  transition: width 240ms ease;
}

.question-panel fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.question-panel legend {
  display: block;
  width: 100%;
  max-width: 890px;
  padding: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.question-panel legend:focus {
  outline: none;
}

.question-help {
  max-width: 860px;
  margin: 12px 0 25px;
  color: #536d72;
}

.answer-grid {
  display: grid;
  gap: 11px;
}

.answer-card {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  color: #25464c;
  background: #f7fcfc;
  border: 1px solid #bfd6d7;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.answer-card:hover {
  border-color: #168d89;
  transform: translateY(-1px);
}

.answer-card:focus-within {
  outline: 3px solid rgba(22, 141, 137, 0.32);
  outline-offset: 2px;
}

.answer-card.is-selected {
  color: #103e43;
  background: #e9f8f6;
  border-color: #168d89;
  box-shadow: inset 4px 0 #168d89;
}

.answer-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.answer-marker {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: transparent;
  background: #ffffff;
  border: 2px solid #85a7aa;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.answer-card.is-selected .answer-marker {
  color: #ffffff;
  background: #168d89;
  border-color: #168d89;
}

.answer-text {
  line-height: 1.5;
}

.check-error {
  margin: 14px 0 0;
  color: #a73827;
  font-weight: 800;
}

.check-controls,
.result-actions,
.result-utility-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.question-privacy {
  margin: 18px 0 0;
  color: #60787c;
  font-size: 0.83rem;
}

.result-overview {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #d5e5e6;
}

.result-status-symbol {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: #ffffff;
  background: #168d72;
  border-radius: 50%;
  font-size: 3.3rem;
  box-shadow: 0 0 0 12px rgba(22, 141, 114, 0.1);
}

.result-status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  padding: 5px 9px;
  color: #0d5c4a;
  background: #def5e9;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-overview.status-yellow .result-status-symbol { background: #c0871c; box-shadow: 0 0 0 12px rgba(192, 135, 28, 0.11); }
.result-overview.status-red .result-status-symbol { background: #b84533; box-shadow: 0 0 0 12px rgba(184, 69, 51, 0.11); }
.result-overview.status-yellow .result-status-label { color: #75510d; background: #fff0c8; }
.result-overview.status-red .result-status-label { color: #812d20; background: #fce3df; }

.result-sections,
.result-recommendations {
  margin-top: 34px;
}

.result-section-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.result-section-card {
  display: flex;
  gap: 12px;
  min-height: 146px;
  padding: 17px;
  background: #f6fbfb;
  border: 1px solid #d1e1e2;
  border-top: 4px solid #168d72;
}

.result-section-card.status-yellow { border-top-color: #c0871c; }
.result-section-card.status-red { border-top-color: #b84533; }

.section-status-icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: #ffffff;
  background: #168d72;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.status-yellow .section-status-icon { background: #c0871c; }
.status-red .section-status-icon { background: #b84533; }

.result-section-card small {
  color: #687e82;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-section-card h3 {
  margin: 2px 0 5px;
  font-size: 1rem;
}

.result-section-card p {
  margin: 0;
  color: #536d72;
  font-size: 0.88rem;
  line-height: 1.42;
}

.recommendation-list {
  display: grid;
  gap: 13px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #f5fbfb;
  border: 1px solid #cedfe0;
}

.recommendation-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: #173f46;
  font-weight: 900;
}

.recommendation-card h3 {
  margin: 0 0 5px;
  font-size: 1.08rem;
}

.recommendation-card p {
  margin: 0;
  color: #536d72;
}

.recommendation-card .recommendation-reason {
  display: block;
  margin-top: 7px;
  color: #765515;
  font-size: 0.82rem;
  font-weight: 700;
}

.recommendation-card .button {
  white-space: nowrap;
}

.result-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  color: #efffff;
  background: #113c43;
}

.result-conversion h3,
.result-conversion p {
  color: inherit;
}

.result-conversion h3 {
  margin: 0 0 5px;
}

.result-conversion p {
  margin: 0;
  opacity: 0.82;
}

.text-button {
  color: #31575e;
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.method-cards {
  display: grid;
  gap: 12px;
}

.method-card {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.055);
  border-left: 5px solid #30c99e;
}

.method-card.status-yellow { border-left-color: #e0ad44; }
.method-card.status-red { border-left-color: #e26f5a; }

.method-card span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-card h3 {
  margin: 3px 0;
}

.method-card p {
  margin: 0;
  color: var(--muted);
}

.check-privacy-section {
  background: rgba(117, 244, 255, 0.035);
  border-top: 1px solid var(--line);
}

.noscript-note {
  color: #173339;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-ring { animation: none; }
  #progress-fill { transition: none; }
}

@media print {
  body.showing-check-result {
    color: #142f34;
    background: #ffffff;
  }

  body.showing-check-result .site-header,
  body.showing-check-result .quickcheck-hero,
  body.showing-check-result .check-stage-heading,
  body.showing-check-result #check-intro,
  body.showing-check-result #check-question,
  body.showing-check-result .check-method-section,
  body.showing-check-result .check-privacy-section,
  body.showing-check-result .quickcheck-cta,
  body.showing-check-result .site-footer,
  body.showing-check-result .result-actions,
  body.showing-check-result .result-utility-actions {
    display: none !important;
  }

  body.showing-check-result .check-stage {
    padding: 0;
    color: #142f34;
    background: #ffffff;
  }

  body.showing-check-result .check-panel {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  body.showing-check-result .recommendation-card,
  body.showing-check-result .result-section-card {
    break-inside: avoid;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero-facts,
  .offer-facts,
  .quickcheck-hero-grid,
  .homepage-quickcheck-grid,
  .intro-grid,
  .two-column,
  .scenario-section,
  .trust-section,
  .section-heading-split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .obligation-grid,
  .pricing-grid,
  .outcome-grid,
  .topic-grid,
  .process-grid,
  .caution-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quickcheck-orbit {
    width: min(340px, 80vw);
  }

  .quickcheck-facts,
  .check-meta-grid,
  .result-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .recommendation-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .result-conversion {
    grid-template-columns: 1fr;
  }

  .offer-pricing-grid article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    top: auto;
    gap: 10px;
    padding: 12px 18px;
  }

  [id] {
    scroll-margin-top: 18px;
  }

  .brand {
    min-width: 0;
    width: 100%;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .brand span:last-child {
    min-width: 0;
    max-width: calc(100vw - 86px);
  }

  .brand strong,
  .brand small {
    overflow-wrap: anywhere;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.84rem;
    overflow-x: visible;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: auto;
  }

  .offer-hero {
    min-height: auto;
  }

  .offer-hero-content {
    padding-top: 84px;
  }

  .hero-content {
    padding-top: 84px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .lead {
    overflow-wrap: anywhere;
  }

  .hero-facts,
  .offer-facts,
  .quickcheck-facts,
  .check-meta-grid,
  .quickcheck-benefits,
  .result-section-grid,
  .obligation-grid,
  .check-list,
  .scenario-grid,
  .pricing-grid,
  .outcome-grid,
  .topic-grid,
  .audience-grid,
  .process-grid,
  .caution-panel,
  .profile-panel {
    grid-template-columns: 1fr;
  }

  .quickcheck-hero {
    padding-top: 64px;
  }

  .quickcheck-orbit {
    width: min(280px, 85vw);
  }

  .check-panel {
    padding: 22px 18px;
  }

  .check-meta-grid article,
  .quickcheck-benefits article {
    min-height: auto;
  }

  .answer-card {
    padding: 15px 14px;
  }

  .check-controls .button,
  .result-utility-actions .button {
    width: 100%;
  }

  .result-overview {
    grid-template-columns: 1fr;
  }

  .result-status-symbol {
    width: 86px;
    height: 86px;
    font-size: 2.6rem;
  }

  .recommendation-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 16px;
  }

  .recommendation-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .pricing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-sigil {
    width: 100%;
    min-height: 180px;
  }
}
