:root {
  --ink: #0c1424;
  --muted: #647084;
  --line: #dce4f2;
  --paper: #f7f9fc;
  --white: #ffffff;
  --navy: #081120;
  --panel: #101d33;
  --blue: #246bfe;
  --violet: #7c3aed;
  --cyan: #18b6c8;
  --green: #16a34a;
  --yellow: #d08700;
  --red: #dc2626;
  --shadow: 0 24px 70px rgba(15, 28, 48, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 32, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 22px rgba(36, 107, 254, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white) !important;
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
}

.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 107, 254, 0.34), transparent 32%),
    radial-gradient(circle at 80% 8%, rgba(124, 58, 237, 0.24), transparent 34%),
    linear-gradient(135deg, #081120 0%, #101d33 58%, #071827 100%);
}

.hero {
  padding: 88px 0 76px;
}

.hero-grid,
.report-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.checker-section .section-heading p,
.features .section-heading p,
.report-section .section-heading p,
.faq .section-heading p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 35px rgba(36, 107, 254, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.section-dark .button-secondary,
.ai-panel .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 700;
}

.ai-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.preview-topbar strong {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.preview-score {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
}

.score-ring {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) calc(var(--score) * 1%), rgba(255, 255, 255, 0.13) 0);
  position: relative;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--panel);
}

.score-ring span,
.score-ring small {
  position: relative;
  z-index: 1;
}

.score-ring span {
  align-self: end;
  font-size: 38px;
  font-weight: 800;
}

.score-ring small {
  align-self: start;
  color: rgba(255, 255, 255, 0.62);
}

.preview-score p,
.preview-score small {
  color: rgba(255, 255, 255, 0.66);
}

.signal-list {
  padding: 0 26px 24px;
}

.signal,
.risk-grid div,
.metric-grid article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signal {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.risk-medium {
  color: var(--yellow);
}

.risk-low,
.risk-good {
  color: var(--green);
}

.scan-visual {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 26px 26px;
  background: rgba(5, 12, 24, 0.4);
}

.scan-visual div {
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(24, 182, 200, 0.28), rgba(255, 255, 255, 0.08));
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 20%;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
  animation: scan 2.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateX(-40px); opacity: 0.2; }
  50% { transform: translateX(300px); opacity: 1; }
}

.checker-section,
.features,
.report-section,
.guides-section,
.faq {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.checker-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 24px;
}

.checker-panel,
.result-panel,
.feature-card,
.guide-card,
.report-card,
.tool-card,
.issue-panel,
.ai-panel,
.history-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 28, 48, 0.08);
}

.checker-panel,
.result-panel {
  padding: 24px;
}

.checker-panel label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.checker-panel input,
.checker-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}

.checker-panel input:focus,
.checker-panel textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 107, 254, 0.12);
}

.upload-box {
  place-items: center;
  min-height: 190px;
  border: 1px dashed #9cb3d9;
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  cursor: pointer;
}

.upload-box input {
  display: none;
}

.upload-box small {
  color: var(--muted);
  font-weight: 500;
}

.icon-badge,
.feature-card span,
.tool-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
}

.analyze-button {
  width: 100%;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.progress-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e7eef8;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.4s ease;
}

.mini-report {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #16345d);
}

.mini-score {
  display: grid;
  min-width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-score span {
  font-size: 32px;
  font-weight: 800;
}

.mini-score small {
  color: rgba(255, 255, 255, 0.66);
}

.mini-report p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.result-list,
.recommendations ul,
.issue-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.result-list li,
.recommendations li,
.issue-panel li {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
}

.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }
.dot-blue { background: var(--blue); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.guide-card,
.tool-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.guide-card:hover,
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card h3,
.tool-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.feature-card p,
.guide-card p,
.tool-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.guides-section {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
}

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

.guide-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.guide-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 12px;
  font-weight: 900;
}

.guide-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.guide-card p {
  margin-bottom: 20px;
}

.guide-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.guide-card a:hover {
  color: var(--violet);
}

.how {
  padding: 86px 0;
}

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

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.steps span {
  color: var(--cyan);
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.report-card {
  padding: 28px;
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.report-header p {
  margin-bottom: 5px;
  color: var(--muted);
}

.report-header h3 {
  margin: 0;
  font-size: 44px;
}

.status-pill {
  color: var(--blue);
  background: #edf4ff;
  border-color: #cfe0ff;
}

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

.risk-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfdff;
}

.risk-grid span {
  color: var(--muted);
}

.recommendations {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.recommendations li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
}

.dashboard-section {
  padding: 92px 20px;
  background: #eaf0f7;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 248px 1fr;
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar {
  padding: 24px;
  color: var(--white);
  background: var(--navy);
}

.dashboard-brand {
  margin-bottom: 36px;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar a:not(.brand) {
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
}

.sidebar a.active,
.sidebar a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.dashboard-main {
  padding: 28px;
  background: #f6f8fb;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-header h2 {
  margin: 0;
  font-size: 28px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 16px 0;
}

.metric-grid article {
  display: grid;
  justify-content: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.metric-grid span,
.metric-grid small {
  color: var(--muted);
}

.metric-grid strong {
  margin: 7px 0;
  font-size: 26px;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.issue-panel,
.ai-panel,
.history-panel {
  padding: 22px;
}

.ai-panel {
  color: var(--white);
  background: linear-gradient(135deg, #10213a, #203a71);
}

.ai-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.history-panel {
  margin-top: 16px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr;
  gap: 30px;
  padding: 54px 0;
}

.footer-grid p {
  max-width: 360px;
  line-height: 1.7;
}

.footer-grid h4 {
  color: var(--white);
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 28px;
}

@media (max-width: 980px) {
  .hero-grid,
  .checker-layout,
  .report-grid,
  .faq-grid,
  .dashboard-shell,
  .dashboard-lower {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .mobile-menu {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 10px;
    background: rgba(8, 17, 32, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero,
  .checker-section,
  .features,
  .report-section,
  .guides-section,
  .faq,
  .dashboard-section {
    padding: 64px 0;
  }

  .hero-actions,
  .dashboard-header,
  .report-header {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-score,
  .mini-report {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .guides-grid,
  .steps,
  .three-col,
  .metric-grid,
  .risk-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main,
  .checker-panel,
  .result-panel,
  .report-card,
  .content-card {
    padding: 18px;
  }

  .button {
    width: 100%;
  }
}

/* Premium polish pass */
body {
  background:
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 36%, #eef3f8 100%);
  text-rendering: optimizeLegibility;
}

.site-header {
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  max-width: 680px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  letter-spacing: 0;
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(36, 107, 254, 0.36);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
}

.hero-proof div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 22px;
  color: var(--white);
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-preview {
  transform: translateY(6px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.preview-body {
  position: relative;
}

.preview-body::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 182, 200, 0.55), transparent);
}

.scan-visual div {
  position: relative;
  overflow: hidden;
}

.scan-visual b {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.18);
  animation: dataPulse 2.6s ease-in-out infinite;
}

.scan-visual div:nth-of-type(2) b {
  width: 68%;
  animation-delay: 0.25s;
}

.scan-visual div:nth-of-type(3) b {
  width: 36%;
  animation-delay: 0.5s;
}

@keyframes dataPulse {
  0%, 100% { transform: translateX(-12%); opacity: 0.45; }
  50% { transform: translateX(82%); opacity: 0.88; }
}

.checker-panel,
.result-panel,
.feature-card,
.report-card,
.tool-card,
.issue-panel,
.ai-panel,
.history-panel,
.faq-list details {
  box-shadow: 0 14px 42px rgba(13, 28, 49, 0.08);
}

.checker-layout {
  align-items: stretch;
}

.checker-panel,
.result-panel {
  min-height: 100%;
}

.scan-status-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scan-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(24, 182, 200, 0.12), 0 0 18px rgba(24, 182, 200, 0.75);
}

.progress-bar {
  height: 12px;
}

.progress-bar span {
  position: relative;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmer 1.35s linear infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.mini-report {
  min-height: 138px;
}

.mini-score {
  transition: transform 0.35s ease, background 0.35s ease;
}

.mini-report.scanning .mini-score {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.16);
}

.scan-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.scan-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: #fbfdff;
}

.scan-item span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7c4d8;
}

.scan-item.complete span {
  background: var(--green);
}

.feature-grid {
  align-items: stretch;
}

.feature-card {
  min-height: 238px;
}

.feature-card span,
.tool-card span,
.icon-badge {
  width: 44px;
  height: 44px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.section-actions,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.premium-report {
  position: relative;
  overflow: hidden;
}

.premium-report::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--violet));
}

.report-summary {
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 18px;
  background: #f3f7ff;
}

.report-summary strong {
  display: block;
  margin-bottom: 6px;
}

.report-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detailed-risk-grid div {
  display: grid;
  gap: 7px;
}

.detailed-risk-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.dashboard-section {
  background:
    linear-gradient(180deg, #ecf3fb, #dde8f4),
    radial-gradient(circle at 20% 0%, rgba(36, 107, 254, 0.12), transparent 35%);
}

.dashboard-shell {
  grid-template-columns: 260px 1fr;
  border-color: #bfcce0;
}

.sidebar {
  display: flex;
  flex-direction: column;
}

.sidebar-note {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.sidebar-note strong,
.sidebar-note span {
  display: block;
}

.sidebar-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-main {
  padding: 32px;
}

.dashboard-header {
  align-items: flex-start;
}

.tool-card p {
  min-height: 52px;
}

.active-scan {
  display: grid;
  gap: 12px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  padding: 18px;
  margin: 16px 0;
  background: linear-gradient(135deg, #ffffff, #eef6ff);
}

.active-scan > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.active-scan small {
  color: var(--muted);
}

.active-track {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: #dce8f8;
}

.active-track span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.issue-panel li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
}

.issue-panel li span {
  border-radius: 999px;
  padding: 3px 8px;
  color: #7a4c00;
  background: #fff3cf;
  font-size: 12px;
  font-weight: 800;
}

.table-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.table-pill.review,
.table-pill.edit {
  color: #7a4c00;
  background: #fff3cf;
}

.table-pill.ready {
  color: #0f7a38;
  background: #dcfce7;
}

.ad-section {
  padding: 28px 0;
  background: transparent;
}

.ad-section-top {
  padding-top: 0;
}

.ad-section-footer {
  padding: 36px 0 48px;
  background: #eef3f8;
}

.ad-placeholder {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px dashed #bdc9dc;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  color: #647084;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 249, 253, 0.92));
}

.ad-placeholder span {
  margin-bottom: 6px;
  color: #7a879a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-placeholder strong {
  color: #26364d;
  font-size: 15px;
}

.ad-placeholder small {
  margin-top: 4px;
  line-height: 1.45;
}

.ad-banner {
  min-height: 112px;
}

.ad-incontent {
  min-height: 128px;
  background:
    linear-gradient(135deg, #ffffff, #f4f8fd),
    linear-gradient(90deg, rgba(36, 107, 254, 0.05), rgba(24, 182, 200, 0.05));
}

.ad-native {
  min-height: 150px;
  margin-top: 16px;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.07);
}

.ad-native span,
.ad-native strong {
  color: rgba(255, 255, 255, 0.86);
}

.ad-footer {
  min-height: 108px;
}

.page-hero {
  padding: 86px 0 70px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 760px;
}

.content-page {
  padding: 72px 0;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(13, 28, 49, 0.08);
}

.content-card h2 {
  margin-top: 28px;
  font-size: 26px;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75;
}

.content-card ul {
  padding-left: 20px;
}

.notice-box {
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  padding: 18px;
  margin: 24px 0;
  background: #f3f7ff;
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1120px) {
  .feature-grid,
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-shell {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 82px 0 70px;
  }

  .dashboard-shell {
    border-radius: 8px;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-proof,
  .scan-checklist,
  .detailed-risk-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .section-actions,
  .dashboard-actions {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .feature-card,
  .guide-card {
    min-height: auto;
  }

  .dashboard-section {
    padding-left: 0;
    padding-right: 0;
  }

  .ad-section {
    padding: 22px 0;
  }

  .dashboard-shell {
    border-left: 0;
    border-right: 0;
  }

  .issue-panel li {
    grid-template-columns: 1fr;
  }
}
