@charset "UTF-8";
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f4f7fb;
  color: #1e1e2f;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box; }

main {
  flex: 1 0 auto;
  width: 100%;
  padding: 1.5rem 0 3rem; }

/* Base styles for content-section */
.content-section {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0px auto;
  max-width: 1200px;
  /* Constrain width for non-wide pages */
  width: 100%;
  box-sizing: border-box; }

/* Wide layout for homepage */
.content-section--wide {
  max-width: 100%;
  /* Full-width for homepage */
  margin: 1rem 0; }

/* Heading styles */
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e1e2f; }

/* Paragraph styles for text-heavy pages */
.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem; }

/* Form styles for form-heavy pages */
.content-section .js-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem; }

/* Ensure table fits within content-section */
.content-section .custom-table {
  width: 100%;
  max-width: 100%; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 1rem 1.5rem;
    margin: 0.5rem; }

  .content-section--wide {
    margin: 0.5rem; }

  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem; }

  .content-section p {
    font-size: 0.9375rem; } }
@media (max-width: 480px) {
  .content-section {
    padding: 0.75rem 1rem; }

  .content-section h2 {
    font-size: 1.25rem; }

  .content-section p {
    font-size: 0.875rem; } }
.flash-message-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  position: absolute; }

.flash-message-row > div {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  /* Limits the width for better readability */ }

.flash-message {
  background-color: #e6f4ea;
  /* Light green background for success */
  color: #2e7d32;
  /* Dark green text for contrast */
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #a5d6a7;
  /* Subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  /* Smooth fade-in animation */ }

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .flash-message {
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 10px; } }
.error-message, .success-message {
  display: none;
  /* Hidden by default */
  padding: 13px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  transition: opacity 0.3s ease;
  margin-bottom: 1rem; }

/* Error message styling */
.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb; }

/* Success message styling */
.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb; }

/* Show message with smooth fade-in effect */
.error-message.show, .success-message.show {
  display: block;
  opacity: 1; }

.form-container {
  padding: 4rem 2rem;
  background: white;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box; }

.form-container h2 {
  text-align: center;
  margin-bottom: 2rem; }

.form-container label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem; }

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  box-sizing: border-box; }

.form-container input[type="radio"],
.form-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  display: inline-block; }

.form-container .radio-group,
.form-container .checkbox-group {
  margin-bottom: 1.5rem; }

.form-container .radio-group label,
.form-container .checkbox-group label {
  display: inline-block;
  margin-right: 1rem; }

.form-container .button-container {
  text-align: center; }

.form-container button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #3b82f6;
  border: none;
  border-radius: 8px;
  cursor: pointer; }

.form-container button:hover {
  background-color: #2563eb; }

.row-with-button-on-right-side {
  display: grid;
  grid-template-columns: auto 180px;
  grid-column-gap: 10px; }
  .row-with-button-on-right-side .action-button {
    float: right;
    text-align: right; }

footer {
  padding-block: 2rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  background: #1e1e2f;
  color: white;
  text-align: center; }

header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  padding-block: 1rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem)); }

header a {
  text-decoration: none;
  color: #1f2a44;
  transition: color 0.2s ease; }

header a:hover {
  color: #2563eb; }

.logo {
  display: flex;
  align-items: center; }

.logo img {
  height: 48px;
  margin-right: 0.5rem; }

.logo strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2a44; }

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center; }

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #1f2a44;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease, text-decoration 0.2s ease; }

nav a:hover {
  color: #2563eb;
  text-decoration: underline; }

@media (max-width: 768px) {
  header {
    padding: 0.75rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem; }

  .logo img {
    height: 40px; }

  .logo strong {
    font-size: 1rem; }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; }

  nav a {
    margin: 0.5rem;
    font-size: 0.875rem; } }
@media (max-width: 480px) {
  header {
    padding: 0.5rem 1rem; }

  .logo img {
    height: 36px; }

  .logo strong {
    font-size: 0.9375rem; }

  nav a {
    margin: 0.25rem 0.5rem;
    font-size: 0.8125rem; } }
.header-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  background: #e2e8f0;
  color: #475569;
  line-height: 1.4; }
  .header-badge--pro {
    background: #dcfce7;
    color: #15803d; }

.mkt-hero {
  background: #0f172a;
  color: #e2e8f0;
  padding: 5rem 0 5.5rem; }
  .mkt-hero .mkt-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center; }

.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd; }
  .mkt-badge--light {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8; }

.mkt-accent-text {
  color: #7dd3fc; }

.mkt-hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 1.1rem 0 1.25rem;
  color: #f8fafc; }

.mkt-hero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 34rem;
  margin: 0 0 1.9rem; }

.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.9rem; }

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap; }
  .mkt-btn--primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35); }
    .mkt-btn--primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45); }
  .mkt-btn--ghost {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0; }
    .mkt-btn--ghost:hover {
      background: rgba(148, 163, 184, 0.16);
      border-color: rgba(148, 163, 184, 0.55);
      transform: translateY(-2px); }
  .mkt-btn--lg {
    padding: 1rem 2.1rem;
    font-size: 1.0625rem; }

.mkt-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  color: #cbd5e1;
  font-size: 0.9rem; }
  .mkt-hero__trust li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #94a3b8; }
    .mkt-hero__trust li::before {
      content: "✓";
      color: #34d399;
      font-weight: 700; }

.mkt-mock {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: mktFadeUp 0.7s ease both;
  animation-delay: 0.15s; }
  .mkt-mock__bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: #1e40af;
    color: #ffffff; }
  .mkt-mock__traffic {
    display: inline-flex;
    gap: 4px; }
    .mkt-mock__traffic i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.35); }
  .mkt-mock__url {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9; }
  .mkt-mock__live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16); }
  .mkt-mock__body {
    padding: 1rem 1rem 1.1rem; }
  .mkt-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 0.9rem; }
  .mkt-mock__stat {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
    text-align: center; }
  .mkt-mock__stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #1f2a44; }
  .mkt-mock__stat-label {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.1rem; }
  .mkt-mock__rows {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem; }
  .mkt-mock__row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    font-size: 0.8125rem;
    color: #1f2a44; }
    .mkt-mock__row--alert {
      background: #fef2f2;
      border-color: #fecaca; }
  .mkt-mock__row-name {
    flex: 1;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .mkt-mock__row-meta {
    font-size: 0.75rem;
    color: #64748b; }
    .mkt-mock__row-meta--alert {
      color: #dc2626;
      font-weight: 700; }
    .mkt-mock__row-meta--warn {
      color: #b45309;
      font-weight: 600; }
  .mkt-mock__uptime-label {
    display: block;
    font-size: 0.6875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem; }
  .mkt-mock__uptime-strip {
    display: flex;
    gap: 3px;
    flex-wrap: wrap; }
    .mkt-mock__uptime-strip i {
      width: 9px;
      height: 18px;
      border-radius: 2px;
      background: #d1fae5;
      border: 1px solid #a7f3d0; }
      .mkt-mock__uptime-strip i.fail {
        background: #fecaca;
        border-color: #fca5a5; }

.mkt-status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0; }
  .mkt-status-dot--up {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18); }
  .mkt-status-dot--down {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    animation: mktPulse 1.6s ease-in-out infinite; }
  .mkt-status-dot--warn {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18); }

.mkt-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block; }
  .mkt-pulse--green {
    background: #4ade80;
    animation: mktPulse 1.6s ease-in-out infinite; }

@keyframes mktPulse {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0.35; } }
@keyframes mktFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.mkt-hero__copy {
  animation: mktFadeUp 0.7s ease both; }

@media (prefers-reduced-motion: reduce) {
  .mkt-hero__copy,
  .mkt-mock,
  .mkt-status-dot--down,
  .mkt-pulse--green {
    animation: none; } }
@media (max-width: 900px) {
  .mkt-hero {
    padding: 3.5rem 0 4rem; }
    .mkt-hero .mkt-hero__grid {
      grid-template-columns: 1fr;
      gap: 3rem; }
    .mkt-hero .mkt-hero__copy {
      text-align: center; }
    .mkt-hero .mkt-hero__sub {
      margin-left: auto;
      margin-right: auto; }
    .mkt-hero .mkt-hero__actions,
    .mkt-hero .mkt-hero__trust {
      justify-content: center; } }
.buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #3b82f6; }

.buttons a.secondary {
  background-color: #9ca3af; }

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #3b82f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none; }

.mkt-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem; }

.mkt-section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e293b;
  margin: 1rem 0 0.75rem; }

.mkt-section-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0; }

.mkt-stats {
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2.25rem 0; }
  .mkt-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; }
  .mkt-stats__item {
    text-align: center;
    padding: 0.25rem 0.5rem; }
  .mkt-stats__value {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: #1d4ed8;
    letter-spacing: -0.01em; }
  .mkt-stats__label {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8125rem;
    color: #64748b; }
  @media (max-width: 768px) {
    .mkt-stats__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem; } }
  @media (max-width: 420px) {
    .mkt-stats__grid {
      grid-template-columns: 1fr; } }

.mkt-features {
  padding: 5rem 0; }

.mkt-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; }
  @media (max-width: 980px) {
    .mkt-features__grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) {
    .mkt-features__grid {
      grid-template-columns: 1fr; } }

.mkt-feature-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
  .mkt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    border-color: #dbeafe; }
  .mkt-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.55rem; }
  .mkt-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0; }

.mkt-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.1rem; }
  .mkt-feature-card__icon--blue {
    background: #eff6ff; }
  .mkt-feature-card__icon--green {
    background: #ecfdf5; }
  .mkt-feature-card__icon--amber {
    background: #fffbeb; }
  .mkt-feature-card__icon--violet {
    background: #f5f3ff; }
  .mkt-feature-card__icon--cyan {
    background: #ecfeff; }
  .mkt-feature-card__icon--rose {
    background: #fff1f2; }

.mkt-how {
  background: #ffffff;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: 5rem 0; }

.mkt-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 56rem;
  margin: 0 auto; }
  @media (max-width: 820px) {
    .mkt-how__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 28rem; } }

.mkt-how__step {
  text-align: center; }
  .mkt-how__step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1.1rem 0 0.55rem; }
  .mkt-how__step p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0; }

.mkt-how__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3); }

.mkt-pricing {
  padding: 5rem 0; }

.mkt-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto; }
  @media (max-width: 640px) {
    .mkt-pricing__cards {
      grid-template-columns: 1fr; } }

.mkt-pricing-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }
  .mkt-pricing-card--pro {
    border-color: #2563eb;
    border-width: 2px; }

.mkt-pricing-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.75rem; }
  .mkt-pricing-card--pro .mkt-pricing-card__badge {
    color: #2563eb; }

.mkt-pricing-card__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 1rem; }
  .mkt-pricing-card__price span {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8; }

.mkt-pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

.mkt-cta {
  padding: 5rem 0; }

.mkt-cta__card {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  color: #f8fafc;
  background: #0f172a;
  border: 1px solid #1e293b;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25); }
  .mkt-cta__card .mkt-cta__title {
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem; }
  .mkt-cta__card .mkt-cta__sub {
    font-size: 1.0625rem;
    color: #cbd5e1;
    max-width: 34rem;
    margin: 0 auto 2rem;
    line-height: 1.6; }

.scan-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
  .scan-hero__inner {
    max-width: 600px;
    margin: 0 auto; }
  .scan-hero__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1e293b;
    margin: 0 0 0.75rem; }
  .scan-hero__sub {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
    max-width: 480px;
    margin: 0 auto 2.5rem; }
  .scan-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem; }
  .scan-hero__stat {
    text-align: center; }
  .scan-hero__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.01em; }
  .scan-hero__stat-label {
    display: block;
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-top: 2px; }
  .scan-hero__stat-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0; }

.scan-form {
  max-width: 520px;
  margin: 0 auto; }
  .scan-form__row {
    display: flex;
    gap: 10px; }
  .scan-form__input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center; }
  .scan-form__icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    pointer-events: none; }
  .scan-form__input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .scan-form__input::placeholder {
      color: #94a3b8; }
    .scan-form__input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
  .scan-form__btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    white-space: nowrap; }
    .scan-form__btn:hover {
      background: #1d4ed8;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }
    .scan-form__btn:active {
      transform: translateY(0); }
  .scan-form__email-row {
    margin-top: 10px; }
  .scan-form__email {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .scan-form__email:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
    .scan-form__email::placeholder {
      color: #94a3b8; }

.scan-checks {
  padding: 2rem 0 4rem; }
  .scan-checks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden; }
    @media (max-width: 768px) {
      .scan-checks__grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) {
      .scan-checks__grid {
        grid-template-columns: 1fr; } }
  .scan-checks__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    transition: background 0.15s; }
    .scan-checks__item:hover {
      background: #f8fafc; }
    .scan-checks__item h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1e293b;
      margin: 0 0 2px; }
    .scan-checks__item p {
      font-size: 0.8125rem;
      color: #94a3b8;
      margin: 0;
      line-height: 1.4; }
  .scan-checks__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0; }
    .scan-checks__icon svg {
      width: 18px;
      height: 18px; }
    .scan-checks__icon--blue {
      background: #eff6ff;
      color: #2563eb; }
    .scan-checks__icon--green {
      background: #ecfdf5;
      color: #10b981; }
    .scan-checks__icon--amber {
      background: #fffbeb;
      color: #f59e0b; }
    .scan-checks__icon--violet {
      background: #f5f3ff;
      color: #7c3aed; }
    .scan-checks__icon--rose {
      background: #fef2f2;
      color: #ef4444; }
    .scan-checks__icon--cyan {
      background: #ecfeff;
      color: #0891b2; }

.scan-report {
  padding: 1.5rem 0 4rem; }

.scan-report__header {
  text-align: center;
  margin-bottom: 2.5rem; }

.scan-report__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
  margin-bottom: 1rem; }
  .scan-report__back svg {
    transition: transform 0.15s; }
  .scan-report__back:hover {
    color: #2563eb; }
    .scan-report__back:hover svg {
      transform: translateX(-3px); }

.scan-report__domain {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e293b;
  margin: 0 0 0.25rem; }

.scan-report__subtitle {
  font-size: 1rem;
  color: #475569;
  margin: 0; }

.scan-report__cached {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 0.5rem; }
  .scan-report__cached a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px; }

.scan-dashboard {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 2rem 2.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04); }
  @media (max-width: 640px) {
    .scan-dashboard {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1.5rem; } }
  .scan-dashboard__score {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0; }
  .scan-dashboard__ring {
    width: 120px;
    height: 120px; }
  .scan-dashboard__score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    text-align: center;
    line-height: 1; }
  .scan-dashboard__score-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b; }
  .scan-dashboard__score-max {
    font-size: 0.875rem;
    color: #94a3b8; }
  .scan-dashboard__score-label {
    margin-top: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em; }
  .scan-dashboard__counts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1; }
  .scan-dashboard__count {
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9; }
  .scan-dashboard__count-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2; }
  .scan-dashboard__count-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em; }
  .scan-dashboard__count--critical .scan-dashboard__count-num {
    color: #ef4444; }
  .scan-dashboard__count--high .scan-dashboard__count-num {
    color: #f59e0b; }
  .scan-dashboard__count--low .scan-dashboard__count-num {
    color: #94a3b8; }
  .scan-dashboard__count--passed .scan-dashboard__count-num {
    color: #10b981; }

.scan-findings {
  max-width: 760px;
  margin: 0 auto 3rem; }

.scan-category {
  margin-bottom: 2rem; }
  .scan-category__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem; }
  .scan-category__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0; }
  .scan-category__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px; }
    .scan-category__badge--passed {
      background: #ecfdf5;
      border-color: #a7f3d0;
      color: #10b981; }

.scan-finding {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.15s;
  border-left: 3px solid #e2e8f0; }
  .scan-finding:hover {
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06); }
  .scan-finding--critical {
    border-left-color: #ef4444; }
  .scan-finding--high {
    border-left-color: #f59e0b; }
  .scan-finding--medium {
    border-left-color: #f59e0b; }
  .scan-finding--low {
    border-left-color: #94a3b8; }
  .scan-finding--info {
    border-left-color: #2563eb; }
  .scan-finding__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    user-select: none; }
    .scan-finding__summary::-webkit-details-marker {
      display: none; }
    .scan-finding__summary::marker {
      display: none;
      content: ""; }
    .scan-finding__summary:hover {
      background: #f8fafc; }
  .scan-finding__severity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0; }
    .scan-finding__severity-dot--critical {
      background: #ef4444; }
    .scan-finding__severity-dot--high {
      background: #f59e0b; }
    .scan-finding__severity-dot--medium {
      background: #f59e0b; }
    .scan-finding__severity-dot--low {
      background: #94a3b8; }
    .scan-finding__severity-dot--info {
      background: #2563eb; }
  .scan-finding__title {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b; }
  .scan-finding__severity-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 4px; }
    .scan-finding__severity-tag--critical {
      background: #fef2f2;
      color: #ef4444; }
    .scan-finding__severity-tag--high {
      background: #fffbeb;
      color: #b45309; }
    .scan-finding__severity-tag--medium {
      background: #fffbeb;
      color: #b45309; }
    .scan-finding__severity-tag--low {
      background: #f8fafc;
      color: #94a3b8; }
    .scan-finding__severity-tag--info {
      background: #eff6ff;
      color: #2563eb; }
  .scan-finding__chevron {
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.2s; }
    details[open] > .scan-finding__chevron {
      transform: rotate(180deg); }
  .scan-finding__body {
    padding: 0 16px 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px; }
  .scan-finding__desc {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 10px; }
  .scan-finding__evidence {
    margin: 10px 0;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    font-size: 0.8125rem;
    overflow-x: auto; }
    .scan-finding__evidence code {
      color: #1e293b;
      word-break: break-all;
      line-height: 1.5; }
  .scan-finding__fix {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 8px; }
  .scan-finding__fix-label {
    font-weight: 600;
    color: #1e293b; }
  .scan-finding__fix-section {
    margin-top: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 12px 14px; }
  .scan-finding__platform-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap; }
  .scan-finding__platform-tab {
    padding: 5px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s; }
    .scan-finding__platform-tab:hover {
      border-color: #94a3b8; }
    .scan-finding__platform-tab--active {
      background: #2563eb;
      color: #fff;
      border-color: #2563eb; }
  .scan-finding__platform-steps ol.scan-finding__steps {
    margin: 0;
    padding-left: 20px; }
    .scan-finding__platform-steps ol.scan-finding__steps li {
      font-size: 0.875rem;
      color: #475569;
      margin-bottom: 8px;
      line-height: 1.6; }
      .scan-finding__platform-steps ol.scan-finding__steps li:last-child {
        margin-bottom: 0; }
  .scan-finding__code {
    background: #0f172a;
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    overflow-x: auto;
    margin: 8px 0;
    line-height: 1.6; }
    .scan-finding__code code {
      color: inherit;
      white-space: pre; }
  .scan-finding__doc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s; }
    .scan-finding__doc-link:hover {
      color: #1d4ed8; }
  .scan-finding--locked {
    border-left-color: #e2e8f0;
    background: #f8fafc; }
    .scan-finding--locked:hover {
      box-shadow: none; }

.scan-finding__locked-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  color: #94a3b8;
  font-size: 0.8125rem; }
  .scan-finding__locked-overlay svg {
    flex-shrink: 0; }
  .scan-finding__locked-overlay a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px; }

.scan-passed {
  max-width: 760px;
  margin: 0 auto 3rem; }
  .scan-passed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px; }
  .scan-passed__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #475569;
    background: #ecfdf5;
    border: 1px solid transparent;
    transition: border-color 0.15s; }
    .scan-passed__item:hover {
      border-color: #a7f3d0; }
  .scan-passed__check {
    color: #10b981;
    flex-shrink: 0; }
  .scan-passed__title {
    color: #1e293b; }

.scan-paywall {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 480px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04); }
  .scan-paywall h2 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0.75rem 0 0.5rem; }
  .scan-paywall p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 0.75rem; }
  .scan-paywall__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f8fafc;
    color: #475569; }
    .scan-paywall__icon--success {
      background: #ecfdf5;
      color: #10b981; }
  .scan-paywall__price {
    margin: 1rem 0; }
  .scan-paywall__amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b; }
  .scan-paywall__period {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-left: 2px; }
  .scan-paywall__form {
    margin: 1.25rem 0; }
  .scan-paywall__email-row {
    display: flex;
    gap: 10px;
    justify-content: center; }
    @media (max-width: 480px) {
      .scan-paywall__email-row {
        flex-direction: column; } }
  .scan-paywall__input {
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    min-width: 220px;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .scan-paywall__input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
    .scan-paywall__input::placeholder {
      color: #94a3b8; }
  .scan-paywall__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s; }
    .scan-paywall__btn:hover {
      background: #1d4ed8;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }
    .scan-paywall__btn--lg {
      padding: 14px 32px;
      font-size: 1rem; }
  .scan-paywall__note {
    font-size: 0.8125rem !important;
    color: #94a3b8 !important;
    margin-top: 0.75rem !important; }

.scan-bank-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem auto;
  max-width: 380px;
  text-align: left; }

.scan-bank-row {
  padding: 5px 0;
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  gap: 8px; }
  .scan-bank-row code {
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8125rem;
    border: 1px solid #f1f5f9; }
  .scan-bank-row strong {
    color: #1e293b; }

.scan-bank-label {
  font-weight: 600;
  color: #1e293b;
  min-width: 80px;
  flex-shrink: 0; }

.scan-monitor {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px; }
  .scan-monitor__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem; }
    @media (max-width: 640px) {
      .scan-monitor__inner {
        flex-direction: column;
        text-align: center; } }
  .scan-monitor__info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px; }
  .scan-monitor__info p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0; }
  .scan-monitor__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-weight: 500; }
  .scan-monitor__form {
    display: flex;
    gap: 8px;
    align-items: center; }
    @media (max-width: 480px) {
      .scan-monitor__form {
        flex-direction: column;
        width: 100%; } }
  .scan-monitor__select {
    padding: 9px 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: #1e293b;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s; }
    .scan-monitor__select:focus {
      border-color: #2563eb; }
  .scan-monitor__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap; }
    .scan-monitor__btn:hover {
      background: #1d4ed8;
      transform: translateY(-1px); }
    .scan-monitor__btn--remove {
      background: #94a3b8; }
      .scan-monitor__btn--remove:hover {
        background: #475569; }

.scan-history {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px; }
  .scan-history__chart {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
    height: 140px;
    padding: 16px 0 0; }
  .scan-history__bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 48px;
    height: 100%;
    justify-content: flex-end; }
  .scan-history__value {
    width: 100%;
    min-height: 6px;
    border-radius: 3px 3px 0 0;
    transition: height 0.4s ease; }
  .scan-history__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 6px; }
  .scan-history__date {
    font-size: 0.6875rem;
    color: #94a3b8;
    margin-top: 2px; }

.scan-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500; }
  .scan-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #ef4444; }
  .scan-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #166534; }

.scan-upsell {
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0; }
  .scan-upsell h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px; }
  .scan-upsell p {
    font-size: 0.9375rem;
    color: #475569;
    margin: 0 0 1rem; }
  .scan-upsell__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s; }
    .scan-upsell__link:hover {
      color: #1d4ed8; }

@media (max-width: 640px) {
  .scan-hero {
    padding: 3rem 0 2rem; }
    .scan-hero__stats {
      gap: 1rem; }
    .scan-hero__stat-value {
      font-size: 1.125rem; }
    .scan-hero__stat-label {
      font-size: 0.75rem; }

  .scan-form__row {
    flex-direction: column; }

  .scan-form__btn {
    width: 100%; }

  .scan-report__domain {
    font-size: 1.5rem; }

  .scan-dashboard {
    padding: 1.5rem; }
    .scan-dashboard__ring {
      width: 100px;
      height: 100px; }
    .scan-dashboard__score-number {
      font-size: 1.5rem; }
    .scan-dashboard__counts {
      gap: 0.75rem; }
    .scan-dashboard__count-num {
      font-size: 1.25rem; }

  .scan-passed__grid {
    grid-template-columns: 1fr; } }

/*# sourceMappingURL=scan.css.map */
