* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #08111f;
  color: #e8eef7;
}

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

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(47, 128, 237, .18), transparent 35%),
    linear-gradient(180deg, #08111f 0%, #0b1220 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(8, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
}

.logo a {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #e8eef7;
}

nav a {
  margin-left: 24px;
  color: #b9c6d8;
  transition: color 0.2s ease;
  font-size: 14px;
  position: relative;
  padding-bottom: 4px;
}

nav a:hover {
  color: #ffffff;
}

nav a.active {
  color: #ffffff;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #8ab4ff);
  border-radius: 2px;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 28px 90px;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 32px;
  color: #7f8da3;
  font-size: 14px;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .site-header {
    padding: 20px 28px;
  }
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #b9c6d8;
  font-size: 13px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.04);
}

h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.04;
  margin: 0 0 22px;
  letter-spacing: -1.7px;
}

.intro {
  max-width: 780px;
  font-size: 20px;
  line-height: 1.6;
  color: #c6d2e2;
  margin: 0 0 46px;
}

.tools-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tool-card,
.service-card,
.section {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 26px;
  min-height: 235px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.tool-card h2,
.service-card h2,
.section h2 {
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -.3px;
}

.tool-card p,
.service-card p,
.section p,
.section li {
  color: #c6d2e2;
  line-height: 1.6;
  margin: 0 0 18px;
}

.service-card ul,
.section ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #c6d2e2;
  line-height: 1.65;
}

.status {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #b9c6d8;
  font-size: 13px;
  font-weight: 700;
}

.cta {
  margin-top: 56px;
  border-radius: 22px;
  background: #e8eef7;
  color: #08111f;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.5px;
}

.cta p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
  max-width: 720px;
}

.btn {
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  background: #08111f;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #0d1628;
}

.btn.primary:hover {
  background: #e2e8f0;
}

@media (max-width: 900px) {
  .tools-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Home / landing page */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 28px;
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  color: #c6d2e2;
  max-width: 680px;
  margin: 0 0 28px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.privacy-note {
  font-size: 13px !important;
  color: #92a3ba !important;
  max-width: 620px !important;
  margin: 0 !important;
}

.privacy-note a {
  color: #dce6f5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.panel {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.panel h3 {
  margin-top: 0;
  font-size: 18px;
}

.panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.panel li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #c8d3e3;
  line-height: 1.45;
}

.panel li:last-child {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}

/* Privacy page */
.content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.section {
  min-height: auto;
}

.section p:last-child,
.section li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }
}

html {
  scrollbar-gutter: stable;
}

.result-grid {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.result-section {
  padding: 16px;
  border: 1px solid #2a2f3a;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}

.result-section h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.ok {
  color: #22c55e;
}

.warn {
  color: #f59e0b;
}

.bad {
  color: #ef4444;
}

.cta {
  margin-top: 10px;
  font-size: 14px;
  color: #9ca3af;
}

.cta a {
  color: #3b82f6;
  text-decoration: none;
  margin-left: 5px;
}

.cta a:hover {
  text-decoration: underline;
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.result-cta {
  margin-top: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
  color: #9ca3af;
}

.result-cta a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.result-cta a:hover {
  text-decoration: underline;
}

.priority-issue {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.priority-issue:first-child {
  border-top: none;
  padding-top: 0;
}

.priority-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.cta-strip {
  margin-top: 40px;
  padding: 18px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #cbd5f5;
}

.cta-text strong {
  color: #ffffff;
  font-weight: 600;
}

.cta-button {
  background: #0b1220;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.cta-button:hover {
  background: #111a2e;
}

.sdvosb {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}
