:root {
  --bg: #06101b;
  --bg-elevated: rgba(10, 22, 36, 0.86);
  --bg-soft: rgba(14, 30, 48, 0.72);
  --line: rgba(106, 144, 176, 0.2);
  --line-strong: rgba(114, 224, 255, 0.28);
  --text: #e8f5ff;
  --muted: #96a8bc;
  --accent: #39d8ff;
  --accent-strong: #2ee7a4;
  --danger: #ff6e87;
  --success: #54f7b7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(49, 215, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(46, 231, 164, 0.1), transparent 24%),
    linear-gradient(180deg, #08131f 0%, #040b12 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 4px 0 22px;
}

.brand-tag,
.topbar-link,
.eyebrow,
.signal-label,
.signal-status,
.metric-label,
.step-number {
  font-family: "IBM Plex Mono", "Consolas", monospace;
  letter-spacing: 0.04em;
}

.brand-tag,
.topbar-link {
  color: var(--muted);
  font-size: 0.82rem;
}

.topbar-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.96fr);
  gap: 84px;
  align-items: center;
  padding: 34px 0 66px;
}

.hero > * ,
.problem-grid > *,
.pricing-grid > *,
.steps-grid > *,
.features-grid > *,
.value-grid > *,
.alert-preview-grid > *,
.faq-list > * {
  min-width: 0;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 32px;
}

.hero-brand-logo {
  display: block;
  width: clamp(360px, 46vw, 680px);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero-brand-logo-home {
  max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.55);
}

@media (max-width: 768px) {
  .hero-brand-logo {
    width: clamp(240px, 80vw, 360px);
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: #85bdd4;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 11.4ch;
  font-size: clamp(2.32rem, 4.5vw, 3.72rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  color: #d9f1ff;
}

.hero-text,
.section-heading p,
.feature-card p,
.step-card p,
.value-card p,
.cta-panel p,
.footer p,
.metric-card p,
.step-copy {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 36ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-ticker {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  margin: 22px 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(129, 185, 221, 0.2);
  background: rgba(6, 15, 26, 0.8);
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.ticker-count {
  font-size: 1.2rem;
  font-weight: 700;
  color: #7ef0c7;
}

.hero-subnote {
  margin: 0 0 12px;
  color: rgba(203, 226, 243, 0.78);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-question {
  margin: 12px 0 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-review-quote {
  margin-top: 12px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: rgba(203, 226, 243, 0.85);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #041018;
  background: linear-gradient(135deg, #39d8ff 0%, #7cf0c6 100%);
  border: 1px solid rgba(169, 255, 231, 0.16);
  box-shadow: 0 8px 18px rgba(49, 215, 255, 0.1);
}

.button-secondary {
  color: #cbe2f3;
  background: transparent;
  border: 1px solid rgba(129, 185, 221, 0.1);
}

.hero-panel,
.step-card,
.feature-card,
.value-card,
.cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 24, 39, 0.88), rgba(8, 16, 27, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: none;
}

.hero-visual {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(8, 15, 29, 0.92), rgba(4, 8, 16, 0.98));
  border: 1px solid rgba(129, 185, 221, 0.14);
  box-shadow: 0 25px 70px rgba(2, 6, 23, 0.5);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 10% 15% auto;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 216, 255, 0.25), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-panel .alert-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-panel .alert-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(129, 185, 221, 0.15);
  background: rgba(10, 20, 36, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-panel .alert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0.35;
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.alert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Mono", "Consolas", monospace;
}

.hero-panel .alert-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.hero-panel .alert-card p {
  margin: 0 0 10px;
  color: #9fb4ce;
  font-size: 0.92rem;
}

.alert-label {
  font-weight: 600;
}

.alert-time {
  color: rgba(203, 226, 243, 0.8);
  font-size: 0.72rem;
}

.alert-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(203, 226, 243, 0.9);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(129, 185, 221, 0.2);
}

.alert-card.alert-down {
  border-color: rgba(248, 113, 113, 0.4);
}

.alert-card.alert-down::after {
  background: radial-gradient(circle, rgba(248, 113, 113, 0.35), transparent 70%);
}

.alert-card.alert-checking {
  border-color: rgba(251, 191, 36, 0.35);
}

.alert-card.alert-checking::after {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35), transparent 70%);
}

.alert-card.alert-recovered {
  border-color: rgba(74, 222, 128, 0.35);
}

.alert-card.alert-recovered::after {
  background: radial-gradient(circle, rgba(74, 222, 128, 0.35), transparent 70%);
}

.hero-connector {
  position: absolute;
  width: 110px;
  height: 18px;
  background-image: linear-gradient(90deg, rgba(129, 185, 221, 0.2) 25%, transparent 25%);
  background-size: 12px 1px;
  border-radius: 999px;
  opacity: 0.5;
}

.hero-connector-one {
  top: 56%;
  right: 24px;
}

.hero-connector-two {
  top: 65%;
  right: 36px;
  width: 80px;
}

.monitor-panel {
  position: relative;
  border-radius: 22px;
  padding: 22px 24px 18px;
  border: 1px solid rgba(129, 185, 221, 0.18);
  background: rgba(6, 12, 24, 0.95);
}

.monitor-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.monitor-domain {
  margin: 0;
  font-weight: 600;
}

.monitor-status-chip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Mono", "Consolas", monospace;
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
}

.monitor-chart {
  position: relative;
  border-radius: 16px;
  padding: 12px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), rgba(2, 6, 23, 0.92));
  border: 1px solid rgba(129, 185, 221, 0.12);
  margin-bottom: 18px;
}

.monitor-chart::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  border: 1px solid rgba(129, 185, 221, 0.08);
}

.monitor-chart svg {
  width: 100%;
  height: 120px;
  display: block;
}

.monitor-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.monitor-metrics .metric {
  flex: 1;
  min-width: 110px;
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Mono", "Consolas", monospace;
  color: rgba(203, 226, 243, 0.8);
}

.monitor-metrics strong {
  font-size: 1.1rem;
}

.monitor-label,
.alert-mini-state,
.alert-mini-time {
  font-family: "IBM Plex Mono", "Consolas", monospace;
  letter-spacing: 0.04em;
}

.monitor-card {
  padding: 22px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(129, 185, 221, 0.08);
  background: #0a1724;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.monitor-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.monitor-label {
  margin: 0 0 8px;
  color: #7fb6cd;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.monitor-domain {
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.monitor-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(84, 247, 183, 0.08);
  border: 1px solid rgba(84, 247, 183, 0.14);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 600;
}

.alert-stack {
  display: grid;
  gap: 12px;
}

.alert-mini {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(129, 185, 221, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.alert-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.alert-mini-state {
  font-size: 0.68rem;
  text-transform: uppercase;
}

.alert-mini-time {
  color: var(--muted);
  font-size: 0.68rem;
}

.alert-mini-copy {
  margin: 0;
  color: #d0e1ee;
  line-height: 1.5;
}

.alert-mini-danger {
  border-color: rgba(255, 110, 135, 0.26);
}

.alert-mini-danger .alert-mini-state {
  color: var(--danger);
}

.alert-mini-success {
  border-color: rgba(84, 247, 183, 0.22);
}

.alert-mini-success .alert-mini-state {
  color: var(--success);
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(129, 185, 221, 0.12);
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.signal-label {
  color: #9de9ff;
  font-size: 0.75rem;
}

.signal-status {
  color: #05121b;
  background: #8cf6d0;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.signal-flow {
  display: grid;
  gap: 10px;
}

.signal-step {
  padding: 14px;
  border-radius: 16px;
  background: rgba(6, 15, 25, 0.9);
  border: 1px solid rgba(106, 144, 176, 0.18);
}

.signal-step.danger {
  border-color: rgba(255, 110, 135, 0.36);
}

.signal-step.success {
  border-color: rgba(84, 247, 183, 0.28);
}

.step-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-copy {
  font-size: 0.92rem;
}

.signal-arrow {
  height: 16px;
  margin-left: 14px;
  border-left: 1px dashed rgba(141, 234, 255, 0.32);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.metric-card,
.step-card,
.feature-card,
.value-card {
  border-radius: 20px;
  padding: 18px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(129, 185, 221, 0.12);
}

.metric-label {
  display: block;
  color: #8deaff;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.3rem;
}

.section {
  padding: 36px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 14px 0 0;
}

.steps-grid,
.features-grid,
.value-grid {
  display: grid;
  gap: 16px;
}

.proof-section {
  padding-top: 24px;
}

.proof-panel {
  border: 1px solid rgba(129, 185, 221, 0.2);
  border-radius: 28px;
  padding: 34px;
  background: rgba(6, 15, 26, 0.88);
  box-shadow: var(--shadow);
}

.proof-timeline {
  list-style: none;
  padding: 0;
  margin: 24px 0 10px;
  display: grid;
  gap: 18px;
}

.proof-timeline li {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(129, 185, 221, 0.12);
}

.proof-time {
  font-family: "IBM Plex Mono", "Consolas", monospace;
  color: #7be9ff;
  font-size: 0.9rem;
}

.proof-timeline strong {
  display: block;
  margin-bottom: 6px;
}

.proof-note {
  margin: 18px 0 0;
  font-weight: 600;
  color: #7ef0c7;
}

.proof-speed-note {
  margin: 12px 0 0;
  font-weight: 600;
  color: #7ef0c7;
}

.founder-section {
  padding: 28px 0 10px;
}

.founder-card {
  border: 1px solid rgba(129, 185, 221, 0.2);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(10, 20, 32, 0.94), rgba(6, 12, 24, 0.97));
  box-shadow: var(--shadow);
}

.founder-card h2 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.founder-facts {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.features-grid,
.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card h3,
.feature-card h3,
.value-card h3 {
  margin: 10px 0 10px;
  font-size: 1.1rem;
}

.step-number {
  color: #7be9ff;
  font-size: 0.76rem;
}

.value-section {
  position: relative;
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114, 224, 255, 0.22), transparent);
}

.cta-section {
  padding-top: 52px;
}

.mid-cta {
  padding: 12px 0 0;
  text-align: center;
}

.mid-cta .button {
  min-width: 220px;
}

.cta-note {
  margin: 10px 0 4px;
  color: rgba(203, 226, 243, 0.85);
  font-weight: 600;
}

.cta-panel {
  padding: 36px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(49, 215, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(10, 24, 40, 0.96), rgba(6, 14, 24, 0.98));
}

.cta-panel p {
  max-width: 54ch;
  margin: 14px auto 24px;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 10px;
  border-top: 1px solid rgba(106, 144, 176, 0.16);
  margin-top: 36px;
}

.footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.reviews-form-section {
  padding-top: 12px;
}

@media (max-width: 980px) {
  .hero,
  .steps-grid,
  .features-grid,
  .value-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
    padding-bottom: 32px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-panel {
    order: 2;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: calc(100% - 24px);
    padding-top: 18px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    gap: 12px;
    padding-bottom: 16px;
  }

  .hero {
    padding-top: 6px;
    gap: 28px;
  }

  .hero-brand {
    margin-bottom: 12px;
    justify-content: center;
  }

  .hero-brand-logo {
    width: clamp(220px, 68vw, 320px);
    height: auto;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(1.88rem, 8.3vw, 2.4rem);
    line-height: 1;
  }

  .hero-text,
  .section-heading,
  .section-heading h2,
  .cta-panel h2,
  .alert-pill,
  .topbar-link {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-panel .alert-card {
    padding: 14px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 38px;
  }

  .cta-panel,
  .hero-panel {
    padding: 0;
  }

  .monitor-card {
    border-radius: 22px;
    padding: 18px;
    margin-top: 4px;
  }

  .monitor-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .monitor-domain {
    font-size: 1.28rem;
  }

  .monitor-status {
    min-height: 26px;
    font-size: 0.72rem;
  }

  .alert-stack {
    gap: 10px;
  }

  .alert-mini {
    padding: 13px 14px;
  }

  .plan-price {
    font-size: 2.2rem;
  }

  .section {
    padding: 28px 0;
  }

  .trust-banner {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .trust-banner-badges {
    gap: 6px;
  }

  .alert-card.alert-checking {
    display: none;
  }

  .proof-timeline {
    display: none;
  }

  .value-grid .value-card:nth-child(n + 4) {
    display: none;
  }

  .problem-card.solution {
    display: none;
  }

  .reviews-grid {
    gap: 12px;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(129, 185, 221, 0.18);
  background: rgba(6, 15, 25, 0.88);
  box-shadow: var(--shadow);
}

.problem-card h3 {
  margin: 0 0 12px;
}

.problem-card.solution {
  border-color: rgba(84, 247, 183, 0.35);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  border: 1px solid rgba(129, 185, 221, 0.18);
  border-radius: 26px;
  padding: 26px 24px 30px;
  background: rgba(6, 15, 25, 0.9);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.pricing-card.highlight {
  border-color: rgba(57, 216, 255, 0.5);
  background: linear-gradient(180deg, rgba(12, 28, 45, 0.96), rgba(8, 18, 31, 0.98));
}

.plan-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(57, 216, 255, 0.15);
  border: 1px solid rgba(57, 216, 255, 0.4);
}

.plan-name {
  margin: 0;
  font-size: 1.05rem;
  color: #bfefff;
  text-transform: uppercase;
}

.plan-price {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.plan-desc {
  margin: 0;
  color: var(--muted);
}

.plan-features {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plan-cta {
  margin-top: auto;
}

.alert-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.alert-card {
  border: 1px solid rgba(129, 185, 221, 0.18);
  border-radius: 24px;
  padding: 22px;
  background: rgba(6, 15, 25, 0.92);
  box-shadow: var(--shadow);
}

.alert-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.alert-card img {
  width: 110px;
  height: auto;
}

.status-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(129, 185, 221, 0.2);
}

.status-pill.danger {
  color: var(--danger);
  border-color: rgba(255, 110, 135, 0.4);
}

.status-pill.success {
  color: var(--success);
  border-color: rgba(84, 247, 183, 0.4);
}

.alert-url {
  margin: 6px 0;
  font-weight: 600;
}

.alert-time,
.alert-body {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(129, 185, 221, 0.18);
  border-radius: 22px;
  padding: 18px 22px;
  background: rgba(6, 15, 25, 0.9);
}

.faq-question {
  margin: 0 0 8px;
}

.faq-answer {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-panel {
    order: 2;
  }
  .hero-visual {
    padding: 22px;
  }
}

@media (max-width: 1100px) {
  .pricing-grid,
  .alert-preview-grid,
  .faq-list,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-grid,
  .alert-preview-grid,
  .faq-list,
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card,
  .problem-card,
  .alert-card,
  .faq-item {
    padding: 20px;
  }
  .proof-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-ticker {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .trust-banner {
    padding: 12px 14px;
  }
  .trust-banner-badges {
    justify-content: center;
    text-align: center;
  }
}
 
.plan-price span { 
  font-size: 1rem; 
  font-weight: 400; 
  margin-left: 6px; 
}

.trust-banner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(129, 185, 221, 0.25);
  background: rgba(6, 15, 27, 0.88);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.24);
}

.trust-banner p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-banner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-banner-badges span {
  padding: 4px 10px;
  border: 1px solid rgba(129, 185, 221, 0.25);
  border-radius: 999px;
}

.section-sub {
  color: var(--muted);
  margin-top: 6px;
}

.risk-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-impact {
  margin-top: 8px;
  color: #ff9ca8;
  font-weight: 600;
}

.problem-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.impact-note {
  margin-top: 22px;
  text-align: center;
  font-weight: 600;
  color: #ff9ca8;
}

.pricing-card.highlight .plan-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@keyframes heroGlowPulse {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.25;
  }
}

/* Checkout Sentinel page tweaks */
.sentinel-body {
  background:
    radial-gradient(circle at 20% 10%, rgba(57, 216, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(125, 240, 199, 0.1), transparent 50%),
    linear-gradient(180deg, #050c16 0%, #02060c 100%);
}

.hero-sentinel {
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 28px;
  gap: 46px;
}

.hero-direct-cta {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(129, 185, 221, 0.25);
  background: rgba(6, 15, 27, 0.9);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-direct-cta p {
  margin: 0;
  flex: 1 1 240px;
}

.hero-stripe-button {
  flex-shrink: 0;
  padding: 0 24px;
  min-height: 52px;
}

.hero-direct-note {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: rgba(203, 226, 243, 0.8);
}

.hero-brand-sentinel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.hero-brand-logo-sentinel {
  width: min(1000px, 92vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.45));
  border-radius: 32px;
}

.hero-brand-video {
  display: block;
  background: #010306;
}

.friction-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.friction-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(129, 185, 221, 0.2);
  background: rgba(6, 15, 25, 0.8);
  font-size: 0.85rem;
  color: rgba(203, 226, 243, 0.9);
}

.audience-strip {
  margin: 0 auto 14px;
  width: min(980px, calc(100% - 32px));
  padding: 14px 20px;
  border: 1px solid rgba(129, 185, 221, 0.2);
  border-radius: 20px;
  background: rgba(6, 15, 26, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.audience-strip span {
  font-family: "IBM Plex Mono", "Consolas", monospace;
  letter-spacing: 0.08em;
  color: #7be9ff;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.proof-top {
  padding-top: 12px;
}

.proof-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.metric-card-inline {
  background: rgba(6, 15, 26, 0.9);
  border: 1px solid rgba(129, 185, 221, 0.2);
  border-radius: 20px;
  padding: 18px;
}

.metric-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reviews-section {
  padding-top: 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.review-card {
  border-radius: 20px;
  border: 1px solid rgba(129, 185, 221, 0.2);
  background: rgba(6, 15, 26, 0.92);
  padding: 18px;
  box-shadow: var(--shadow);
}

.review-stars {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #fdd835;
}

.review-body {
  margin: 0 0 8px;
  color: var(--muted);
}

.review-author {
  margin: 0;
  font-weight: 600;
}

.review-form {
  border: 1px dashed rgba(129, 185, 221, 0.3);
  border-radius: 22px;
  padding: 20px;
  background: rgba(5, 14, 24, 0.8);
}

.review-form h3 {
  margin: 0 0 14px;
}

.review-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.review-rating label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.review-rating input {
  accent-color: #39d8ff;
}

.review-input,
.review-textarea {
  width: 100%;
  margin-bottom: 12px;
}

.review-textarea {
  resize: vertical;
}

.review-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.82);
}

.review-status.is-pending {
  color: #7dd3fc;
}

.review-status.is-success {
  color: #86efac;
}

.review-status.is-error {
  color: #fca5a5;
}

.review-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero-alert-sample {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(248, 113, 113, 0.25);
  background: rgba(35, 6, 8, 0.7);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.55);
}

.hero-alert-sample header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-alert-sample img {
  width: 80px;
  height: auto;
}

.hero-alert-sample .alert-url,
.hero-alert-sample .alert-time,
.hero-alert-sample .alert-body {
  margin: 6px 0;
}

@media (max-width: 980px) {
  .hero-direct-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stripe-button {
    width: 100%;
  }
  .audience-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-brand-logo-sentinel {
    width: 100%;
  }
}

.sentinel-shell .hero-panel {
  display: none;
}

.sentinel-ticker {
  margin-top: 18px;
}

.problem-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .problem-grid.two {
    grid-template-columns: 1fr;
  }
}

.sentinel-pricing {
  max-width: 720px;
  margin: 0 auto;
}


.hidden {
  display: none !important;
}

.scan-panel {
  margin-top: 1.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(17, 17, 31, 0.65);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4);
}

.scan-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scan-input {
  flex: 1 1 260px;
  min-width: 240px;
}

.scan-hint {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.scan-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #f2cb64;
  min-height: 1.2rem;
}

.scan-card {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 28, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.scan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.scan-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.scan-domain {
  font-size: 1.25rem;
  font-weight: 600;
}

.scan-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.2);
  color: #7dd3fc;
}

.scan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.scan-metric {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scan-metric strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.25rem;
}

.scan-metric.pass strong {
  color: #4ade80;
}

.scan-metric.warn strong {
  color: #facc15;
}

.scan-metric.fail strong {
  color: #f87171;
}

.scan-timestamp {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.scan-cta {
  width: 100%;
  margin-top: 1.25rem;
}

.scan-note {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

@media (max-width: 768px) {
  .scan-form {
    flex-direction: column;
  }

  .scan-cta {
    width: 100%;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
