@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --blue: #006dbc;
  --blue-light: #49b8ff;
  --blue-pale: #eef8ff;
  --blue-soft: #e4f3fc;
  --ink: #17313f;
  --muted: #6b7e88;
  --line: #d9e8ef;
  --bg: #f6fafc;
  --white: #ffffff;
  --success: #16a873;
  --warning: #e49a1b;
  --danger: #d95757;
  --shadow-sm: 0 8px 24px rgba(24, 58, 73, .06);
  --shadow: 0 22px 60px rgba(24, 58, 73, .10);
  --shadow-lg: 0 32px 90px rgba(24, 58, 73, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.hidden { display: none !important; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,109,188,.12); }
  50% { box-shadow: 0 0 0 12px rgba(0,109,188,0); }
}
@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes progressIn { from { width: 0; } }
@keyframes scoreIn { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }
@keyframes checkPop { 0% { transform: scale(.6); opacity: 0; } 70% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes optionIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, transform .35s ease;
}
.topbar.scrolled {
  background: rgba(255,255,255,.72);
  border-bottom-color: rgba(207,226,236,.72);
  box-shadow: 0 8px 28px rgba(8,43,63,.08);
}
.brand { display: inline-flex; align-items: center; min-height: 82px; }
.brand img {
  display: block;
  width: auto;
  height: 82px;
  max-width: 340px;
  object-fit: contain;
}
.top-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.top-link, .top-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.top-link:hover { transform: translateY(-2px); border-color: #a9d7ef; box-shadow: var(--shadow-sm); }
.top-cta {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(0,109,188,.18);
}
.top-cta:hover { transform: translateY(-2px); background: #0579ce; box-shadow: 0 15px 32px rgba(0,109,188,.25); }
.legal-top:not(.hidden) { display: inline-flex; }

.page-shell { min-height: calc(100vh - 82px); }
.landing {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(52px, 7vw, 100px) clamp(20px, 7vw, 100px);
  background: linear-gradient(135deg, #f8fcff 0%, #fff 55%, #eef8ff 100%);
}
.landing::before, .landing::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.landing::before {
  width: 520px; height: 520px;
  right: -250px; top: -230px;
  border: 1px solid rgba(0,109,188,.12);
  box-shadow: 0 0 0 80px rgba(0,109,188,.025), 0 0 0 160px rgba(0,109,188,.018);
  animation: floatSoft 8s ease-in-out infinite;
}
.landing::after {
  width: 180px; height: 180px;
  left: -100px; bottom: -100px;
  background: rgba(73,184,255,.08);
}
.landing-copy { position: relative; z-index: 1; max-width: 780px; animation: fadeUp .7s ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}
.eyebrow::before { content: ''; width: 20px; height: 3px; border-radius: 5px; background: var(--blue); }
.landing h1 {
  margin: 18px 0 22px;
  max-width: 820px;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.landing h1 em { color: var(--blue); font-style: normal; }
.lead { max-width: 690px; margin: 0; color: #58727e; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.75; }
.feature-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.feature-row span {
  padding: 10px 13px;
  border: 1px solid #d6e9f3;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: #365c6c;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  animation: fadeUp .55s ease both;
}
.feature-row span:nth-child(2) { animation-delay: .06s; }
.feature-row span:nth-child(3) { animation-delay: .12s; }
.feature-row span:nth-child(4) { animation-delay: .18s; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row > div {
  min-width: 118px;
  padding: 15px 16px;
  border-left: 3px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}
.trust-row strong { display: block; font-family: Manrope; font-size: 24px; color: var(--blue); }
.trust-row small { color: #6f848d; }

.access-card {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #d7eaf4;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  animation: fadeUp .8s .1s ease both;
}
.access-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 17px;
  border-radius: 15px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
  animation: pulseSoft 2.6s ease-in-out infinite;
}
.access-card h2 { margin: 12px 0 9px; font-family: Manrope; font-size: clamp(25px, 3vw, 31px); letter-spacing: -.04em; }
.access-card > p { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
#accessForm { display: grid; gap: 14px; }
#accessForm > label:not(.check) { display: grid; gap: 7px; color: #2b4b59; font-size: 12px; font-weight: 800; }
#accessForm label b { color: var(--blue); }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfe2ec;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
input, select { min-height: 48px; padding: 0 14px; }
textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #a2b1b8; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,109,188,.10); }
#accessForm label small { min-height: 0; color: var(--danger); font-size: 11px; }
.check { display: flex; align-items: flex-start; gap: 10px; color: #6b7d86; font-size: 12px; line-height: 1.55; }
.check input { width: 18px; height: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--blue); flex: 0 0 auto; }
.terms-link { padding: 0; border: 0; background: transparent; color: var(--blue); font-weight: 800; text-decoration: underline; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  font-size: 13px;
  transition: transform .23s ease, box-shadow .23s ease, background .23s ease, border-color .23s ease;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn:active:not(:disabled) { transform: translateY(0) scale(.98); }
.btn:disabled { cursor: not-allowed; opacity: .45; }
.btn.primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(0,109,188,.18); }
.btn.primary:hover:not(:disabled) { background: #0879cd; box-shadow: 0 16px 34px rgba(0,109,188,.25); }
.btn.secondary { color: var(--blue); background: var(--blue-pale); border-color: #cfe7f4; }
.btn.ghost { color: #4e6975; background: #fff; border-color: var(--line); }
.btn.ghost:hover:not(:disabled), .btn.secondary:hover:not(:disabled) { border-color: #a9d6eb; background: #f8fcff; }
.privacy-callout { display: flex; gap: 12px; margin-top: 17px; padding: 14px; border: 1px solid #d9edf7; border-radius: 15px; background: #f6fbfe; }
.privacy-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); color: var(--blue); flex: 0 0 auto; }
.privacy-callout strong { font-size: 12px; }
.privacy-callout p { margin: 4px 0 0; color: #71848d; font-size: 11px; line-height: 1.55; }
.tiny-note { margin-top: 13px; color: #7a8b93; font-size: 10.5px; line-height: 1.55; }

.landing-info {
  max-width: 1180px;
  margin: 32px auto 70px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: fadeUp .8s ease both;
}
.info-intro { max-width: 800px; }
.info-intro h2 { margin: 9px 0 10px; font-family: Manrope; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.info-intro p { margin: 0; color: var(--muted); line-height: 1.75; }
.legal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.legal-card { padding: 22px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.legal-card:hover { transform: translateY(-6px); border-color: #afd9ef; box-shadow: var(--shadow); }
.legal-card > span { display: inline-flex; padding: 6px 9px; border-radius: 8px; background: var(--blue-pale); color: var(--blue); font-size: 11px; font-weight: 900; }
.legal-card h3 { margin: 13px 0 7px; font-family: Manrope; font-size: 17px; }
.legal-card p { min-height: 92px; margin: 0 0 12px; color: #6d8089; font-size: 13px; line-height: 1.65; }
.legal-card a { color: var(--blue); font-size: 12px; font-weight: 800; }
.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 38px; margin-top: 58px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-list details[open] { border-color: #add8ee; box-shadow: var(--shadow-sm); }
.faq-list summary { padding: 18px; cursor: pointer; list-style: none; color: #214451; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--blue); font-size: 20px; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { margin: 0; padding: 0 18px 18px; color: #6d8089; font-size: 13px; line-height: 1.7; }

#diagnostic { min-height: calc(100vh - 82px); padding: 28px clamp(16px, 4vw, 56px) 50px; background: #f7fbfd; animation: fadeIn .45s ease both; }
.diagnostic-layout { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 24px; }
.stage-sidebar { position: sticky; top: 104px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.company-mini { display: flex; align-items: center; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.company-mini > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--blue); color: #fff; font-family: Manrope; font-size: 18px; font-weight: 800; }
.company-mini b { display: block; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.company-mini small { display: block; margin-top: 3px; color: #8a999f; font-size: 10px; }
.overall { padding: 18px 0; }
.overall > span { color: #8a999f; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.overall strong { float: right; color: var(--blue); font-family: Manrope; font-size: 14px; }
.overall > div { clear: both; height: 7px; overflow: hidden; margin-top: 10px; border-radius: 99px; background: #e9f2f6; }
.overall i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--blue-light)); transition: width .45s ease; }
#stageNav { display: grid; gap: 5px; }
#stageNav button { position: relative; width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px; border: 0; border-radius: 11px; background: transparent; color: #71838b; text-align: left; font-size: 11px; font-weight: 800; transition: background .2s ease, color .2s ease, transform .2s ease; }
#stageNav button:hover { background: #f2f9fd; color: var(--blue); transform: translateX(2px); }
#stageNav button.stage-nav-active { color: var(--blue); background: var(--blue-pale); }
.stage-num { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: #f0f5f7; color: #75858c; font-size: 10px; flex: 0 0 auto; }
.stage-nav-active .stage-num { background: var(--blue); color: #fff; }
.sidebar-tip { margin-top: 18px; padding: 13px; border-radius: 14px; background: #f5fbfe; color: #69808b; font-size: 11px; line-height: 1.55; }
.sidebar-tip b { color: var(--blue); }
.sidebar-tip p { margin: 5px 0 0; }
.question-main { min-width: 0; }
.mobile-stage { display: none; }
.question-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 18px; }
.question-head h2 { margin: 8px 0 7px; font-family: Manrope; font-size: clamp(27px, 4vw, 40px); letter-spacing: -.04em; }
.question-head p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.6; }
.counter { display: flex; align-items: baseline; gap: 3px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: #91a0a6; white-space: nowrap; }
.counter b { color: var(--blue); font-family: Manrope; font-size: 20px; }
.question-card { padding: clamp(24px, 4vw, 36px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); animation: fadeUp .35s ease both; }
.q-kicker { display: inline-flex; padding: 7px 10px; border-radius: 8px; background: var(--blue-pale); color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .07em; }
.question-card h3 { margin: 17px 0 8px; font-family: Manrope; font-size: clamp(22px, 3vw, 31px); line-height: 1.18; letter-spacing: -.035em; }
.question-card > p { margin: 0 0 23px; color: var(--muted); line-height: 1.65; }
.options { display: grid; gap: 10px; }
.option { animation: optionIn .32s ease both; }
.option:nth-child(2) { animation-delay: .035s; } .option:nth-child(3) { animation-delay: .07s; } .option:nth-child(4) { animation-delay: .105s; } .option:nth-child(5) { animation-delay: .14s; } .option:nth-child(6) { animation-delay: .175s; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option label { min-height: 66px; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid #dce9ef; border-radius: 15px; background: #fff; cursor: pointer; transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.option label:hover { transform: translateX(3px); border-color: #a9d6eb; background: #fafdff; box-shadow: var(--shadow-sm); }
.option input:checked + label { border-color: var(--blue); background: var(--blue-pale); box-shadow: 0 10px 25px rgba(0,109,188,.09); transform: translateX(4px); }
.radio { position: relative; width: 20px; height: 20px; border: 2px solid #b9cbd3; border-radius: 50%; flex: 0 0 auto; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.option input[type=checkbox] + label .radio { border-radius: 6px; }
.option input:checked + label .radio { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 5px rgba(0,109,188,.08); }
.option input:checked + label .radio::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 900; animation: checkPop .25s ease both; }
.option label strong { display: block; color: #254754; font-size: 13px; }
.option label small { display: block; margin-top: 4px; color: #7c8e96; font-size: 11px; line-height: 1.45; }
.bottom-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.bottom-center { color: #84949b; font-size: 10px; }
.bottom-center span { display: inline-flex; align-items: center; gap: 5px; }

.processing { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 30px; background: #f7fbfd; animation: fadeIn .4s ease both; }
.process-card { width: min(620px, 100%); padding: 45px; text-align: center; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); animation: fadeUp .6s ease both; }
.orb { width: 88px; height: 88px; display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid #cfe8f5; border-radius: 50%; background: var(--blue-pale); }
.orb span { width: 50px; height: 50px; border: 4px solid #c8e7f5; border-top-color: var(--blue); border-radius: 50%; animation: spin 1s linear infinite; }
.process-card h2 { margin: 12px 0 8px; font-family: Manrope; font-size: 30px; letter-spacing: -.04em; }
.process-card p { color: var(--muted); }
.process-steps { display: grid; gap: 9px; margin-top: 25px; text-align: left; }
.process-steps span { padding: 10px 12px; border-radius: 10px; background: #f6fafc; color: #83939a; font-size: 11px; transition: all .25s ease; }
.process-steps span.done { color: var(--blue); background: var(--blue-pale); }
.dots::after { content: '...'; display: inline-block; width: 22px; overflow: hidden; animation: shimmer 1.2s steps(3) infinite; }

.results { max-width: 1240px; margin: 0 auto; padding: 42px clamp(16px, 4vw, 30px) 60px; animation: fadeIn .45s ease both; }
.report-head { display: grid; grid-template-columns: minmax(0,1fr) 220px; gap: 24px; align-items: center; margin-bottom: 20px; }
.report-head h2 { margin: 10px 0 9px; font-family: Manrope; font-size: clamp(30px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -.045em; animation: fadeUp .55s ease both; }
.report-head p { max-width: 780px; margin: 0; color: var(--muted); line-height: 1.7; }
.score { padding: 22px; text-align: center; border: 1px solid #cfe6f2; border-radius: 22px; background: #fff; box-shadow: var(--shadow); animation: scoreIn .65s ease both; }
.score > div { color: var(--blue); font-family: Manrope; }
.score strong { font-size: 58px; line-height: .9; }
.score small { font-size: 18px; color: #9aabb2; }
.score > span { display: block; margin-top: 12px; color: #5f7680; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.result-actions-pro { display: grid; gap: 12px; margin-bottom: 17px; }
.result-download { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 19px; border: 1px solid #bfe1f3; border-radius: 22px; background: #fff; box-shadow: var(--shadow); animation: fadeUp .55s .1s ease both; }
.result-download::before { content: ''; position: absolute; top: 0; left: 0; width: 38%; height: 100%; background: rgba(73,184,255,.06); transform: skewX(-20deg) translateX(-120%); animation: shimmer 4.5s ease-in-out infinite; pointer-events: none; }
.download-badge { position: relative; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 900; box-shadow: 0 10px 25px rgba(0,109,188,.18); }
.result-download div { position: relative; display: grid; gap: 3px; }
.result-download strong { font-family: Manrope; font-size: 15px; }
.result-download small { color: #758890; font-size: 12px; }
#downloadPdf { position: relative; min-width: 230px; min-height: 52px; font-size: 14px; animation: pulseSoft 2.8s ease-in-out infinite; }
.result-tools { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 9px; }
.result-tools .btn { width: 100%; min-height: 45px; font-size: 11px; }
.pdf-ready-notice { display: flex; align-items: center; gap: 12px; margin: 14px 0 18px; padding: 14px 16px; border: 1px solid #c9eadf; border-radius: 16px; background: #f3fcf8; color: #427061; animation: fadeUp .5s ease both; }
.pdf-ready-notice .check-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--success); color: #fff; font-weight: 900; animation: checkPop .35s ease both; }
.pdf-ready-notice strong { display: block; color: #22614f; font-size: 12px; }
.pdf-ready-notice span:last-child { display: block; margin-top: 2px; font-size: 11px; }
.result-tabs { display: flex; gap: 6px; margin: 22px 0 14px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.result-tabs button { flex: 1; min-height: 42px; border: 0; border-radius: 10px; background: transparent; color: #71838b; font-weight: 800; transition: background .22s ease, color .22s ease, transform .22s ease; }
.result-tabs button:hover { color: var(--blue); }
.result-tabs button.active { color: #fff; background: var(--blue); box-shadow: 0 7px 17px rgba(0,109,188,.16); }
.tab-content { animation: fadeUp .35s ease both; }
.kpi-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 15px; }
.kpi { position: relative; overflow: hidden; min-height: 108px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); animation: fadeUp .45s ease both; }
.kpi b { display: block; color: var(--blue); font-family: Manrope; font-size: 26px; animation: scoreIn .55s ease both; }
.kpi span { display: block; margin-top: 4px; color: #617782; font-size: 11px; line-height: 1.35; }
.kpi i { position: absolute; left: 17px; right: 17px; bottom: 14px; height: 5px; overflow: hidden; border-radius: 99px; background: #e8f1f5; }
.kpi i::after { content: ''; display: block; width: var(--w); height: 100%; border-radius: inherit; background: var(--blue); animation: progressIn .9s ease both; }
.result-columns { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 15px; }
.result-columns > div, .result-columns > aside { display: grid; gap: 15px; align-content: start; }
.panel, .contact-panel, .mini-panel { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.panel { padding: 22px; }
.panel-title { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #edf2f4; }
.panel-title > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; background: var(--blue-pale); color: var(--blue); font-size: 10px; font-weight: 900; }
.panel-title b { display: block; font-family: Manrope; font-size: 14px; }
.panel-title small { display: block; margin-top: 3px; color: #85959b; font-size: 10px; }
.priority-row { display: grid; grid-template-columns: 10px minmax(0,1fr) auto; gap: 12px; align-items: start; padding: 16px 0; border-bottom: 1px solid #edf2f4; animation: fadeUp .35s ease both; }
.priority-row:last-child { border-bottom: 0; }
.p-dot { width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(0,109,188,.08); }
.priority-row strong { display: block; font-size: 13px; }
.priority-row p { margin: 5px 0 0; color: #71838c; font-size: 11px; line-height: 1.6; }
.badge { padding: 5px 8px; border-radius: 999px; background: var(--blue-pale); color: var(--blue); font-size: 9px; font-weight: 900; white-space: nowrap; }
.prose { margin: 18px 0 0; color: #667b85; line-height: 1.8; font-size: 13px; }
.contact-panel { padding: 22px; background: #f8fcff; }
.contact-mark { width: min(260px, 100%); height: auto; display: flex; align-items: center; justify-content: flex-start; margin: 0 0 20px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.contact-mark img { display: block; width: min(230px, 100%); height: auto; max-height: 90px; object-fit: contain; object-position: left center; }
.contact-panel h3 { margin: 10px 0 8px; font-family: Manrope; font-size: 20px; letter-spacing: -.03em; }
.contact-panel p { margin: 0 0 17px; color: #6d8089; line-height: 1.65; font-size: 12px; }
.contact-panel .btn { width: 100%; }
.mini-panel { padding: 20px; }
.mini-panel > b { display: block; margin-bottom: 12px; font-family: Manrope; }
.mini-panel > div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-top: 1px solid #edf2f4; }
.mini-panel span { color: #87979d; font-size: 10px; }
.mini-panel strong { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #36515d; font-size: 11px; text-align: right; }
.action { padding: 17px 0; border-bottom: 1px solid #edf2f4; animation: fadeUp .35s ease both; }
.action:last-child { border-bottom: 0; }
.action-head { display: flex; justify-content: space-between; gap: 10px; }
.action-head strong { font-size: 13px; }
.action-head b { color: var(--blue); font-size: 9px; }
.action p { margin: 7px 0; color: #6f828a; font-size: 11px; line-height: 1.65; }
.action-meta { display: flex; flex-wrap: wrap; gap: 8px; color: #8b9aa0; font-size: 9px; }
.action-meta span { padding: 5px 7px; border-radius: 7px; background: #f5f9fb; }
.answer { display: grid; gap: 5px; padding: 14px 0; border-bottom: 1px solid #edf2f4; }
.answer:last-child { border-bottom: 0; }
.answer small { color: #82939a; font-size: 10px; line-height: 1.5; }
.answer b { color: #315260; font-size: 12px; }
.legal-note { margin-top: 18px; padding: 15px 17px; border: 1px solid #d9e9f1; border-radius: 16px; background: #f8fbfd; color: #71838b; font-size: 10px; line-height: 1.65; }
.legal-note b { color: var(--blue); }
.report-footer { display: flex; justify-content: space-between; gap: 15px; flex-wrap: wrap; margin-top: 18px; padding: 20px 0 4px; border-top: 1px solid var(--line); color: #85959c; font-size: 10px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(17,39,49,.36); backdrop-filter: blur(8px); }
.modal-backdrop.open { display: grid; animation: fadeIn .2s ease both; }
.modal { width: min(620px, 100%); max-height: min(86vh, 820px); overflow: auto; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-lg); animation: fadeUp .28s ease both; }
.modal-large { width: min(920px, 100%); }
.modal h2 { margin: 10px 0; font-family: Manrope; font-size: 28px; letter-spacing: -.035em; }
.modal > p { color: #6c8089; line-height: 1.7; font-size: 13px; }
.modal ul { padding-left: 20px; color: #6c8089; font-size: 12px; line-height: 1.7; }
.modal li { margin-bottom: 8px; }
.legal-modal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 18px; }
.legal-modal-grid article { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #f9fcfe; }
.legal-modal-grid b { color: var(--blue); font-size: 12px; }
.legal-modal-grid p { color: #6d8088; font-size: 11px; line-height: 1.6; }
.legal-modal-grid a { color: var(--blue); font-size: 11px; font-weight: 800; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.support-label { display: grid; gap: 7px; color: #375563; font-size: 11px; font-weight: 800; }
.support-label.full { grid-column: 1 / -1; }
.support-help { margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: #f5f9fb; color: #7c8d94; font-size: 10px; }
.support-status { min-height: 20px; margin-top: 10px; color: var(--blue); font-size: 11px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 20px; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 200; max-width: min(420px, calc(100vw - 44px)); padding: 13px 16px; border: 1px solid #cde4ef; border-radius: 13px; background: #fff; color: #31515e; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; font-size: 12px; font-weight: 700; }
.toast.show { opacity: 1; transform: translateY(0); }
.pdf-logo-source { position: fixed !important; left: -10000px !important; top: -10000px !important; width: 96px !important; height: 96px !important; opacity: .01 !important; display: block !important; pointer-events: none !important; }


/* V11 — cards de recomendação mais explicativas */
.priority-card {
  position: relative;
  overflow: hidden;
  margin: 0 0 14px;
  padding: 18px;
  border: 1px solid #d8e9f1;
  border-radius: 18px;
  background: linear-gradient(180deg,#ffffff 0%,#fbfdfe 100%);
  box-shadow: 0 8px 24px rgba(15,54,72,.05);
  animation: priorityIn .55s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--delay,0ms);
}
.priority-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:var(--blue);
  transform:scaleY(.35);
  transform-origin:center;
  transition:transform .35s ease;
}
.priority-card:hover::before { transform:scaleY(1); }
.priority-card:hover { transform:translateY(-2px); box-shadow:0 16px 32px rgba(15,54,72,.08); }
.priority-top {
  display:grid;
  grid-template-columns:38px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}
.priority-index {
  width:38px;height:38px;display:grid;place-items:center;
  border-radius:12px;background:var(--blue-pale);color:var(--blue);
  font:800 11px Manrope,Arial,sans-serif;
}
.priority-title strong { display:block;font:800 15px/1.25 Manrope,Arial,sans-serif;color:var(--ink); }
.priority-title span { display:block;margin-top:3px;color:#7c919b;font-size:10px;font-weight:800;letter-spacing:.04em;text-transform:uppercase; }
.signal-row { display:flex;flex-wrap:wrap;gap:6px;margin:13px 0 2px 50px; }
.signal-row span {
  display:inline-flex;align-items:center;min-height:25px;padding:0 9px;
  border:1px solid #d5e9f4;border-radius:999px;background:#f5fbfe;
  color:#54727f;font-size:9.5px;font-weight:800;
  animation:chipIn .4s ease both;
}
.priority-body {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:15px;
}
.priority-body > div {
  padding:12px 13px;border-radius:13px;background:#f7fbfd;border:1px solid #e8f1f5;
}
.priority-body b {
  display:block;margin-bottom:5px;color:var(--blue);
  font-size:9.5px;letter-spacing:.04em;text-transform:uppercase;
}
.priority-body p { margin:0;color:#627985;font-size:11px;line-height:1.65; }
.priority-source {
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  margin-top:13px;padding-top:11px;border-top:1px solid #e9f1f4;
}
.priority-source span { color:#758c96;font-size:9.5px;font-weight:800; }
.priority-source-btn {
  border:0;background:none;color:var(--blue);font-size:9.5px;font-weight:900;cursor:pointer;
}
.priority-source-btn:hover { text-decoration:underline; }
.result-summary-human {
  max-width:850px;
  padding:14px 16px;
  margin-top:13px;
  border-left:3px solid var(--blue-light);
  border-radius:0 14px 14px 0;
  background:#f3faff;
  color:#617984;
  animation:fadeUp .55s .18s ease both;
}
@keyframes priorityIn { from{opacity:0;transform:translateY(16px) scale(.985)} to{opacity:1;transform:none} }
@keyframes chipIn { from{opacity:0;transform:translateY(5px) scale(.96)} to{opacity:1;transform:none} }

@media (max-width: 1050px) {
  .landing { grid-template-columns: 1fr; min-height: auto; }
  .landing-copy { max-width: 900px; }
  .access-card { width: min(760px, 100%); justify-self: center; }
  .legal-grid { grid-template-columns: repeat(2,1fr); }
  .diagnostic-layout { grid-template-columns: 220px minmax(0,1fr); }
  .kpi-grid { grid-template-columns: repeat(3,1fr); }
  .result-tools { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
  .topbar { min-height: 74px; padding: 8px 14px; }
  .brand { min-height: 64px; }
  .brand img { height: 64px; max-width: 280px; }
  .secure { display: none; }
  .top-actions { gap: 6px; }
  .top-link, .top-cta { min-height: 40px; padding: 0 11px; font-size: 11px; }
  .diagnostic-layout { grid-template-columns: 1fr; }
  .stage-sidebar { position: static; }
  #stageNav { grid-template-columns: repeat(4,1fr); }
  #stageNav button { justify-content: center; padding: 8px 4px; text-align: center; }
  #stageNav button:not(.stage-nav-active) { font-size: 0; }
  #stageNav button:not(.stage-nav-active) .stage-num { margin: 0; }
  .sidebar-tip { display: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 20px; }
  .result-columns { grid-template-columns: 1fr; }
  .report-head { grid-template-columns: 1fr; }
  .score { width: min(260px, 100%); justify-self: start; }
}

@media (max-width: 620px) {
  .topbar { align-items: center; }
  .brand img { height: 56px; max-width: 220px; }
  .top-actions { flex: 1; }
  .top-link, .top-cta { flex: 1; min-width: 0; padding: 0 8px; font-size: 10px; }
  .top-link span, .top-cta span { display: none; }
  .landing { padding: 42px 16px 55px; gap: 28px; }
  .landing h1 { font-size: 39px; }
  .feature-row span { font-size: 10px; }
  .trust-row > div { min-width: 0; flex: 1; }
  .access-card { padding: 22px 18px; border-radius: 22px; }
  .landing-info { margin: 18px 12px 40px; padding: 26px 16px; border-radius: 20px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card p { min-height: 0; }
  #diagnostic { padding: 18px 12px 35px; }
  #stageNav { grid-template-columns: repeat(4,1fr); }
  .mobile-stage { display: flex; justify-content: space-between; margin-bottom: 10px; color: #7f9198; font-size: 10px; font-weight: 900; }
  .question-head { gap: 10px; }
  .counter { padding: 7px 10px; }
  .question-card { padding: 21px 16px; border-radius: 19px; }
  .option label { min-height: 60px; padding: 12px; }
  .bottom-bar { position: sticky; bottom: 8px; z-index: 20; padding: 8px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
  .bottom-center { display: none; }
  .bottom-bar .btn { flex: 1; }
  .process-card { padding: 32px 20px; }
  .result-download { grid-template-columns: auto 1fr; }
  #downloadPdf { grid-column: 1 / -1; width: 100%; }
  .result-tools { grid-template-columns: 1fr 1fr; }
  .result-tabs { overflow-x: auto; }
  .result-tabs button { min-width: 130px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .panel { padding: 17px; }
  .priority-row { grid-template-columns: 9px minmax(0,1fr); }
  .priority-row .badge { grid-column: 2; justify-self: start; }
  .legal-modal-grid, .support-grid { grid-template-columns: 1fr; }
  .support-label.full { grid-column: auto; }
  .modal { padding: 22px 17px; }
  .modal-actions { flex-wrap: wrap; }
  .modal-actions .btn { flex: 1; }
  .report-footer { flex-direction: column; }
}

@media (max-width: 430px) {
  .brand img { height: 48px; max-width: 155px; }
  .top-link, .top-cta { font-size: 9px; }
  .landing h1 { font-size: 34px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  #stageNav button:not(.stage-nav-active) { display: grid; }
  .kpi-grid { grid-template-columns: 1fr; }
  .result-tools { grid-template-columns: 1fr; }
}

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

/* ===== PDF DOWNLOAD EXPERIENCE ===== */
.pdf-download-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 31, 45, .46);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.pdf-download-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pdf-download-box {
  position: relative;
  width: min(430px, 100%);
  padding: 38px 30px 32px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 30px 80px rgba(8,43,63,.28);
  animation: pdfBoxIn .45s cubic-bezier(.2,.8,.2,1) both;
}
.pdf-download-box strong {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -.035em;
}
.pdf-download-box p {
  position: relative;
  z-index: 2;
  margin: 8px 0 4px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.pdf-download-box small {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 11px;
}
.download-spinner {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 4px solid #dff2ff;
  border-top-color: var(--blue);
  border-right-color: var(--blue-light);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}
.download-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.download-rain span {
  position: absolute;
  top: -44px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(73,184,255,.12);
  font-size: 17px;
  font-weight: 900;
  animation: downloadFall var(--fall, 2.8s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--left, 50%);
}
@keyframes downloadFall {
  0% { transform: translate3d(0,-55px,0) rotate(-12deg); opacity: 0; }
  12% { opacity: .9; }
  100% { transform: translate3d(var(--drift, 18px), 460px,0) rotate(18deg); opacity: 0; }
}
@keyframes pdfBoxIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }

#downloadPdf.pdf-ready {
  box-shadow: 0 14px 34px rgba(0,109,188,.24);
}
@media (max-width: 620px) {
  .pdf-download-box { padding: 32px 22px 28px; border-radius: 23px; }
  .pdf-download-box strong { font-size: 21px; }
}

/* =========================================================
   V10 — PDF FLOW + RESULT MICRO-ANIMATIONS
   Mantém a identidade Gransafety e evita conflitos com o CSS base.
   ========================================================= */
@keyframes resultReveal {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes numberPulse {
  0% { transform: scale(.78); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 12px 30px rgba(0,109,188,.18); }
  50% { box-shadow: 0 16px 42px rgba(73,184,255,.32); }
}
@keyframes downloadIconPulse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(3px) rotate(4deg); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes progressGlow {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
  100% { filter: brightness(1); }
}

/* Resultado */
.results { animation: resultReveal .7s cubic-bezier(.2,.8,.2,1) both; }
.report-head .score { animation: softFloat 4s ease-in-out infinite; }
.report-head .score strong { animation: numberPulse .8s cubic-bezier(.2,.8,.2,1) both; }
.kpi:nth-child(1) { animation-delay: .05s; }
.kpi:nth-child(2) { animation-delay: .10s; }
.kpi:nth-child(3) { animation-delay: .15s; }
.kpi:nth-child(4) { animation-delay: .20s; }
.kpi:nth-child(5) { animation-delay: .25s; }
.priority-row, .action, .answer { animation: fadeUp .55s cubic-bezier(.2,.8,.2,1) both; }
.priority-row:nth-child(2), .action:nth-child(2), .answer:nth-child(2) { animation-delay: .06s; }
.priority-row:nth-child(3), .action:nth-child(3), .answer:nth-child(3) { animation-delay: .12s; }
.priority-row:nth-child(4), .action:nth-child(4), .answer:nth-child(4) { animation-delay: .18s; }
.priority-row:nth-child(5), .action:nth-child(5), .answer:nth-child(5) { animation-delay: .24s; }
.kpi i::after { animation: progressIn 1.15s cubic-bezier(.2,.8,.2,1) both, progressGlow 2.8s ease-in-out 1.15s infinite; }
.result-download { border-color: rgba(0,109,188,.18); background: linear-gradient(135deg,#fff 0%,#f7fcff 100%); }
.download-badge { animation: buttonGlow 2.8s ease-in-out infinite; }
.download-badge::after { content: '↓'; animation: downloadIconPulse 1.4s ease-in-out infinite; }
.download-badge { font-size: 0; }
.download-badge::after { font-size: 24px; line-height: 1; }
.download-copy { min-width: 0; }
.download-eyebrow { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.download-copy > strong { margin-top: 1px; }
.download-copy > small { display: grid; gap: 2px; line-height: 1.45; }
.download-copy > small strong { color: #22614f; font-size: 11px; }
.download-copy > small span { color: #71838b; font-size: 10.5px; }
#pdfStatus.generating strong { color: var(--blue); }
#pdfStatus.error strong { color: var(--danger); }
#pdfStatus.ready strong { color: var(--success); }
.result-download .download-main { min-width: 220px; min-height: 54px; font-size: 13px; position: relative; overflow: hidden; }
.result-download .download-main:not(:disabled) { animation: buttonGlow 2.8s ease-in-out infinite; }
.result-download .download-main::after { content: ''; position: absolute; inset: 0 auto 0 -35%; width: 28%; background: rgba(255,255,255,.24); transform: skewX(-20deg); transition: left .7s ease; }
.result-download .download-main:hover:not(:disabled)::after { left: 115%; }
.btn-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(0,109,188,.18); border-top-color: currentColor; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -3px; }
.btn-spinner-light { border-color: rgba(255,255,255,.3); border-top-color: #fff; }
.btn.primary:disabled .btn-spinner { color: var(--blue); }

/* Botões secundários do resultado entram em sequência */
.result-tools .btn { animation: fadeUp .45s ease both; }
.result-tools .btn:nth-child(1) { animation-delay: .08s; }
.result-tools .btn:nth-child(2) { animation-delay: .13s; }
.result-tools .btn:nth-child(3) { animation-delay: .18s; }
.result-tools .btn:nth-child(4) { animation-delay: .23s; }
.result-tools .btn:nth-child(5) { animation-delay: .28s; }

/* Logo da área de contato: somente a imagem, sem moldura criada pelo layout. */
.contact-mark { width: min(340px,100%); min-height: 92px; margin: 0 0 18px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.contact-mark img { width: min(300px,100%); max-height: 105px; object-fit: contain; object-position: left center; filter: drop-shadow(0 8px 20px rgba(0,109,188,.10)); animation: softFloat 5s ease-in-out infinite; }

/* Overlay de download: a animação começa no exato clique e permanece até o arquivo ser disparado. */
.pdf-download-overlay { background: rgba(8,43,63,.40); }
.pdf-download-box { border-color: rgba(73,184,255,.30); box-shadow: 0 35px 100px rgba(8,43,63,.30), 0 0 0 1px rgba(255,255,255,.5) inset; }
.pdf-download-box::before { content: ''; position: absolute; inset: -30%; background: radial-gradient(circle at 50% 45%, rgba(73,184,255,.16), transparent 42%); animation: pulseSoft 2.4s ease-in-out infinite; pointer-events: none; }
.pdf-download-box .download-spinner { animation: spin .68s linear infinite, softFloat 1.8s ease-in-out infinite; }
.download-rain span { font-size: 19px; border: 1px solid rgba(73,184,255,.16); box-shadow: 0 8px 20px rgba(0,109,188,.08); }

@media (max-width: 820px) {
  .result-download { grid-template-columns: auto minmax(0,1fr); }
  .result-download .download-main { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 620px) {
  .result-download { padding: 16px; gap: 12px; }
  .download-badge { width: 48px; height: 48px; }
  .result-download .download-main { min-width: 0; }
  .contact-mark { min-height: 78px; }
  .contact-mark img { width: min(250px,100%); max-height: 82px; }
}


@media (min-width: 1051px) {
  .landing {
    min-height: calc(100vh - 82px);
    padding-top: clamp(30px,4.2vh,58px);
    padding-bottom: clamp(30px,4.2vh,58px);
    gap: clamp(28px,4.5vw,68px);
  }
  .landing h1 { font-size:clamp(42px,4.3vw,68px); margin-top:14px; margin-bottom:16px; }
  .lead { font-size:17px; line-height:1.6; }
  .feature-row { margin:20px 0; }
  .access-card { padding:26px 30px; }
  .access-card > p { margin-bottom:16px; line-height:1.5; }
  #accessForm { gap:10px; }
  input,select { min-height:44px; }
}
@media (max-width: 820px) {
  .landing { min-height:auto; padding-top:32px; padding-bottom:38px; gap:22px; }
  .landing h1 { margin-top:11px; margin-bottom:14px; }
  .lead { line-height:1.55; }
  .feature-row { margin:17px 0; }
  .access-card { padding:22px; }
  .priority-body { grid-template-columns:1fr; }
  .signal-row { margin-left:0; }
}
@media (max-width: 560px) {
  .landing { padding:26px 14px 32px; }
  .landing h1 { font-size:34px; line-height:1.04; }
  .feature-row { gap:6px; }
  .feature-row span { padding:8px 10px; }
  .trust-row { gap:7px; }
  .trust-row > div { padding:10px 6px; }
  .access-card { border-radius:20px; padding:18px; }
  .access-card h2 { font-size:24px; }
  #accessForm { gap:9px; }
  input,select { min-height:43px; }
  .priority-card { padding:14px; }
  .priority-top { grid-template-columns:34px minmax(0,1fr); }
  .priority-top .badge { grid-column:2; justify-self:start; }
  .priority-index { width:34px;height:34px; }
}
