:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --panel: rgba(13, 27, 47, 0.82);
  --panel-strong: rgba(8, 18, 33, 0.96);
  --panel-border: rgba(121, 220, 255, 0.16);
  --text: #f5fbff;
  --muted: #9cb7d5;
  --blue: #53b8ff;
  --green: #43f0c3;
  --green-soft: rgba(67, 240, 195, 0.14);
  --blue-soft: rgba(83, 184, 255, 0.14);
  --danger: #ff6587;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1180px;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Avenir Next", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 184, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(67, 240, 195, 0.12), transparent 28%),
    linear-gradient(180deg, #04101d 0%, #07111f 52%, #050c16 100%);
  font: 400 16px/1.6 var(--font-body);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: 12%;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 240, 195, 0.16), transparent 72%);
  filter: blur(8px);
}

.site-shell::after {
  right: -140px;
  bottom: 18%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 184, 255, 0.18), transparent 70%);
  filter: blur(8px);
}

.section,
.topbar,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 12, 22, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  border-radius: 0;
  background: transparent;
  mix-blend-mode: normal;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-button,
.button-primary {
  color: #04101d;
  background: linear-gradient(135deg, var(--green) 0%, #8cf5ff 100%);
  box-shadow: 0 18px 40px rgba(67, 240, 195, 0.24);
}

.button-secondary {
  border-color: rgba(83, 184, 255, 0.35);
  background: rgba(83, 184, 255, 0.08);
  color: var(--text);
}

.nav-button:hover,
.button:hover,
.nav-button:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  padding-top: 54px;
  padding-bottom: 38px;
  align-items: start;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7f9ed;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(67, 240, 195, 0.14);
}

.hero h1,
.section-heading h2,
.trial-copy h2 {
  margin: 18px 0 18px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
  font-family: var(--font-display);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  max-width: 20ch;
}

.hero-subhead,
.section-heading p,
.trial-copy p,
.feature-panel p,
.step-card p,
.threat-card p,
.price-card p,
.faq-list p,
.testimonial-copy p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-panel {
  margin-top: 18px;
  padding: 16px 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(121, 220, 255, 0.16);
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.trust-panel-label {
  display: block;
  color: #c7f9ed;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-panel .trust-inline,
.pricing-trust,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.trust-inline span,
.pricing-trust span,
.signal-chip,
.contact-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d2e5f8;
  font-size: 0.94rem;
}

.trust-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-assurance {
  margin-top: 16px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.assurance-item {
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assurance-item strong {
  display: block;
  color: #eaf8ff;
  font-size: 0.98rem;
  line-height: 1.2;
}

.assurance-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proof-card,
.signal-bar,
.step-card,
.threat-card,
.feature-panel,
.assurance-panel,
.price-card,
.testimonial-placeholder,
.trial-panel,
.table-wrap,
.crawler-card {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.92), rgba(6, 15, 28, 0.94));
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 22px;
  border-radius: 22px;
}

.proof-card strong,
.testimonial-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--green);
}

.proof-card span,
.testimonial-stat span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.hero-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  inset: 10% 4% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 184, 255, 0.22), transparent 68%);
  filter: blur(12px);
}

.crawler-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
  height: fit-content;
  flex-shrink: 0;
}

.crawler-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 94%, rgba(83, 184, 255, 0.08) 94% 100%),
    linear-gradient(90deg, transparent 0 94%, rgba(83, 184, 255, 0.08) 94% 100%);
  background-size: 100% 34px, 34px 100%;
  opacity: 0.24;
  pointer-events: none;
}

.crawler-topline,
.telemetry-grid {
  position: relative;
  z-index: 1;
}

.crawler-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: #d5ecff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.live-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(67, 240, 195, 0.14);
  color: #adf8e8;
  border: 1px solid rgba(67, 240, 195, 0.34);
}

.crawler-stage {
  position: relative;
  height: 320px;
  min-height: 320px;
  margin: 10px 0 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(83, 184, 255, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(4, 14, 27, 0.96), rgba(8, 18, 32, 0.92));
  border: 1px solid rgba(83, 184, 255, 0.14);
}

.radar-ring,
.core-node,
.orbit-node,
.signal-beam {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.radar-ring {
  border: 1px solid rgba(83, 184, 255, 0.22);
  border-radius: 50%;
  animation: pulse-ring 4.8s infinite ease-out;
}

.ring-1 {
  width: 120px;
  height: 120px;
}

.ring-2 {
  width: 188px;
  height: 188px;
  animation-delay: 0.9s;
}

.ring-3 {
  width: 264px;
  height: 264px;
  animation-delay: 1.8s;
}

.core-node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #c7ffef 0%, var(--green) 52%, rgba(67, 240, 195, 0.1) 100%);
  box-shadow: 0 0 0 18px rgba(67, 240, 195, 0.08), 0 0 42px rgba(67, 240, 195, 0.36);
}

.orbit-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8cd8ff;
  box-shadow: 0 0 20px rgba(83, 184, 255, 0.4);
}

.node-a {
  top: 34%;
  left: 26%;
  animation: float-a 8s infinite ease-in-out;
}

.node-b {
  top: 28%;
  left: 74%;
  animation: float-b 9s infinite ease-in-out;
}

.node-c {
  top: 74%;
  left: 68%;
  animation: float-c 7s infinite ease-in-out;
}

.signal-beam {
  width: 2px;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(67, 240, 195, 0.9), rgba(83, 184, 255, 0));
  opacity: 0.74;
}

.beam-a {
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-48deg);
}

.beam-b {
  height: 118px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(58deg);
}

.beam-c {
  height: 104px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(128deg);
}

.threat-event {
  position: absolute;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.84rem;
  color: #daf5ff;
  background: rgba(4, 12, 22, 0.88);
  border: 1px solid rgba(83, 184, 255, 0.18);
  backdrop-filter: blur(12px);
  animation: drift 7s infinite ease-in-out;
}

.event-a {
  top: 14%;
  left: 10%;
}

.event-b {
  top: 12%;
  right: 8%;
  animation-delay: 1.2s;
}

.event-c {
  bottom: 14%;
  left: 16%;
  animation-delay: 2.1s;
}

.feed-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.feed-row {
  display: grid;
  grid-template-columns: 78px 56px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
}

.feed-time {
  color: #83b5d7;
  font-variant-numeric: tabular-nums;
}

.feed-tag {
  display: inline-flex;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feed-tag-new {
  background: rgba(255, 101, 135, 0.14);
  color: #ff9ab0;
}

.feed-tag-sig {
  background: rgba(83, 184, 255, 0.14);
  color: #96dcff;
}

.feed-tag-ok {
  background: rgba(67, 240, 195, 0.14);
  color: #aefbe8;
}

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

.telemetry-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.telemetry-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.telemetry-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  margin-top: 8px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.steps-grid,
.threat-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.threat-card,
.price-card,
.feature-panel,
.assurance-panel,
.testimonial-placeholder,
.trial-panel,
.table-wrap {
  border-radius: var(--radius);
}

.step-card,
.threat-card,
.feature-panel,
.assurance-panel,
.price-card {
  padding: 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(83, 184, 255, 0.16), rgba(67, 240, 195, 0.14));
  color: #dffaff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0 12px;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(67, 240, 195, 0.09);
  border: 1px solid rgba(67, 240, 195, 0.28);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.step-card h3,
.threat-card h3,
.feature-panel h3,
.price-tier {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.threat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.threat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(83, 184, 255, 0.14), rgba(67, 240, 195, 0.14));
  color: #caf6ff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.assurance-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card ul {
  margin: 22px 0 28px;
  padding-left: 18px;
  color: #d6e7f8;
}

.price-card li + li {
  margin-top: 10px;
}

.price-value {
  margin-top: 8px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-value span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}

.featured {
  border-color: rgba(67, 240, 195, 0.34);
  transform: translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(67, 240, 195, 0.14);
  color: #b5fff1;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon-badge {
  background: rgba(255, 178, 102, 0.14);
  color: #ffd7a8;
}

.sentinel-card {
  border-color: rgba(83, 184, 255, 0.26);
  background: linear-gradient(180deg, rgba(83, 184, 255, 0.08), rgba(10, 18, 32, 0.88));
}

.sentinel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(67, 240, 195, 0.16), transparent 48%);
  pointer-events: none;
}

.sentinel-card > * {
  position: relative;
  z-index: 1;
}

.coming-soon-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  gap: 24px;
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(83, 184, 255, 0.18);
  background: linear-gradient(135deg, rgba(9, 18, 32, 0.96), rgba(10, 25, 39, 0.76));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.coming-soon-copy p {
  margin-bottom: 0;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: #d7ebfd;
  font-weight: 700;
  font-size: 0.94rem;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: 2px solid rgba(83, 184, 255, 0.48);
  outline-offset: 2px;
}

.waitlist-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  padding: 10px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.compare-table th {
  color: #dff4ff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table td {
  color: var(--muted);
}

.testimonial-placeholder {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  margin-top: 28px;
  align-items: center;
}

.testimonial-copy span {
  color: #d0e4f9;
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}




.faq-list p {
  margin: 0 0 22px;
  padding-right: 20px;
}

.trial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 30px;
}

.trial-form {
  display: grid;
  gap: 14px;
}

.trial-form label {
  display: grid;
  gap: 8px;
  color: #d7ebfd;
  font-weight: 700;
  font-size: 0.94rem;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.trial-form textarea {
  resize: vertical;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  outline: 2px solid rgba(83, 184, 255, 0.48);
  outline-offset: 2px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: #aefbe8;
}

.form-status[data-state="error"] {
  color: #ffb8c8;
}

/* ── Trial Form Confirmation Card ──────────────────────────────── */
.trial-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(26,46,38,0.7) 0%, rgba(14,26,42,0.8) 100%);
  border: 1px solid rgba(67,240,195,0.35);
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(67,240,195,0.1), 0 4px 24px rgba(0,0,0,0.35);
  text-align: center;
  animation: tcfadeIn 0.45s ease-out both;
}
@keyframes tcfadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trial-confirm-check {
  line-height: 1;
}
.trial-confirm-heading {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #e8f8f2;
  line-height: 1.3;
}
.trial-confirm-sub {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 360px;
}
.trial-confirm-sub strong {
  color: #cde9e0;
}
.trial-confirm-steps {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: left;
}
.trial-confirm-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trial-confirm-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(67,240,195,0.15);
  border: 1px solid rgba(67,240,195,0.45);
  color: #43f0c3;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trial-confirm-steps li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trial-confirm-steps li strong {
  font-size: 0.93rem;
  color: #d4eee7;
}
.trial-confirm-steps li span {
  font-size: 0.86rem;
  color: var(--muted);
}
.trial-confirm-plan {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trial-confirm-plan strong {
  color: #43f0c3;
}
.trial-confirm-link {
  font-size: 0.9rem;
  color: #43f0c3;
  text-decoration: none;
  border-bottom: 1px dashed rgba(67,240,195,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.trial-confirm-link:hover {
  border-color: #43f0c3;
}
/* ── end Trial Form Confirmation Card ─────────────────────────── */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 56px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  border-radius: 12px;
}

.footer-brand span,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.94);
  }
  70% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes float-a {
  0%,
  100% { transform: translate(-50%, -50%) translate(-8px, -4px); }
  50% { transform: translate(-50%, -50%) translate(12px, 10px); }
}

@keyframes float-b {
  0%,
  100% { transform: translate(-50%, -50%) translate(0, 0); }
  50% { transform: translate(-50%, -50%) translate(-14px, 12px); }
}

@keyframes float-c {
  0%,
  100% { transform: translate(-50%, -50%) translate(8px, 0); }
  50% { transform: translate(-50%, -50%) translate(-12px, -10px); }
}

@keyframes drift {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .hero,
  .feature-layout,
  .trial-panel,
  .coming-soon-panel {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .pricing-grid,
  .threat-grid,
  .proof-strip,
  .testimonial-placeholder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 4px;
  }

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

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    max-width: 11ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid,
  .pricing-grid,
  .threat-grid,
  .proof-strip,
  .telemetry-grid,
  .testimonial-placeholder
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .feed-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trial-panel {
    padding: 24px;
  }

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

@media (max-width: 560px) {
  .section,
  .topbar,
  .footer {
    width: min(var(--max), calc(100% - 24px));
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero h1 {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .crawler-card,
  .trial-panel,
  .coming-soon-panel,
  .step-card,
  .threat-card,
  .feature-panel,
  .assurance-panel,
  .price-card,
  .testimonial-placeholder
  

  .crawler-stage {
    min-height: 270px;
  }

  .threat-event {
    max-width: 150px;
    font-size: 0.76rem;
  }
}

/* ── Live threat counter ──────────────────────────────────────────────────── */
.threat-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 22px;
  padding: 18px 24px;
  background: rgba(67, 240, 195, 0.06);
  border: 1px solid rgba(67, 240, 195, 0.22);
  border-radius: 16px;
  width: fit-content;
}

.threat-counter-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #43f0c3;
  text-shadow: 0 0 22px rgba(67, 240, 195, 0.55), 0 0 48px rgba(67, 240, 195, 0.28);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.threat-counter-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FAQ accordion — JS-powered smooth animation ─────────────────────── */
.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(67,240,195,0.12);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
}

.faq-item--open {
  border-color: rgba(67,240,195,0.3);
  background: rgba(67,240,195,0.04);
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  text-align: left;
  color: inherit;
  font-family: inherit;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  border-radius: 10px;
}

.faq-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(67,240,195,0.12);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.faq-item--open .faq-num {
  background: var(--green);
  color: #000;
}

.faq-question {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  margin-left: 4px;
}

.faq-chevron::before,
.faq-chevron::after {
  content: ;
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.28s ease, background 0.2s;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-item--open .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
  background: var(--green);
}

.faq-item--open .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--green);
}

.faq-item .faq-body {
  overflow: hidden;
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 22px 20px 66px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-body-inner p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Trust badges (trial section) - added by auto-improve === */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0.5rem;
}
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  color: #a8d8a8;
  white-space: nowrap;
}

/* Updated: 2026-04-13-v3 */

/* ── Sticky floating trial CTA ─────────────────────────────────────── */
.sticky-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.45), 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.sticky-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sticky-fab:hover {
  box-shadow: 0 6px 32px rgba(59,130,246,0.6), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-2px) scale(1.02);
}

.sticky-fab:active {
  transform: translateY(0) scale(0.98);
}

.sticky-fab-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Hide on very small screens to avoid overlap with mobile nav */
@media (max-width: 400px) {
  .sticky-fab {
    padding: 12px 16px;
    font-size: 0.82rem;
    bottom: 18px;
    right: 14px;
  }
  .sticky-fab-icon {
    display: none;
  }
}

/* ── Compare table visual enhancement ────────────────────────────────────── */
.cmp-yes {
  color: #43f0c3;
  font-size: 1.15em;
  font-weight: 700;
}

.cmp-no {
  color: #3e3e50;
  font-size: 1.05em;
}

.compare-table .featured-col {
  background: rgba(59, 130, 246, 0.07);
  border-left: 2px solid rgba(59, 130, 246, 0.22);
  border-right: 2px solid rgba(59, 130, 246, 0.22);
}

.compare-table thead .featured-col {
  background: rgba(59, 130, 246, 0.18);
  color: #fff;
}

.compare-popular {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  color: #43f0c3;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-top: 3px;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.compare-table tbody tr:hover .featured-col {
  background: rgba(59, 130, 246, 0.12);
}

.compare-table .guarantee-row td {
  color: #a8d8a8;
  font-size: 0.88rem;
}

.compare-table .guarantee-row td:first-child {
  font-style: italic;
}

/* ── Compare table CTA footer row ─────────────────────────────────────── */
.compare-table .compare-cta-row td {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: none;
  vertical-align: middle;
  text-align: center;
}
.compare-table .compare-cta-row td:first-child {
  text-align: left;
  vertical-align: middle;
}
.compare-cta-label {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cfd6e4;
}
.compare-cta-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(67, 240, 195, 0.45);
  color: #43f0c3;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, color 160ms ease;
}
.compare-cta-btn:hover {
  background: rgba(67, 240, 195, 0.14);
  border-color: rgba(67, 240, 195, 0.8);
  color: #eafff8;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(67, 240, 195, 0.18);
}
.compare-cta-primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(67, 240, 195, 0.95));
  border-color: rgba(67, 240, 195, 0.0);
  color: #041327;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}
.compare-cta-primary:hover {
  background: linear-gradient(135deg, rgba(67, 240, 195, 1), rgba(59, 130, 246, 1));
  color: #041327;
  box-shadow: 0 10px 26px rgba(59, 130, 246, 0.35);
}
.compare-cta-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  color: #7d8699;
  letter-spacing: 0.02em;
}
.compare-cta-footnote {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #9aa3b4;
  letter-spacing: 0.02em;
}
.compare-cta-footnote span {
  color: #43f0c3;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .compare-table .compare-cta-row td {
    padding: 14px 8px;
  }
  .compare-cta-btn {
    padding: 9px 10px;
    font-size: 0.78rem;
  }
  .compare-cta-sub {
    font-size: 0.68rem;
  }
}

/* ── Trial includes checklist (trial section) ─────────────────────────── */
.trial-includes {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(67,240,195,0.06);
  border: 1px solid rgba(67,240,195,0.18);
  border-radius: 10px;
}

.trial-includes-label {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #43f0c3;
}

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

.trial-includes ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.93rem;
  color: var(--muted, #9faabc);
  line-height: 1.4;
}

.trial-includes ul li:last-child {
  margin-bottom: 0;
}

.trial-includes ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #43f0c3;
  font-weight: 700;
}

/* ── Final close / last-chance CTA band ─────────────────────────────── */
.final-close {
  background: linear-gradient(160deg, #091a31 0%, #0e2248 55%, #071526 100%);
  border-top: 1px solid rgba(67,240,195,0.18);
  text-align: center;
  padding: 72px 24px 80px;
}

.final-close-inner {
  max-width: 620px;
  margin: 0 auto;
}

.final-close-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 14px;
}

.final-close-heading {
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 28px;
}

.final-close-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.final-close-bullets li {
  font-size: 0.95rem;
  color: #a8d8a8;
}

.final-close-cta {
  display: inline-block;
  font-size: 1.05rem;
  padding: 16px 40px;
  box-shadow: 0 0 28px rgba(83,184,255,0.25);
}

.final-close-cta:hover {
  box-shadow: 0 0 40px rgba(83,184,255,0.45);
}

.final-close-sub {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── breach-cost-band ─────────────────────────────────────── */
.breach-cost-band {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3a 100%);
  border-top: 1px solid rgba(67, 240, 195, 0.18);
  border-bottom: 1px solid rgba(67, 240, 195, 0.18);
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
}
.breach-cost-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.breach-cost-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 2rem;
}
.breach-cost-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.breach-stat {
  flex: 1;
  min-width: 180px;
  padding: 0.5rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.breach-stat-num {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: text-shadow 0.4s ease, color 0.4s ease;
}
.breach-stat-num.countup-active {
  color: #ffe7a8;
  text-shadow: 0 0 18px rgba(255, 220, 130, 0.55);
}
.breach-stat-num.countup-done {
  animation: breach-stat-flash 0.6s ease-out;
}
@keyframes breach-stat-flash {
  0%   { text-shadow: 0 0 22px rgba(255, 220, 130, 0.8); color: #fff7d8; }
  100% { text-shadow: 0 0 0 rgba(255, 220, 130, 0);     color: #ffffff; }
}
.breach-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
  text-align: center;
  max-width: 200px;
}
.breach-stat-source {
  font-size: 0.63rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  display: block;
}
.breach-stat-divider {
  width: 1px;
  min-height: 80px;
  background: rgba(67, 240, 195, 0.2);
  align-self: center;
  flex-shrink: 0;
}
.breach-cost-footer {
  margin: 2rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.breach-cost-footer strong {
  color: var(--green);
}
@media (max-width: 640px) {
  .breach-stat-divider { display: none; }
  .breach-cost-stats { gap: 1.75rem; }
  .breach-stat { padding: 0 1rem; }
}

/* ── Onboarding Timeline (trial section) ───────────────────── */
.onboarding-timeline {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(67, 240, 195, 0.05);
  border: 1px solid rgba(67, 240, 195, 0.2);
  border-radius: 14px;
}
.onboarding-timeline-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin: 0 0 1rem;
  font-weight: 700;
}
.onboarding-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.onboarding-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.onboarding-step:last-child {
  padding-bottom: 0;
}
.onboarding-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(67, 240, 195, 0.35), rgba(67, 240, 195, 0.05));
}
.onboarding-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(83, 184, 255, 0.25), rgba(67, 240, 195, 0.25));
  border: 1.5px solid rgba(67, 240, 195, 0.45);
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.onboarding-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.4rem;
}
.onboarding-text strong {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.onboarding-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── AV vs AI Wall Comparison ──────────────────────────────── */
.av-em {
  color: var(--green);
  font-style: normal;
}
.av-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 2rem;
}
.av-col {
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.av-col-trad {
  background: rgba(255, 80, 80, 0.05);
  border: 1px solid rgba(255, 80, 80, 0.18);
}
.av-col-aiwall {
  background: rgba(67, 240, 195, 0.05);
  border: 1px solid rgba(67, 240, 195, 0.22);
  box-shadow: 0 0 32px rgba(67, 240, 195, 0.05);
}
.av-col-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.av-col-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.av-col-trad .av-col-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.av-col-aiwall .av-col-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.av-col-aiwall .av-col-header h3 em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.av-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.av-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.av-miss {
  color: rgba(255, 255, 255, 0.45);
}
.av-miss span {
  color: rgba(255, 90, 90, 0.7);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.av-hit {
  color: rgba(255, 255, 255, 0.85);
}
.av-hit span {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.av-compare-note {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
  padding: 0.9rem 1.5rem;
  background: rgba(67, 240, 195, 0.04);
  border: 1px solid rgba(67, 240, 195, 0.12);
  border-radius: 10px;
}
@media (max-width: 640px) {
  .av-compare-wrap {
    grid-template-columns: 1fr;
  }
}

/* ── Buyer Persona Cards ─────────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}
.persona-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.persona-card:hover {
  border-color: rgba(67,240,195,0.25);
  box-shadow: 0 0 32px rgba(67,240,195,0.06);
}
.persona-card-featured {
  border-color: rgba(67,240,195,0.28);
  background: rgba(67,240,195,0.04);
  box-shadow: 0 0 40px rgba(67,240,195,0.07);
  position: relative;
}
.persona-card-featured::before {
  content: '\2605  Most Common';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #001a14;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.85rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  text-transform: uppercase;
}
.persona-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.persona-role {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.persona-worry {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  border-left: 2px solid rgba(67,240,195,0.25);
  padding-left: 0.85rem;
}
.persona-fit {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.persona-fit li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  padding-left: 1.2rem;
  position: relative;
}
.persona-fit li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.persona-plan-hint {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 700;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 800px) {
  .persona-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ======================================================
   COMPATIBILITY SECTION
   ====================================================== */
.compat-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(16,32,48,0.5) 100%);
  border-top: 1px solid rgba(67,240,195,0.12);
  border-bottom: 1px solid rgba(67,240,195,0.12);
}

.compat-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.compat-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green, #43f0c3);
  margin: 0 0 0.5rem;
}

.compat-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1.3;
}

.compat-grid {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(67,240,195,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.compat-group {
  flex: 1 1 200px;
  padding: 1.5rem 1.75rem;
  text-align: left;
}

.compat-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green, #43f0c3);
  margin: 0 0 0.75rem;
  opacity: 0.85;
}

.compat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.compat-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.compat-check {
  color: var(--green, #43f0c3);
  font-size: 0.95rem;
  flex-shrink: 0;
  font-weight: 700;
}

.compat-divider {
  width: 1px;
  background: rgba(67,240,195,0.12);
  align-self: stretch;
  min-height: 100px;
}

.compat-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .compat-grid {
    flex-direction: column;
  }
  .compat-divider {
    width: 100%;
    height: 1px;
    min-height: auto;
  }
  .compat-group {
    padding: 1.25rem 1.25rem;
  }
}

/* ─── Cost Estimator ──────────────────────────────────────────────── */
.cost-estimator {
  background: rgba(13, 27, 47, 0.72);
  border: 1px solid rgba(67, 240, 195, 0.25);
  border-radius: 1rem;
  padding: 2rem 2rem 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 680px;
  text-align: center;
}
.estimator-label {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.estimator-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.est-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(67, 240, 195, 0.35);
  background: transparent;
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.est-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}
.est-input {
  width: 5.5rem;
  text-align: center;
  background: rgba(7, 17, 31, 0.8);
  border: 1px solid rgba(67, 240, 195, 0.3);
  border-radius: 0.5rem;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.3rem 0.5rem;
  -moz-appearance: textfield;
}
.est-input::-webkit-outer-spin-button,
.est-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.est-unit {
  color: var(--muted);
  font-size: 0.9rem;
}
.estimator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.est-plan {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.09);
  padding: 1rem 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.est-plan.est-recommended {
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(67, 240, 195, 0.22);
}
.est-plan-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.est-plan-total {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}
.est-plan-total small {
  font-size: 0.65em;
  font-weight: 400;
  color: var(--muted);
}
.est-plan-per {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.est-plan-badge {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green);
  color: #000;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
}
.est-plan-cta {
  display: block;
  margin-top: auto;
  padding: 0.55rem 0.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.est-plan:not(.est-recommended) .est-plan-cta {
  margin-top: 0.85rem;
}
.est-plan-cta:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
}
.est-plan-cta-primary {
  background: var(--green);
  color: #00121a;
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(67, 240, 195, 0.32);
}
.est-plan-cta-primary:hover {
  background: #5cf6cd;
  border-color: #5cf6cd;
  color: #00121a;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(67, 240, 195, 0.5);
}
.est-plan.est-recommended .est-plan-badge {
  margin-bottom: 0.55rem;
}
.estimator-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  opacity: 0.8;
}
@media (max-width: 560px) {
  .estimator-results { grid-template-columns: 1fr; }
  .cost-estimator { padding: 1.5rem 1rem 1.25rem; }
  .est-plan-cta { font-size: 0.85rem; padding: 0.7rem 0.5rem; }
}
/* ─── end Cost Estimator ──────────────────────────────────────────── */

/* ─── Exit-Intent Modal ────────────────────────────────────────────── */
.ei-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(2, 8, 18, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.ei-backdrop.ei-visible {
  display: flex;
  animation: ei-fade-in 0.28s ease forwards;
}
@keyframes ei-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ei-modal {
  position: relative;
  background: linear-gradient(160deg, #07111f 0%, #040d24 100%);
  border: 1px solid rgba(67, 240, 195, 0.3);
  border-radius: 1.25rem;
  box-shadow: 0 0 48px rgba(67, 240, 195, 0.14), 0 20px 60px rgba(0,0,0,0.6);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2.25rem 2rem;
  animation: ei-slide-up 0.32s cubic-bezier(0.22, 0.9, 0.36, 1) forwards;
}
@keyframes ei-slide-up {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.ei-close {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.15s, background 0.15s;
}
.ei-close:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.ei-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.ei-heading {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.ei-heading em {
  color: var(--green);
  font-style: normal;
}
.ei-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.ei-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ei-bullets li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ei-bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.ei-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: opacity 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 18px rgba(67, 240, 195, 0.35);
  letter-spacing: 0.02em;
}
.ei-cta:hover { opacity: 0.9; box-shadow: 0 0 28px rgba(67, 240, 195, 0.5); }
.ei-dismiss {
  display: block;
  text-align: center;
  margin-top: 0.875rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
  width: 100%;
}
.ei-dismiss:hover { color: var(--text); }
@media (max-width: 480px) {
  .ei-modal { padding: 2rem 1.5rem 1.5rem; }
}
/* ─── end Exit-Intent Modal ────────────────────────────────────────── */

/* ─── Promo Bar ───────────────────────────────────────────────────────── */
.promo-bar {
  background: linear-gradient(90deg, rgba(0,36,28,0.98) 0%, rgba(0,20,14,0.98) 100%);
  border-bottom: 1px solid rgba(67,240,195,0.22);
  padding: 0.55rem 3rem 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 30;
  overflow: hidden;
  transition: height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--max, 1160px);
}
.promo-bar-shield {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.promo-bar-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.promo-bar-text strong {
  color: var(--text);
  font-weight: 700;
}
.promo-bar-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.promo-bar-chips span {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0 0.55rem;
  border-left: 1px solid rgba(255,255,255,0.13);
}
.promo-bar-chips span:first-child {
  border-left: none;
  padding-left: 0.3rem;
}
.promo-bar-cta {
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(67,240,195,0.28);
}
.promo-bar-cta:hover { opacity: 0.85; box-shadow: 0 0 16px rgba(67,240,195,0.45); }
.promo-bar-dismiss {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  line-height: 1;
  border-radius: 0.25rem;
  transition: color 0.15s, background 0.15s;
}
.promo-bar-dismiss:hover { color: var(--text); background: rgba(255,255,255,0.06); }
@media (max-width: 600px) {
  .promo-bar-chips { display: none; }
  .promo-bar-text { font-size: 0.75rem; }
  .promo-bar { padding-right: 2.5rem; }
}
/* ─── end Promo Bar ───────────────────────────────────────────────────── */

/* ─── Guarantee Seals ─────────────────────────────────────────────────── */
.guarantee-seals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem auto 1.5rem;
  max-width: var(--max);
  flex-wrap: wrap;
}
.guarantee-seal {
  position: relative;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(67,240,195,0.45);
  animation: seal-rotate 14s linear infinite;
}
.seal-mb .seal-ring {
  border-color: rgba(83,184,255,0.45);
  animation-direction: reverse;
  animation-duration: 18s;
}
.seal-cancel .seal-ring {
  border-color: rgba(67,240,195,0.28);
  animation-duration: 22s;
}
.seal-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(67,240,195,0.07) 0%, var(--bg-soft) 70%);
  border: 1.5px solid rgba(67,240,195,0.28);
  box-shadow: 0 0 22px rgba(67,240,195,0.12), inset 0 0 16px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.45rem;
}
.seal-mb .seal-inner {
  background: radial-gradient(circle at 40% 35%, rgba(83,184,255,0.07) 0%, var(--bg-soft) 70%);
  border-color: rgba(83,184,255,0.28);
  box-shadow: 0 0 22px rgba(83,184,255,0.12), inset 0 0 16px rgba(0,0,0,0.25);
}
.seal-cancel .seal-inner {
  background: radial-gradient(circle at 40% 35%, rgba(67,240,195,0.05) 0%, var(--bg-soft) 70%);
  border-color: rgba(67,240,195,0.2);
}
.seal-big {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -1.5px;
}
.seal-mb .seal-big { color: var(--blue); }
.seal-unit {
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.05rem;
}
.seal-mb .seal-unit { color: var(--blue); }
.seal-line {
  font-size: 0.48rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.35;
  margin-top: 0.22rem;
  text-align: center;
}
.seal-line-two {
  font-size: 0.46rem;
  margin-top: 0.28rem;
}
.seal-icon {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 0.05rem;
}
@keyframes seal-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 520px) {
  .guarantee-seals { gap: 1.4rem; }
  .guarantee-seal { width: 96px; height: 96px; }
  .seal-inner { width: 78px; height: 78px; }
  .seal-big { font-size: 1.6rem; }
  .seal-unit { font-size: 0.45rem; }
  .seal-line { font-size: 0.42rem; letter-spacing: 1.2px; }
}
/* ─── end Guarantee Seals ─────────────────────────────────────────────── */

/* ─── Customer Testimonial Quote Cards ────────────────────────────────── */
.tquote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.tquote-card {
  background: linear-gradient(160deg, rgba(16,36,58,0.9) 0%, rgba(10,22,40,0.95) 100%);
  border: 1px solid rgba(67,240,195,0.14);
  border-radius: var(--radius, 16px);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.tquote-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(67,240,195,0.18);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.tquote-card:hover {
  border-color: rgba(67,240,195,0.38);
  box-shadow: 0 0 28px rgba(67,240,195,0.08);
}

.tquote-stars {
  font-size: 1rem;
  color: #f6c543;
  letter-spacing: 2px;
  padding-top: 4px;
}

.tquote-body {
  margin: 0;
  padding: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(210,235,255,0.88);
  font-style: italic;
  padding-top: 24px; /* space for the big quote mark */
  flex: 1;
}

.tquote-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(83,184,255,0.1);
  padding-top: 14px;
  margin-top: auto;
}

.tquote-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(67,240,195,0.22), rgba(83,184,255,0.22));
  border: 1px solid rgba(67,240,195,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #a3f0de;
}

.tquote-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8f7ff;
}

.tquote-role {
  display: block;
  font-size: 0.75rem;
  color: rgba(160,200,230,0.65);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .tquote-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ─── end Customer Testimonial Quote Cards ────────────────────────────── */

/* ─── Ransomware Family Ticker Band ──────────────────────────────────── */
.threat-ticker-band {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, rgba(4,12,26,0.0) 0%, rgba(5,15,30,0.85) 40%, rgba(5,15,30,0.85) 60%, rgba(4,12,26,0.0) 100%);
  border-top: 1px solid rgba(83,184,255,0.08);
  border-bottom: 1px solid rgba(83,184,255,0.08);
  overflow: hidden;
}

.threat-ticker-inner {
  max-width: var(--max-w, 1180px);
  margin: 0 auto;
  padding: 0 20px;
}

.threat-ticker-headline {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #d0eeff;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.threat-ticker-sub {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.threat-ticker-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.threat-ticker-row {
  overflow: hidden;
}

.threat-ticker-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

@keyframes ticker-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.track-fwd {
  animation: ticker-fwd 32s linear infinite;
}

.track-rev {
  animation: ticker-rev 28s linear infinite;
}

.threat-ticker-wrap:hover .track-fwd,
.threat-ticker-wrap:hover .track-rev {
  animation-play-state: paused;
}

.threat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(67,240,195,0.08);
  border: 1px solid rgba(67,240,195,0.22);
  color: rgba(67,240,195,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
}

.threat-pill::before {
  content: '⚠';
  margin-right: 6px;
  font-size: 0.72rem;
  opacity: 0.7;
}

.threat-pill:hover {
  background: rgba(67,240,195,0.14);
  border-color: rgba(67,240,195,0.4);
}

.threat-pill-blue {
  background: rgba(83,184,255,0.08);
  border-color: rgba(83,184,255,0.22);
  color: rgba(140,210,255,0.85);
}

.threat-pill-blue::before {
  content: '⚠';
}

.threat-pill-blue:hover {
  background: rgba(83,184,255,0.14);
  border-color: rgba(83,184,255,0.4);
}

.threat-ticker-disclaimer {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(120,155,190,0.55);
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .track-fwd, .track-rev {
    animation: none;
  }
}
/* ─── end Ransomware Family Ticker Band ─────────────────────────────── */

/* ─── Incident Response Comparison Timeline ─────────────────────────── */
.incident-compare-section { background: var(--bg, #060e1e); }

.incident-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 28px;
  align-items: start;
  max-width: 1100px;
  margin: 48px auto 0;
}

/* Column header */
.incident-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px 16px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}
.incident-col-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.incident-col-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Without column */
.incident-col-without {
  border: 1px solid rgba(220,60,60,0.22);
  border-radius: 12px;
  background: rgba(220,50,50,0.04);
  overflow: hidden;
}
.incident-col-without .incident-col-header {
  background: rgba(220,50,50,0.1);
  border-bottom: 1px solid rgba(220,60,60,0.18);
  color: #ff8080;
}

/* With column */
.incident-col-with {
  border: 1px solid rgba(67,240,195,0.28);
  border-radius: 12px;
  background: rgba(67,240,195,0.04);
  overflow: hidden;
}
.incident-col-with .incident-col-header {
  background: rgba(67,240,195,0.1);
  border-bottom: 1px solid rgba(67,240,195,0.2);
  color: var(--green, #43f0c3);
}

/* Divider VS badge */
.incident-col-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.incident-col-divider span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(120,160,200,0.25);
  background: rgba(10,20,40,0.7);
  color: rgba(180,210,240,0.6);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Steps list */
.incident-steps {
  list-style: none;
  margin: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
}
.incident-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 14px;
  padding: 14px 0;
  position: relative;
}
.incident-step:not(.incident-step-final) {
  border-bottom: 1px solid rgba(120,160,200,0.08);
}

/* Time badge */
.incident-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
  line-height: 1.35;
}
.incident-time-bad {
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.3);
  color: #ff9898;
}
.incident-time-good {
  background: rgba(67,240,195,0.12);
  border: 1px solid rgba(67,240,195,0.28);
  color: var(--green, #43f0c3);
}

/* Detail text */
.incident-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.incident-detail strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(220,235,255,0.92);
  line-height: 1.3;
}
.incident-detail span {
  font-size: 0.78rem;
  color: rgba(140,170,210,0.7);
  line-height: 1.5;
}

/* Citation footer */
.incident-col-cite {
  margin: 0;
  padding: 12px 22px 16px;
  font-size: 0.7rem;
  color: rgba(120,155,190,0.5);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(120,160,200,0.08);
}

/* CTA block */
.incident-compare-cta {
  text-align: center;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.incident-compare-cta-note {
  font-size: 0.8rem;
  color: rgba(140,170,210,0.55);
  max-width: 480px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 820px) {
  .incident-compare-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  .incident-col-divider {
    padding-top: 0;
    justify-content: center;
  }
  .incident-step {
    grid-template-columns: 78px 1fr;
  }
}
/* ─── end Incident Response Comparison Timeline ──────────────────────── */

/* ─── Alert Preview Section (Sample Alert Email) ──────────────────────── */
.alert-preview-section { }

.alert-preview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

/* Mock email card */
.mock-email-card {
  background: #0a1628;
  border: 1px solid rgba(67,240,195,0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(67,240,195,0.07), 0 8px 32px rgba(0,0,0,0.45);
}

.mock-email-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0d1e38;
  border-bottom: 1px solid rgba(80,120,180,0.12);
}
.mock-chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.85;
}
.mock-chrome-address {
  margin-left: 8px;
  font-size: 0.68rem;
  color: rgba(120,155,200,0.45);
  font-family: monospace;
}

.mock-email-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(80,120,180,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-email-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-email-from {
  font-size: 0.72rem;
  color: rgba(180,210,255,0.75);
  font-weight: 600;
}
.mock-email-to {
  font-size: 0.68rem;
  color: rgba(120,155,200,0.45);
}
.mock-email-subject {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(220,240,255,0.9);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-shield-icon {
  font-size: 1rem;
}

.mock-email-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67,240,195,0.1);
  border: 1px solid rgba(67,240,195,0.3);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green, #43f0c3);
  text-transform: uppercase;
}
.mock-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green, #43f0c3);
  box-shadow: 0 0 6px var(--green, #43f0c3);
  animation: pulse 1.8s infinite;
}

.mock-alert-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(80,120,180,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.mock-alert-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(80,120,180,0.08);
}
.mock-alert-row:last-child { border-bottom: none; }
.mock-label {
  font-size: 0.68rem;
  color: rgba(120,155,200,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-top: 1px;
}
.mock-value {
  font-size: 0.75rem;
  color: rgba(200,225,255,0.8);
  line-height: 1.5;
}
.mock-value-safe {
  color: var(--green, #43f0c3);
  font-weight: 700;
}

.mock-email-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mock-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 14px;
  cursor: default;
  letter-spacing: 0.02em;
}
.mock-btn-primary {
  background: var(--green, #43f0c3);
  color: #061220;
}
.mock-btn-secondary {
  background: rgba(80,120,180,0.12);
  color: rgba(180,210,255,0.65);
  border: 1px solid rgba(80,120,180,0.2);
}

/* Notes panel */
.alert-preview-notes {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}
.alert-note-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.alert-note-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(67,240,195,0.12);
  border: 1px solid rgba(67,240,195,0.3);
  color: var(--green, #43f0c3);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.alert-note-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.alert-note-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(220,240,255,0.9);
  line-height: 1.3;
}
.alert-note-item span {
  font-size: 0.78rem;
  color: rgba(140,170,210,0.6);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .alert-preview-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ─── end Alert Preview Section ──────────────────────────────────────── */

/* ─── Portal Preview Section ─────────────────────────────────────────── */
.portal-preview-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Browser chrome mockup wrapper */
.portal-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(67,240,195,0.2);
  box-shadow: 0 0 48px rgba(67,240,195,0.08), 0 16px 64px rgba(0,0,0,0.45);
  max-width: 960px;
  margin: 40px auto 0;
  background: #0b1628;
}

.portal-chrome {
  background: #141f30;
  border-bottom: 1px solid rgba(67,240,195,0.12);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.portal-chrome-dots {
  display: flex;
  gap: 6px;
}
.portal-chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.portal-chrome-dots span:nth-child(1) { background: #fc5753; }
.portal-chrome-dots span:nth-child(2) { background: #fdbc40; }
.portal-chrome-dots span:nth-child(3) { background: #34c84a; }

.portal-chrome-bar {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.73rem;
  color: rgba(150,190,240,0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-chrome-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: #43f0c3;
  background: rgba(67,240,195,0.1);
  border: 1px solid rgba(67,240,195,0.25);
  border-radius: 4px;
  padding: 1px 6px;
  letter-spacing: 0.06em;
}

/* Portal body: sidebar + main */
.portal-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 380px;
}

/* Sidebar */
.portal-sidebar {
  background: #0d1a2b;
  border-right: 1px solid rgba(67,240,195,0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portal-brand-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(220,240,255,0.85);
  padding: 0 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}
.portal-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43f0c3;
  box-shadow: 0 0 6px #43f0c3;
  animation: pp-pulse 2s ease-in-out infinite;
}
@keyframes pp-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.portal-nav-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}
.portal-nav-item {
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.73rem;
  color: rgba(150,190,240,0.55);
  cursor: default;
  transition: background 0.15s;
}
.portal-nav-item.active {
  background: rgba(67,240,195,0.1);
  color: #43f0c3;
  font-weight: 600;
}

/* Main area */
.portal-main {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #0b1628;
}

.portal-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.portal-greeting {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(220,240,255,0.9);
  margin: 0 0 2px;
}
.portal-sub {
  font-size: 0.72rem;
  color: rgba(120,160,210,0.55);
  margin: 0;
}
.portal-status-all-ok {
  font-size: 0.72rem;
  font-weight: 700;
  color: #43f0c3;
  background: rgba(67,240,195,0.08);
  border: 1px solid rgba(67,240,195,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Stat strip */
.portal-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.portal-stat-cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.portal-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}
.portal-stat-num.green { color: #43f0c3; }
.portal-stat-num.teal { color: #4dd9f5; }
.portal-stat-num.amber { color: #f59e0b; }
.portal-stat-num.blue { color: #60a5fa; }
.portal-stat-lbl {
  font-size: 0.65rem;
  color: rgba(120,160,210,0.5);
  line-height: 1.3;
}

/* Two-column: machine list + activity feed */
.portal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.portal-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(100,150,200,0.5);
  margin-bottom: 10px;
}

/* Machine list */
.portal-machine-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
}
.portal-machine-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem;
}
.portal-machine-row:last-child { border-bottom: none; }
.machine-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.machine-dot.green { background: #43f0c3; box-shadow: 0 0 4px #43f0c3; }
.machine-dot.amber { background: #f59e0b; box-shadow: 0 0 4px #f59e0b; }
.machine-name {
  flex: 1;
  color: rgba(200,225,255,0.75);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
}
.machine-status {
  font-size: 0.66rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 1px 6px;
}
.machine-status.ok {
  color: #43f0c3;
  background: rgba(67,240,195,0.08);
}
.machine-status.alert {
  color: #f59e0b;
  background: rgba(245,158,11,0.12);
}

/* Activity feed */
.portal-activity-feed {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
}
.portal-event-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.68rem;
}
.portal-event-row:last-child { border-bottom: none; }
.portal-event-time {
  color: rgba(100,140,190,0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem;
  flex-shrink: 0;
  padding-top: 1px;
}
.portal-event-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
  padding: 1px 5px;
  flex-shrink: 0;
}
.portal-event-tag.blocked {
  color: #f87171;
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.2);
}
.portal-event-tag.usb-tag {
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
}
.portal-event-tag.synced {
  color: #43f0c3;
  background: rgba(67,240,195,0.08);
  border: 1px solid rgba(67,240,195,0.15);
}
.portal-event-desc {
  color: rgba(160,200,240,0.7);
  line-height: 1.45;
}

/* Caption row below the mockup */
.portal-caption-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 28px auto 0;
  max-width: 860px;
  flex-wrap: wrap;
}
.portal-caption-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(140,180,230,0.65);
  flex: 1;
  min-width: 200px;
}
.portal-cap-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA row */
.portal-cta-row {
  text-align: center;
  margin-top: 32px;
}

/* Responsive: hide sidebar on small screens, stack stat cells */
@media (max-width: 760px) {
  .portal-body {
    grid-template-columns: 1fr;
  }
  .portal-sidebar {
    display: none;
  }
  .portal-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .portal-stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .portal-caption-row {
    flex-direction: column;
    gap: 12px;
  }
}
/* ─── end Portal Preview Section ─────────────────────────────────────── */

/* ============================================================
   PLAN QUIZ SECTION
   ============================================================ */
.plan-quiz-section {
  background: var(--surface);
}

.plan-quiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: #0b1628;
  border: 1px solid rgba(67,240,195,0.18);
  border-radius: 14px;
  padding: 2rem 2.5rem 2.5rem;
  box-shadow: 0 0 32px rgba(67,240,195,0.06);
}

.quiz-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quiz-step {
  border: none;
  padding: 0;
  margin: 0;
}

.quiz-q {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #10203a;
  border: 1.5px solid rgba(100,116,139,0.35);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  color: #94a3b8;
  font-size: 0.92rem;
  user-select: none;
}

.quiz-opt:hover {
  border-color: rgba(67,240,195,0.45);
  color: #e2e8f0;
  background: #122036;
}

.quiz-opt input[type=radio] {
  accent-color: var(--green);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.quiz-opt:has(input:checked) {
  border-color: var(--green);
  background: rgba(67,240,195,0.08);
  color: #43f0c3;
  box-shadow: 0 0 0 3px rgba(67,240,195,0.12);
}

/* Quiz result panel */
.quiz-result {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(67,240,195,0.2);
  padding-top: 2rem;
  animation: quiz-result-in 0.38s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes quiz-result-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.quiz-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.quiz-result-plan {
  font-size: 1.85rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

.quiz-result-plan em {
  font-style: normal;
  color: var(--green);
}

.quiz-result-why {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 480px;
  margin: 0;
  line-height: 1.55;
}

.quiz-result-cta {
  margin-top: 0.5rem;
  padding: 0.7rem 2rem;
}

.quiz-reset-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-top: 0.25rem;
}

.quiz-reset-link:hover {
  color: #94a3b8;
}

@media (max-width: 560px) {
  .plan-quiz-card {
    padding: 1.5rem 1.25rem 2rem;
  }
  .quiz-options {
    flex-direction: column;
  }
  .quiz-result-plan {
    font-size: 1.5rem;
  }
}


/* ============================================================
   7-Day Trial Journey Timeline
   ============================================================ */
.seven-days-section {
  padding-block: 5rem 4rem;
}

.seven-days-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
}

/* connector line on wide screens */
@media (min-width: 900px) {
  .seven-days-rail {
    grid-template-columns: repeat(6, 1fr);
  }
  .seven-days-rail::before {
    content: "";
    position: absolute;
    top: 38px;
    left: calc(50% / 6);
    right: calc(50% / 6);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(67,240,195,0.25) 15%, rgba(67,240,195,0.25) 85%, transparent);
    pointer-events: none;
    z-index: 0;
  }
}

.day-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 1.4rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  z-index: 1;
}

.day-card:hover {
  border-color: rgba(67,240,195,0.35);
  box-shadow: 0 4px 28px rgba(67,240,195,0.09);
}

.day-card-cta {
  border-color: rgba(67,240,195,0.3);
  background: linear-gradient(135deg, rgba(67,240,195,0.07), var(--panel));
  box-shadow: 0 0 0 1px rgba(67,240,195,0.18), 0 6px 32px rgba(67,240,195,0.1);
}

.day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 28px;
  border-radius: 8px;
  background: rgba(83,184,255,0.12);
  border: 1px solid rgba(83,184,255,0.3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.day-badge-final {
  background: rgba(67,240,195,0.14);
  border-color: rgba(67,240,195,0.4);
  color: var(--green);
  box-shadow: 0 0 10px rgba(67,240,195,0.18);
}

.day-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.day-card p {
  margin: 0;
  font-size: 0.865rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.day-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.25rem;
  align-self: flex-start;
}

.day-tag-green {
  background: rgba(67,240,195,0.1);
  color: #43f0c3;
  border: 1px solid rgba(67,240,195,0.25);
}

.day-tag-blue {
  background: rgba(83,184,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(83,184,255,0.25);
}

.day-tag-teal {
  background: rgba(67,240,195,0.08);
  color: #7ff8e0;
  border: 1px solid rgba(67,240,195,0.2);
}

.seven-days-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  text-align: center;
}

.seven-days-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .seven-days-rail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}



/* ── ROI Calculator Section ─────────────────────────────── */
.roi-calc-section {
  background: linear-gradient(160deg, #081522 0%, #0a1f38 100%);
  border-top: 1px solid rgba(67,240,195,0.18);
  border-bottom: 1px solid rgba(67,240,195,0.12);
  padding: 4rem 2rem;
}
.roi-calc-inner {
  max-width: 960px;
  margin: 0 auto;
}
.roi-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.5rem;
}
.roi-heading {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #e8eaf6;
  margin: 0 0 2rem;
  line-height: 1.3;
}
.roi-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 700px) {
  .roi-body { grid-template-columns: 1fr; gap: 1.75rem; }
}
.roi-input-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.roi-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.roi-step-btn {
  background: rgba(67,240,195,0.08);
  border: 1px solid rgba(67,240,195,0.28);
  color: var(--green);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  line-height: 1;
}
.roi-step-btn:hover { background: rgba(67,240,195,0.18); border-color: var(--green); }
.roi-count {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: #e8eaf6;
  font-size: 1.3rem;
  font-weight: 700;
  width: 84px;
  text-align: center;
  padding: 0.35rem;
  transition: border-color 0.18s;
}
.roi-count:focus { outline: none; border-color: var(--green); }
.roi-input-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}
.roi-vs-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.roi-vs-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.roi-vs-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.roi-vs-num {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
}
.roi-green { color: var(--green); }
.roi-red   { color: #f87171; }
.roi-vs-sub {
  font-size: 0.68rem;
  color: var(--muted);
}
.roi-vs-divider {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.2rem 0.45rem;
  align-self: center;
}
.roi-ratio-callout {
  background: rgba(67,240,195,0.06);
  border: 1px solid rgba(67,240,195,0.2);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.roi-callout-line {
  font-size: 0.88rem;
  color: #c8daf0;
  line-height: 1.45;
}
.roi-callout-line strong.roi-green { color: var(--green); }
.roi-callout-sub { color: var(--muted); font-size: 0.82rem; }
.roi-callout-sub strong { color: #e8eaf6; }
.roi-footnote {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.roi-cta-btn { font-size: 0.9rem; }
.roi-fn-note {
  font-size: 0.75rem;
  color: var(--muted);
}
/* ── end ROI Calculator ─────────────────────────────────── */

/* ── Pricing-at-a-Glance Ribbon ─────────────────────────── */
.price-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(90deg, rgba(10,25,50,0.95) 0%, rgba(8,20,44,0.97) 100%);
  border-top: 1px solid rgba(0,220,130,0.12);
  border-bottom: 1px solid rgba(0,220,130,0.12);
}
.price-ribbon-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.price-ribbon-plans {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-ribbon-plan {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
a.price-ribbon-plan {
  text-decoration: none;
  color: inherit;
}
.price-ribbon-plan:hover {
  border-color: rgba(0,220,130,0.5);
  transform: translateY(-1px);
  background: rgba(0,220,130,0.08);
  box-shadow: 0 2px 10px rgba(0,220,130,0.12);
}
.price-ribbon-plan.featured {
  border-color: rgba(0,220,130,0.3);
  background: rgba(0,220,130,0.06);
}
a.price-ribbon-plan.featured:hover {
  border-color: rgba(0,220,130,0.7);
  background: rgba(0,220,130,0.12);
  box-shadow: 0 2px 16px rgba(0,220,130,0.2);
}
.price-ribbon-plan .plan-name {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.price-ribbon-plan .plan-amt {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-ribbon-plan .plan-period {
  font-size: 0.65rem;
  color: var(--muted);
}
.price-ribbon-plan .plan-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--green);
  color: #000;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
}
.price-ribbon-divider {
  color: rgba(255,255,255,0.15);
  font-size: 1rem;
  select: none;
}
.price-ribbon-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px rgba(0,220,130,0.3);
}
.price-ribbon-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(0,220,130,0.5);
}
.price-ribbon-guarantee {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
}
.price-ribbon-guarantee strong {
  color: rgba(255,255,255,0.7);
}
@media (max-width: 700px) {
  .price-ribbon {
    justify-content: center;
    padding: 0.75rem 1rem;
  }
  .price-ribbon-label, .price-ribbon-guarantee {
    display: none;
  }
}
/* ── end Pricing-at-a-Glance Ribbon ─────────────────────── */

/* ── AV Stack Compatibility Strip ──────────────────────────────── */
.av-stack-section {
  background: linear-gradient(180deg, rgba(0,212,180,0.04) 0%, rgba(10,17,38,0.0) 100%);
  border-top: 1px solid rgba(67,240,195,0.10);
  border-bottom: 1px solid rgba(67,240,195,0.08);
  padding: 2rem 1.5rem 1.75rem;
}
.av-stack-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.av-stack-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.av-stack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.av-badge {
  display: inline-block;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(67,240,195,0.18);
  background: rgba(67,240,195,0.05);
  color: rgba(210,225,240,0.80);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
}
.av-badge:hover {
  border-color: rgba(67,240,195,0.45);
  background: rgba(67,240,195,0.10);
  color: #d2e1f0;
}
.av-stack-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 480px) {
  .av-badge { font-size: 0.74rem; padding: 0.28rem 0.65rem; }
  .av-stack-section { padding: 1.5rem 1rem 1.25rem; }
}

/* ── Per-day price micro-label ───────────────────────────────────────────── */
.price-per-day {
  display: block;
  margin-top: 4px;
  margin-bottom: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  opacity: 0.85;
}
.price-per-day::before {
  content: '=\00a0';
  color: var(--muted);
  font-weight: 400;
}

/* === Shield card emoji icons + stops line (added auto-improve 2026-04-19) === */
.threat-icon {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
}
.shield-stops {
  display: block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(67, 240, 195, 0.07);
  border-left: 2px solid rgba(67, 240, 195, 0.38);
  color: rgba(199, 242, 255, 0.65);
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.4;
}
.shield-new-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(67, 240, 195, 0.18);
  border: 1px solid rgba(67, 240, 195, 0.4);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ── Mini testimonial pull-quote strip ───────────────────────────────── */
.mini-quote-strip {
  background: rgba(13, 27, 47, 0.72);
  border-top: 1px solid rgba(67, 240, 195, 0.14);
  border-bottom: 1px solid rgba(67, 240, 195, 0.14);
  padding: 18px 24px;
  text-align: center;
}
.mini-quote-strip blockquote {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-style: italic;
  color: rgba(199, 242, 255, 0.88);
  line-height: 1.55;
  position: relative;
}
.mini-quote-strip blockquote::before {
  content: '\201C';
  font-size: 2.4rem;
  color: var(--green);
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 3px;
  opacity: 0.7;
  font-style: normal;
}
.mini-quote-strip blockquote::after {
  content: '\201D';
  font-size: 2.4rem;
  color: var(--green);
  line-height: 0;
  vertical-align: -0.45em;
  margin-left: 3px;
  opacity: 0.7;
  font-style: normal;
}
.mini-quote-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.mini-quote-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.mini-quote-byline {
  font-size: 0.82rem;
  color: rgba(199, 242, 255, 0.5);
}
.mini-quote-byline strong {
  color: rgba(199, 242, 255, 0.78);
  font-weight: 600;
}

/* ── Rotating mini-testimonial slides ───────────────────────────── */
.mq-slides {
  display: grid;
  max-width: 680px;
  margin: 0 auto;
}
.mq-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.mq-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.mq-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 13px;
}
.mq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(67,240,195,0.22);
  border: 1px solid rgba(67,240,195,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
.mq-dot.active {
  background: rgba(67,240,195,0.78);
  transform: scale(1.25);
}
.mq-dot:focus-visible {
  outline: 2px solid rgba(67,240,195,0.7);
  outline-offset: 2px;
}

/* ── Data Privacy Commitment Strip ─────────────────────────────── */
.data-privacy-strip {
  background: linear-gradient(135deg, rgba(0,18,32,0.92) 0%, rgba(0,30,45,0.88) 100%);
  border-top: 1px solid rgba(67,240,195,0.18);
  border-bottom: 1px solid rgba(67,240,195,0.18);
  padding: 2.8rem 2rem;
}
.data-privacy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.2rem 2.8rem;
  align-items: start;
}
.data-privacy-headline {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 0.2rem;
}
.data-privacy-headline .section-label {
  display: block;
  margin-bottom: 0.5rem;
}
.data-privacy-headline h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text);
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.data-privacy-headline p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.data-privacy-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
}
.data-privacy-col.col-never {
  border-color: rgba(239,68,68,0.25);
  background: rgba(239,68,68,0.04);
}
.data-privacy-col.col-only {
  border-color: rgba(67,240,195,0.25);
  background: rgba(67,240,195,0.04);
}
.data-privacy-col.col-infra {
  border-color: rgba(96,165,250,0.22);
  background: rgba(96,165,250,0.04);
}
.data-privacy-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.col-never .data-privacy-col-title { color: #f87171; }
.col-only  .data-privacy-col-title { color: var(--green); }
.col-infra .data-privacy-col-title { color: #93c5fd; }
.data-privacy-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.data-privacy-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
}
.data-privacy-col ul li .dp-icon {
  flex-shrink: 0;
  margin-top: 0.05em;
  font-style: normal;
  font-size: 0.95rem;
}
.col-never ul li .dp-icon { color: #f87171; }
.col-only  ul li .dp-icon { color: var(--green); }
.col-infra ul li .dp-icon { color: #93c5fd; }
.data-privacy-footer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.data-privacy-footer a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(67,240,195,0.4);
}
.data-privacy-footer a:hover { border-color: var(--green); }
@media (max-width: 720px) {
  .data-privacy-inner {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .data-privacy-strip { padding: 2rem 1.2rem; }
}

/* ── Stripe payment-confidence badge (added auto-improve 2026-04-21) ──────── */
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.32em;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0.78;
  text-decoration: none;
}
.stripe-badge .sb-lock {
  font-size: 0.8rem;
  opacity: 0.9;
}
.stripe-badge strong {
  color: rgba(99, 179, 237, 0.85);
  font-weight: 600;
}
.price-ribbon-stripe {
  display: block;
  font-size: 0.67rem;
  color: rgba(67, 240, 195, 0.55);
  letter-spacing: 0.03em;
  margin-top: 0.28rem;
  text-align: center;
  white-space: nowrap;
}

/* ======================================================
   PERSONA CARD CTA BUTTON
   ====================================================== */
.persona-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  letter-spacing: 0.02em;
}
.persona-cta:hover,
.persona-cta:focus-visible {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 12px rgba(67,240,195,0.45);
  transform: translateY(-1px);
}
.persona-card-featured .persona-cta {
  background: rgba(67,240,195,0.12);
  box-shadow: 0 0 8px rgba(67,240,195,0.18);
}
.persona-card-featured .persona-cta:hover,
.persona-card-featured .persona-cta:focus-visible {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 16px rgba(67,240,195,0.55);
}

/* ======================================================
   CUSTOMER FIT / SELF-QUALIFICATION PANEL
   ====================================================== */
.fit-check-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.fit-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 820px) {
  .fit-check-grid {
    grid-template-columns: 1fr;
  }
}
.fit-check-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.6rem 1.6rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fit-check-card:hover {
  transform: translateY(-2px);
}
.fit-check-yes {
  border-color: rgba(67, 240, 195, 0.32);
  background: linear-gradient(180deg, rgba(67, 240, 195, 0.04) 0%, rgba(67, 240, 195, 0.015) 100%);
}
.fit-check-yes:hover {
  border-color: rgba(67, 240, 195, 0.55);
  box-shadow: 0 6px 22px -10px rgba(67, 240, 195, 0.45);
}
.fit-check-no {
  border-color: rgba(99, 179, 237, 0.28);
  background: linear-gradient(180deg, rgba(99, 179, 237, 0.035) 0%, rgba(99, 179, 237, 0.012) 100%);
}
.fit-check-no:hover {
  border-color: rgba(99, 179, 237, 0.5);
  box-shadow: 0 6px 22px -10px rgba(99, 179, 237, 0.4);
}
.fit-check-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.fit-check-header h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
}
.fit-check-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.fit-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fit-check-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}
.fit-check-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.fit-check-yes .fit-check-list li::before {
  background: var(--green, #43f0c3);
  box-shadow: 0 0 6px rgba(67, 240, 195, 0.6);
}
.fit-check-no .fit-check-list li::before {
  background: rgba(99, 179, 237, 0.7);
  box-shadow: 0 0 5px rgba(99, 179, 237, 0.45);
}
.fit-check-list li strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}
.fit-check-footnote {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

/* ── FAQ Filter Controls (search + category pills) ─────────────────────── */
.faq-controls {
  max-width: 880px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.faq-search-icon {
  position: absolute;
  left: 16px;
  font-size: 1.05rem;
  color: var(--green, #43f0c3);
  pointer-events: none;
  opacity: 0.85;
}
.faq-search {
  width: 100%;
  padding: 14px 18px 14px 42px;
  border-radius: 12px;
  border: 1px solid rgba(67, 240, 195, 0.22);
  background: rgba(8, 18, 30, 0.6);
  color: #e8f4f0;
  font: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.faq-search::placeholder { color: rgba(232, 244, 240, 0.42); }
.faq-search:focus {
  border-color: rgba(67, 240, 195, 0.55);
  box-shadow: 0 0 0 3px rgba(67, 240, 195, 0.12);
  background: rgba(8, 22, 34, 0.85);
}
.faq-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(67, 240, 195, 0.18);
  background: rgba(8, 18, 30, 0.55);
  color: #c8d8d2;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 160ms ease;
}
.faq-pill:hover {
  border-color: rgba(67, 240, 195, 0.42);
  color: #e8f4f0;
}
.faq-pill--active {
  border-color: rgba(67, 240, 195, 0.65);
  background: rgba(67, 240, 195, 0.12);
  color: var(--green, #43f0c3);
  box-shadow: 0 0 0 1px rgba(67, 240, 195, 0.18) inset;
}
.faq-pill-count {
  display: inline-block;
  min-width: 20px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(67, 240, 195, 0.16);
  color: var(--green, #43f0c3);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.faq-pill--active .faq-pill-count {
  background: rgba(8, 18, 30, 0.6);
  color: var(--green, #43f0c3);
}
.faq-item[hidden] { display: none !important; }
.faq-empty {
  margin: 6px 0 0;
  text-align: center;
  color: rgba(232, 244, 240, 0.7);
  font-size: 0.92rem;
}
.faq-empty-reset {
  background: none;
  border: 1px solid rgba(67, 240, 195, 0.4);
  color: var(--green, #43f0c3);
  padding: 4px 12px;
  margin-left: 8px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  transition: all 160ms ease;
}
.faq-empty-reset:hover {
  background: rgba(67, 240, 195, 0.12);
  border-color: rgba(67, 240, 195, 0.7);
}
@media (max-width: 600px) {
  .faq-search { font-size: 0.92rem; padding-left: 38px; }
  .faq-pill { font-size: 0.8rem; padding: 7px 12px; }
}
/* ── end FAQ Filter Controls ──────────────────────────────────────────── */

/* ââ Scroll Progress Indicator ââââââââââââââââââââââââââââââââââââââââââ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(7, 17, 31, 0.55);
  z-index: 100;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #43f0c3 0%, #53b8ff 100%);
  box-shadow: 0 0 12px rgba(67, 240, 195, 0.55), 0 0 4px rgba(83, 184, 255, 0.4);
  border-radius: 0 2px 2px 0;
  transition: width 80ms linear;
  will-change: width;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress-bar { transition: none; }
}
/* ââ end Scroll Progress Indicator ââââââââââââââââââââââââââââââââââ */

/* ── Install Demo (animated terminal) ──────────────────────────────────── */
.install-demo-section { padding-block: clamp(40px, 8vw, 80px); }
.install-demo-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .install-demo-wrap { grid-template-columns: 1fr; }
}
.term-window {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #060d18;
  border: 1px solid rgba(67, 240, 195, 0.18);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.02), 0 0 40px -10px rgba(67, 240, 195, 0.18);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #0e1828 0%, #0a1320 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.term-dot-r { background: #ff5f57; }
.term-dot-y { background: #ffbd2e; }
.term-dot-g { background: #28c941; }
.term-title {
  margin-left: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.term-body {
  margin: 0;
  padding: 18px 22px 22px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(220, 232, 245, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
  flex: 1;
  overflow: hidden;
}
.term-line {
  display: block;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.term-line.shown { opacity: 1; transform: translateY(0); }
.term-prompt .tp { color: #43f0c3; font-weight: 600; }
.term-prompt .tc { color: #f5f9ff; }
.term-info { color: rgba(220, 232, 245, 0.82); }
.term-info .tok { color: #43f0c3; font-weight: 600; }
.term-info .tw { color: #ffd479; }
.term-success {
  color: #43f0c3;
  font-weight: 600;
  margin-top: 4px;
  text-shadow: 0 0 10px rgba(67, 240, 195, 0.35);
}
.term-time { color: rgba(220, 232, 245, 0.65); font-size: 0.82rem; }
.term-time strong { color: #f5f9ff; }
.term-bar-line { color: rgba(220, 232, 245, 0.85); }
.term-progress {
  display: inline-block;
  width: 240px;
  max-width: 60%;
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(67, 240, 195, 0.18);
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
}
.term-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #43f0c3 0%, #53b8ff 100%);
  box-shadow: 0 0 10px rgba(67, 240, 195, 0.55);
  transition: width 1.6s ease-in-out;
}
.term-bar-line.shown .term-progress-fill { width: 100%; }
.term-overlay {
  position: absolute;
  top: 14px;
  right: 16px;
  pointer-events: none;
}
.term-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(67, 240, 195, 0.12);
  color: #43f0c3;
  border: 1px solid rgba(67, 240, 195, 0.25);
}
.term-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43f0c3;
  box-shadow: 0 0 8px rgba(67, 240, 195, 0.8);
  animation: termPulse 1.6s ease-in-out infinite;
}
@keyframes termPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.install-demo-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 6px;
}
.install-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(20, 38, 60, 0.35);
  border: 1px solid rgba(67, 240, 195, 0.10);
}
.install-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43f0c3 0%, #53b8ff 100%);
  color: #07111f;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 14px rgba(67, 240, 195, 0.35);
}
.install-step-text { display: flex; flex-direction: column; gap: 2px; }
.install-step-text strong { color: #f5f9ff; font-size: 0.96rem; }
.install-step-text span { color: rgba(220, 232, 245, 0.72); font-size: 0.86rem; line-height: 1.45; }
.install-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #43f0c3 0%, #53b8ff 100%);
  color: #07111f;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px -16px rgba(67, 240, 195, 0.65);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.install-demo-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -14px rgba(67, 240, 195, 0.85);
}
.install-demo-note {
  margin: 4px 2px 0;
  font-size: 0.78rem;
  color: rgba(220, 232, 245, 0.6);
  line-height: 1.5;
}
@media (prefers-reduced-motion: reduce) {
  .term-line { opacity: 1; transform: none; transition: none; }
  .term-bar-line .term-progress-fill { width: 100%; transition: none; }
  .term-status-dot { animation: none; }
}
/* ── end Install Demo ──────────────────────────────────────────────────── */



/* ── Buyer Concerns / Honest Answers ─────────────────────────────────── */
.buyer-concerns-section {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
.bcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.bcs-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(15, 25, 41, 0.92) 0%, rgba(8, 15, 28, 0.92) 100%);
  border: 1px solid rgba(67, 240, 195, 0.18);
  box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.55);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.bcs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #43f0c3 0%, #53b8ff 100%);
  opacity: 0.55;
  transition: opacity 200ms ease;
}
.bcs-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 240, 195, 0.4);
  box-shadow: 0 24px 48px -22px rgba(67, 240, 195, 0.25);
}
.bcs-card:hover::before { opacity: 1; }
.bcs-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(67, 240, 195, 0.12);
  border: 1px solid rgba(67, 240, 195, 0.25);
  margin-bottom: 14px;
}
.bcs-q {
  font-size: 1.04rem;
  color: #f5f9ff;
  margin: 0 0 10px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.bcs-a {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(220, 232, 245, 0.78);
  margin: 0;
}
.bcs-footer {
  margin-top: 30px;
  text-align: center;
}
.bcs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(67, 240, 195, 0.4);
  background: rgba(67, 240, 195, 0.08);
  color: #43f0c3;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, transform 160ms ease, border-color 200ms ease;
}
.bcs-cta:hover {
  background: rgba(67, 240, 195, 0.14);
  border-color: rgba(67, 240, 195, 0.65);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .bcs-grid { grid-template-columns: 1fr; }
  .bcs-card { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .bcs-card { transition: none; }
  .bcs-cta { transition: none; }
}
/* ── end Buyer Concerns ──────────────────────────────────────────────── */

/* ── Price Perspective Band ──────────────────────────────────────── */
.price-perspective-band {
  padding: 56px 0;
}
.ppb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(67, 240, 195, 0.10), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(83, 184, 255, 0.10), transparent 60%),
    var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.ppb-headline {
  text-align: center;
  margin-bottom: 28px;
}
.ppb-headline .section-label {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}
.ppb-headline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  color: var(--text);
}
.ppb-grid {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ppb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(7, 17, 31, 0.55);
  border: 1px solid rgba(121, 220, 255, 0.10);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.ppb-card:hover {
  transform: translateY(-2px);
  border-color: rgba(121, 220, 255, 0.22);
  background: rgba(7, 17, 31, 0.80);
}
.ppb-emoji {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 4px;
}
.ppb-cost {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.ppb-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.35;
}
.ppb-card-aiwall {
  background: linear-gradient(135deg, rgba(67, 240, 195, 0.12), rgba(83, 184, 255, 0.10));
  border-color: rgba(67, 240, 195, 0.40);
  box-shadow: 0 0 0 1px rgba(67, 240, 195, 0.10), 0 12px 32px rgba(67, 240, 195, 0.10);
}
.ppb-card-aiwall .ppb-cost-feat {
  color: var(--green);
  font-size: 1.6rem;
}
.ppb-card-aiwall .ppb-label {
  color: var(--text);
  font-weight: 500;
}
.ppb-footer {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 760px) {
  .ppb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .ppb-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ppb-card { transition: none; }
}
/* ── end Price Perspective Band ──────────────────────────────────── */

/* ===== Pricing card polish (2026-04-29) ===== */
/* Green checkmark bullets in price cards (consistency with #compare-plans table) */
.price-card ul {
  list-style: none;
  padding-left: 0;
  margin: 22px 0 28px;
}
.price-card ul li {
  position: relative;
  padding-left: 26px;
  color: #d6e7f8;
  line-height: 1.45;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(67, 240, 195, 0.15);
  border: 1px solid rgba(67, 240, 195, 0.4);
}
.price-card ul li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #43f0c3;
  border-bottom: 2px solid #43f0c3;
  transform: rotate(45deg);
}
.price-card.featured ul li::before {
  background: rgba(67, 240, 195, 0.22);
  border-color: rgba(67, 240, 195, 0.55);
}

/* Comparison focus: dim siblings on card hover, lift the focused one */
@media (hover: hover) and (min-width: 720px) {
  .pricing-grid:hover .price-card {
    transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    opacity: 0.55;
    filter: saturate(0.85);
  }
  .pricing-grid .price-card:hover {
    opacity: 1;
    filter: saturate(1.05);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(67, 240, 195, 0.16),
                0 0 0 1px rgba(67, 240, 195, 0.35);
  }
}
/* ===== /Pricing card polish ===== */

/* ─── Quick Confidence Checklist strip (May 4 2026) ─────────────────────── */
.quick-check-strip {
  background: rgba(67, 240, 195, 0.04);
  border-top: 1px solid rgba(67, 240, 195, 0.13);
  border-bottom: 1px solid rgba(67, 240, 195, 0.13);
  padding: 0.9rem 1.5rem;
}

.quick-check-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.qc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 1.6rem;
  flex: 1;
  min-width: 210px;
}

.qc-check {
  color: var(--green, #43f0c3);
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
  text-shadow: 0 0 8px rgba(67, 240, 195, 0.5);
}

.qc-label {
  display: block;
  color: #dde6f0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.18rem;
}

.qc-desc {
  display: block;
  color: var(--muted, #8899aa);
  font-size: 0.77rem;
  line-height: 1.45;
}

.qc-divider {
  width: 1px;
  height: 2.6rem;
  background: rgba(67, 240, 195, 0.14);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .quick-check-inner {
    flex-direction: column;
    gap: 0;
  }
  .qc-divider {
    display: none;
  }
  .qc-item {
    padding: 0.45rem 0.4rem;
    width: 100%;
  }
}

/* ─── Mid-page CTA strip ───────────────────────────────────────────── */
.midpage-cta-strip {
  background: linear-gradient(90deg, rgba(67,240,195,0.06) 0%, rgba(83,184,255,0.06) 100%);
  border-top: 1px solid rgba(67, 240, 195, 0.18);
  border-bottom: 1px solid rgba(67, 240, 195, 0.18);
  padding: 2rem 1.5rem;
  text-align: center;
}
.midpage-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.midpage-cta-headline {
  color: #dde6f0;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.midpage-cta-btn {
  font-size: 1rem !important;
  padding: 0.8rem 2.2rem !important;
}
.midpage-cta-sub {
  color: var(--muted, #8899aa);
  font-size: 0.8rem;
  margin: 0;
}
@media (max-width: 640px) {
  .midpage-cta-headline { font-size: 0.96rem; }
  .midpage-cta-btn { font-size: 0.93rem !important; padding: 0.7rem 1.4rem !important; }
}
/* ─── /Mid-page CTA strip ───────────────────────────────────────────── */
/* ─── Cyber Insurance Ready section ─────────────────────────── */
.cyber-ins-section {
  background: linear-gradient(145deg, #061120 0%, #0b1a30 100%);
  border-top: 1px solid rgba(83, 184, 255, 0.15);
  border-bottom: 1px solid rgba(83, 184, 255, 0.15);
}
.cyber-ins-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.cyber-ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin: 0.5rem 0 2rem;
}
.cyber-ins-card {
  background: rgba(13, 27, 47, 0.72);
  border: 1px solid rgba(83, 184, 255, 0.18);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.cyber-ins-card:hover {
  border-color: rgba(83, 184, 255, 0.38);
  box-shadow: 0 6px 28px rgba(83, 184, 255, 0.1);
}
.cyber-ins-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.cyber-ins-card strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}
.cyber-ins-card span {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.cyber-ins-checklist {
  background: rgba(83, 184, 255, 0.05);
  border: 1px solid rgba(83, 184, 255, 0.15);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.cyber-ins-checklist-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 1rem;
}
.cyber-ins-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}
.cic-yes {
  color: var(--green);
  font-weight: 700;
  margin-right: 0.35rem;
}
.cyber-ins-cta-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cyber-ins-cta-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 640px) {
  .cyber-ins-grid { grid-template-columns: 1fr; }
  .cyber-ins-checks { gap: 0.5rem 1.25rem; font-size: 0.83rem; }
  .cyber-ins-checklist { padding: 1.25rem 1rem; }
}

/* ── Returning-visitor quick-start bar ────────────────────────────── */
.retvis-bar {
  background: linear-gradient(135deg, rgba(67,240,195,.07) 0%, rgba(83,184,255,.07) 100%);
  border: 1px solid rgba(67,240,195,.3);
  border-radius: 10px;
  padding: 1.2rem 2.5rem 1.2rem 1.5rem;
  margin: 0 0 2rem;
  position: relative;
  animation: retvisFadeIn .45s ease-out;
}
@keyframes retvisFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.retvis-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.retvis-eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: .25rem;
}
.retvis-msg {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
}
.retvis-copy { flex: 1 1 200px; }
.retvis-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.retvis-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .55rem 1.1rem;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.retvis-starter {
  border: 1px solid rgba(67,240,195,.4);
  color: var(--green);
  background: rgba(67,240,195,.06);
}
.retvis-starter:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(67,240,195,.2);
  border-color: rgba(67,240,195,.7);
}
.retvis-business {
  border: 1px solid rgba(67,240,195,.6);
  color: #fff;
  background: linear-gradient(135deg, rgba(67,240,195,.18), rgba(83,184,255,.18));
  box-shadow: 0 0 10px rgba(67,240,195,.15);
}
.retvis-business:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 16px rgba(67,240,195,.3);
}
.retvis-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.retvis-price small {
  font-size: .7rem;
  font-weight: 400;
  color: var(--muted);
}
.retvis-pop {
  position: absolute;
  top: -9px;
  right: 5px;
  font-size: .6rem;
  font-weight: 700;
  background: var(--green);
  color: #0a1628;
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
}
.retvis-guarantee {
  width: 100%;
  font-size: .7rem;
  color: var(--muted);
  margin: .5rem 0 0;
}
.retvis-close {
  position: absolute;
  top: .6rem;
  right: .75rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  padding: .2rem .35rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.retvis-close:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
}
@media (max-width: 600px) {
  .retvis-inner { flex-direction: column; align-items: flex-start; }
  .retvis-guarantee { text-align: left; }
}

/* ── Social Proof Notification Toast ─────────────────────────────────── */
.sp-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  background: #161d2e;
  border: 1px solid rgba(99,179,237,0.18);
  border-left: 3px solid #43f0c3;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  max-width: 270px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
  user-select: none;
}
.sp-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sp-toast-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43f0c3 0%, #63b3ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a1628;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sp-toast-body {
  font-size: 0.77rem;
  line-height: 1.4;
  min-width: 0;
}
.sp-toast-name {
  font-weight: 600;
  color: #e2e8f0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-toast-action {
  color: #a0aec0;
  display: block;
  margin-top: 0.15rem;
}
.sp-toast-time {
  color: #43f0c3;
  font-size: 0.69rem;
  display: block;
  margin-top: 0.25rem;
  opacity: 0.85;
}
@media (max-width: 479px) {
  .sp-toast { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .sp-toast { transition: none; }
}

/* ── Trial Glance Card ────────────────────────────────────────────────── */
.trial-glance-card {
  position: relative;
  background: linear-gradient(135deg, #0f1c2e 0%, #111e35 100%);
  border: 1px solid rgba(67,240,195,.18);
  border-radius: 14px;
  padding: 1.75rem 2rem 1.5rem;
  max-width: 520px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
}
.tg-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #43f0c3, #63b3ed);
  border-radius: 14px 14px 0 0;
}
.tg-header {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
.tg-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(67,240,195,.12);
  border: 1.5px solid rgba(67,240,195,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #43f0c3;
  flex-shrink: 0;
}
.tg-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
}
.tg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.tg-list li {
  font-size: .9rem;
  color: #a0aec0;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  line-height: 1.4;
}
.tg-check {
  color: #43f0c3;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.tg-cta {
  display: block;
  width: 100%;
  padding: .75rem 1.25rem;
  background: linear-gradient(90deg, #43f0c3, #63b3ed);
  color: #0a1628;
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .18s, transform .15s;
}
.tg-cta:hover {
  opacity: .92;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .trial-glance-card { padding: 1.4rem 1.25rem 1.25rem; margin-top: 2rem; }
  .tg-title { font-size: 1rem; }
}

/* ── Direct checkout shortcut strip (trial section) ─────────────── */
.direct-checkout-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 22px 22px 18px;
  margin-bottom: 28px;
  text-align: center;
}

.dcs-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}

.dcs-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.dcs-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  color: #d1d9e6;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.14s ease;
  min-width: 130px;
}

.dcs-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}

.dcs-plan {
  font-weight: 700;
  font-size: 0.95rem;
}

.dcs-price {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}

.dcs-price small {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

.dcs-popular {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #60a5fa;
  font-weight: 700;
}

.dcs-btn-featured {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
  color: #fff;
}

.dcs-btn-featured:hover {
  background: rgba(59,130,246,0.28);
  border-color: rgba(59,130,246,0.65);
}

.dcs-btn-featured .dcs-price {
  color: #93c5fd;
}

.dcs-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  margin: 0 0 16px;
}

.dcs-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.28);
  font-size: 0.75rem;
}

.dcs-divider::before,
.dcs-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 560px) {
  .dcs-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .dcs-btn {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 14px;
    min-width: unset;
  }
}

/* share-eval-strip */
.share-eval-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.2rem 0 1rem;
  padding: .75rem 1rem;
  background: var(--green-soft, rgba(67,240,195,.08));
  border: 1px solid rgba(67,240,195,.25);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--muted);
}
.share-eval-icon { font-size: 1.1rem; flex-shrink: 0; }
.share-eval-text { flex: 1; min-width: 0; line-height: 1.4; }
.share-eval-btn {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .35rem .9rem;
  background: var(--green);
  color: #07111f;
  font-weight: 700;
  font-size: .8rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s;
}
.share-eval-btn:hover { opacity: .85; }

/* ── Promo Bar ────────────────────────────────────────────────────────────── */
#promo-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #1e3a8a 100%);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  padding: 9px 48px 9px 16px;
  position: relative;
  z-index: 200;
  overflow: hidden;
  transition: height 0.28s ease, opacity 0.28s ease, padding-top 0.28s ease, padding-bottom 0.28s ease, border-bottom-width 0.28s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.35;
}
.pb-text {
  opacity: 0.88;
  transition: opacity 0.3s ease;
}
.pb-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.pb-link:hover { color: #bfdbfe; text-decoration: underline; }
#promo-bar-dismiss {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.15s;
}
#promo-bar-dismiss:hover { color: #fff; }
@media (max-width: 560px) {
  #promo-bar { font-size: 0.74rem; padding: 8px 40px 8px 10px; }
}
/* ── end Promo Bar ──────────────────────────────────────────────────────────── */

/* ── Industry Reality Strip ─────────────────────────────────────────────────── */
.industry-stats-strip {
  background: rgba(13, 27, 47, 0.6);
  border-top: 1px solid rgba(121, 220, 255, 0.12);
  border-bottom: 1px solid rgba(121, 220, 255, 0.12);
  padding: 2.2rem 0;
}
.industry-stats-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.industry-stats-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(156, 183, 213, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
}
.industry-stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}
.industry-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem 2rem;
  flex: 1;
  min-width: 160px;
}
.industry-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(121, 220, 255, 0.16);
  flex-shrink: 0;
}
.is-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #53b8ff 0%, #43f0c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.is-text {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.35;
}
.is-source {
  font-size: 0.7rem;
  color: rgba(156, 183, 213, 0.55);
  font-style: normal;
}
@media (max-width: 768px) {
  .industry-stats-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .industry-stats-grid { gap: 0.5rem; }
  .industry-stat { padding: 0.5rem 1rem; min-width: 120px; }
  .industry-stat-divider { display: none; }
  .is-number { font-size: 1.4rem; }
}
/* ── end Industry Reality Strip ─────────────────────────────────────────────── */

/* ── Attack Scenario Strip ───────────────────────────────────────────────────── */
.attack-scenarios {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 2rem 1.5rem 1.5rem;
}
.as-header {
  text-align: center;
  margin-bottom: 2rem;
}
.as-header .section-label {
  display: block;
  margin-bottom: 0.4rem;
}
.as-header p {
  color: var(--text);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}
.as-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.as-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.as-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.as-shield-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  align-self: flex-start;
}
.as-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
  line-height: 1.3;
}
.as-setup {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}
.as-stop {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}
.as-stop-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #4ade80;
  margin-bottom: 0.35rem;
}
.as-stop p {
  font-size: 0.82rem;
  color: rgba(156, 183, 213, 0.85);
  line-height: 1.45;
  margin: 0;
}
.as-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(156, 183, 213, 0.55);
  margin-top: 1.5rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .as-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .as-grid { grid-template-columns: 1fr; }
}
/* ── end Attack Scenario Strip ───────────────────────────────────────────────── */

/* ── post-FAQ CTA row ─────────────────────────────────────────────────────────── */
.faq-cta-row {
  text-align: center;
  padding: 2.5rem 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.faq-cta-prompt {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary, #e8f4f0);
  margin: 0;
  max-width: 520px;
}
.faq-cta-btn {
  min-width: 220px;
}
.faq-cta-sub {
  font-size: 0.82rem;
  color: var(--text-secondary, rgba(232,244,240,0.6));
  margin: 0;
}
/* ── end post-FAQ CTA row ────────────────────────────────────────────────────── */

/* ── Post-testimonial conversion strip ─────────────────────────────────────── */
.post-tquote-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(59,130,246,0.25);
  border-bottom: 1px solid rgba(59,130,246,0.25);
  padding: 28px 24px;
}
.ptq-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ptq-copy { flex: 1; min-width: 200px; }
.ptq-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 4px;
  line-height: 1.3;
}
.ptq-sub { font-size: 0.85rem; color: #94a3b8; margin: 0; }
.ptq-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.ptq-btn { white-space: nowrap; }
.ptq-price { font-size: 0.9rem; color: #94a3b8; white-space: nowrap; }
.ptq-price span { font-size: 0.78rem; color: #64748b; }
@media (max-width: 600px) {
  .ptq-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ptq-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* ── end post-testimonial conversion strip ─────────────────────────────────── */

/* ================================================
   Mobile Sticky Checkout Bar
   Appears after scrolling past hero on small screens
   ================================================ */
.mobile-checkout-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(4, 16, 29, 0.97);
  border-top: 1px solid rgba(83, 184, 255, 0.22);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-checkout-bar.mcb-visible { display: flex; }
@media (min-width: 641px) {
  .mobile-checkout-bar { display: none !important; }
}
.mcb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 9px 8px;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s;
}
.mcb-btn:active { opacity: 0.8; }
.mcb-starter {
  background: rgba(83, 184, 255, 0.10);
  border: 1px solid rgba(83, 184, 255, 0.26);
  color: var(--text);
}
.mcb-business {
  background: var(--blue);
  color: #04101d;
}
.mcb-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.92;
  line-height: 1;
  margin-bottom: 2px;
}
.mcb-plan {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mcb-price {
  font-size: 1.05rem;
  font-weight: 800;
}
.mcb-mo {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.72;
}
.mcb-sep {
  width: 1px;
  background: rgba(83, 184, 255, 0.14);
  flex-shrink: 0;
  align-self: stretch;
}
/* ── end mobile-checkout-bar ──────────────────────────────────────────────── */

/* ── midpage-cta next-steps micro-flow ── added by auto-improve ──────────── */
.midpage-next-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.mns-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(67,240,195,0.14);
  border-radius: 10px;
  min-width: 0;
  flex: 1 1 160px;
}
.mns-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(67,240,195,0.12);
  border: 1px solid rgba(67,240,195,0.3);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
}
.mns-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.mns-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e8f4f0;
  white-space: nowrap;
}
.mns-detail {
  font-size: 0.65rem;
  color: var(--muted);
  white-space: nowrap;
}
.mns-arrow {
  font-size: 0.85rem;
  color: rgba(67,240,195,0.4);
  padding: 0 0.35rem;
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 680px) {
  .midpage-next-steps { flex-direction: column; gap: 0.5rem; }
  .mns-arrow { transform: rotate(90deg); }
  .mns-step { flex: 1 1 auto; width: 100%; max-width: 320px; }
  .mns-title, .mns-detail { white-space: normal; }
}
/* ── end midpage-cta next-steps micro-flow ──────────────────────────────── */

/* ── Attack-Stopped Timeline (ats-section) – added by auto-improve ───────── */
.ats-section {
  background: var(--bg-soft);
}
.ats-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 2rem;
  align-items: start;
  margin: 2.5rem auto 0;
  max-width: var(--max);
}
.ats-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--panel-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 3.2rem;
  background: var(--panel);
}
.ats-lane {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ats-lane-bad  { border-color: rgba(255, 101, 135, 0.22); background: rgba(255, 101, 135, 0.04); }
.ats-lane-good { border-color: rgba(67, 240, 195, 0.22); background: rgba(67, 240, 195, 0.04); }
.ats-lane-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--panel-border);
}
.ats-lane-bad  .ats-lane-header { color: var(--danger); border-bottom-color: rgba(255,101,135,0.18); }
.ats-lane-good .ats-lane-header { color: var(--green); border-bottom-color: rgba(67,240,195,0.18); }
.ats-lane-icon { font-size: 1.1rem; }
.ats-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ats-event {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  position: relative;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.ats-lane-good .ats-event {
  transform: translateX(14px);
}
.ats-split.ats-visible .ats-event { opacity: 1; transform: translateX(0); }

/* Staggered delays per event */
.ats-e1 { transition-delay: 0.05s; }
.ats-e2 { transition-delay: 0.28s; }
.ats-e3 { transition-delay: 0.50s; }
.ats-e4 { transition-delay: 0.72s; }
.ats-e5 { transition-delay: 0.94s; }

.ats-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  border: 2px solid transparent;
}
.ats-event-bad  .ats-dot { background: rgba(255,101,135,0.25); border-color: var(--danger); }
.ats-event-good .ats-dot { background: rgba(67,240,195,0.22); border-color: var(--green); }

/* Connecting line between dots */
.ats-event:not(:last-child) .ats-dot::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 22px;
  width: 2px;
  height: calc(100% - 10px);
  opacity: 0.18;
}
.ats-event-bad .ats-dot::after  { background: var(--danger); }
.ats-event-good .ats-dot::after { background: var(--green); }

.ats-event-body { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; }
.ats-moment {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: 'Menlo', 'Consolas', monospace;
}
.ats-event-bad  .ats-moment { color: var(--danger); }
.ats-event-good .ats-moment { color: var(--green); }
.ats-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

.ats-outcome {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 1.2s, transform 0.4s ease 1.2s;
}
.ats-split.ats-visible .ats-outcome { opacity: 1; transform: translateY(0); }
.ats-outcome-bad  { background: rgba(255,101,135,0.09); border: 1px solid rgba(255,101,135,0.22); }
.ats-outcome-good { background: rgba(67,240,195,0.09); border: 1px solid rgba(67,240,195,0.22); }
.ats-outcome-icon { font-size: 1.1rem; }
.ats-outcome-bad  .ats-outcome-icon { color: var(--danger); }
.ats-outcome-good .ats-outcome-icon { color: var(--green); }
.ats-outcome strong { font-size: 0.88rem; font-weight: 800; }
.ats-outcome-bad  strong { color: #ffd6df; }
.ats-outcome-good strong { color: #c8fff4; }
.ats-outcome-source { font-size: 0.7rem; color: var(--muted); }

.ats-cta-row {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.ats-cta-note { font-size: 0.78rem; color: var(--muted); margin: 0; }

@media (max-width: 760px) {
  .ats-split {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
  .ats-vs {
    margin: 0 auto;
    width: 32px; height: 32px;
    font-size: 0.65rem;
  }
}
/* ── end Attack-Stopped Timeline ───────────────────────────────────────────── */

/* ─── final-close direct checkout row ─────────────────────── */
.fc-direct-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.fc-direct-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.fc-direct-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 32px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  min-width: 160px;
}

.fc-direct-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.fc-direct-featured {
  background: rgba(67,240,195,0.1);
  border-color: rgba(67,240,195,0.4);
  position: relative;
}

.fc-direct-featured:hover {
  background: rgba(67,240,195,0.16);
  border-color: rgba(67,240,195,0.65);
}

.fc-btn-pop {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-btn-plan {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.fc-btn-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.fc-btn-price small {
  font-size: 0.75em;
  font-weight: 400;
}

.fc-stripe-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.fc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 24px;
  max-width: 340px;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

.fc-divider::before,
.fc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.fc-divider span {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .fc-direct-row {
    flex-direction: column;
    align-items: center;
  }
  .fc-direct-btn {
    width: 100%;
    max-width: 280px;
  }
}
