/* ============================================
   FOKUS FINDER — Design System & Styles
   ============================================ */

/* --- Font Faces (Self-hosted WOFF2, DSGVO-compliant) --- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2'),
    url('../fonts/outfit-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2'),
    url('../fonts/outfit-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmsans-400-latin.woff2') format('woff2'),
    url('../fonts/dmsans-400-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dmsans-400-latin.woff2') format('woff2'),
    url('../fonts/dmsans-400-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin.woff2') format('woff2'),
    url('../fonts/playfair-italic-latin-ext.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/jetbrainsmono-700-latin.woff2') format('woff2'),
    url('../fonts/jetbrainsmono-700-latin-ext.woff2') format('woff2');
}

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --deep-navy: #0F172A;
  --navy-mid: #1A1F36;
  --electric-teal: #00D4AA;
  --teal-glow: rgba(0, 212, 170, 0.25);
  --teal-dim: rgba(0, 212, 170, 0.08);
  --slate-white: #F8FAFC;
  --success-green: #22C55E;
  --warning-amber: #F5A623;
  --danger-red: #EF4444;
  --caution-orange: #F97316;
  --muted-gray: #CBD5E1;
  --white: #FFFFFF;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-drama: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Radii */
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--slate-white);
  background-color: var(--deep-navy);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Noise Overlay (Global) --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section Base --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark {
  background-color: var(--deep-navy);
}

.section--mid {
  background-color: var(--navy-mid);
}

.section--light {
  background-color: var(--slate-white);
  color: var(--deep-navy);
}

/* --- Section Headings --- */
.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted-gray);
  max-width: 600px;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  background: transparent;
  max-width: calc(var(--container-max) - 4rem);
  width: calc(100% - 2rem);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  color: var(--white);
}

.navbar__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-gray);
  transition: color 0.3s, transform 0.2s;
  white-space: nowrap;
}

.navbar__links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: var(--electric-teal);
  color: var(--deep-navy) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.navbar__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--teal-glow);
}

/* --- Mobile CTA item (hidden on desktop) --- */
.navbar__mobile-cta-item {
  display: none;
}

/* --- Hamburger Button --- */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.3s ease,
              background 0.3s ease;
}

.navbar__hamburger span:nth-child(1) { margin-bottom: 6px; }
.navbar__hamburger span:nth-child(2) { margin-bottom: 6px; }

/* Hamburger to X animation */
.nav-open .navbar__hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-open .navbar__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .navbar__hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Menu --- */
@media (max-width: 768px) {
  .navbar {
    padding: 0.65rem 1.2rem;
  }

  .navbar__cta.nav-cta-desktop {
    display: none;
  }

  .navbar__hamburger {
    display: block;
    margin-left: auto;
  }

  /* Hide links by default on mobile */
  .navbar__links {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* OPEN STATE: navbar becomes fullscreen */
  .navbar.nav-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 0;
    border: none;
    background: rgba(8, 12, 28, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 3rem;
    gap: 0;
    overflow-y: auto;
  }

  /* Show links when open */
  .navbar.nav-open .navbar__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: menuFadeIn 0.4s ease forwards;
  }

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

  /* Link items — staggered entrance */
  .navbar.nav-open .navbar__links li {
    opacity: 0;
    animation: linkSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }

  .navbar.nav-open .navbar__links li:nth-child(1) { animation-delay: 0.08s; }
  .navbar.nav-open .navbar__links li:nth-child(2) { animation-delay: 0.16s; }
  .navbar.nav-open .navbar__links li:nth-child(3) { animation-delay: 0.24s; }
  .navbar.nav-open .navbar__links li:nth-child(4) { animation-delay: 0.32s; }

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

  /* Link styling in menu */
  .navbar.nav-open .navbar__links a {
    display: block;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
  }

  .navbar.nav-open .navbar__links a:hover,
  .navbar.nav-open .navbar__links a:active {
    color: var(--electric-teal);
  }

  /* Logo stays top-left */
  .navbar.nav-open .navbar__logo {
    position: absolute;
    top: 0.85rem;
    left: 1.2rem;
  }

  /* Hamburger stays top-right */
  .navbar.nav-open .navbar__hamburger {
    position: absolute;
    top: 0.65rem;
    right: 1.2rem;
  }

  /* Show mobile CTA */
  .navbar.nav-open .navbar__mobile-cta-item {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }

  .navbar.nav-open .navbar__mobile-cta-item .navbar__cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  /* Prevent body scroll when menu open */
  body.nav-open {
    overflow: hidden;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--deep-navy);
  padding-top: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg canvas {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.hero__text {
  max-width: 600px;
}

.hero__line1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  opacity: 0;
}

.hero__line2 {
  font-family: var(--font-drama);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 0.1em;
  opacity: 0;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-gray);
  margin-top: 1.5rem;
  line-height: 1.5;
  opacity: 0;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: flex-start;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--electric-teal);
  color: var(--deep-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--teal-glow);
}

.hero__secondary-cta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted-gray);
  transition: color 0.3s;
}

.hero__secondary-cta:hover {
  color: var(--electric-teal);
}

/* Hero micro text (under CTA) */
.hero__micro {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-top: 1rem;
  letter-spacing: 0.01em;
  opacity: 0;
}

/* ============================================
   HERO — 3D Dashboard Preview Card
   ============================================ */
.hero__gauge {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  overflow: visible;
}

.hero-dash {
  width: clamp(380px, 32vw, 540px);
  padding: 0;
  background: linear-gradient(145deg, rgba(15,25,55,0.88), rgba(8,14,32,0.92));
  border: 1px solid rgba(0,212,170,0.12);
  border-radius: 20px;
  transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
  transform-origin: center center;
  animation: heroDashFloat 9s ease-in-out infinite;
  box-shadow:
    0 35px 70px rgba(0,0,0,0.35),
    0 0 0 1px rgba(0,212,170,0.06),
    0 0 80px rgba(0,212,170,0.06),
    0 0 120px rgba(0,212,170,0.03),
    inset 0 1px 0 rgba(255,255,255,0.04);
  will-change: transform;
  overflow: hidden;
}

@keyframes heroDashFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-10deg) rotateX(4deg) translateY(-18px); }
}

/* Tab navigation */
.hero-dash__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0,212,170,0.08);
}

.hero-dash__tab {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.hero-dash__tab--active {
  color: var(--electric-teal);
  border-bottom-color: var(--electric-teal);
}

/* Dashboard body */
.hero-dash__body {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

/* Score section */
.hero-dash__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hero-dash__ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.hero-dash__ring-wrap svg {
  width: 100%;
  height: 100%;
}

#gauge-fill {
  transition: stroke-dashoffset 2s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(0,212,170,0.4));
}

.hero-dash__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
}

.hero-dash__sub {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--muted-gray);
  margin-top: 2px;
}

.hero-dash__verdict {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  background: rgba(245, 166, 35, 0.15);
  color: var(--warning-amber);
  border: 1px solid rgba(245, 166, 35, 0.3);
  white-space: nowrap;
}

/* Category bars */
.hero-dash__cats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hero-dash__cat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dash__cat-name {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--muted-gray);
  width: 80px;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-dash__cat-track {
  flex: 1;
  height: 8px;
  background: rgba(0,212,170,0.04);
  border-radius: 4px;
  overflow: hidden;
}

.hero-dash__cat-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0,212,170,0.45), rgba(0,212,170,0.2));
  transition: width 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-dash__cat-fill.animated {
  width: var(--cw, 70%);
}

.hero-dash__cat-val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--electric-teal);
  width: 22px;
  text-align: right;
  opacity: 0;
  transition: opacity 0.6s ease 1.5s;
}

.hero-dash__cat-val.animated {
  opacity: 1;
}

/* Ambient glow behind the card */
.hero-dash__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.12), rgba(0,212,170,0.04) 50%, transparent 70%);
  z-index: -1;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.85; }
}

/* --- Hero Medium (tablets / small laptops) --- */
@media (min-width: 769px) and (max-width: 1199px) {
  .hero__content {
    gap: 1.5rem;
  }

  .hero-dash {
    width: clamp(260px, 30vw, 340px);
    transform: perspective(1800px) rotateY(-3deg) rotateX(2deg);
    transform-origin: 50% center;
  }

  @keyframes heroDashFloat {
    0%, 100% { transform: perspective(1800px) rotateY(-3deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1800px) rotateY(-3deg) rotateX(2deg) translateY(-12px); }
  }

  .hero-dash__tab {
    font-size: 0.52rem;
    padding: 8px 4px;
  }

  .hero-dash__body {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 12px;
  }

  .hero-dash__ring-wrap {
    width: 80px;
    height: 80px;
  }

  .hero-dash__num {
    font-size: 1.5rem;
  }

  .hero-dash__cats {
    width: 100%;
  }

  .hero-dash__cat-name {
    width: 70px;
    font-size: 0.52rem;
  }

  .hero-dash__cat-val {
    font-size: 0.55rem;
    width: 18px;
  }

  .hero-dash__verdict {
    font-size: 0.5rem;
  }
}

/* --- Hero Large (wide desktops >=1440px) --- */
@media (min-width: 1440px) {
  .hero__content {
    max-width: 1400px;
  }

  .hero-dash {
    width: clamp(460px, 32vw, 580px);
  }

  .hero-dash__ring-wrap {
    width: 120px;
    height: 120px;
  }

  .hero-dash__num {
    font-size: 2.2rem;
  }

  .hero-dash__tab {
    font-size: 0.68rem;
    padding: 12px 10px;
  }

  .hero-dash__body {
    padding: 24px;
    gap: 24px;
  }

  .hero-dash__cat-name {
    font-size: 0.68rem;
    width: 100px;
  }

  .hero-dash__cat-track {
    height: 10px;
  }

  .hero-dash__cat-val {
    font-size: 0.75rem;
  }

  .hero-dash__verdict {
    font-size: 0.62rem;
    padding: 4px 12px;
  }

  .hero-dash__glow {
    width: 400px;
    height: 400px;
  }
}

/* --- Hero Mobile --- */
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    padding-top: 6rem;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    gap: 2rem;
  }

  .hero__cta-group {
    align-items: center;
  }

  .hero__micro {
    text-align: center;
  }

  /* Text first for conversions — card below */
  .hero__gauge {
    order: 1;
  }

  .hero__text {
    order: -1;
  }

  .hero-dash {
    width: 260px;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  }

  @keyframes heroDashFloat {
    0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-10px); }
  }

  .hero-dash__body {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px;
  }

  .hero-dash__ring-wrap {
    width: 80px;
    height: 80px;
  }

  .hero-dash__num {
    font-size: 1.5rem;
  }

  .hero-dash__cat-name {
    width: 70px;
    font-size: 0.55rem;
  }

  .hero-dash__cats {
    width: 100%;
  }

  .hero-dash__glow {
    width: 200px;
    height: 200px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-dash { animation: none !important; }
  .hero-dash__glow { animation: none !important; }
  .hero-dash__cat-fill { transition: none !important; width: var(--cw, 70%) !important; }
  .hero-dash__cat-val { transition: none !important; opacity: 1 !important; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted-gray);
  white-space: nowrap;
}

.trust-strip__item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .trust-strip__item {
    font-size: 0.72rem;
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .trust-strip__item {
    font-size: 0.65rem;
    white-space: normal;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--deep-navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle danger ambient glow behind section */
.problem::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.04), transparent 70%);
  pointer-events: none;
}

/* ---- Title Block ---- */
.problem__title-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

.problem__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.problem__stat-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--warning-amber);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(245, 166, 35, 0.3);
}

.problem__stat-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.problem__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
}

.problem__dot--fail {
  background: var(--warning-amber);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.4);
}

.problem__dot--survive {
  background: rgba(203, 213, 225, 0.2);
  border: 1px solid rgba(203, 213, 225, 0.3);
}

/* Heading */
.problem__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}

.problem__heading-line1 {
  display: block;
  margin-bottom: 0.15em;
}

.problem__heading-line2 {
  display: block;
  color: var(--muted-gray);
}

.problem__heading-accent {
  color: var(--electric-teal);
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.25);
}

/* ---- Cards Grid ---- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- Card ---- */
.problem-card {
  background: rgba(26, 31, 54, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--warning-amber);
  border-radius: 0.5rem var(--radius-lg) var(--radius-lg) 0.5rem;
  padding: 2rem 2rem 2rem 2.25rem;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.15), rgba(255, 255, 255, 0.06), transparent);
}

.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(245, 166, 35, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.problem-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--warning-amber);
  transform: perspective(800px) rotateX(2deg) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(245, 166, 35, 0.05);
}

.problem-card:hover::after {
  opacity: 1;
}

/* Sequential number */
.problem-card__number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(245, 166, 35, 0.35);
}

/* Decorative quote mark — inline beside text */
.problem-card__quote-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--electric-teal);
  opacity: 0.25;
  flex-shrink: 0;
  margin-right: 0.6rem;
  margin-top: -0.1rem;
  user-select: none;
}

/* Quote row: mark + text side by side */
.problem-card__quote-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
}

/* Quote text: clean, readable body font */
.problem-card__quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--slate-white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Teal divider between quote and answer */
.problem-card__divider {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-teal), transparent);
  margin-bottom: 0.85rem;
  border-radius: 1px;
}

/* Answer: the punchline, bolder and white */
.problem-card__answer {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ---- Hook ---- */
.problem__hook-wrap {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
}

.problem__hook-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.08), transparent 70%);
  animation: hookGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hookGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.problem__hook {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.problem__hook-line1 {
  display: block;
  color: var(--muted-gray);
}

.problem__hook-line2 {
  display: block;
  color: var(--electric-teal);
  font-size: 1.15em;
  text-shadow: 0 0 25px rgba(0, 212, 170, 0.3);
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 960px) {
  .problem__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
  .problem__stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .problem__dot {
    width: 8px;
    height: 8px;
  }

  .problem__stat-dots {
    gap: 0.3rem;
  }

  .problem__heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .problem-card {
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  }

  .problem-card__quote-mark {
    font-size: 3rem;
    top: 0.25rem;
    left: 0.75rem;
  }

  .problem__hook-wrap::before {
    width: 280px;
    height: 80px;
  }

  .problem::before {
    width: 300px;
    height: 300px;
  }
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */
.whatis {
  background: var(--navy-mid);
  padding: var(--section-pad) 0;
  padding-bottom: calc(var(--section-pad) + 2rem);
  position: relative;
}

.whatis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* Section badge */
.whatis__badge {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-teal);
  margin-bottom: 0.75rem;
}

.whatis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ---- Card base ---- */
.whatis-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

/* Colored top border per variant */
.whatis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.whatis-card--teal::before {
  background: linear-gradient(90deg, rgba(0,212,170,0.6), rgba(0,212,170,0.1), transparent);
}

.whatis-card--amber::before {
  background: linear-gradient(90deg, rgba(245,166,35,0.6), rgba(245,166,35,0.1), transparent);
}

.whatis-card--green::before {
  background: linear-gradient(90deg, rgba(34,197,94,0.6), rgba(34,197,94,0.1), transparent);
}

/* Hover glow per variant */
.whatis-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.whatis-card--teal::after {
  background: radial-gradient(circle at 30% 20%, rgba(0,212,170,0.06), transparent 60%);
}

.whatis-card--amber::after {
  background: radial-gradient(circle at 30% 20%, rgba(245,166,35,0.06), transparent 60%);
}

.whatis-card--green::after {
  background: radial-gradient(circle at 30% 20%, rgba(34,197,94,0.06), transparent 60%);
}

.whatis-card:hover::after {
  opacity: 1;
}

/* Hover per variant */
.whatis-card--teal:hover {
  border-color: rgba(0,212,170,0.3);
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 30px rgba(0,212,170,0.08);
}

.whatis-card--amber:hover {
  border-color: rgba(245,166,35,0.3);
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 30px rgba(245,166,35,0.08);
}

.whatis-card--green:hover {
  border-color: rgba(34,197,94,0.3);
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 30px rgba(34,197,94,0.08);
}

/* ---- Icon wrap with glow circle ---- */
.whatis-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.whatis-card__icon-wrap--teal {
  background: radial-gradient(circle, rgba(0,212,170,0.12), transparent 70%);
  box-shadow: 0 0 30px rgba(0,212,170,0.08);
}

.whatis-card__icon-wrap--amber {
  background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
  box-shadow: 0 0 30px rgba(245,166,35,0.08);
}

.whatis-card__icon-wrap--green {
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  box-shadow: 0 0 30px rgba(34,197,94,0.08);
}

.whatis-card__icon {
  display: flex;
  justify-content: center;
}

/* ---- Label with color variants ---- */
.whatis-card__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.whatis-card__label--teal { color: var(--electric-teal); }
.whatis-card__label--amber { color: var(--warning-amber); }
.whatis-card__label--green { color: var(--success-green); }

/* ---- Title ---- */
.whatis-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

/* ---- Key metric pill ---- */
.whatis-card__metric {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.whatis-card__metric--teal {
  color: var(--electric-teal);
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.2);
}

.whatis-card__metric--amber {
  color: var(--warning-amber);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
}

.whatis-card__metric--green {
  color: var(--success-green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}

/* ---- Description ---- */
.whatis-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted-gray);
  line-height: 1.6;
}

/* Reveal glow — one-time color flash on scroll-in */
.whatis-card.reveal-glow--teal {
  animation: whatisRevealTeal 1.2s ease-out forwards;
}

.whatis-card.reveal-glow--amber {
  animation: whatisRevealAmber 1.2s ease-out forwards;
}

.whatis-card.reveal-glow--green {
  animation: whatisRevealGreen 1.2s ease-out forwards;
}

@keyframes whatisRevealTeal {
  0% { box-shadow: 0 0 0 rgba(0,212,170,0); }
  30% { box-shadow: 0 0 40px rgba(0,212,170,0.15), 0 0 80px rgba(0,212,170,0.06); }
  100% { box-shadow: none; }
}

@keyframes whatisRevealAmber {
  0% { box-shadow: 0 0 0 rgba(245,166,35,0); }
  30% { box-shadow: 0 0 40px rgba(245,166,35,0.15), 0 0 80px rgba(245,166,35,0.06); }
  100% { box-shadow: none; }
}

@keyframes whatisRevealGreen {
  0% { box-shadow: 0 0 0 rgba(34,197,94,0); }
  30% { box-shadow: 0 0 40px rgba(34,197,94,0.15), 0 0 80px rgba(34,197,94,0.06); }
  100% { box-shadow: none; }
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 960px) {
  .whatis__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
  .whatis-card {
    padding: 2rem 1.5rem;
  }

  .whatis-card__icon-wrap {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   FEATURES — Demo Cases (Beispiel-Analysen)
   ============================================ */
.features {
  background: var(--deep-navy);
  padding: var(--section-pad) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.15), transparent);
  pointer-events: none;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(26, 31, 54, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.feature-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.feature-card__interactive {
  height: 200px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Verdict glow on interactive area when card is hovered */
.feature-card[data-verdict="go"]:hover .feature-card__interactive {
  box-shadow: inset 0 0 30px rgba(34, 197, 94, 0.08), 0 0 20px rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.15);
}

.feature-card[data-verdict="changes"]:hover .feature-card__interactive {
  box-shadow: inset 0 0 30px rgba(245, 166, 35, 0.08), 0 0 20px rgba(245, 166, 35, 0.05);
  border-color: rgba(245, 166, 35, 0.15);
}

.feature-card[data-verdict="caution"]:hover .feature-card__interactive {
  box-shadow: inset 0 0 30px rgba(249, 115, 22, 0.08), 0 0 20px rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.15);
}

.feature-card[data-verdict="stop"]:hover .feature-card__interactive {
  box-shadow: inset 0 0 30px rgba(239, 68, 68, 0.08), 0 0 20px rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.15);
}

/* Shuffler Card */
.shuffler {
  position: relative;
  height: 100%;
}

.shuffler__card {
  position: absolute;
  width: 90%;
  left: 5%;
  padding: 1rem 1.2rem;
  background: var(--deep-navy);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-white);
  transition: all 0.5s var(--ease-spring);
}

.shuffler__card:nth-child(1) {
  top: 10px;
  z-index: 3;
}

.shuffler__card:nth-child(2) {
  top: 25px;
  z-index: 2;
  opacity: 0.7;
  transform: scale(0.97);
}

.shuffler__card:nth-child(3) {
  top: 40px;
  z-index: 1;
  opacity: 0.4;
  transform: scale(0.94);
}

/* Typewriter Card */
.typewriter {
  background: var(--deep-navy);
  border-radius: var(--radius-sm);
  padding: 1rem;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.typewriter__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.typewriter__dot {
  width: 8px;
  height: 8px;
  background: var(--danger-red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.typewriter__content {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--electric-teal);
  white-space: pre-wrap;
}

.typewriter__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--electric-teal);
  animation: blink 1.2s infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Scheduler Card */
.scheduler {
  background: var(--deep-navy);
  border-radius: var(--radius-sm);
  padding: 1rem;
  height: 100%;
}

.scheduler__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.scheduler__day {
  text-align: center;
  padding: 0.5rem 0.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-gray);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-spring);
}

.scheduler__day-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--muted-gray);
  margin-top: 0.3rem;
  opacity: 0.6;
}

.scheduler__day.active {
  background: var(--teal-dim);
  border-color: var(--electric-teal);
  color: var(--electric-teal);
}

.scheduler__btn {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: var(--teal-dim);
  border: 1px solid var(--electric-teal);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--electric-teal);
  text-align: center;
  transition: all 0.3s;
}

/* Card meta */
.feature-card__score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.score-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
}

.score-number--amber {
  color: var(--warning-amber);
}

.score-number--red {
  color: var(--danger-red);
}

.score-number--green {
  color: var(--success-green);
}

/* Gauge badge (verdict label) */
.gauge-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge--amber {
  background: rgba(245, 166, 35, 0.15);
  color: var(--warning-amber);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.badge--red {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger-red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge--green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success-green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge--orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--caution-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.score-number--orange {
  color: var(--caution-orange);
}

.feature-card__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted-gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

/* Traffic indicators with colored dots */
.feature-card__traffic {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-bottom: 1rem;
}

.feature-card__traffic span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
}

.feature-card__traffic span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.traffic--green::before { background: var(--success-green); box-shadow: 0 0 6px rgba(34,197,94,0.4); }
.traffic--amber::before { background: var(--warning-amber); box-shadow: 0 0 6px rgba(245,166,35,0.4); }
.traffic--red::before { background: var(--danger-red); box-shadow: 0 0 6px rgba(239,68,68,0.4); }
.traffic--green { color: var(--success-green); }
.traffic--amber { color: var(--warning-amber); }
.traffic--red { color: var(--danger-red); }

/* Shuffler icon */
.shuffler__icon {
  vertical-align: -2px;
  margin-right: 2px;
  flex-shrink: 0;
}

/* === Score Gauge Animation === */
.gauge-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  position: relative;
}

.gauge-anim__svg {
  width: 110px;
  height: 110px;
}

.gauge-anim__fill {
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-anim__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
}

.gauge-anim__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--success-green);
  line-height: 1;
}

.gauge-anim__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-gray);
  margin-top: 2px;
}

.gauge-anim__badges {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gauge-anim__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease-spring);
}

.gauge-anim__badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.gauge-anim__badge--green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success-green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.gauge-anim__badge--amber {
  background: rgba(245, 166, 35, 0.12);
  color: var(--warning-amber);
  border: 1px solid rgba(245, 166, 35, 0.25);
}

/* === Category Bars Animation === */
.cat-bars {
  padding: 1.2rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.cat-bars__row {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  align-items: center;
  gap: 0.6rem;
}

.cat-bars__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-gray);
  text-align: right;
}

.cat-bars__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.cat-bars__fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-bars__fill--green { background: var(--success-green); box-shadow: 0 0 8px rgba(34,197,94,0.3); }
.cat-bars__fill--amber { background: var(--warning-amber); box-shadow: 0 0 8px rgba(245,166,35,0.3); }
.cat-bars__fill--red { background: var(--danger-red); box-shadow: 0 0 8px rgba(239,68,68,0.3); }
.cat-bars__fill--orange { background: var(--caution-orange); box-shadow: 0 0 8px rgba(249,115,22,0.3); }

.cat-bars__val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--soft-white);
  opacity: 0;
  transition: opacity 0.5s 1s;
}

.cat-bars__val.visible {
  opacity: 1;
}

/* === Verdict glow on card hover === */
.feature-card[data-verdict="go"]:hover {
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 30px rgba(34,197,94,0.06);
}

.feature-card[data-verdict="changes"]:hover {
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 30px rgba(245,166,35,0.06);
}

.feature-card[data-verdict="caution"]:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 30px rgba(249,115,22,0.06);
}

.feature-card[data-verdict="stop"]:hover {
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 30px rgba(239,68,68,0.06);
}

.feature-card__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--electric-teal);
  margin-top: auto;
  transition: color 0.3s, letter-spacing 0.3s;
  letter-spacing: 0;
}

.feature-card__link:hover {
  color: var(--white);
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   METHODOLOGY — Vertical Timeline
   ============================================ */
.methodology {
  background: var(--deep-navy);
  position: relative;
}

.methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.12), transparent);
  pointer-events: none;
}

.methodology__timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 4rem;
}

/* Vertical line */
.methodology__timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--electric-teal), rgba(0,212,170,0.1));
}

/* Step */
.methodology__step {
  position: relative;
  margin-bottom: 3.5rem;
}

.methodology__step:last-child {
  margin-bottom: 0;
}

.methodology__step-num {
  position: absolute;
  left: -4rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--electric-teal);
  background: var(--deep-navy);
  border: 2px solid var(--electric-teal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.15);
  z-index: 1;
}

.methodology__step-body {
  padding-top: 0.25rem;
}

.methodology__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.methodology__step-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Research grid in step 02 */
.methodology__research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.methodology__research-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: rgba(26, 31, 54, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 2px solid var(--electric-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid var(--electric-teal);
  transition: border-color 0.3s, background 0.3s;
}

.methodology__research-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--electric-teal);
  background: rgba(26, 31, 54, 0.8);
}

.methodology__research-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--electric-teal);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.methodology__research-detail {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted-gray);
  line-height: 1.4;
}

.methodology__step-sources {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted-gray);
  line-height: 1.6;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---- Orbit Galaxy Visual (Methodology Step 02) ---- */
.vis-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 2.5rem auto 1rem;
}

.vis-orbit__glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.06), transparent 70%);
  animation: orbitGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbitGlowPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

/* Rings */
.vis-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,170,0.12);
}

.vis-orbit__ring--1 {
  inset: 10%;
  animation: orbitSpin 20s linear infinite;
  border-color: rgba(0,212,170,0.15);
}

.vis-orbit__ring--2 {
  inset: 25%;
  animation: orbitSpin 28s linear infinite reverse;
  border-color: rgba(0,212,170,0.10);
}

.vis-orbit__ring--3 {
  inset: 40%;
  animation: orbitSpin 36s linear infinite;
  border-color: rgba(0,212,170,0.08);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Core */
.vis-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 50%;
  animation: corePulse 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0,212,170,0.1); transform: translate(-50%,-50%) scale(1); }
  50% { box-shadow: 0 0 30px rgba(0,212,170,0.2); transform: translate(-50%,-50%) scale(1.08); }
}

/* Nodes */
.vis-orbit__node {
  position: absolute;
  z-index: 2;
}

.vis-orbit__node span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--electric-teal);
  white-space: nowrap;
}

.vis-orbit__node--1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: nodeFloat1 5s ease-in-out infinite;
}

.vis-orbit__node--2 {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  animation: nodeFloat2 4.5s ease-in-out infinite 0.5s;
}

.vis-orbit__node--3 {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: nodeFloat3 5.5s ease-in-out infinite 1s;
}

.vis-orbit__node--4 {
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  animation: nodeFloat4 4s ease-in-out infinite 1.5s;
}

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

@keyframes nodeFloat2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}

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

@keyframes nodeFloat4 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

/* Particles */
.vis-orbit__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--electric-teal);
  border-radius: 50%;
  opacity: 0.4;
}

.vis-orbit__particle--1 {
  top: 15%;
  left: 20%;
  animation: particleDrift1 18s linear infinite;
}

.vis-orbit__particle--2 {
  top: 30%;
  right: 15%;
  animation: particleDrift2 22s linear infinite 2s;
}

.vis-orbit__particle--3 {
  bottom: 25%;
  left: 30%;
  animation: particleDrift3 15s linear infinite 4s;
}

.vis-orbit__particle--4 {
  top: 60%;
  right: 25%;
  animation: particleDrift4 20s linear infinite 1s;
  width: 2px;
  height: 2px;
  opacity: 0.3;
}

.vis-orbit__particle--5 {
  top: 20%;
  right: 35%;
  animation: particleDrift5 25s linear infinite 3s;
  width: 2px;
  height: 2px;
  opacity: 0.25;
}

.vis-orbit__particle--6 {
  bottom: 15%;
  right: 20%;
  animation: particleDrift6 17s linear infinite 5s;
  opacity: 0.35;
}

@keyframes particleDrift1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(60px, 30px) scale(1.2); opacity: 0.6; }
  50% { transform: translate(30px, 80px) scale(0.8); opacity: 0.3; }
  75% { transform: translate(-20px, 40px) scale(1.1); opacity: 0.5; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
}

@keyframes particleDrift2 {
  0% { transform: translate(0, 0); opacity: 0.4; }
  33% { transform: translate(-50px, 40px); opacity: 0.6; }
  66% { transform: translate(-20px, -30px); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

@keyframes particleDrift3 {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(40px, -50px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

@keyframes particleDrift4 {
  0% { transform: translate(0, 0); opacity: 0.3; }
  33% { transform: translate(-30px, -40px); opacity: 0.5; }
  66% { transform: translate(20px, -20px); opacity: 0.2; }
  100% { transform: translate(0, 0); opacity: 0.3; }
}

@keyframes particleDrift5 {
  0% { transform: translate(0, 0); opacity: 0.25; }
  50% { transform: translate(-40px, 60px); opacity: 0.45; }
  100% { transform: translate(0, 0); opacity: 0.25; }
}

@keyframes particleDrift6 {
  0% { transform: translate(0, 0); opacity: 0.35; }
  25% { transform: translate(30px, -20px); opacity: 0.5; }
  50% { transform: translate(-10px, -50px); opacity: 0.25; }
  75% { transform: translate(-30px, -10px); opacity: 0.45; }
  100% { transform: translate(0, 0); opacity: 0.35; }
}

/* Methodology Mobile */
@media (max-width: 768px) {
  .methodology__timeline {
    padding-left: 3rem;
  }

  .methodology__timeline::before {
    left: 0.85rem;
  }

  .methodology__step-num {
    left: -3rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.7rem;
  }

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

  .vis-orbit {
    width: 220px;
    height: 220px;
    margin: 1.5rem auto 0.5rem;
  }

  .vis-orbit__node span {
    font-size: 0.5rem;
    padding: 3px 7px;
  }

  .vis-orbit__core {
    width: 36px;
    height: 36px;
  }

  .vis-orbit__core svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   TRANSITION SECTION
   ============================================ */
.transition-section {
  background: var(--deep-navy);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transition-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.06), transparent 70%);
  animation: transitionGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes transitionGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.transition-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.2), transparent);
  pointer-events: none;
}

.transition-section__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.transition-section__text .teal {
  color: var(--electric-teal);
  text-shadow: 0 0 20px rgba(0,212,170,0.3);
}

/* Word-reveal spans created by JS */
.transition-section__text .word {
  display: inline-block;
  margin-right: 0.25em;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--deep-navy);
  padding: var(--section-pad) 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.15), transparent);
  pointer-events: none;
}

.pricing__header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing__layout {
  max-width: 560px;
  margin: 0 auto;
}

/* Animated angle property for rotating border */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Pricing Card Wrapper — positions orbs + rotating border */
.pricing-card-wrap {
  position: relative;
  padding: 2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    conic-gradient(
      from var(--border-angle),
      transparent 0%,
      rgba(0,212,170,0.5) 12%,
      transparent 25%,
      transparent 50%,
      rgba(0,212,170,0.3) 62%,
      transparent 75%
    );
  animation: rotateBorder 6s linear infinite;
  isolation: isolate;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* Fallback for browsers without @property — pulsing border */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .pricing-card-wrap {
    background: none;
    border: 1px solid rgba(0,212,170,0.3);
  }
}

/* Ambient Glow Orbs — float behind the card */
.pricing-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.4;
}

.pricing-orb--1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,212,170,0.35) 0%, transparent 70%);
  top: -60px;
  right: -40px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.pricing-orb--2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,150,255,0.25) 0%, transparent 70%);
  bottom: -40px;
  left: -30px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.pricing-orb--3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,212,170,0.2) 0%, transparent 70%);
  top: 40%;
  left: -50px;
  animation: orbFloat3 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, 20px) scale(1.1); }
  66% { transform: translate(-10px, -15px) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.15); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(25px, 15px) scale(1.2); opacity: 0.6; }
}

/* Main Pricing Card — Glass Effect */
.pricing-main {
  background: rgba(26, 31, 54, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  will-change: transform;
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}

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

.pricing-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.4), transparent);
}

.pricing-main__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--electric-teal);
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(0,212,170,0.06);
}

.pricing-main__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-main__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted-gray);
  margin-bottom: 2rem;
}

.pricing-main__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-main__features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: var(--slate-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-main__features li svg {
  flex-shrink: 0;
}

.pricing-main__cta {
  display: block;
  width: 100%;
  padding: 1.1rem;
  background: var(--electric-teal);
  color: var(--deep-navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.2);
  letter-spacing: 0.01em;
}

.pricing-main__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--teal-glow);
}

.pricing-main__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-gray);
  margin-top: 1rem;
}

.pricing-main__risk {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-gray);
  margin-top: 0.4rem;
}

/* Comparison Strip — clearly NOT our products */
.pricing__compare {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 31, 54, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.pricing__compare-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing__compare-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.pricing__compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}

.pricing__compare-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-gray);
  font-weight: 500;
}

.pricing__compare-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted-gray);
  opacity: 0.6;
  text-decoration: line-through;
  text-decoration-color: rgba(148,163,184,0.4);
}

.pricing__compare-price--teal {
  color: var(--electric-teal);
  opacity: 1;
  text-decoration: none;
  font-size: 1.1rem;
}

.pricing__compare-time {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--muted-gray);
  opacity: 0.6;
}

.pricing__compare-item--highlight .pricing__compare-name {
  color: var(--electric-teal);
  font-weight: 600;
}

.pricing__compare-item--highlight .pricing__compare-time {
  color: var(--electric-teal);
  opacity: 0.8;
}

.pricing__compare-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing__layout {
    max-width: 400px;
  }

  .pricing-main {
    padding: 2rem 1.5rem;
  }

  .pricing__compare-items {
    gap: 0.75rem;
  }

  .pricing__compare-name {
    font-size: 0.65rem;
  }

  .pricing__compare-price {
    font-size: 0.8rem;
  }

  .pricing__compare-price--teal {
    font-size: 0.95rem;
  }

  .pricing-orb--1 {
    width: 140px;
    height: 140px;
    top: -30px;
    right: -20px;
  }

  .pricing-orb--2 {
    width: 110px;
    height: 110px;
    bottom: -20px;
    left: -15px;
  }

  .pricing-orb--3 {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--navy-mid);
  padding: var(--section-pad) 0;
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.faq .section__title {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate-white);
  line-height: 1.4;
  gap: 1rem;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--electric-teal);
}

.faq__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.3s;
  color: var(--muted-gray);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--electric-teal);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
  overflow: hidden;
}

.faq__answer-inner {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted-gray);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.3s ease 0.05s;
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.active .faq__answer-inner {
  opacity: 1;
  padding-bottom: 1.25rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, #0F172A, #0B1120, #0D1B2A, #0F172A);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 45%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.final-cta__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-gray);
  margin-bottom: 2.5rem;
}

.final-cta__btn {
  display: inline-flex;
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 0 50px rgba(0,212,170,0.25);
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(0,212,170,0.2); }
  50% { box-shadow: 0 0 60px rgba(0,212,170,0.35); }
}

.final-cta__micro {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .final-cta__btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep-navy);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
}

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

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__menso-logo {
  flex-shrink: 0;
}

.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted-gray);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-gray);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col ul a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted-gray);
  transition: color 0.3s;
}

.footer__col ul a:hover {
  color: var(--electric-teal);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted-gray);
}

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

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

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

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

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__line1,
  .hero__line2,
  .hero__sub,
  .hero__cta-group,
  .hero__gauge,
  .hero__micro {
    opacity: 1;
  }

  .vis-orbit__ring,
  .vis-orbit__node,
  .vis-orbit__particle,
  .vis-orbit__core,
  .vis-orbit__glow {
    animation: none !important;
  }

  .transition-section::before {
    animation: none !important;
    opacity: 0.5;
  }

  .final-cta {
    animation: none !important;
    background-size: 100% 100%;
  }

  .final-cta__btn {
    animation: none !important;
  }

  .pricing-card-wrap {
    background: none !important;
    border: 1px solid rgba(0,212,170,0.2);
  }

  .pricing-main {
    transform: none !important;
  }

  .pricing-orb {
    display: none;
  }

  .problem__hook-wrap::before {
    animation: none !important;
    opacity: 0.6;
  }

  .problem__dot {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .problem-card:hover,
  .whatis-card:hover {
    transform: translateY(-4px) !important;
  }

  .whatis-card__icon svg path,
  .whatis-card__icon svg circle,
  .whatis-card__icon svg rect {
    stroke-dashoffset: 0 !important;
    stroke-dasharray: none !important;
  }
}
