:root {
  --background: #ffffff;
  --foreground: #030712;
  --muted: #64748b;
  --muted-bg: #f8fafc;
  --border: #e2e8f0;
  --dark-button: #030213;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --red: #dc2626;
  --orange: #ea580c;
  --yellow: #ca8a04;
  --purple: #7c3aed;
  --cyan: #0891b2;
  --pink: #db2777;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  color: var(--foreground);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1216px, calc(100% - 48px));
  height: 65px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}

.logo-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.logo-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.logo strong {
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

.menu-toggle,
.menu-button {
  display: none;
}

.nav-links a {
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-demo {
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: #030712 !important;
  padding: 7px 16px;
  font-weight: 600;
}

.nav-sales {
  min-height: 36px;
  border-radius: 8px;
  background: var(--dark-button);
  color: #fff !important;
  padding: 7px 16px;
  font-weight: 600;
}

.hero {
  padding: 128px 0;
  background: #fff;
}

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

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.badge-icon {
  width: 12px;
  height: 12px;
  color: var(--blue);
  stroke-width: 2.25;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 20px;
  line-height: 1.4;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  transition: transform 150ms ease, background 150ms ease, border 150ms ease;
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero-actions .button,
.demo-section .button,
.final-cta .button {
  padding-inline: 32px;
  font-size: 18px;
}

.button:has(.button-icon) {
  padding-inline: 16px;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid var(--dark-button);
  background: var(--dark-button);
  color: #fff;
}

.button.primary:hover {
  background: #111827;
}

.button.secondary,
.button.outline {
  border: 1px solid var(--border);
  background: #fff;
  color: #0f172a;
}

.button.large {
  min-height: 40px;
  padding-inline: 30px;
}

.button.full {
  width: 100%;
}

.button.white {
  border: 1px solid #fff;
  background: #fff;
  color: var(--blue);
}

.button.transparent {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}

.trial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
}

.trial-row span {
  position: relative;
  padding-left: 18px;
}

.trial-row span::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.20), rgba(147, 51, 234, 0.20));
  filter: blur(48px);
}

.hero-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.dashboard-preview {
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.preview-center {
  text-align: center;
}

.preview-score {
  margin-bottom: 8px;
  color: #4ade80;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.preview-label {
  color: #fff;
  font-size: 18px;
}

.preview-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.preview-status-grid strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.card-caption {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

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

.status-grid div {
  border-radius: 12px;
  background: #f8fafc;
  padding: 18px 12px;
  text-align: center;
}

.status-grid strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.status-grid span {
  color: #64748b;
  font-size: 14px;
}

.pass { color: var(--green); }
.fail { color: var(--red); }
.warn { color: var(--yellow); }

.stats-band {
  background: var(--blue);
  color: #fff;
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.problem-section,
.pricing-section {
  background: var(--muted-bg);
  padding: 80px 0;
}

.features-section,
.testimonials-section {
  background: #fff;
  padding: 80px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p,
.demo-section p,
.final-cta p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.6;
}

.three-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.soft-card,
.feature-card,
.testimonial-card,
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.soft-card {
  border-color: #fecaca;
  background: #fef2f2;
  padding: 24px;
  text-align: left;
}

.soft-card p,
.feature-card p,
.testimonial-card span,
.pricing-card p,
.pricing-card li,
.footer p,
.footer a {
  color: #64748b;
}

.footer a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.problem-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--red);
}

.problem-icon svg {
  width: 48px;
  height: 48px;
}

.problem-icon.red,
.problem-icon.orange,
.problem-icon.yellow { background: transparent; color: var(--red); }

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

.feature-card {
  border-width: 2px;
  padding: 24px;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.feature-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--blue);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-icon.blue,
.feature-icon.green,
.feature-icon.purple,
.feature-icon.cyan,
.feature-icon.orange,
.feature-icon.pink { background: transparent; color: var(--blue); }

.demo-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 80px 0;
  color: #fff;
}

.demo-section h2,
.final-cta h2 {
  margin-bottom: 16px;
}

.demo-section h2 {
  color: #fff;
}

.demo-section p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.demo-section .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--dark-button);
}

.testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-card {
  padding: 32px;
}

.testimonial-card p {
  margin-bottom: 24px;
  color: #334155;
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 32px;
}

.pricing-card.popular {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.price {
  display: block;
  margin: 24px 0;
  color: #0f172a;
  font-size: 48px;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.final-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 80px 0;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.final-cta .cta-actions {
  justify-content: center;
  margin: 32px 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px auto 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  text-align: left;
  transition: background 150ms ease, transform 150ms ease, border 150ms ease;
}

.contact-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.contact-card strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.fine-print {
  font-size: 14px !important;
}

.footer {
  background: #0f172a;
  color: #fff;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 16px;
  color: #fff;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 15px;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 24px;
  color: #94a3b8;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-compliance {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-compliance svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 960px) {
  .hero-grid,
  .three-grid,
  .feature-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .menu-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .menu-toggle:checked ~ .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 8px;
    padding: 0 12px;
  }

  .nav-sales {
    justify-content: center;
    margin-top: 6px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container,
  .nav {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    height: auto;
    min-height: 72px;
    padding: 14px 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero,
  .problem-section,
  .features-section,
  .demo-section,
  .testimonials-section,
  .pricing-section,
  .final-cta {
    padding: 64px 0;
  }

  .hero-card {
    padding: 22px;
  }

  .score-ring {
    width: 158px;
    height: 158px;
  }

  .status-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  body {
    background: #fff;
  }

  .container,
  .nav {
    width: calc(100% - 32px);
  }

  .nav {
    min-height: 64px;
    padding: 10px 0;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon,
  .logo-icon img {
    width: 28px;
    height: 28px;
  }

  .logo strong {
    font-size: 18px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    width: 100%;
    padding: 8px;
  }

  .nav-links a {
    min-height: 42px;
  }

  .hero {
    padding: 42px 0 50px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy,
  .demo-section .narrow,
  .final-cta .narrow {
    text-align: left;
  }

  .cert-badge {
    margin-bottom: 14px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  h3 {
    font-size: 18px;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button,
  .hero-actions .button,
  .demo-section .button,
  .final-cta .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .trial-row {
    gap: 10px 14px;
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-card {
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
  }

  .dashboard-preview {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .preview-score {
    font-size: 48px;
  }

  .preview-label {
    font-size: 16px;
  }

  .preview-status-grid {
    gap: 10px;
    margin-top: 18px;
    font-size: 12px;
  }

  .preview-status-grid strong {
    font-size: 20px;
  }

  .card-caption {
    font-size: 12px;
    line-height: 1.4;
  }

  .stats-band {
    padding: 28px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    text-align: left;
  }

  .stats-grid div {
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    padding: 14px;
  }

  .stats-grid strong {
    font-size: 28px;
    line-height: 1.1;
  }

  .stats-grid span {
    font-size: 13px;
    line-height: 1.35;
  }

  .hero,
  .problem-section,
  .features-section,
  .demo-section,
  .testimonials-section,
  .pricing-section,
  .final-cta {
    padding-block: 50px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading p,
  .demo-section p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.55;
  }

  .three-grid,
  .feature-grid,
  .testimonial-grid,
  .pricing-grid {
    gap: 16px;
  }

  .soft-card,
  .feature-card,
  .testimonial-card,
  .pricing-card {
    border-radius: 12px;
    padding: 20px;
  }

  .problem-icon,
  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .problem-icon svg,
  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .testimonial-card p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .price {
    margin: 16px 0;
    font-size: 38px;
  }

  .popular-badge {
    top: -12px;
    padding: 4px 12px;
    font-size: 12px;
  }

  .contact-grid {
    gap: 12px;
    margin-top: 20px;
  }

  .contact-card {
    min-height: 78px;
    border-radius: 10px;
    padding: 14px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }

  .footer-compliance {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  .container,
  .nav {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 34px;
  }

  .preview-score {
    font-size: 42px;
  }
}

/* KubeDefence cyber redesign */
body {
  background: #f5f8ff;
  color: #07111f;
}

.nav-shell {
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.86);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.18);
}

.logo {
  color: #f8fafc;
}

.nav-links {
  color: #cbd5e1;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-demo {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc !important;
}

.nav-sales {
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 112px;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 197, 94, 0.20), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(135deg, #020617 0%, #08111f 46%, #0f172a 100%);
  color: #f8fafc;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.10) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -34%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  box-shadow: inset 0 0 120px rgba(37, 99, 235, 0.18);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.hero h1 {
  max-width: 780px;
  color: #f8fafc;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #60a5fa 0%, #34d399 62%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 620px;
  color: #cbd5e1;
}

.cert-badge {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(15, 23, 42, 0.88);
  color: #bbf7d0;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.16), 0 14px 32px rgba(2, 6, 23, 0.34);
}

.badge-icon {
  color: #22c55e;
}

.hero-actions .button.primary,
.demo-section .button.primary,
.final-cta .button.primary {
  border: 0;
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

.hero-actions .button.secondary {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.74);
  color: #f8fafc;
}

.trial-row {
  color: #cbd5e1;
}

.trial-row span::before {
  color: #34d399;
}

.visual-glow {
  background: linear-gradient(45deg, rgba(34, 197, 94, 0.28), rgba(37, 99, 235, 0.38), rgba(168, 85, 247, 0.24));
  filter: blur(56px);
  animation: visualGlowDrift 8s ease-in-out infinite alternate;
}

.hero-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92));
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.55);
  animation: securityPanelFloat 7s ease-in-out infinite;
}

.security-console {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 24%, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(96, 165, 250, 0.22), transparent 26%),
    #020617;
}

.console-top {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 0 16px;
  color: #cbd5e1;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
}

.console-top span:nth-child(2) {
  background: #f59e0b;
}

.console-top span:nth-child(3) {
  background: #22c55e;
  animation: liveStatusPulse 1.7s ease-in-out infinite;
}

.console-top strong {
  margin-left: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 20px;
}

.graph-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 12px;
  background-image:
    radial-gradient(circle, rgba(96, 165, 250, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.18));
  background-size: 24px 24px, auto;
}

.graph-stage::before,
.graph-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.graph-stage::before {
  z-index: 1;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.18), transparent);
  transform: translateX(-120%) skewX(-14deg);
  animation: graphScanSweep 5.4s ease-in-out infinite;
}

.graph-stage::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(34, 197, 94, 0.14), transparent 34%),
    radial-gradient(circle at 76% 22%, rgba(96, 165, 250, 0.12), transparent 24%);
}

.graph-node,
.graph-pulse {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.graph-node {
  z-index: 3;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(191, 219, 254, 0.34);
  background: rgba(15, 23, 42, 0.92);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.22);
  animation: graphNodeFloat 5.8s ease-in-out infinite;
}

.graph-node.core {
  top: 135px;
  left: calc(50% - 42px);
  width: 84px;
  height: 84px;
  border-color: rgba(52, 211, 153, 0.62);
  background:
    radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.20), transparent 56%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(6, 78, 59, 0.82));
  color: #fff;
  font-size: 18px;
  animation: coreNodePulse 3.4s ease-in-out infinite;
}

.graph-node.core img {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 10px 18px rgba(2, 6, 23, 0.32));
}

.node-a { top: 38px; left: 34px; }
.node-b { top: 76px; right: 34px; animation-delay: -1.2s; }
.node-c { bottom: 42px; left: 54px; animation-delay: -2.1s; }
.node-d { right: 48px; bottom: 50px; animation-delay: -3.2s; }

.graph-line {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
}

.graph-line::after {
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
  content: "";
  animation: tracePacketFlow 2.8s linear infinite;
}

.line-a {
  top: 124px;
  left: 98px;
  width: 185px;
  transform: rotate(28deg);
}

.line-b {
  top: 162px;
  right: 98px;
  width: 170px;
  transform: rotate(-22deg);
}

.line-b::after {
  animation-delay: -0.9s;
}

.line-c {
  bottom: 126px;
  left: 104px;
  width: 270px;
  transform: rotate(-8deg);
}

.line-c::after {
  animation-delay: -1.7s;
}

.graph-pulse {
  z-index: 1;
  top: 111px;
  left: calc(50% - 100px);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(52, 211, 153, 0.32);
  box-shadow: 0 0 70px rgba(34, 197, 94, 0.20);
  animation: graphPulseRing 4.4s ease-in-out infinite;
}

.graph-pulse::before,
.graph-pulse::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: inherit;
  content: "";
}

.graph-pulse::after {
  inset: -18px;
  border-color: rgba(34, 197, 94, 0.12);
  animation: graphPulseEcho 4.4s ease-in-out infinite;
}

.console-side {
  display: grid;
  align-content: stretch;
  gap: 14px;
}

.score-chip,
.threat-card {
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.score-chip small,
.threat-card span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-chip strong {
  display: block;
  margin-top: 8px;
  color: #4ade80;
  font-size: 48px;
  line-height: 1;
  animation: scorePulse 3.6s ease-in-out infinite;
}

.threat-card strong {
  display: block;
  margin-top: 8px;
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.35;
}

.threat-card.blocked {
  border-color: rgba(34, 197, 94, 0.34);
  animation: greenCardSignal 4.8s ease-in-out infinite;
}

.threat-card.blocked span {
  color: #86efac;
}

.threat-card.hot {
  border-color: rgba(248, 113, 113, 0.36);
  animation: redCardSignal 5.2s ease-in-out infinite;
}

.threat-card.hot span {
  color: #fca5a5;
}

.card-caption {
  color: #cbd5e1;
}

@keyframes visualGlowDrift {
  0% { transform: translate3d(-8px, -6px, 0) scale(0.98); opacity: 0.72; }
  100% { transform: translate3d(10px, 8px, 0) scale(1.04); opacity: 0.94; }
}

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

@keyframes liveStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.0); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.16); }
}

@keyframes graphScanSweep {
  0%, 24% { transform: translateX(-130%) skewX(-14deg); opacity: 0; }
  36% { opacity: 1; }
  64% { opacity: 1; }
  78%, 100% { transform: translateX(330%) skewX(-14deg); opacity: 0; }
}

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

@keyframes coreNodePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 34px rgba(34, 197, 94, 0.28), 0 0 70px rgba(37, 99, 235, 0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 46px rgba(34, 197, 94, 0.38), 0 0 86px rgba(37, 99, 235, 0.26);
  }
}

@keyframes tracePacketFlow {
  0% { transform: translateX(-120%); opacity: 0; }
  15%, 78% { opacity: 1; }
  100% { transform: translateX(260%); opacity: 0; }
}

@keyframes graphPulseRing {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes graphPulseEcho {
  0%, 100% { transform: scale(0.96); opacity: 0.22; }
  50% { transform: scale(1.10); opacity: 0.46; }
}

@keyframes scorePulse {
  0%, 100% { text-shadow: 0 0 0 rgba(74, 222, 128, 0); }
  50% { text-shadow: 0 0 22px rgba(74, 222, 128, 0.36); }
}

@keyframes greenCardSignal {
  0%, 100% { box-shadow: inset 0 0 0 rgba(34, 197, 94, 0); }
  50% { box-shadow: inset 0 0 28px rgba(34, 197, 94, 0.08); }
}

@keyframes redCardSignal {
  0%, 100% { box-shadow: inset 0 0 0 rgba(248, 113, 113, 0); }
  50% { box-shadow: inset 0 0 24px rgba(248, 113, 113, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .visual-glow,
  .hero-card,
  .console-top span:nth-child(3),
  .graph-stage::before,
  .graph-node,
  .graph-node.core,
  .graph-line::after,
  .graph-pulse,
  .graph-pulse::after,
  .score-chip strong,
  .threat-card.blocked,
  .threat-card.hot {
    animation: none;
  }
}

.stats-band {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.12)),
    #020617;
}

.stats-grid div {
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.stats-grid div:last-child {
  border-right: 0;
}

.problem-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.soft-card {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.features-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(34, 197, 94, 0.16), transparent 26%),
    #020617;
}

.features-section .section-heading h2,
.features-section h3 {
  color: #f8fafc;
}

.features-section .section-heading p,
.feature-card p {
  color: #cbd5e1;
}

.feature-card {
  border-color: rgba(148, 163, 184, 0.20);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.58));
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.24);
}

.feature-card:hover {
  border-color: rgba(96, 165, 250, 0.60);
  box-shadow: 0 22px 60px rgba(37, 99, 235, 0.22);
}

.feature-icon {
  border: 1px solid rgba(96, 165, 250, 0.26);
  background: rgba(37, 99, 235, 0.14) !important;
  color: #93c5fd !important;
}

.demo-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(15, 23, 42, 0.96)),
    #0f172a;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(34, 197, 94, 0.18);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)),
    #020617;
  color: #f8fafc;
}

.testimonials-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(34, 197, 94, 0.22), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(59, 130, 246, 0.26), transparent 30%),
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px, 46px 46px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.testimonials-section::after {
  position: absolute;
  right: -18%;
  bottom: -48%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.08);
  content: "";
}

.proof-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.46)),
    rgba(2, 6, 23, 0.76);
  padding: 42px;
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.46);
}

.proof-panel::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(148, 163, 184, 0.10);
  border-radius: 22px;
  pointer-events: none;
  content: "";
}

.proof-copy,
.proof-board {
  position: relative;
  z-index: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.11);
  color: #a7f3d0;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-copy h2 {
  max-width: 560px;
  margin: 18px 0 18px;
  color: #f8fafc;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.proof-copy p {
  max-width: 560px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.65;
}

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

.proof-metrics div {
  min-height: 112px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.56));
  padding: 18px;
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  margin-bottom: 10px;
  color: #7dd3fc;
  font-size: 32px;
  line-height: 1;
}

.proof-metrics span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-board {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.20), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.94));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding: 18px 22px;
}

.proof-board-header span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.proof-board-header i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.80);
}

.proof-board-header strong {
  color: #4ade80;
  font-size: 28px;
}

.proof-quote {
  position: relative;
  margin: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.78);
  padding: 24px;
}

.proof-quote::after {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(52, 211, 153, 0.20);
  border-radius: 999px;
  content: "";
}

.quote-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.quote-mark svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.proof-quote p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 24px;
  color: #e2e8f0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.48;
}

.proof-quote strong,
.proof-quote span:not(.quote-mark) {
  display: block;
}

.proof-quote strong {
  color: #f8fafc;
  font-size: 15px;
}

.proof-quote span:not(.quote-mark) {
  margin-top: 4px;
  color: #93a4bd;
  font-size: 14px;
}

.proof-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 22px 22px;
}

.proof-check-grid span {
  min-height: 54px;
  border: 1px solid rgba(96, 165, 250, 0.20);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.10);
  color: #dbeafe;
  display: inline-flex;
  align-items: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 960px) {
  .proof-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .proof-copy h2,
  .proof-copy p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .testimonials-section {
    padding-top: 72px;
    scroll-margin-top: 76px;
  }

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

  .proof-panel::before {
    inset: 10px;
    border-radius: 17px;
  }

  .proof-copy h2 {
    font-size: 32px;
  }

  .proof-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .proof-quote p {
    font-size: 16px;
    line-height: 1.5;
  }

  .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .proof-metrics div {
    min-height: 92px;
    border-radius: 14px;
    padding: 12px 10px;
  }

  .proof-metrics strong {
    font-size: 24px;
  }

  .proof-metrics span {
    font-size: 11px;
    line-height: 1.25;
  }

  .proof-check-grid {
    grid-template-columns: 1fr;
  }

  .proof-board-header,
  .proof-quote {
    margin: 0;
  }

  .proof-board-header {
    align-items: flex-start;
    padding: 16px;
  }

  .proof-board-header strong {
    font-size: 24px;
  }

  .proof-quote {
    border-inline: 0;
    border-radius: 0;
    padding: 18px 16px;
  }

  .quote-mark {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .proof-check-grid {
    gap: 8px;
    padding: 14px 16px 16px;
  }

  .proof-check-grid span {
    min-height: 46px;
  }
}

.pricing-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(96, 165, 250, 0.16);
  border-bottom: 1px solid rgba(34, 197, 94, 0.16);
  background:
    radial-gradient(circle at 14% 0%, rgba(59, 130, 246, 0.22), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(34, 197, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #020617 0%, #08111f 52%, #020617 100%);
}

.pricing-section::before,
.problem-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
}

.problem-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(96, 165, 250, 0.16);
  border-bottom: 1px solid rgba(34, 197, 94, 0.16);
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 68, 68, 0.14), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(37, 99, 235, 0.22), transparent 32%),
    linear-gradient(180deg, #020617 0%, #0b1220 50%, #020617 100%);
}

.problem-section .container,
.pricing-section .container {
  position: relative;
  z-index: 1;
}

.problem-section .section-heading h2,
.pricing-section .section-heading h2 {
  color: #f8fafc;
}

.problem-section .section-heading p,
.pricing-section .section-heading p {
  color: #cbd5e1;
}

.soft-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.62)),
    rgba(2, 6, 23, 0.76);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34);
}

.soft-card::before,
.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #2563eb, #22c55e);
  content: "";
}

.soft-card::after,
.pricing-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 999px;
  content: "";
}

.soft-card h3,
.pricing-card h3 {
  position: relative;
  z-index: 1;
  color: #f8fafc;
}

.soft-card p,
.pricing-card p,
.pricing-card li {
  position: relative;
  z-index: 1;
  color: #cbd5e1;
}

.problem-icon {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(248, 113, 113, 0.30);
  background: rgba(239, 68, 68, 0.10);
  color: #f87171;
}

.problem-icon svg {
  width: 32px;
  height: 32px;
}

.problem-icon.orange {
  border-color: rgba(251, 191, 36, 0.28);
  background: rgba(245, 158, 11, 0.11);
  color: #fbbf24;
}

.problem-icon.yellow {
  border-color: rgba(96, 165, 250, 0.30);
  background: rgba(37, 99, 235, 0.12);
  color: #93c5fd;
}

.price {
  position: relative;
  z-index: 1;
  color: #f8fafc;
}

.pricing-card {
  min-height: 100%;
}

.pricing-card.popular {
  border-color: rgba(96, 165, 250, 0.78);
  padding-top: 42px;
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.18),
    0 28px 86px rgba(37, 99, 235, 0.28);
}

.popular-badge {
  top: 0;
  z-index: 2;
  min-width: 118px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(135deg, #2563eb 0%, #22c55e 100%);
  padding: 4px 18px 6px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.pricing-card .button.outline {
  position: relative;
  z-index: 1;
  border-color: rgba(148, 163, 184, 0.30);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.pricing-card .button.outline:hover {
  border-color: rgba(96, 165, 250, 0.58);
  background: rgba(37, 99, 235, 0.18);
}

.pricing-card .button.primary {
  position: relative;
  z-index: 1;
  border: 0;
  background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.30);
}

.pricing-card li::before {
  color: #34d399;
}

body {
  background: #020617;
  color: #e2e8f0;
}

.problem-section,
.features-section,
.demo-section,
.testimonials-section,
.pricing-section,
.final-cta {
  scroll-margin-top: 80px;
}

.button,
.nav-sales,
.modal-close {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav-sales {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-dialog {
  width: min(760px, calc(100% - 32px));
  border: 1px solid rgba(96, 165, 250, 0.30);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  color: #f8fafc;
  padding: 0;
  box-shadow: 0 34px 120px rgba(2, 6, 23, 0.70);
}

.contact-dialog::backdrop {
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(10px);
}

.contact-modal {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.contact-modal::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.contact-modal > * {
  position: relative;
  z-index: 1;
}

.contact-modal h2 {
  max-width: 560px;
  margin: 18px 0 12px;
  color: #f8fafc;
  font-size: clamp(30px, 4vw, 44px);
}

.contact-modal > p {
  max-width: 580px;
  margin-bottom: 24px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.6;
}

.modal-contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
}

.modal-close:hover {
  border-color: rgba(96, 165, 250, 0.50);
  background: rgba(37, 99, 235, 0.18);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.24), transparent 34%),
    linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.offer-section,
.attack-flow-section,
.direction-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.offer-section,
.direction-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.12), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(37, 99, 235, 0.16), transparent 30%),
    #f8fafc;
}

.attack-flow-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(34, 197, 94, 0.16), transparent 28%),
    radial-gradient(circle at 72% 16%, rgba(96, 165, 250, 0.20), transparent 32%),
    linear-gradient(135deg, #020617 0%, #0f172a 100%);
  color: #e2e8f0;
}

.attack-flow-section h2 {
  color: #f8fafc;
}

.attack-flow-section p {
  color: #cbd5e1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  padding: 24px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.offer-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  content: "";
}

.offer-index {
  display: inline-flex;
  min-width: 42px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(220, 252, 231, 0.86);
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.offer-card h3 {
  color: #0f172a;
}

.offer-card p {
  margin-bottom: 0;
  color: #475569;
}

.attack-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 28px;
  color: #dbeafe;
}

.signal-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(52, 211, 153, 0.56);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  content: "";
}

.signal-list li::after {
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34d399;
  content: "";
}

.path-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.90));
  padding: 22px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
}

.path-step {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  padding: 16px 18px;
  color: #f8fafc;
  font-weight: 800;
  line-height: 1.3;
}

.path-step.internet {
  border-color: rgba(96, 165, 250, 0.40);
  background: rgba(37, 99, 235, 0.14);
}

.path-step.workload {
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(20, 184, 166, 0.12);
}

.path-step.image-risk {
  border-color: rgba(251, 146, 60, 0.42);
  background: rgba(234, 88, 12, 0.12);
}

.path-step.identity {
  border-color: rgba(168, 85, 247, 0.42);
  background: rgba(124, 58, 237, 0.13);
}

.path-step.critical {
  border-color: rgba(248, 113, 113, 0.50);
  background: rgba(220, 38, 38, 0.15);
}

.path-arrow {
  color: #60a5fa;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.roadmap-card {
  min-height: 280px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.roadmap-card span {
  display: inline-flex;
  margin-bottom: 28px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-card.now span {
  background: #dcfce7;
  color: #047857;
}

.roadmap-card.next span {
  background: #dbeafe;
  color: #1d4ed8;
}

.roadmap-card.future span {
  background: #ede9fe;
  color: #6d28d9;
}

.roadmap-card p {
  margin-bottom: 0;
  color: #475569;
}

.goal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.goal-strip span {
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #334155;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}

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

  .offer-grid,
  .attack-flow-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-button {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.72);
  }

  .menu-button span {
    background: #f8fafc;
  }

  .nav-links {
    border-color: rgba(148, 163, 184, 0.20);
    background: rgba(2, 6, 23, 0.96);
  }

  .nav-links button {
    min-height: 44px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 60px 0 64px;
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .graph-stage {
    min-height: 300px;
  }

  .stats-grid div {
    border-right: 0;
  }

  .contact-modal {
    padding: 26px 18px 18px;
  }

  .offer-section,
  .attack-flow-section,
  .direction-section {
    padding: 64px 0;
  }

  .modal-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-modal > p {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 34px 0 44px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .cert-badge {
    max-width: 100%;
    font-size: 11px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-copy,
  .demo-section .narrow,
  .final-cta .narrow {
    text-align: left;
  }

  .hero-card {
    padding: 12px;
  }

  .console-body {
    gap: 12px;
    padding: 12px;
  }

  .console-top {
    min-height: 38px;
    padding-inline: 12px;
  }

  .console-top strong {
    font-size: 11px;
  }

  .graph-stage {
    min-height: 210px;
  }

  .graph-node {
    width: 52px;
    height: 52px;
    font-size: 10px;
  }

  .graph-node.core {
    top: 78px;
    width: 62px;
    height: 62px;
  }

  .graph-node.core img {
    width: 48px;
    height: 48px;
  }

  .node-a { top: 24px; left: 18px; }
  .node-b { top: 42px; right: 20px; }
  .node-c { bottom: 24px; left: 28px; }
  .node-d { right: 26px; bottom: 28px; }

  .graph-pulse {
    top: 64px;
    left: calc(50% - 70px);
    width: 140px;
    height: 140px;
  }

  .line-a,
  .line-b,
  .line-c {
    opacity: 0.72;
  }

  .line-a {
    left: 74px;
    width: 145px;
  }

  .line-b {
    right: 68px;
    width: 130px;
  }

  .line-c {
    left: 76px;
    width: 190px;
  }

  .score-chip strong {
    font-size: 32px;
  }

  .score-chip,
  .threat-card {
    padding: 12px;
  }

  .threat-card strong {
    font-size: 13px;
  }

  .offer-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .roadmap-card {
    min-height: auto;
    padding: 20px;
  }

  .path-card {
    padding: 16px;
  }

  .path-step {
    padding: 14px;
    font-size: 14px;
  }
}

/* Final website polish pass */
.hero {
  padding: 96px 0 88px;
}

.hero-grid {
  gap: 54px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.3vw, 64px);
}

.hero h1 span {
  display: inline;
}

.hero-text {
  font-size: 18px;
  line-height: 1.56;
}

.trial-row {
  gap: 10px;
  margin-top: 18px;
}

.trial-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  padding: 7px 12px 7px 28px;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.16);
}

.offer-section,
.direction-section {
  border-top: 1px solid rgba(96, 165, 250, 0.14);
  border-bottom: 1px solid rgba(34, 197, 94, 0.14);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(37, 99, 235, 0.22), transparent 32%),
    linear-gradient(180deg, #020617 0%, #08111f 56%, #020617 100%);
  color: #e2e8f0;
}

.offer-section .section-heading h2,
.direction-section .section-heading h2 {
  color: #f8fafc;
}

.offer-section .section-heading p,
.direction-section .section-heading p {
  color: #cbd5e1;
}

.offer-card,
.roadmap-card {
  border-color: rgba(148, 163, 184, 0.20);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.62)),
    rgba(2, 6, 23, 0.78);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.34);
}

.offer-card::before,
.roadmap-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #2563eb, #a855f7);
  content: "";
}

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

.offer-card h3,
.roadmap-card h3 {
  color: #f8fafc;
}

.offer-card p,
.roadmap-card p {
  color: #cbd5e1;
}

.goal-strip span {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.76);
  color: #dbeafe;
}

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

@media (max-width: 720px) {
  .hero {
    padding: 42px 0 46px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .trial-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trial-row span {
    width: 100%;
    min-height: 36px;
    font-size: 12px;
    white-space: normal;
  }

  .trial-row span:nth-child(5) {
    display: none;
  }

  .hero-card {
    padding: 10px;
    transform: none;
    animation: none;
  }

  .console-body {
    padding: 12px;
  }

  .graph-stage {
    min-height: 190px;
  }

  .console-side {
    display: none;
  }

  .card-caption {
    display: none;
  }

  .stats-band {
    padding: 18px 0;
  }

  .stats-grid {
    gap: 10px;
  }

  .stats-grid div {
    min-height: 82px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.44);
    padding: 12px;
  }

  .stats-grid strong {
    font-size: 24px;
  }

  .stats-grid span {
    font-size: 12px;
    line-height: 1.35;
  }

  .offer-section,
  .attack-flow-section,
  .direction-section,
  .problem-section,
  .features-section,
  .testimonials-section,
  .pricing-section,
  .demo-section,
  .final-cta {
    padding-block: 46px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .roadmap-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cert-badge {
    padding-right: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .graph-stage {
    min-height: 176px;
  }

  .graph-line {
    opacity: 0.45;
  }
}

/* What-we-offer redesign */
.offer-section {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 197, 94, 0.20), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.26), transparent 34%),
    linear-gradient(135deg, #020617 0%, #071426 52%, #020617 100%);
}

.offer-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.offer-section .container {
  position: relative;
  z-index: 1;
}

.offer-section .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
  text-align: left;
}

.offer-section .section-heading .eyebrow-pill {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.offer-section .section-heading h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.02;
}

.offer-section .section-heading p {
  max-width: 660px;
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.65;
}

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

.offer-card {
  isolation: isolate;
  min-height: 250px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(59, 130, 246, 0.20), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.76));
  padding: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(2, 6, 23, 0.36);
}

.offer-card::before {
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #38bdf8, #2563eb);
}

.offer-card::after {
  z-index: -1;
  right: -58px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border-color: rgba(52, 211, 153, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.18), transparent 62%);
}

.offer-index {
  min-width: 48px;
  height: 32px;
  margin-bottom: 42px;
  border-color: rgba(52, 211, 153, 0.38);
  background: rgba(20, 184, 166, 0.16);
  color: #a7f3d0;
}

.offer-card h3 {
  margin-bottom: 12px;
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.15;
}

.offer-card p {
  max-width: 620px;
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .offer-section .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .offer-section {
    padding: 52px 0;
  }

  .offer-section .section-heading {
    margin-bottom: 22px;
  }

  .offer-section .section-heading h2 {
    font-size: 29px;
  }

  .offer-section .section-heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .offer-card {
    min-height: auto;
    padding: 22px;
  }

  .offer-index {
    margin-bottom: 28px;
  }
}

/* Attack-path section refinement */
.attack-flow-section {
  padding: 96px 0;
  border-top: 1px solid rgba(34, 197, 94, 0.18);
  border-bottom: 1px solid rgba(59, 130, 246, 0.22);
  background:
    radial-gradient(circle at 16% 12%, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(135deg, #020617 0%, #071426 54%, #020617 100%);
  color: #e2e8f0;
}

.attack-flow-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.attack-flow-section .container {
  position: relative;
  z-index: 1;
}

.attack-flow-section h2 {
  max-width: 720px;
  margin: 18px 0;
  color: #f8fafc;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.02;
}

.attack-flow-section p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.65;
}

.attack-flow-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 48px;
}

.path-card {
  position: relative;
  gap: 10px;
  overflow: hidden;
  border-color: rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.88));
  padding: 72px 26px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 84px rgba(2, 6, 23, 0.44);
  counter-reset: attack-hop;
}

.path-card::before {
  position: absolute;
  top: 22px;
  left: 26px;
  color: #93c5fd;
  content: "Live attack path sequence";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.path-card::after {
  position: absolute;
  top: 27px;
  right: 26px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12), 0 0 28px rgba(34, 197, 94, 0.48);
  content: "";
}

.path-step {
  position: relative;
  display: grid;
  min-height: 70px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-color: rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  padding: 14px 18px 14px 14px;
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.path-step > span {
  display: grid;
  gap: 4px;
}

.path-step strong {
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.25;
}

.path-step small {
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.path-step.exfiltration {
  border-color: rgba(244, 114, 182, 0.52);
  background: rgba(157, 23, 77, 0.17);
}

.path-step::before {
  counter-increment: attack-hop;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.32);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #bfdbfe;
  content: counter(attack-hop, decimal-leading-zero);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.path-arrow {
  position: relative;
  height: 18px;
  color: transparent;
  font-size: 0;
}

.path-arrow::before {
  position: absolute;
  left: 29px;
  top: -8px;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.20), rgba(52, 211, 153, 0.72));
  content: "";
}

.path-arrow::after {
  position: absolute;
  left: 24px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #34d399;
  border-bottom: 2px solid #34d399;
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 960px) {
  .attack-flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .attack-flow-section {
    padding: 54px 0;
  }

  .attack-flow-section h2 {
    font-size: 30px;
  }

  .attack-flow-section p {
    font-size: 15px;
    line-height: 1.56;
  }

  .path-card {
    padding: 64px 16px 18px;
  }

  .path-card::before {
    left: 16px;
  }

  .path-step {
    grid-template-columns: 40px 1fr;
    padding-right: 14px;
    font-size: 13px;
  }

  .path-step strong {
    font-size: 14px;
  }

  .path-step small {
    font-size: 11px;
  }
}

/* Colorful product capability icons */
.features-section .feature-icon {
  background: rgba(37, 99, 235, 0.14) !important;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.20);
}

.features-section .feature-icon.blue {
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(37, 99, 235, 0.18) !important;
  color: #93c5fd !important;
}

.features-section .feature-icon.green {
  border-color: rgba(52, 211, 153, 0.48);
  background: rgba(16, 185, 129, 0.18) !important;
  color: #86efac !important;
}

.features-section .feature-icon.purple {
  border-color: rgba(196, 181, 253, 0.50);
  background: rgba(124, 58, 237, 0.20) !important;
  color: #c4b5fd !important;
}

.features-section .feature-icon.cyan {
  border-color: rgba(103, 232, 249, 0.50);
  background: rgba(8, 145, 178, 0.20) !important;
  color: #67e8f9 !important;
}

.features-section .feature-icon.orange {
  border-color: rgba(251, 191, 36, 0.52);
  background: rgba(217, 119, 6, 0.20) !important;
  color: #fbbf24 !important;
}

.features-section .feature-icon.pink {
  border-color: rgba(244, 114, 182, 0.50);
  background: rgba(219, 39, 119, 0.20) !important;
  color: #f9a8d4 !important;
}

.features-section .feature-icon svg {
  filter: drop-shadow(0 0 12px currentColor);
}

/* Mind-map style attack path */
.attack-map-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.16), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(37, 99, 235, 0.30), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.90));
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 84px rgba(2, 6, 23, 0.44);
}

.attack-map-card::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(96, 165, 250, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 78%);
}

.attack-map-title,
.attack-map-canvas,
.attack-map-footer {
  position: relative;
  z-index: 1;
}

.attack-map-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.attack-map-title strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #a7f3d0;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.attack-map-canvas {
  position: relative;
  height: 500px;
}

.attack-node {
  position: absolute;
  display: grid;
  width: 190px;
  min-height: 78px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.88);
  padding: 15px 16px;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.32);
}

.attack-node strong,
.attack-node small {
  display: block;
}

.attack-node strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.2;
}

.attack-node small {
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.attack-node.root {
  top: 205px;
  left: calc(50% - 94px);
  width: 188px;
  min-height: 118px;
  justify-items: center;
  border-color: rgba(52, 211, 153, 0.58);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(34, 197, 94, 0.30), transparent 58%),
    rgba(6, 78, 59, 0.72);
  text-align: center;
  box-shadow:
    0 0 0 12px rgba(34, 197, 94, 0.08),
    0 0 0 26px rgba(37, 99, 235, 0.05),
    0 26px 64px rgba(2, 6, 23, 0.42);
}

.attack-node.ingress {
  top: 30px;
  left: 24px;
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(30, 64, 175, 0.34);
}

.attack-node.service {
  top: 220px;
  left: 12px;
  border-color: rgba(45, 212, 191, 0.48);
  background: rgba(20, 184, 166, 0.18);
}

.attack-node.image {
  right: 34px;
  top: 28px;
  border-color: rgba(251, 146, 60, 0.52);
  background: rgba(154, 52, 18, 0.26);
}

.attack-node.privilege {
  right: 4px;
  top: 218px;
  border-color: rgba(248, 113, 113, 0.52);
  background: rgba(127, 29, 29, 0.30);
}

.attack-node.identity {
  left: 82px;
  bottom: 16px;
  border-color: rgba(196, 181, 253, 0.54);
  background: rgba(76, 29, 149, 0.28);
}

.attack-node.secrets {
  right: 86px;
  bottom: 18px;
  border-color: rgba(244, 114, 182, 0.54);
  background: rgba(131, 24, 67, 0.30);
}

.attack-connector {
  position: absolute;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.16), rgba(52, 211, 153, 0.58));
  transform-origin: left center;
}

.attack-connector::after {
  display: none;
  content: none;
}

.attack-connector.ingress {
  top: 132px;
  left: 194px;
  width: 210px;
  transform: rotate(27deg);
}

.attack-connector.service {
  top: 264px;
  left: 196px;
  width: 215px;
  transform: rotate(-5deg);
}

.attack-connector.image {
  top: 130px;
  left: 392px;
  width: 196px;
  transform: rotate(-27deg);
}

.attack-connector.privilege {
  top: 265px;
  left: 398px;
  width: 208px;
  transform: rotate(4deg);
}

.attack-connector.identity {
  top: 334px;
  left: 217px;
  width: 190px;
  transform: rotate(-27deg);
}

.attack-connector.secrets {
  top: 334px;
  left: 397px;
  width: 176px;
  transform: rotate(27deg);
}

.attack-map-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.attack-map-footer span {
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #dbeafe;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .attack-map-card {
    min-height: auto;
  }

  .attack-map-canvas {
    display: grid;
    height: auto;
    gap: 14px;
  }

  .attack-node,
  .attack-node.root,
  .attack-node.ingress,
  .attack-node.service,
  .attack-node.image,
  .attack-node.privilege,
  .attack-node.identity,
  .attack-node.secrets {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    border-radius: 16px;
    text-align: left;
    justify-items: start;
  }

  .attack-node.root {
    order: -1;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
  }

  .attack-connector {
    display: none;
  }
}

@media (max-width: 520px) {
  .attack-map-card {
    padding: 18px;
  }

  .attack-map-title {
    display: grid;
    gap: 8px;
  }
}

/* Horizontal attack-path analysis card */
.attack-flow-section .attack-flow-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

.attack-flow-section .attack-flow-grid > div:first-child {
  max-width: 920px;
}

.attack-analysis-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.90));
  padding: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 84px rgba(2, 6, 23, 0.44);
}

.attack-analysis-board::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.attack-board-header,
.attack-path-lane,
.attack-remediation,
.attack-mini-path {
  position: relative;
  z-index: 1;
}

.attack-board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.attack-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #bfdbfe;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attack-board-header h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 24px;
  line-height: 1.15;
}

.attack-board-header p {
  margin: 6px 0 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
}

.attack-severity {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.attack-severity.critical {
  background: rgba(248, 113, 113, 0.14);
  color: #fca5a5;
}

.attack-path-lane {
  display: grid;
  grid-template-columns: minmax(110px, 0.65fr) minmax(70px, 0.42fr) minmax(240px, 1.65fr) minmax(86px, 0.48fr) minmax(220px, 1.35fr) minmax(80px, 0.44fr) minmax(210px, 1.16fr);
  gap: 12px;
  align-items: center;
  min-width: 1060px;
}

.attack-resource {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  padding: 14px 16px;
  text-align: center;
}

.attack-resource strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.22;
}

.attack-resource small {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.attack-resource.internet {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(30, 41, 59, 0.48);
}

.attack-resource.service {
  border-color: rgba(96, 165, 250, 0.60);
  background: rgba(37, 99, 235, 0.15);
}

.attack-resource.pod {
  border-color: rgba(248, 113, 113, 0.62);
  background: rgba(127, 29, 29, 0.20);
}

.attack-resource.rbac {
  border-color: rgba(251, 191, 36, 0.66);
  background: rgba(120, 53, 15, 0.22);
}

.attack-edge {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #f87171;
  text-align: center;
}

.attack-edge span {
  color: #f87171;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.attack-edge small {
  max-width: 112px;
  color: #fca5a5;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.attack-remediation {
  margin-top: 28px;
  border: 1px solid rgba(248, 113, 113, 0.18);
  border-radius: 14px;
  background: rgba(127, 29, 29, 0.18);
  padding: 18px 20px;
}

.attack-remediation strong {
  display: block;
  margin-bottom: 10px;
  color: #fecaca;
  font-size: 16px;
}

.attack-remediation ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #fca5a5;
  font-weight: 700;
}

.attack-mini-path {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 28px minmax(190px, 1fr) 28px minmax(190px, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  color: #f8fafc;
}

.attack-mini-path span {
  border: 1px solid rgba(251, 191, 36, 0.44);
  border-radius: 12px;
  background: rgba(120, 53, 15, 0.16);
  padding: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.attack-mini-path i {
  color: #fb7185;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.attack-stage-path {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.16), transparent 46%),
    rgba(11, 17, 33, 0.72);
  padding: 22px;
}

.attack-stage-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 0.9fr) minmax(150px, 1fr);
  gap: 14px;
  align-items: center;
}

.attack-stage-node {
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 5px;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #1e293b;
  padding: 14px 16px;
  text-align: center;
}

.attack-stage-node strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.2;
}

.attack-stage-node small {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.attack-stage-node.internet {
  background: rgba(30, 41, 59, 0.86);
  border-color: rgba(71, 85, 105, 0.78);
}

.attack-stage-node.node {
  background: rgba(23, 37, 84, 0.88);
  border-color: rgba(30, 58, 138, 0.90);
}

.attack-stage-node.pod {
  background: rgba(76, 29, 149, 0.76);
  border-color: rgba(91, 33, 182, 0.88);
}

.attack-stage-node.rbac {
  background: rgba(120, 53, 15, 0.76);
  border-color: rgba(146, 64, 14, 0.88);
}

.attack-stage-edge,
.attack-stage-bridge {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #f87171;
  text-align: center;
}

.attack-stage-edge span,
.attack-stage-bridge span {
  color: #f87171;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.attack-stage-edge small,
.attack-stage-bridge small {
  max-width: 190px;
  color: #fca5a5;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.attack-stage-bridge {
  min-height: 64px;
  align-content: center;
}

.attack-stage-bridge span {
  transform: rotate(-13deg);
}

@media (max-width: 1180px) {
  .attack-analysis-board {
    overflow-x: auto;
  }
}

@media (max-width: 720px) {
  .attack-board-header {
    display: grid;
  }

  .attack-path-lane {
    min-width: 960px;
  }

  .attack-mini-path {
    grid-template-columns: 1fr;
  }

  .attack-mini-path i {
    transform: rotate(90deg);
  }

  .attack-stage-path {
    max-width: none;
    min-width: 620px;
  }
}

/* Simple 6-signal attack path pattern */
.attack-flow-section .simple-attack-layout {
  grid-template-columns: minmax(390px, 0.78fr) minmax(560px, 1fr);
  gap: 56px;
  align-items: center;
}

.attack-flow-section .simple-attack-layout > div {
  min-width: 0;
}

.attack-copy {
  max-width: 640px;
}

.attack-pattern-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 690px);
  margin-left: auto;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.24), transparent 30%),
    rgba(11, 17, 33, 0.76);
  padding: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 84px rgba(2, 6, 23, 0.42);
}

.attack-pattern-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.attack-pattern-header,
.attack-pattern-chain {
  position: relative;
  z-index: 1;
}

.attack-pattern-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.attack-pattern-header span {
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.attack-pattern-header strong {
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #a7f3d0;
  padding: 6px 12px;
  font-size: 12px;
}

.attack-pattern-chain {
  display: grid;
  gap: 18px;
}

.attack-pattern-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.attack-pattern-node {
  display: grid;
  min-height: 106px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  padding: 12px 14px;
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.28);
}

.attack-pattern-node span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(125, 211, 252, 0.30);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #bfdbfe;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
}

.attack-pattern-node strong {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.18;
}

.attack-pattern-node small {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
}

.attack-pattern-node.exposure {
  border-color: rgba(96, 165, 250, 0.52);
  background: rgba(30, 64, 175, 0.24);
}

.attack-pattern-node.route {
  border-color: rgba(45, 212, 191, 0.48);
  background: rgba(20, 184, 166, 0.18);
}

.attack-pattern-node.workload {
  border-color: rgba(52, 211, 153, 0.46);
  background: rgba(6, 78, 59, 0.24);
}

.attack-pattern-node.image {
  border-color: rgba(251, 146, 60, 0.52);
  background: rgba(154, 52, 18, 0.22);
}

.attack-pattern-node.identity {
  border-color: rgba(196, 181, 253, 0.54);
  background: rgba(76, 29, 149, 0.24);
}

.attack-pattern-node.impact {
  border-color: rgba(244, 114, 182, 0.54);
  background: rgba(131, 24, 67, 0.25);
}

.attack-pattern-chain i,
.attack-pattern-chain b {
  color: #34d399;
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

@media (max-width: 980px) {
  .attack-flow-section .simple-attack-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .attack-pattern-card {
    order: 2;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .attack-copy {
    order: 1;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .attack-pattern-card {
    padding: 18px;
  }

  .attack-pattern-header {
    display: grid;
  }

  .attack-pattern-chain {
    gap: 8px;
  }

  .attack-pattern-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .attack-pattern-row i {
    transform: rotate(90deg);
  }

  .attack-pattern-chain i,
  .attack-pattern-chain b {
    line-height: 1;
  }
}

/* Product demo screenshots */
.demo-container {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(520px, 1.25fr);
  gap: 34px;
  align-items: center;
}

.demo-copy {
  text-align: left;
}

.demo-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.demo-copy p {
  max-width: 560px;
}

.demo-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.demo-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 190px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.34);
  contain: layout paint;
}

.demo-shot.featured {
  grid-row: span 2;
  min-height: 398px;
}

.demo-shot img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: top left;
  opacity: 0.9;
}

.demo-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.76));
  content: "";
  pointer-events: none;
}

.demo-shot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.demo-shot strong {
  color: #fff;
  font-size: 16px;
}

.demo-shot span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 13px;
}

.demo-shot.featured strong {
  font-size: 20px;
}

.demo-shot.featured span {
  font-size: 14px;
}

.demo-section .button.primary:hover {
  border-color: rgba(110, 231, 183, 0.9);
  background: linear-gradient(135deg, #34d399, #3b82f6);
  color: #020617;
}

@media (max-width: 980px) {
  .demo-container {
    grid-template-columns: 1fr;
  }

  .demo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .demo-shot.featured {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .demo-copy {
    text-align: center;
  }

  .demo-copy h2,
  .demo-copy p {
    margin-inline: auto;
  }

  .demo-gallery {
    grid-template-columns: 1fr;
  }

  .demo-shot,
  .demo-shot.featured {
    min-height: 0;
  }
}

/* Production polish from UX review */
.button.demo-primary {
  position: relative;
  overflow: hidden;
  border-color: rgba(52, 211, 153, 0.7);
  background: linear-gradient(135deg, #34d399, #2563eb);
  color: #03111f;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.26);
}

.button.demo-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.button.demo-primary:hover::after {
  transform: translateX(120%);
}

.before-after {
  display: grid;
  gap: 7px;
  margin: 14px 0 10px;
}

.before-after span {
  width: fit-content;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  color: #cbd5e1;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.before-after span:last-child {
  border-color: rgba(52, 211, 153, 0.32);
  background: rgba(34, 197, 94, 0.10);
  color: #a7f3d0;
}

.attack-pattern-node {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.attack-pattern-chain i,
.attack-pattern-chain b {
  pointer-events: none;
}

.attack-pattern-node:hover,
.attack-pattern-node:focus-visible,
.attack-pattern-node.is-active {
  border-color: rgba(52, 211, 153, 0.78);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.22), 0 24px 54px rgba(16, 185, 129, 0.20);
  transform: translateY(-3px);
}

.attack-layer-note {
  position: relative;
  z-index: 1;
  min-height: 48px;
  margin: 16px 0 0;
  border: 1px solid rgba(52, 211, 153, 0.20);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.44);
  color: #dbeafe;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.attack-signal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) 1fr;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid rgba(247, 185, 85, 0.20);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 10%, rgba(247, 185, 85, 0.12), transparent 34%),
    rgba(5, 6, 11, 0.58);
  padding: 16px;
}

.attack-signal-panel small,
.attack-signal-panel dt {
  color: #ffd992;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attack-signal-panel strong {
  display: block;
  margin-top: 6px;
  color: #f8fafc;
  font-size: 20px;
}

.attack-signal-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.attack-signal-panel dl div {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(17, 23, 35, 0.66);
  padding: 12px;
}

.attack-signal-panel dd {
  margin: 7px 0 0;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.evidence-dossier .path-step {
  animation: evidencePulse 15s ease-in-out infinite;
}

.evidence-dossier .path-step.route {
  animation-delay: 2.5s;
}

.evidence-dossier .path-step.image {
  animation-delay: 5s;
}

.evidence-dossier .path-step.identity {
  animation-delay: 7.5s;
}

.evidence-dossier .path-step.impact {
  animation-delay: 10s;
}

@keyframes evidencePulse {
  0%,
  18%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateX(0);
  }

  8% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(247, 185, 85, 0.20),
      0 18px 42px rgba(247, 185, 85, 0.12);
    transform: translateX(6px);
  }
}

.roadmap-badge {
  display: inline-flex;
  width: fit-content;
  margin: -2px 0 12px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.10);
  color: #a7f3d0;
  padding: 5px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roadmap-card.next .roadmap-badge {
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(37, 99, 235, 0.12);
  color: #bfdbfe;
}

.roadmap-card.future .roadmap-badge {
  border-color: rgba(196, 181, 253, 0.36);
  background: rgba(124, 58, 237, 0.14);
  color: #ddd6fe;
}

.footer-link {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.footer-link:hover,
.footer a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .attack-signal-panel,
  .attack-signal-panel dl {
    grid-template-columns: 1fr;
  }

  .attack-pattern-node:hover,
  .attack-pattern-node:focus-visible,
  .attack-pattern-node.is-active {
    transform: none;
  }
}

/* Brand distinctness pass: KubeDefence should read as a security evidence console,
   not a generic Kubernetes community/SaaS template. */
:root {
  --kd-bg: #030712;
  --kd-panel: rgba(10, 16, 31, 0.86);
  --kd-panel-strong: rgba(7, 11, 22, 0.96);
  --kd-line: rgba(148, 163, 184, 0.20);
  --kd-line-strong: rgba(125, 211, 252, 0.34);
  --kd-text: #f8fafc;
  --kd-muted: #aab8cf;
  --kd-green: #34d399;
  --kd-cyan: #67e8f9;
  --kd-blue: #60a5fa;
  --kd-red: #fb7185;
  --kd-amber: #fbbf24;
  --kd-purple: #c084fc;
}

body {
  background:
    radial-gradient(circle at 11% 3%, rgba(16, 185, 129, 0.15), transparent 26%),
    radial-gradient(circle at 86% 9%, rgba(37, 99, 235, 0.24), transparent 28%),
    linear-gradient(180deg, #020617 0%, #030712 42%, #06111f 100%);
  color: var(--kd-text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.12), transparent 36%);
  background-size: 52px 52px, 52px 52px, auto;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 88%);
}

.nav-shell {
  border-bottom: 1px solid rgba(125, 211, 252, 0.16);
  background: rgba(3, 7, 18, 0.92);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.36);
}

.nav {
  height: 72px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(52, 211, 153, 0.26);
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.10);
  box-shadow: 0 0 34px rgba(16, 185, 129, 0.16);
}

.logo-icon img {
  width: 30px;
  height: 30px;
}

.nav-links {
  gap: 22px;
  color: #bac8dd;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-demo,
.nav-sales,
.button {
  border-radius: 10px;
}

.nav-demo {
  border-color: rgba(125, 211, 252, 0.25);
  background: rgba(15, 23, 42, 0.88);
  color: #dff7ff !important;
}

.nav-sales,
.button.primary,
.button.demo-primary {
  background: linear-gradient(135deg, #34d399 0%, #38bdf8 52%, #2563eb 100%);
  color: #02111f !important;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.20);
}

.button.secondary,
.button.outline {
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.74);
  color: #f8fafc;
}

.hero,
.offer-section,
.problem-section,
.features-section,
.attack-flow-section,
.demo-section,
.testimonials-section,
.direction-section,
.pricing-section,
.final-cta {
  border-top: 1px solid rgba(125, 211, 252, 0.11);
  border-bottom: 1px solid rgba(52, 211, 153, 0.10);
  background:
    radial-gradient(circle at 14% 10%, rgba(52, 211, 153, 0.15), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(96, 165, 250, 0.18), transparent 32%),
    linear-gradient(135deg, #020617 0%, #071426 50%, #020617 100%);
}

.hero {
  padding: 106px 0 92px;
}

.hero::before,
.offer-section::before,
.problem-section::before,
.features-section::before,
.attack-flow-section::before,
.pricing-section::before {
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
}

.hero-copy {
  position: relative;
  padding-left: 22px;
}

.hero-copy::before {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--kd-green), var(--kd-cyan), var(--kd-red));
  content: "";
}

.cert-badge,
.eyebrow-pill {
  border-color: rgba(52, 211, 153, 0.38);
  background: rgba(2, 6, 23, 0.70);
  color: #a7f3d0;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 18px rgba(34, 197, 94, 0.08);
}

h1,
h2,
h3 {
  color: var(--kd-text);
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(45px, 4.6vw, 70px);
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(90deg, #67e8f9 0%, #34d399 44%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.offer-card p,
.soft-card p,
.feature-card p,
.roadmap-card p,
.pricing-card p,
.pricing-card li,
.final-cta p,
.footer p,
.footer a {
  color: var(--kd-muted);
}

.hero-card,
.security-console,
.offer-card,
.soft-card,
.feature-card,
.roadmap-card,
.pricing-card,
.proof-panel,
.proof-board,
.attack-pattern-card,
.demo-shot {
  border-color: var(--kd-line);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(7, 11, 22, 0.78)),
    rgba(3, 7, 18, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 72px rgba(0, 0, 0, 0.38);
}

.hero-card::before,
.offer-card::before,
.soft-card::before,
.feature-card::before,
.roadmap-card::before,
.pricing-card::before,
.attack-pattern-card::after {
  background: linear-gradient(90deg, var(--kd-green), var(--kd-cyan), var(--kd-red));
}

.console-top {
  background: rgba(2, 6, 23, 0.56);
}

.console-top strong {
  color: #dff7ff;
}

.graph-stage {
  background-image:
    radial-gradient(circle, rgba(103, 232, 249, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.64));
}

.graph-node {
  border-color: rgba(103, 232, 249, 0.34);
}

.stats-band {
  background:
    linear-gradient(90deg, rgba(251, 113, 133, 0.10), rgba(56, 189, 248, 0.14), rgba(52, 211, 153, 0.10)),
    #020617;
}

.stats-grid {
  text-align: left;
}

.stats-grid div {
  min-height: 126px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.70), rgba(2, 6, 23, 0.56));
  padding: 22px;
}

.stats-grid strong {
  color: #eaffff;
  font-size: 30px;
}

.stats-grid span {
  color: #9fb1ca;
}

.section-heading {
  max-width: 980px;
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.demo-copy h2,
.proof-copy h2 {
  color: #f8fafc;
}

.section-heading h2 {
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.02;
}

.offer-section .section-heading {
  grid-template-columns: 0.9fr 1.1fr;
}

.offer-card,
.soft-card,
.feature-card,
.roadmap-card,
.pricing-card {
  border-radius: 18px;
}

.offer-card h3,
.soft-card h3,
.feature-card h3,
.roadmap-card h3,
.pricing-card h3 {
  color: #f8fafc;
}

.offer-card::after,
.soft-card::after,
.pricing-card::after {
  border-color: rgba(103, 232, 249, 0.14);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12), transparent 64%);
}

.offer-index,
.roadmap-card span,
.roadmap-badge {
  border-color: rgba(103, 232, 249, 0.28);
  background: rgba(8, 145, 178, 0.12);
  color: #a5f3fc;
}

.problem-icon,
.feature-icon {
  border-radius: 14px;
}

.before-after span {
  background: rgba(2, 6, 23, 0.50);
}

.feature-card {
  min-height: 258px;
}

.feature-card:hover,
.offer-card:hover,
.soft-card:hover {
  border-color: rgba(103, 232, 249, 0.44);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.attack-flow-section .simple-attack-layout {
  grid-template-columns: minmax(390px, 0.84fr) minmax(560px, 1.16fr);
}

.attack-pattern-card {
  width: min(100%, 760px);
  border-radius: 24px;
  padding: 22px;
}

.attack-pattern-card::after {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
}

.attack-pattern-header span {
  color: #dff7ff;
}

.attack-pattern-row {
  gap: 10px;
}

.attack-pattern-node {
  min-height: 116px;
  border-radius: 16px;
  background: rgba(7, 11, 22, 0.74);
}

.attack-pattern-node strong {
  font-size: 16px;
}

.attack-pattern-node.exposure { border-color: rgba(96, 165, 250, 0.54); }
.attack-pattern-node.route { border-color: rgba(45, 212, 191, 0.54); }
.attack-pattern-node.workload { border-color: rgba(52, 211, 153, 0.52); }
.attack-pattern-node.image { border-color: rgba(251, 191, 36, 0.56); }
.attack-pattern-node.identity { border-color: rgba(192, 132, 252, 0.56); }
.attack-pattern-node.impact { border-color: rgba(251, 113, 133, 0.56); }

.attack-layer-note {
  border-color: rgba(103, 232, 249, 0.24);
  background: rgba(2, 6, 23, 0.58);
}

.demo-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(251, 113, 133, 0.13), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(52, 211, 153, 0.16), transparent 32%),
    linear-gradient(135deg, #020617, #071426 56%, #020617);
}

.demo-shot {
  border-color: rgba(103, 232, 249, 0.20);
}

.proof-panel {
  border-radius: 26px;
}

.proof-board-header span,
.proof-check-grid span {
  color: #dff7ff;
}

.pricing-card.popular {
  border-color: rgba(103, 232, 249, 0.72);
}

.popular-badge {
  background: linear-gradient(135deg, #fb7185, #38bdf8, #34d399);
  color: #020617;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.20), transparent 30%),
    linear-gradient(135deg, #020617 0%, #08111f 100%);
}

.footer {
  background: #020617;
  border-top: 1px solid rgba(125, 211, 252, 0.16);
}

.footer-compliance {
  color: #9fb1ca;
}

@media (max-width: 980px) {
  .hero-grid,
  .offer-section .section-heading,
  .attack-flow-section .simple-attack-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 18px;
  }
}

@media (max-width: 720px) {
  .nav {
    height: auto;
  }

  .menu-button {
    border-color: rgba(103, 232, 249, 0.22);
    background: rgba(2, 6, 23, 0.70);
  }

  .nav-links {
    border-color: rgba(103, 232, 249, 0.22);
    background: rgba(3, 7, 18, 0.98);
  }

  .hero {
    padding: 42px 0 48px;
  }

  .hero-copy {
    padding-left: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid div {
    min-height: 104px;
    padding: 14px;
  }

  .attack-pattern-row {
    grid-template-columns: 1fr;
  }

  .attack-pattern-row i {
    transform: rotate(90deg);
  }
}

@media (max-width: 430px) {
  .container,
  .nav {
    width: calc(100% - 26px);
  }

  .hero h1 {
    font-size: 31px;
  }

  .trial-row,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cert-badge {
    font-size: 10px;
  }
}

/* Distinct KubeDefence visual system: evidence dossier, not generic cloud landing. */
:root {
  --kd-obsidian: #05060b;
  --kd-ink-2: #0a0d14;
  --kd-panel-2: #111723;
  --kd-steel-2: #1d2534;
  --kd-gold: #f7b955;
  --kd-coral: #ff6275;
  --kd-mint: #40e0b4;
  --kd-blue: #62a8ff;
  --kd-purple: #a277ff;
}

body {
  background:
    radial-gradient(circle at 16% 8%, rgba(64, 224, 180, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 98, 117, 0.12), transparent 26%),
    linear-gradient(180deg, var(--kd-obsidian), #080b12 46%, #05060b);
}

body::before {
  background-image:
    repeating-linear-gradient(135deg, rgba(247, 185, 85, 0.055) 0 1px, transparent 1px 26px),
    radial-gradient(circle at 78% 18%, rgba(255, 98, 117, 0.16), transparent 34%),
    radial-gradient(circle at 12% 34%, rgba(64, 224, 180, 0.10), transparent 30%);
  background-size: auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 82%);
}

.nav-shell {
  border-bottom: 1px solid rgba(247, 185, 85, 0.16);
  background: rgba(5, 6, 11, 0.94);
  backdrop-filter: blur(22px);
}

.nav-links {
  color: #c4cfdf;
}

.nav-demo {
  border-color: rgba(247, 185, 85, 0.36);
  background: rgba(247, 185, 85, 0.08);
  color: #ffe4ad !important;
}

.nav-sales,
.button.primary,
.button.demo-primary,
.hero-actions .button.primary.demo-primary,
.demo-section .button.primary.demo-primary,
.final-cta .button.primary.demo-primary {
  border-color: rgba(247, 185, 85, 0.42);
  background: linear-gradient(135deg, #ff6275 0%, #f7b955 52%, #40e0b4 100%);
  color: #070910 !important;
  box-shadow: 0 18px 44px rgba(255, 98, 117, 0.22);
}

.button.secondary,
.button.outline {
  border-color: rgba(247, 185, 85, 0.22);
  background: rgba(10, 13, 20, 0.76);
}

.hero,
.offer-section,
.problem-section,
.features-section,
.attack-flow-section,
.demo-section,
.testimonials-section,
.direction-section,
.pricing-section,
.final-cta {
  border-top: 1px solid rgba(247, 185, 85, 0.09);
  border-bottom: 1px solid rgba(255, 98, 117, 0.08);
  background:
    radial-gradient(ellipse at 82% 18%, rgba(255, 98, 117, 0.13), transparent 34%),
    radial-gradient(ellipse at 4% 42%, rgba(64, 224, 180, 0.10), transparent 28%),
    linear-gradient(145deg, #05060b 0%, #0b1018 48%, #111827 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
}

.hero::before,
.offer-section::before,
.problem-section::before,
.features-section::before,
.attack-flow-section::before,
.pricing-section::before {
  background-image:
    repeating-linear-gradient(120deg, rgba(247, 185, 85, 0.05) 0 1px, transparent 1px 30px),
    linear-gradient(90deg, rgba(255, 98, 117, 0.06), transparent 42%, rgba(64, 224, 180, 0.05));
  background-size: auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: 66px;
  align-items: center;
}

.hero-copy {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(247, 185, 85, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 23, 35, 0.72), rgba(5, 6, 11, 0.38)),
    rgba(5, 6, 11, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.34);
}

.hero-copy::before {
  display: none;
}

.cert-badge,
.eyebrow-pill {
  border-color: rgba(247, 185, 85, 0.34);
  background: rgba(247, 185, 85, 0.08);
  color: #ffd992;
  box-shadow: inset 0 0 18px rgba(247, 185, 85, 0.05);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  background: none;
  color: inherit;
  -webkit-text-fill-color: currentColor;
}

.hero-text {
  max-width: 620px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

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

.trial-row span {
  justify-content: flex-start;
  min-height: 42px;
  border-color: rgba(247, 185, 85, 0.18);
  border-left: 3px solid rgba(247, 185, 85, 0.88);
  border-radius: 12px;
  background: rgba(5, 6, 11, 0.55);
  color: #dbe5f2;
}

.trial-row span::before {
  display: none;
}

.hero-visual {
  position: relative;
}

.visual-glow {
  background:
    radial-gradient(circle at 30% 20%, rgba(247, 185, 85, 0.22), transparent 28%),
    radial-gradient(circle at 74% 50%, rgba(255, 98, 117, 0.22), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(64, 224, 180, 0.18), transparent 30%);
  filter: blur(28px);
}

.evidence-dossier {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 185, 85, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(17, 23, 35, 0.96), rgba(5, 6, 11, 0.95)),
    var(--kd-obsidian);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(-0.35deg);
}

.evidence-dossier::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 185, 85, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(180deg, transparent 0 33px, rgba(255, 255, 255, 0.035) 34px);
  background-size: 76px auto, auto;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.dossier-header,
.dossier-body,
.dossier-footer {
  position: relative;
  z-index: 1;
}

.dossier-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(247, 185, 85, 0.14);
}

.case-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border: 1px solid rgba(64, 224, 180, 0.34);
  border-radius: 999px;
  background: rgba(64, 224, 180, 0.08);
  padding: 6px 10px;
  color: #97f5d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-header strong {
  display: block;
  color: #f8fafc;
  font-size: 21px;
}

.dossier-header em {
  border: 1px solid rgba(255, 98, 117, 0.28);
  border-radius: 999px;
  background: rgba(255, 98, 117, 0.12);
  padding: 8px 12px;
  color: #ffb4be;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  padding: 24px 26px;
}

.path-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  align-items: stretch;
}

.evidence-dossier .path-step {
  position: relative;
  min-width: 0;
  min-height: auto;
  display: block;
  grid-template-columns: none;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(10, 13, 20, 0.82);
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  counter-increment: none;
}

.evidence-dossier .path-step::before {
  display: none;
}

.evidence-dossier .path-step:not(:last-child)::after {
  position: absolute;
  left: 25px;
  bottom: -22px;
  color: #f7b955;
  content: "↓";
  font-size: 18px;
  font-weight: 900;
  z-index: 2;
}

.evidence-dossier .path-step small,
.evidence-ledger small {
  display: block;
  margin-bottom: 8px;
  color: #9fb1ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-dossier .path-step strong,
.evidence-ledger strong {
  display: block;
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.2;
}

.evidence-dossier .path-step span {
  display: block;
  margin-top: 8px;
  color: #b6c3d4;
  font-size: 12px;
  line-height: 1.35;
}

.path-step.exposure {
  grid-column: auto;
  border-color: rgba(98, 168, 255, 0.42);
  background: linear-gradient(135deg, rgba(98, 168, 255, 0.18), rgba(10, 13, 20, 0.82));
}

.path-step.route {
  grid-column: auto;
  border-color: rgba(64, 224, 180, 0.40);
  background: linear-gradient(135deg, rgba(64, 224, 180, 0.16), rgba(10, 13, 20, 0.82));
}

.path-step.image {
  grid-column: auto;
  border-color: rgba(247, 185, 85, 0.42);
  background: linear-gradient(135deg, rgba(247, 185, 85, 0.15), rgba(10, 13, 20, 0.82));
}

.path-step.identity {
  grid-column: auto;
  border-color: rgba(162, 119, 255, 0.42);
  background: linear-gradient(135deg, rgba(162, 119, 255, 0.15), rgba(10, 13, 20, 0.82));
}

.path-step.impact {
  grid-column: auto;
  border-color: rgba(255, 98, 117, 0.46);
  background: linear-gradient(135deg, rgba(255, 98, 117, 0.16), rgba(10, 13, 20, 0.82));
}

.evidence-ledger {
  display: grid;
  gap: 12px;
}

.evidence-ledger div {
  border: 1px solid rgba(247, 185, 85, 0.18);
  border-radius: 18px;
  background: rgba(247, 185, 85, 0.075);
  padding: 16px;
}

.evidence-ledger div:nth-child(2) {
  border-color: rgba(64, 224, 180, 0.24);
  background: rgba(64, 224, 180, 0.07);
}

.evidence-ledger div:nth-child(3) {
  border-color: rgba(98, 168, 255, 0.24);
  background: rgba(98, 168, 255, 0.07);
}

.dossier-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 26px 24px;
}

.dossier-footer span {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 11px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}

.stats-band {
  background:
    linear-gradient(90deg, rgba(255, 98, 117, 0.10), rgba(247, 185, 85, 0.12), rgba(64, 224, 180, 0.09)),
    #080b12;
}

.stats-grid div {
  border-color: rgba(247, 185, 85, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 23, 35, 0.84), rgba(5, 6, 11, 0.62));
}

.stats-grid strong {
  color: #ffdf9b;
}

.section-heading {
  text-align: left;
}

.section-heading h2,
.demo-copy h2,
.proof-copy h2,
.final-cta h2 {
  color: #f8fafc;
}

.offer-card,
.soft-card,
.feature-card,
.roadmap-card,
.pricing-card,
.proof-panel,
.proof-board,
.attack-pattern-card,
.demo-shot {
  border-color: rgba(247, 185, 85, 0.14);
  background:
    linear-gradient(180deg, rgba(17, 23, 35, 0.88), rgba(8, 11, 18, 0.78)),
    rgba(5, 6, 11, 0.78);
}

.offer-card::before,
.soft-card::before,
.feature-card::before,
.roadmap-card::before,
.pricing-card::before,
.attack-pattern-card::after {
  background: linear-gradient(90deg, #ff6275, #f7b955, #40e0b4);
}

.offer-index,
.roadmap-card span,
.roadmap-badge {
  border-color: rgba(247, 185, 85, 0.28);
  background: rgba(247, 185, 85, 0.08);
  color: #ffd992;
}

.feature-card:hover,
.offer-card:hover,
.soft-card:hover {
  border-color: rgba(247, 185, 85, 0.42);
}

.pricing-card.popular {
  border-color: rgba(247, 185, 85, 0.72);
}

.popular-badge {
  background: linear-gradient(135deg, #ff6275, #f7b955);
  color: #070910;
}

.final-cta {
  background:
    radial-gradient(circle at 70% 0%, rgba(247, 185, 85, 0.18), transparent 30%),
    linear-gradient(135deg, #05060b 0%, #111827 100%);
}

.footer {
  background: #05060b;
  border-top-color: rgba(247, 185, 85, 0.13);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .dossier-body {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero {
    padding: 46px 0 52px;
  }

  .hero-copy {
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .trial-row {
    grid-template-columns: 1fr;
  }

  .evidence-dossier {
    border-radius: 22px;
    transform: none;
  }

  .dossier-header,
  .dossier-body {
    padding: 18px;
  }

  .dossier-header {
    align-items: flex-start;
  }

  .path-rail,
  .evidence-ledger {
    grid-template-columns: 1fr;
  }

  .evidence-dossier .path-step.exposure,
  .evidence-dossier .path-step.route,
  .evidence-dossier .path-step.image,
  .evidence-dossier .path-step.identity,
  .evidence-dossier .path-step.impact {
    grid-column: auto;
  }

  .evidence-dossier .path-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 24px;
    transform: none;
  }

  .dossier-footer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 33px;
  }

  .hero-copy {
    padding: 18px;
  }

  .dossier-header {
    flex-direction: column;
  }

  .dossier-header em {
    align-self: flex-start;
  }
}

/* Legal and trust pages */
.legal-page {
  min-height: 100vh;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 16% 8%, rgba(247, 185, 85, 0.12), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 98, 117, 0.10), transparent 30%),
    linear-gradient(145deg, #05060b 0%, #0b1018 48%, #111827 100%);
}

.legal-hero {
  max-width: 940px;
}

.legal-hero h1 {
  margin: 18px 0 16px;
  color: #f8fafc;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}

.legal-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.legal-card {
  border: 1px solid rgba(247, 185, 85, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 23, 35, 0.84), rgba(5, 6, 11, 0.66));
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 22px;
}

.legal-card p {
  margin: 0;
  color: #b6c3d4;
  line-height: 1.7;
}

.legal-card a {
  color: #ffd992;
  font-weight: 800;
}

@media (max-width: 780px) {
  .legal-nav {
    display: none;
  }

  .legal-page {
    padding: 54px 0 72px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evidence-dossier .path-step {
    animation: none;
  }
}
