@charset "UTF-8";
/* patrolone-deploy-marker-css: 20260407-verify */
/* ===========================================
   HERO
   =========================================== */

.hero {
  background: var(--gradient-hero);
  color: var(--text-on-dark);
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

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

.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero p { color: var(--text-on-dark-muted); }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content { display: flex; flex-direction: column; gap: 20px; }

.hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  background: linear-gradient(135deg, #34D399, #5EEAD4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: var(--text-subtitle);
  color: var(--text-on-dark-muted);
  max-width: 44ch;
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-small);
  color: var(--text-on-dark-muted);
}
.hero__trust-icon { width: 16px; height: 16px; color: #34D399; }

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__mascot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__mascot {
  width: 340px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 40px rgba(16,185,129,0.2));
}

.hero__glow {
  position: absolute;
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(52,211,153,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero__chip { position: absolute; pointer-events: auto; }
.hero__chip--1 { top: 6%; left: -55px; }
.hero__chip--2 { top: 42%; right: -75px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-size: var(--text-small);
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chip__dot--green  { background: #34D399; box-shadow: 0 0 8px #34D399; }
.chip__dot--blue   { background: #60A5FA; box-shadow: 0 0 8px #60A5FA; }
.chip__dot--amber  { background: #FBBF24; box-shadow: 0 0 8px #FBBF24; }

/* ===========================================
   HERO ROTATING CHIP (Protection carousel)
   =========================================== */

.hero__chip--3 { bottom: 10%; left: -45px; }

.chip--rotate {
  min-width: 170px;
  justify-content: flex-start;
}

.chip__rotate-text {
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  display: inline-block;
}

.chip__rotate-text.is-fading {
  opacity: 0;
  transform: translateY(-6px);
}

.chip__dot--rotate {
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

/* ===========================================
   MARQUEE TICKER
   =========================================== */

.marquee {
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: var(--text-small);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  flex-shrink: 0;
}

.marquee--enterprise {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee--enterprise .marquee__dot {
  background: linear-gradient(135deg, #34D399, #60A5FA);
}

/* ===========================================
   STATS BAR
   =========================================== */

.stats { padding: 64px 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-grid);
  text-align: center;
}

.stats__item { padding: 16px; }

.stats__number {
  font-family: var(--font-heading);
  font-size: var(--text-stat);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats__number--gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats__label {
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 500;
}

/* ===========================================
   FEATURES GRID (Colorful Cards)
   =========================================== */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: none;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card--blue    { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.feature-card--blue::before    { background: var(--gradient-primary); }
.feature-card--green   { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.feature-card--green::before   { background: var(--accent-emerald); }
.feature-card--amber   { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.feature-card--amber::before   { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.feature-card--violet  { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.feature-card--violet::before  { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.feature-card--red     { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.feature-card--red::before     { background: #EF4444; }
.feature-card--crimson { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.feature-card--crimson::before { background: linear-gradient(135deg, #E11D48, #BE123C); }
.feature-card--sky     { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); }
.feature-card--sky::before     { background: linear-gradient(135deg, #38BDF8, #3B82F6); }

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}
.feature-card__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================================
   SHIELD SHOWCASE
   =========================================== */

.shield-section { overflow: hidden; }

.shield__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.shield__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.shield__img {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(16,185,129,0.2));
}

.shield__glow {
  position: absolute;
  width: 360px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(13,148,136,0.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.shield__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shield__features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.shield__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}
.shield__feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.shield__feature-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.shield__feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.shield__feature p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================================
   APP SCREENS SHOWCASE
   =========================================== */

.screens__showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 40px 0;
}

.showcase__phone {
  flex-shrink: 0;
}

.device-frame--showcase {
  width: 280px;
}

.device-frame--showcase .device-frame__screen {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  position: relative;
}

.showcase-carousel {
  position: absolute;
  inset: 0;
}

.showcase-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-carousel__slide--active {
  opacity: 1;
}

.showcase__info {
  max-width: 420px;
}

.showcase__feature {
  display: none;
  animation: showcaseFadeIn 0.4s ease;
}

.showcase__feature--active {
  display: block;
}

@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.showcase__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.showcase__feature-icon svg {
  width: 24px;
  height: 24px;
}

.showcase__feature-icon--emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.showcase__feature-icon--blue {
  background: rgba(59,130,246,0.12);
  color: #3b82f6;
}

.showcase__feature-icon--violet {
  background: rgba(139,92,246,0.12);
  color: #8b5cf6;
}

.showcase__feature-icon--amber {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
}

.showcase__feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.showcase__feature-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.showcase__dots {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.showcase__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.showcase__dot:hover {
  border-color: var(--accent-emerald);
}

.showcase__dot--active {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  transform: scale(1.25);
}

/* ===========================================
   HOW IT WORKS
   =========================================== */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.step__number {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

.step__connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 16px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-emerald) 0,
    var(--accent-emerald) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.35;
  z-index: 1;
}
.step__number--1 { background: var(--gradient-primary); }
.step__number--2 { background: var(--gradient-sky); }
.step__number--3 { background: var(--gradient-violet); }

.step__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.step__desc { color: var(--text-secondary); max-width: 30ch; }

/* ===========================================
   PRICING
   =========================================== */

.pricing__header { text-align: center; margin-bottom: 48px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border: 2px solid var(--accent-emerald);
  box-shadow: var(--shadow-glow-emerald);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: var(--accent-emerald-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-small);
  color: var(--text-secondary);
}

.pricing-card__check {
  width: 18px; height: 18px;
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; }

.pricing-card--enterprise {
  border-top: 3px solid var(--accent-violet);
}
.pricing-card--enterprise:hover {
  box-shadow: var(--shadow-glow-violet);
}

/* ===========================================
   CTA (Bottom)
   =========================================== */

.cta {
  background: var(--gradient-cta);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: var(--text-on-dark-muted); margin: 0 auto 36px; max-width: 50ch; }

.cta__glow {
  position: absolute;
  width: 600px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(52,211,153,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta__mascot {
  width: 110px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(16,185,129,0.2));
}

.cta__stores {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--text-small);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.store-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-badge__label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* ===========================================
   STORY: YOUR PHONE AT 3 AM
   =========================================== */

.story-section {
  overflow: hidden;
  background: var(--bg-dark);
}

/* Deep glow centered on artwork, fading to section bg (same idea as hero gradient) */
.story-section.story-landing {
  position: relative;
  background:
    radial-gradient(
      ellipse 95% 88% at 28% 50%,
      #000 0%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.18) 62%,
      transparent 82%
    ),
    var(--bg-dark);
}

.story-section.story-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Two-column story + nightly report (image blends on flat bg) */
.story-landing__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.story-landing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.story-landing__figure {
  margin: 0;
}

.story-landing__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.story-landing__col--panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.story-landing__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-on-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.story-landing__title-accent {
  display: inline-block;
  color: #7dd3fc;
  text-shadow: 0 0 40px rgba(125, 211, 252, 0.35);
}

.story-landing__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  max-width: 34rem;
}

.story-landing__lead strong {
  color: rgba(255, 255, 255, 0.95);
}

.story-landing__report-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-report-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
}

.story-report-point__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.story-report-point__icon svg {
  width: 18px;
  height: 18px;
}

.story-report-point__text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 4px;
}

.story-report-point__text strong {
  font-weight: 600;
  color: #fff;
}

.story-landing__footnote {
  margin: 4px 0 0;
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 34rem;
}

.story-landing__footnote strong {
  color: rgba(255, 255, 255, 0.9);
}

.story-landing__cta {
  margin-top: 8px;
}

.story-landing .reveal[data-delay="1"] { transition-delay: 200ms; }
.story-landing .reveal[data-delay="2"] { transition-delay: 450ms; }
.story-landing .reveal[data-delay="3"] { transition-delay: 700ms; }
.story-landing .reveal[data-delay="4"] { transition-delay: 950ms; }

.story__lines {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.story__line {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-on-dark);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.3;
}

.story__line--dim {
  color: var(--text-on-dark-muted);
}

.story__line--accent {
  color: var(--accent-emerald);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.story__cta { text-align: center; }

.story-section .reveal[data-delay="1"] { transition-delay: 200ms; }
.story-section .reveal[data-delay="2"] { transition-delay: 600ms; }
.story-section .reveal[data-delay="3"] { transition-delay: 1000ms; }
.story-section .reveal[data-delay="4"] { transition-delay: 1400ms; }
.story-section .reveal[data-delay="5"] { transition-delay: 1800ms; }
.story-section .reveal[data-delay="6"] { transition-delay: 2400ms; }

/* ===========================================
   DASHBOARD PREVIEW
   =========================================== */

.browser-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  max-width: 960px;
  margin: 0 auto;
  transform: perspective(1200px) rotateX(2deg);
  transition: transform var(--duration-slow) var(--ease-out);
}
.browser-frame:hover {
  transform: perspective(1200px) rotateX(0deg) scale(1.01);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1C1C1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-frame__dots {
  display: flex;
  gap: 6px;
}
.browser-frame__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-frame__dots span:nth-child(1) { background: #FF5F57; }
.browser-frame__dots span:nth-child(2) { background: #FEBC2E; }
.browser-frame__dots span:nth-child(3) { background: #28C840; }

.browser-frame__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.browser-frame__url svg { color: #28C840; flex-shrink: 0; }

.browser-frame__content {
  background: #111116;
  padding: 0;
}

.dash-mock {
  display: flex;
  min-height: 320px;
}

.dash-mock__sidebar {
  width: 56px;
  background: #0D0D12;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.dash-mock__sidebar-logo {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.dash-mock__nav-item {
  width: 32px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.dash-mock__nav-item--active {
  background: var(--accent-emerald);
  box-shadow: 0 0 8px rgba(16,185,129,0.3);
}

.dash-mock__main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-mock__stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-mock__stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}

.dash-mock__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.dash-mock__stat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-mock__table {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.dash-mock__table-header,
.dash-mock__table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.7fr 1fr;
  padding: 10px 14px;
  font-size: 0.72rem;
  align-items: center;
}

.dash-mock__table-header {
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-mock__table-row {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-mock__table-row:last-child { border-bottom: none; }

.dash-mock__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dash-mock__badge--green {
  background: rgba(16,185,129,0.15);
  color: #34D399;
}
.dash-mock__badge--amber {
  background: rgba(245,158,11,0.15);
  color: #FBBF24;
}
.dash-mock__badge--red {
  background: rgba(239,68,68,0.15);
  color: #F87171;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
}

.testimonial-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 4px solid transparent;
  transition: all var(--duration-normal) var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.testimonial-card--emerald { border-left-color: var(--accent-emerald); }
.testimonial-card--violet  { border-left-color: var(--accent-violet); }
.testimonial-card--blue    { border-left-color: var(--accent-blue); }

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
}
.testimonial-card__stars svg {
  width: 16px; height: 16px;
}

.testimonial-card__quote {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: var(--border-light);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__avatar--emerald { background: var(--gradient-primary); }
.testimonial-card__avatar--violet  { background: var(--gradient-violet); }
.testimonial-card__avatar--blue    { background: var(--gradient-sky); }

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ===========================================
   FOOTER (Multi-column)
   =========================================== */

.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer__brand-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.footer__tagline {
  font-size: var(--text-small);
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  max-width: 30ch;
}
.footer__tagline--sub {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-small);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__link {
  font-size: var(--text-small);
  color: var(--text-on-dark-muted);
  transition: color var(--duration-fast);
}
.footer__link:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }

.footer__cache-flush {
  display: inline-block;
  margin-top: 10px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.42);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__cache-flush:hover { color: rgba(255,255,255,0.78); }

/* ===========================================
   DARK MODE — Section Overrides
   =========================================== */

[data-theme="dark"] .feature-card--blue    { background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(59,130,246,0.12)); }
[data-theme="dark"] .feature-card--green   { background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(16,185,129,0.12)); }
[data-theme="dark"] .feature-card--amber   { background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.12)); }
[data-theme="dark"] .feature-card--violet  { background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(139,92,246,0.12)); }
[data-theme="dark"] .feature-card--red     { background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.12)); }
[data-theme="dark"] .feature-card--crimson { background: linear-gradient(135deg, rgba(225,29,72,0.06), rgba(225,29,72,0.12)); }
[data-theme="dark"] .feature-card--sky     { background: linear-gradient(135deg, rgba(56,189,248,0.06), rgba(56,189,248,0.12)); }

[data-theme="dark"] .feature-card__title { color: var(--text-primary); }

[data-theme="dark"] .shield__feature {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .shield__feature strong {
  color: var(--text-primary);
}

[data-theme="dark"] .story-section {
  background: var(--bg-dark);
}

[data-theme="dark"] .story-section.story-landing {
  background:
    radial-gradient(
      ellipse 95% 88% at 28% 50%,
      #000 0%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.18) 62%,
      transparent 82%
    ),
    var(--bg-dark);
}

[data-theme="dark"] .pricing-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .pricing-card--featured {
  border-color: var(--accent-emerald);
}

[data-theme="dark"] .pricing-card__name,
[data-theme="dark"] .pricing-card__price {
  color: var(--text-primary);
}

[data-theme="dark"] .pricing-card__badge {
  background: rgba(16, 185, 129, 0.14);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.35);
}

[data-theme="dark"] .testimonial-card__name {
  color: var(--text-primary);
}

/* ===========================================
   ENTERPRISE PAGE
   =========================================== */

.ent-hero {
  background: var(--gradient-hero);
  color: var(--text-on-dark);
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.ent-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.ent-hero > .container { position: relative; z-index: 1; }

.ent-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ent-hero__copy {
  text-align: left;
}

.ent-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}

.ent-hero__sub {
  font-size: var(--text-subtitle);
  color: var(--text-on-dark-muted);
  max-width: 44ch;
  margin: 0 0 28px;
  line-height: 1.7;
}

.ent-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.ent-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ent-hero__mascot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 680px);
}

.ent-hero__mascot {
  width: 100%;
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 48px rgba(56, 189, 248, 0.22));
}

.ent-hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ent-hero__chip {
  position: absolute;
  pointer-events: auto;
}

.ent-hero__chip--1 { top: 5%; left: -44px; }
.ent-hero__chip--2 { top: 38%; right: -60px; }
.ent-hero__chip--3 { bottom: 10%; left: -36px; }

.ent-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.ent-hero__stat {
  text-align: center;
}

.ent-hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #34D399, #5EEAD4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.ent-hero__stat-label {
  font-size: var(--text-small);
  color: var(--text-on-dark-muted);
  margin-top: 6px;
}

.ent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
}

.ent-card {
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.ent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.ent-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.ent-card--violet::before  { background: var(--gradient-violet); }
.ent-card--emerald::before { background: var(--gradient-primary); }
.ent-card--blue::before    { background: var(--gradient-sky); }
.ent-card--amber::before   { background: linear-gradient(135deg, #F59E0B, #EF4444); }

.ent-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.ent-card__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.65;
}

.ent-deploy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  counter-reset: deploy-step;
}

.ent-deploy__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.ent-deploy__num {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.ent-deploy__num--1 { background: var(--gradient-violet); }
.ent-deploy__num--2 { background: var(--gradient-primary); }
.ent-deploy__num--3 { background: var(--gradient-sky); }

.ent-deploy__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.ent-deploy__desc {
  color: var(--text-secondary);
  max-width: 28ch;
  margin: 0 auto;
}

.ent-security__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-grid);
}

.ent-security__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}
.ent-security__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.ent-security__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.ent-security__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ent-security__item p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.55;
}

[data-theme="dark"] .ent-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .ent-card__title {
  color: var(--text-primary);
}

[data-theme="dark"] .ent-security__item {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .ent-security__item strong {
  color: var(--text-primary);
}

/* ===========================================
   THREAT INTELLIGENCE
   =========================================== */

.threat-intel-section {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      ellipse 92% 85% at 72% 40%,
      #000 0%,
      rgba(0, 0, 0, 0.52) 40%,
      rgba(0, 0, 0, 0.16) 65%,
      transparent 82%
    ),
    var(--bg-dark);
}

.threat-intel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.threat-intel-section > .container {
  position: relative;
  z-index: 1;
}

.ti-hero {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 48px;
}

.ti-hero__content {
  flex: 1;
}

.ti-hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 520px;
}

.ti-hero__visual {
  flex-shrink: 0;
  width: 300px;
}

.ti-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

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

.ti-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ti-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ti-card--critical { border-left: 3px solid #FB7185; }
.ti-card--high     { border-left: 3px solid #FCA5A5; }
.ti-card--medium   { border-left: 3px solid #FCD34D; }

.ti-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.ti-card__badge--critical { background: rgba(225,29,72,0.15); color: #FB7185; }
.ti-card__badge--high     { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.ti-card__badge--medium   { background: rgba(245,158,11,0.15); color: #FCD34D; }

.ti-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.ti-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.ti-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ti-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ti-stats__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10B981, #0D9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ti-stats__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Light mode */
[data-theme="light"] .ti-hero__lead { color: var(--text-secondary); }
[data-theme="light"] .ti-card { background: rgba(15,23,41,0.03); border-color: rgba(15,23,41,0.1); }
[data-theme="light"] .ti-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
[data-theme="light"] .ti-card--critical { border-left-color: #E11D48; }
[data-theme="light"] .ti-card--high { border-left-color: #EF4444; }
[data-theme="light"] .ti-card--medium { border-left-color: #D97706; }
[data-theme="light"] .ti-card__badge--critical { background: rgba(225,29,72,0.1); color: #BE123C; }
[data-theme="light"] .ti-card__badge--high { background: rgba(239,68,68,0.1); color: #DC2626; }
[data-theme="light"] .ti-card__badge--medium { background: rgba(245,158,11,0.1); color: #B45309; }
[data-theme="light"] .ti-card__title { color: var(--text-primary); }
[data-theme="light"] .ti-card__desc { color: var(--text-secondary); }
[data-theme="light"] .ti-stats { border-top-color: rgba(15,23,41,0.1); }
[data-theme="light"] .ti-stats__label { color: var(--text-secondary); }
