:root {
  --navy: #0b1f44;
  --blue: #0f4c81;
  --blue-2: #0969da;
  --green: #1fa971;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #dce6f2;
  --soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(15, 76, 129, .14);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 84px 0; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: #fff; padding: 10px 14px; z-index: 9999; }
.skip-link:focus { left: 8px; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(220,230,242,.9); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; border-radius: 6px; display: grid; place-items: center; color: #fff; font-family: Manrope, sans-serif; font-weight: 800; background: linear-gradient(145deg, var(--blue-2), var(--navy)); box-shadow: 0 10px 24px rgba(15,76,129,.22); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: Manrope, sans-serif; color: var(--navy); font-size: 18px; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; color: var(--navy); }
.main-nav > a:not(.button):hover { color: var(--blue-2); }

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

.account-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: .2s ease;
  box-shadow: 0 8px 20px rgba(15,31,68,.05);
}

.account-button:hover,
.account-button:focus-visible {
  color: var(--blue-2);
  border-color: #b9d4ef;
  background: #f5f9fe;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,76,129,.12);
}

.account-button:focus-visible {
  outline: 3px solid rgba(9,105,218,.18);
  outline-offset: 2px;
}

.account-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.account-label {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 92px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: .18s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(11,31,68,.22);
}

.account-label::before {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 100%;
  border: 5px solid transparent;
  border-bottom-color: var(--navy);
}

.account-button:hover .account-label,
.account-button:focus-visible .account-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border-radius: 8px; background: linear-gradient(135deg, var(--blue-2), var(--blue)); color: #fff; font-weight: 700; box-shadow: 0 10px 24px rgba(9,105,218,.18); transition: .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(9,105,218,.24); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-secondary { background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(15,31,68,.06); }
.button-light { background: #fff; color: var(--blue); box-shadow: none; }
.hero { position: relative; overflow: hidden; padding-top: 74px; }
.hero-bg { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-one { width: 430px; height: 430px; right: -100px; top: 30px; background: radial-gradient(circle, rgba(9,105,218,.10), rgba(9,105,218,0) 68%); }
.hero-bg-two { width: 300px; height: 300px; left: 42%; bottom: -160px; background-image: radial-gradient(rgba(9,105,218,.18) 1.5px, transparent 1.5px); background-size: 16px 16px; opacity: .55; }
.hero-grid { display: grid; grid-template-columns: .98fr 1.12fr; gap: 54px; align-items: center; }
.eyebrow, .section-kicker { display: inline-flex; gap: 10px; color: #5f95cc; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.eyebrow { background: #eef6ff; border-radius: 999px; padding: 8px 14px; }
.eyebrow span { color: #4a83be; font-weight: 600; letter-spacing: 0; }
h1,h2,h3 { font-family: Manrope, sans-serif; color: var(--navy); line-height: 1.16; margin: 0; }
h1 { font-size: clamp(48px, 5vw, 72px); letter-spacing: -.04em; margin-top: 22px; }
h1 em { color: var(--blue-2); font-style: normal; }
.lead { font-size: 18px; color: #52627a; max-width: 650px; margin: 24px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
.trust-row > div { display: grid; grid-template-columns: 30px 1fr; column-gap: 8px; align-items: start; }
.trust-icon { grid-row: 1 / 3; width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue-2); font-weight: 800; border: 1px solid #bcd7f5; border-radius: 8px; }
.trust-row strong { color: var(--navy); font-size: 13px; }
.trust-row small { color: var(--muted); font-size: 11px; }
.score-card { position: relative; background: #fff; border: 1px solid #e4ebf4; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.score-card-header { display: flex; align-items: center; justify-content: space-between; font-family: Manrope, sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.status-pill { font-family: Inter, sans-serif; font-size: 11px; color: var(--blue-2); background: #edf6ff; padding: 6px 9px; border-radius: 999px; }
.score-layout { display: grid; grid-template-columns: 160px 1fr; gap: 22px; }
.score-summary { border: 1px solid var(--line); border-radius: 12px; padding: 16px; text-align: center; }
.score-ring { --p: calc(var(--score) * 1%); width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; background: conic-gradient(var(--blue-2) var(--p), #e7edf5 0); position: relative; }
.score-ring:before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.score-ring div { position: relative; display: flex; flex-direction: column; line-height: 1; }
.score-ring strong { font: 800 40px Manrope, sans-serif; color: var(--navy); }
.score-ring span { color: var(--muted); font-size: 12px; margin-top: 6px; }
.score-summary p { font-size: 13px; margin: 0; }
.score-summary p strong { color: var(--green); }
.domain-results h3, .score-bottom h3 { font-size: 13px; margin-bottom: 10px; }
.metric { display: grid; grid-template-columns: 120px 1fr 52px; gap: 8px; align-items: center; font-size: 10px; margin: 8px 0; }
.metric i { height: 4px; background: #e8eef5; border-radius: 999px; overflow: hidden; }
.metric b { display: block; height: 100%; background: var(--green); border-radius: inherit; }
.metric:nth-child(3) b, .metric:nth-child(5) b { background: #f1a31a; }
.metric em { font-style: normal; color: var(--muted); text-align: right; }
.score-bottom { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; margin-top: 18px; }
.score-bottom ul { list-style: none; padding: 0; margin: 0; font-size: 11px; color: #52627a; }
.score-bottom li { margin: 5px 0; }
.score-bottom li:before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 800; }
.report-box { border: 1px solid var(--line); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; justify-content: center; gap: 14px; font-size: 12px; }
.report-box a { color: var(--blue-2); font-weight: 700; }
.section-heading { margin-bottom: 46px; }
.section-heading.center { text-align: center; }
.section-heading.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-heading h2, .about h2, .diagnostic h2 { font-size: clamp(32px, 4vw, 46px); letter-spacing: -.03em; }
.section-heading p { color: var(--muted); max-width: 720px; margin: 14px auto 0; }
.solutions { background: var(--soft); }
.solution-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px; }
.solution-grid article { text-align: center; }
.icon-box { width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 16px; display: grid; place-items: center; background: #edf6ff; border: 1px solid #d7e8fb; font-size: 23px; }
.solution-grid h3 { font-size: 16px; margin-bottom: 10px; }
.solution-grid p { color: var(--muted); font-size: 13px; margin: 0; }
.method { background: linear-gradient(180deg, #fff, #f3f8fd); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.method-grid article { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 24px; min-height: 220px; box-shadow: 0 12px 30px rgba(15,31,68,.05); }
.method-grid article > span { position: absolute; top: -16px; left: 28px; width: 34px; height: 34px; border-radius: 50%; background: var(--blue-2); color: #fff; display: grid; place-items: center; font-weight: 800; }
.method-grid article:nth-child(2) > span, .method-grid article:nth-child(4) > span { background: var(--green); }
.method-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #eff6ff; color: var(--blue-2); font-size: 28px; margin: 18px 0; }
.method-grid h3 { font-size: 18px; margin-bottom: 8px; }
.method-grid p { color: var(--muted); font-size: 14px; margin: 0; }
.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.about p { color: var(--muted); font-size: 17px; }
.section-kicker { margin-bottom: 14px; }
.text-link { color: var(--blue-2); font-weight: 700; }
.problem-card { background: var(--navy); color: #fff; border-radius: 22px; padding: 38px; box-shadow: var(--shadow); }
.problem-card h3 { color: #fff; font-size: 26px; margin-bottom: 22px; }
.problem-card ul { list-style: none; padding: 0; margin: 0; }
.problem-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.problem-card li:before { content: "✓"; color: #6ee7b7; font-weight: 800; margin-right: 12px; }
.diagnostic { padding-top: 20px; }
.cta-panel { background: linear-gradient(135deg, var(--blue-2), var(--blue)); color: #fff; border-radius: 22px; padding: 52px 58px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-panel h2 { color: #fff; margin-bottom: 10px; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.82); }
.section-kicker.light { color: #bfe0ff; }
.news { background: var(--soft); }
.site-footer { background: #08172f; color: #b9c6d8; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 30px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.site-footer p { margin: 0; font-size: 12px; }
@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 78px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 48px;
  }
  .nav-actions .button {
    width: 100%;
  }
  .account-button {
    width: 48px;
    height: 42px;
  }
  .account-label {
    display: none;
  }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 62px 0; }
  .brand-copy small { display: none; }
  h1 { font-size: 46px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .score-layout, .score-bottom { grid-template-columns: 1fr; }
  .score-summary { display: grid; grid-template-columns: 130px 1fr; align-items: center; text-align: left; }
  .score-ring { margin: 0; }
  .solution-grid, .method-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 36px 28px; align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 8px; }
}
@media (max-width: 520px) {
  .brand-copy strong { font-size: 15px; }
  h1 { font-size: 39px; }
  .lead { font-size: 16px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .trust-row, .solution-grid, .method-grid { grid-template-columns: 1fr; }
  .metric { grid-template-columns: 105px 1fr 45px; }
}

.nav-diagnostic-cta{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
}
.nav-diagnostic-cta small{
  color:var(--muted);
  font-size:10px;
  line-height:1;
  white-space:nowrap;
}
@media(max-width:800px){
  .nav-diagnostic-cta{width:100%}
  .nav-diagnostic-cta small{display:none}
}
