:root {
  --blue-deep: #0a0e1a;
  --blue-dark: #0d1628;
  --blue-mid: #1a2744;
  --blue-bright: #1e6ff5;
  --blue-electric: #3d8bff;
  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.15);
  --green-neon: #00ff88;
  --green-glow: rgba(0, 255, 136, 0.15);
  --orange: #ff6a1a;
  --orange-glow: rgba(255, 106, 26, 0.2);
  --purple: #7b3fff;
  --purple-glow: rgba(123, 63, 255, 0.15);
  --gold: #f5c842;
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .15s;
  mix-blend-mode: screen;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .08s linear;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 18px;
  height: 18px;
  background: var(--green-neon);
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--green-neon);
  opacity: .5;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--blue-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-electric);
  border-radius: 2px;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}

nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  /* background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: white;
  box-shadow: 0 0 20px rgba(30, 111, 245, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15));
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-80);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-ghost {
  padding: 10px 22px;
  border: 1px solid var(--border);
  color: var(--white-80);
  background: transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

.btn-primary {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-electric) 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 111, 245, 0.4);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(30, 111, 245, 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 1000;
}

.mobile-menu-btn .bar {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-nav-links a:hover {
  color: var(--cyan);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}

.mobile-nav-cta button {
  width: 100%;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

/* Hero BG layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 111, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 111, 245, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 111, 245, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  animation: float1 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: float2 10s ease-in-out infinite;
}

.hero-glow-3 {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -40px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 30px)
  }
}

/* Orbit rings */
.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(30, 111, 245, 0.12);
  transform: translate(-50%, -50%);
  animation: spin linear infinite;
}

.orbit-ring:nth-child(1) {
  width: 520px;
  height: 520px;
  animation-duration: 30s;
}

.orbit-ring:nth-child(2) {
  width: 720px;
  height: 720px;
  animation-duration: 50s;
  animation-direction: reverse;
  border-color: rgba(0, 212, 255, 0.08);
}

.orbit-ring:nth-child(3) {
  width: 960px;
  height: 960px;
  animation-duration: 70s;
  border-color: rgba(0, 255, 136, 0.05);
}

.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-ring:nth-child(1) .orbit-dot {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.orbit-ring:nth-child(2) .orbit-dot {
  background: var(--blue-electric);
  box-shadow: 0 0 10px var(--blue-electric);
}

.orbit-ring:nth-child(3) .orbit-dot {
  background: var(--green-neon);
  box-shadow: 0 0 10px var(--green-neon);
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

/* Floating data nodes */
.data-node {
  position: absolute;
  background: rgba(10, 14, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .75rem;
  font-family: var(--font-display);
  backdrop-filter: blur(10px);
  z-index: 5;
  white-space: nowrap;
  animation: nodeFloat ease-in-out infinite;
}

.data-node .node-val {
  font-size: 1.2rem;
  font-weight: 700;
}

.data-node .node-label {
  color: var(--white-50);
  font-family: var(--font-body);
  font-size: .7rem;
}

.data-node-1 {
  top: 18%;
  left: 6%;
  animation-duration: 6s;
  animation-delay: 0s;
  border-color: rgba(0, 212, 255, 0.3);
}

.data-node-1 .node-val {
  color: var(--cyan);
}

.data-node-2 {
  top: 22%;
  right: 5%;
  animation-duration: 7s;
  animation-delay: 1s;
  border-color: rgba(0, 255, 136, 0.3);
}

.data-node-2 .node-val {
  color: var(--green-neon);
}

.data-node-3 {
  bottom: 25%;
  left: 4%;
  animation-duration: 8s;
  animation-delay: 2s;
  border-color: rgba(255, 106, 26, 0.3);
}

.data-node-3 .node-val {
  color: var(--orange);
}

.data-node-4 {
  bottom: 20%;
  right: 5%;
  animation-duration: 6.5s;
  animation-delay: 0.5s;
  border-color: rgba(123, 63, 255, 0.3);
}

.data-node-4 .node-val {
  color: var(--purple);
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

/* ─── NEW 2-col Hero ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 40px 70px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-2col {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  flex-direction: column;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 6.5vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.hero-h1 span.grad {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue-electric) 50%, var(--green-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--white-50);
  font-size: .78rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid var(--green-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--green-neon);
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ─── Hero Right: Audit Card ─── */
.hero-audit-card {
  background: rgba(10, 16, 32, 0.92);
  border: 1px solid rgba(30, 111, 245, 0.3);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 60px rgba(30, 111, 245, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-audit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.hero-audit-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 111, 245, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hac-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.hac-sub {
  font-size: .82rem;
  color: var(--white-50);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Big URL bar */
.hac-url-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.hac-url-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(30, 111, 245, 0.35);
  border-radius: 12px;
  padding: 4px 6px 4px 16px;
  transition: border-color .25s, box-shadow .25s;
}

.hac-url-wrap:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12), 0 0 20px rgba(0, 212, 255, 0.08);
}

.hac-url-prefix {
  font-size: .95rem;
  flex-shrink: 0;
  opacity: .7;
}

.hac-url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
}

.hac-url-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
}

.btn-hac-analyze {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan) 100%);
  border: none;
  border-radius: 9px;
  color: white;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30, 111, 245, 0.5);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-hac-analyze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn-hac-analyze:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 111, 245, 0.7);
}

.btn-hac-analyze:hover::before {
  transform: translateX(100%);
}

.btn-hac-analyze:disabled {
  opacity: .7;
  cursor: default;
  transform: none;
}

/* Progress */
.hac-progress {
  margin-bottom: 16px;
  display: none;
  position: relative;
  z-index: 2;
}

.hac-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 7px;
}

.hac-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan), var(--green-neon));
  border-radius: 100px;
  transition: width .28s ease;
}

.hac-progress-text {
  font-size: .7rem;
  color: var(--cyan);
  font-weight: 500;
}

/* Divider */
.hac-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: .68rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  z-index: 2;
}

.hac-divider::before,
.hac-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Email row */
.hac-email-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.hac-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  transition: border-color .25s, background .25s;
  outline: none;
}

.hac-input:focus {
  border-color: rgba(30, 111, 245, 0.5);
  background: rgba(30, 111, 245, 0.05);
}

.hac-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.btn-full-report {
  width: 100%;
  padding: 13px;
  background: rgba(30, 111, 245, 0.15);
  border: 1px solid rgba(30, 111, 245, 0.35);
  border-radius: 10px;
  color: white;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all .25s;
  position: relative;
  z-index: 2;
}

.btn-full-report:hover {
  background: rgba(30, 111, 245, 0.25);
  border-color: var(--blue-electric);
}

.hac-guarantee {
  font-size: .68rem;
  color: var(--white-50);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Audit checklist pills */
.hac-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.hac-check-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.18);
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hac-check-pill span {
  color: var(--green-neon);
  font-size: .65rem;
}

/* Data nodes — repositioned for 2-col layout */
.data-node {
  position: absolute;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .72rem;
  font-family: var(--font-display);
  backdrop-filter: blur(12px);
  z-index: 5;
  white-space: nowrap;
  animation: nodeFloat ease-in-out infinite;
}

.data-node .node-val {
  font-size: 1.1rem;
  font-weight: 800;
}

.data-node .node-label {
  color: var(--white-50);
  font-family: var(--font-body);
  font-size: .66rem;
}

.data-node-1 {
  top: 12%;
  left: 2%;
  animation-duration: 6s;
  animation-delay: 0s;
  border-color: rgba(0, 212, 255, 0.25);
  display: none;
}

.data-node-1 .node-val {
  color: var(--cyan);
}

.data-node-2 {
  top: 14%;
  right: 2%;
  animation-duration: 7s;
  animation-delay: 1s;
  border-color: rgba(0, 255, 136, 0.25);
  display: none;
}

.data-node-2 .node-val {
  color: var(--green-neon);
}

.data-node-3 {
  bottom: 14%;
  left: 2%;
  animation-duration: 8s;
  animation-delay: 2s;
  border-color: rgba(255, 106, 26, 0.25);
  display: none;
}

.data-node-3 .node-val {
  color: var(--orange);
}

.data-node-4 {
  bottom: 12%;
  right: 2%;
  animation-duration: 6.5s;
  animation-delay: .5s;
  border-color: rgba(123, 63, 255, 0.25);
  display: none;
}

.data-node-4 .node-val {
  color: var(--purple);
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* Remove old hero-dashboard from hero section */
.hero-dashboard {
  display: none;
}

.db-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  overflow: hidden;
}

.db-chart-title {
  font-size: .7rem;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-electric) 0%, rgba(30, 111, 245, 0.2) 100%);
  transition: height .5s ease;
}

.mini-bar.green {
  background: linear-gradient(180deg, var(--green-neon) 0%, rgba(0, 255, 136, 0.15) 100%);
}

.score-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 80px;
}

.score-circle-svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.score-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 6;
}

.score-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 55;
  stroke: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.score-label {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}

.score-sublabel {
  font-size: .55rem;
  color: var(--white-50);
  text-align: center;
  margin-top: -2px;
}

/* ─── Section Commons ─── */
section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.tag-line {
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.section-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--white-80);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ─── Marquee ─── */
.marquee-section {
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(30, 111, 245, 0.08), rgba(0, 212, 255, 0.06), rgba(0, 255, 136, 0.05), rgba(30, 111, 245, 0.08));
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--white-80);
  padding: 4px 0;
}

.marquee-item span {
  font-size: .65rem;
}

.marquee-item:nth-child(12n+1) span {
  color: var(--cyan);
}

.marquee-item:nth-child(12n+2) span {
  color: var(--green-neon);
}

.marquee-item:nth-child(12n+3) span {
  color: var(--orange);
}

.marquee-item:nth-child(12n+4) span {
  color: var(--purple);
}

.marquee-item:nth-child(12n+5) span {
  color: var(--cyan);
}

.marquee-item:nth-child(12n+6) span {
  color: #f5c842;
}

.marquee-item:nth-child(12n+7) span {
  color: var(--blue-electric);
}

.marquee-item:nth-child(12n+8) span {
  color: var(--green-neon);
}

.marquee-item:nth-child(12n+9) span {
  color: var(--orange);
}

.marquee-item:nth-child(12n+10) span {
  color: var(--cyan);
}

.marquee-item:nth-child(12n+11) span {
  color: var(--purple);
}

.marquee-item:nth-child(12n+12) span {
  color: #f5c842;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ─── Stats ─── */
#stats {
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  border-radius: 20px;
  padding: 48px 28px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-6px);
}

/* Card 1 — Cyan */
.stat-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.12) 0%, rgba(30, 111, 245, 0.08) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
}

.stat-card:nth-child(1):hover {
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.18);
}

.stat-card:nth-child(1) .stat-icon {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.25);
}

.stat-card:nth-child(1) .stat-num {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(1) .stat-suffix {
  -webkit-text-fill-color: var(--cyan);
}

.stat-card:nth-child(1)::before {
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.2) 0%, transparent 65%);
}

.stat-card:nth-child(1)::after {
  border-color: rgba(0, 212, 255, 0.5);
}

/* Card 2 — Green */
.stat-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 180, 80, 0.06) 100%);
  border: 1px solid rgba(0, 255, 136, 0.22);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.07);
}

.stat-card:nth-child(2):hover {
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.16);
}

.stat-card:nth-child(2) .stat-icon {
  color: var(--green-neon);
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.25);
}

.stat-card:nth-child(2) .stat-num {
  background: linear-gradient(135deg, #fff 0%, var(--green-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(2) .stat-suffix {
  -webkit-text-fill-color: var(--green-neon);
}

.stat-card:nth-child(2)::before {
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.18) 0%, transparent 65%);
}

.stat-card:nth-child(2)::after {
  border-color: rgba(0, 255, 136, 0.5);
}

/* Card 3 — Orange */
.stat-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(255, 106, 26, 0.1) 0%, rgba(255, 60, 0, 0.06) 100%);
  border: 1px solid rgba(255, 106, 26, 0.22);
  box-shadow: 0 0 40px rgba(255, 106, 26, 0.07);
}

.stat-card:nth-child(3):hover {
  box-shadow: 0 20px 60px rgba(255, 106, 26, 0.16);
}

.stat-card:nth-child(3) .stat-icon {
  color: var(--orange);
  background: rgba(255, 106, 26, 0.1);
  border-color: rgba(255, 106, 26, 0.25);
}

.stat-card:nth-child(3) .stat-num {
  background: linear-gradient(135deg, #fff 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(3) .stat-suffix {
  -webkit-text-fill-color: var(--orange);
}

.stat-card:nth-child(3)::before {
  background: radial-gradient(circle at 50% 0%, rgba(255, 106, 26, 0.18) 0%, transparent 65%);
}

.stat-card:nth-child(3)::after {
  border-color: rgba(255, 106, 26, 0.5);
}

/* Card 4 — Purple */
.stat-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(123, 63, 255, 0.12) 0%, rgba(80, 30, 200, 0.07) 100%);
  border: 1px solid rgba(123, 63, 255, 0.25);
  box-shadow: 0 0 40px rgba(123, 63, 255, 0.08);
}

.stat-card:nth-child(4):hover {
  box-shadow: 0 20px 60px rgba(123, 63, 255, 0.18);
}

.stat-card:nth-child(4) .stat-icon {
  color: var(--purple);
  background: rgba(123, 63, 255, 0.1);
  border-color: rgba(123, 63, 255, 0.25);
}

.stat-card:nth-child(4) .stat-num {
  background: linear-gradient(135deg, #fff 0%, #b07aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(4) .stat-suffix {
  -webkit-text-fill-color: #b07aff;
}

.stat-card:nth-child(4)::before {
  background: radial-gradient(circle at 50% 0%, rgba(123, 63, 255, 0.2) 0%, transparent 65%);
}

.stat-card:nth-child(4)::after {
  border-color: rgba(123, 63, 255, 0.5);
}

/* Shared card layers */
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  border-top: 1px solid;
  opacity: .8;
}

.stat-card>* {
  position: relative;
  z-index: 1;
}

/* Icon badge */
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  border: 1px solid;
  transition: transform .3s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-4deg);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: -0.05em;
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-num-row {
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--white-50);
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.4;
}

.stat-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin: 16px auto 0;
  justify-content: center;
  width: 80px;
}

.spark-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  opacity: .5;
  transition: opacity .2s;
}

.stat-card:hover .spark-bar {
  opacity: .85;
}

.stat-card:nth-child(1) .spark-bar {
  background: var(--cyan);
}

.stat-card:nth-child(2) .spark-bar {
  background: var(--green-neon);
}

.stat-card:nth-child(3) .spark-bar {
  background: var(--orange);
}

.stat-card:nth-child(4) .spark-bar {
  background: var(--purple);
}

/* ─── Features ─── */
#features {
  padding: 120px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--blue-dark);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.feature-card:hover {
  background: var(--blue-mid);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(30, 111, 245, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.ic-blue {
  background: rgba(30, 111, 245, 0.15);
  border: 1px solid rgba(30, 111, 245, 0.3);
}

.ic-cyan {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.ic-green {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.ic-orange {
  background: rgba(255, 106, 26, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.25);
}

.ic-purple {
  background: rgba(123, 63, 255, 0.1);
  border: 1px solid rgba(123, 63, 255, 0.25);
}

.feature-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.feature-p {
  color: var(--white-50);
  font-size: .9rem;
  line-height: 1.65;
  font-weight: 300;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ftag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--white-80);
}

/* ─── Audit CTA ─── */
#audit {
  padding: 120px 0;
}

.audit-card {
  background: linear-gradient(135deg, rgba(30, 111, 245, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
  border: 1px solid rgba(30, 111, 245, 0.2);
  border-radius: 24px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.audit-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.audit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 212, 255, 0.03));
  pointer-events: none;
}

.audit-info {
  position: relative;
  z-index: 2;
}

.audit-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.audit-h2 em {
  font-style: normal;
  color: var(--cyan);
}

.audit-p {
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: .95rem;
  font-weight: 300;
}

.audit-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.audit-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--white-80);
}

.check-ic {
  color: var(--green-neon);
  font-size: .8rem;
}

.audit-form {
  position: relative;
  z-index: 2;
}

.audit-form-card {
  background: rgba(10, 14, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.audit-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white-80);
  letter-spacing: 0.03em;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .25s, background .25s;
  outline: none;
}

.form-input:focus {
  border-color: var(--blue-electric);
  background: rgba(30, 111, 245, 0.05);
}

.form-input::placeholder {
  color: var(--white-50);
}

.btn-audit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan) 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(30, 111, 245, 0.4);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-audit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(30, 111, 245, 0.6);
}

.audit-guarantee {
  font-size: .72rem;
  color: var(--white-50);
  text-align: center;
  margin-top: 12px;
}

/* ── Audit URL Analyzer ── */
.audit-url-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
}

.audit-url-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(30, 111, 245, 0.4);
  border-radius: 10px;
  padding: 0 16px;
  transition: border-color .25s, background .25s;
}

.audit-url-wrap:focus-within {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.audit-url-prefix {
  font-size: 1rem;
  flex-shrink: 0;
}

.audit-url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 0;
}

.audit-url-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.btn-analyze {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan) 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30, 111, 245, 0.45);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-analyze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn-analyze:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 111, 245, 0.65);
}

.btn-analyze:hover::before {
  transform: translateX(100%);
}

.btn-analyze:active {
  transform: translateY(0);
}

.audit-progress-wrap {
  margin-bottom: 18px;
}

.audit-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.audit-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan), var(--green-neon));
  border-radius: 100px;
  transition: width .3s ease;
}

.audit-progress-label {
  font-size: .72rem;
  color: var(--cyan);
  font-weight: 500;
  text-align: center;
}

.audit-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--white-20);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audit-divider::before,
.audit-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.audit-divider span {
  white-space: nowrap;
  color: var(--white-50);
}

/* ─── How It Works ─── */
#how {
  padding: 120px 0;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header .section-sub {
  margin: 0 auto;
}

.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  position: relative;
}

.step-num-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all .3s;
}

.step-card:hover .step-num-wrap {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white-50);
  transition: color .3s;
}

.step-card:hover .step-num {
  color: var(--cyan);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: .875rem;
  color: var(--white-50);
  line-height: 1.6;
}

/* ─── Plugin Section ─── */
#plugin {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 111, 245, 0.04) 50%, transparent 100%);
}

.plugin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plugin-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plugin-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white-10);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.plugin-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-electric), var(--cyan));
  opacity: 0;
  transition: opacity .3s;
}

.plugin-feature:hover {
  background: rgba(30, 111, 245, 0.08);
  border-color: rgba(30, 111, 245, 0.2);
}

.plugin-feature:hover::before {
  opacity: 1;
}

.pf-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(30, 111, 245, 0.15);
  border: 1px solid rgba(30, 111, 245, 0.25);
}

.pf-content .pf-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 4px;
}

.pf-content .pf-desc {
  font-size: .82rem;
  color: var(--white-50);
  line-height: 1.5;
}

.plugin-visual {
  background: rgba(13, 22, 40, 0.95);
  border: 1px solid rgba(30, 111, 245, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(30, 111, 245, 0.08);
}

.pv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pv-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}

.pv-brand span {
  color: var(--cyan);
}

.pv-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--green-neon);
}

.pv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-neon);
  animation: pulse 2s infinite;
}

.pv-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.pv-score {
  text-align: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.pv-score-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
}

.pv-score-label {
  font-size: .62rem;
  color: var(--white-50);
  margin-top: 3px;
}

.c-blue {
  color: var(--blue-electric);
}

.c-green {
  color: var(--green-neon);
}

.c-orange {
  color: var(--orange);
}

.pv-issues {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pv-issue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .75rem;
}

.pv-issue.fixed {
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.pv-issue.warn {
  background: rgba(255, 106, 26, 0.06);
  border: 1px solid rgba(255, 106, 26, 0.15);
}

.pv-issue.info {
  background: rgba(30, 111, 245, 0.06);
  border: 1px solid rgba(30, 111, 245, 0.15);
}

.issue-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.issue-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: .62rem;
  font-weight: 600;
}

.badge-fixed {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green-neon);
}

.badge-warn {
  background: rgba(255, 106, 26, 0.15);
  color: var(--orange);
}

.badge-info {
  background: rgba(30, 111, 245, 0.15);
  color: var(--blue-electric);
}

.pv-fix-btn {
  padding: 4px 12px;
  background: var(--blue-bright);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: .65rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.pv-fix-btn:hover {
  background: var(--blue-electric);
}

/* ─── Testimonials ─── */
#testimonials {
  padding: 120px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-sub {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(30, 111, 245, 0.3);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(30, 111, 245, 0.12), rgba(0, 212, 255, 0.06));
  border-color: rgba(30, 111, 245, 0.3);
  grid-column: span 1;
  grid-row: span 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: .9rem;
}

.testimonial-text {
  font-size: .9rem;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}

.author-role {
  font-size: .75rem;
  color: var(--white-50);
}

/* ─── Pricing ─── */
#pricing {
  padding: 120px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  background: linear-gradient(160deg, rgba(30, 111, 245, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border-color: rgba(30, 111, 245, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-plan {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-per {
  font-size: .8rem;
  color: var(--white-50);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: .875rem;
  color: var(--white-80);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--white-80);
}

.pfeat-ic {
  color: var(--green-neon);
  font-size: .75rem;
}

.pfeat-ic.na {
  color: var(--white-20);
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
}

.btn-plan-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-plan-outline:hover {
  border-color: var(--blue-electric);
  color: var(--blue-electric);
  background: rgba(30, 111, 245, 0.08);
}

.btn-plan-primary {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan) 100%);
  border: none;
  color: white;
  box-shadow: 0 6px 24px rgba(30, 111, 245, 0.4);
}

.btn-plan-primary:hover {
  box-shadow: 0 10px 36px rgba(30, 111, 245, 0.6);
  transform: translateY(-1px);
}

/* ─── CTA Banner ─── */
#cta {
  padding: 120px 0;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(30, 111, 245, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 1px solid rgba(30, 111, 245, 0.25);
  border-radius: 28px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 111, 245, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--white-80);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ─── Footer ─── */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .875rem;
  color: var(--white-50);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white-10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--white-50);
  text-decoration: none;
  transition: all .25s;
}

.social-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .85rem;
  color: var(--white-50);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--white-50);
}

/* ─── Animations / Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.featured {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plugin-layout {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  nav {
    padding: 18px 30px;
  }

  nav.scrolled {
    padding: 12px 30px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-2col {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .hero-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #hero {
    text-align: center;
    padding: 110px 24px 60px;
  }

  .hero-h1 {
    font-size: clamp(3.2rem, 11vw, 4.8rem);
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hac-url-row {
    flex-direction: column;
  }

  .hac-url-input {
    border-radius: 10px 10px 0 0;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .hac-url-btn {
    border-radius: 0 0 10px 10px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  section,
  #stats,
  #features,
  #how,
  #plugin,
  #audit,
  #pricing,
  #testimonials,
  #cta {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .audit-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-line {
    display: none;
  }

  .testimonials-grid,
  .pricing-grid,
  .stats-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 1;
  }

  .feature-card.featured {
    grid-column: span 1;
  }

  .cta-inner {
    padding: 50px 28px;
  }

  .audit-url-row {
    flex-direction: column;
  }

  .audit-url-wrap {
    width: 100%;
  }

  .btn-analyze {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
  }
}
/* ═══════════════════════════════════════════════════════════════
   v3.1 — Responsive, mobile UX & premium-spacing fixes (2026-07)
   Appended overrides: keep at end of file so they win the cascade.
   ═══════════════════════════════════════════════════════════════ */

/* 1 · Hero breathing room — the H1 sat too close to the fixed nav. */
#hero {
  padding-top: 168px;
  padding-bottom: 90px;
  min-height: 92vh;
}

.hero-h1 {
  line-height: 1.02;
}

/* 2 · Custom cursor only on precision-pointer devices; never hide the
      native cursor on touch or when JS/GSAP fails to load. */
body {
  cursor: auto;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

@media (hover: none), (pointer: coarse) {
  #cursor,
  #cursor-ring { display: none !important; }
}

html.no-anim #cursor,
html.no-anim #cursor-ring { display: none !important; }

/* 3 · If GSAP fails (blocked CDN, slow 3G) content must never stay
      invisible. homepage-v3.js adds .no-anim to <html> as a fallback. */
html.no-anim .reveal,
html.no-anim .reveal-left,
html.no-anim .reveal-right,
html.no-anim .reveal-scale,
html.no-anim #hero-badge,
html.no-anim #hero-h1,
html.no-anim #hero-sub,
html.no-anim #hero-actions,
html.no-anim #hero-trust,
html.no-anim #hero-right {
  opacity: 1 !important;
  transform: none !important;
}

/* 4 · Guard against horizontal scroll from decorative glows/orbits. */
html, body { max-width: 100%; overflow-x: hidden; }

/* 5 · Tablet (≤1024px) */
@media (max-width: 1024px) {
  #hero { padding-top: 150px; }
}

/* 6 · Large phones / small tablets (≤860px) */
@media (max-width: 860px) {
  #hero {
    padding: 136px 22px 64px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: clamp(2.7rem, 10.5vw, 4.2rem);
    line-height: 1.04;
    margin-bottom: 22px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
  }

  .orbit-container { display: none; } /* visual noise + overflow risk on small screens */
}

/* 7 · Phones (≤768px) — the previous blanket rule squashed #hero
      under the fixed navbar (padding-top:60px!important on all
      sections). Restore proper clearance & rhythm. */
@media (max-width: 768px) {
  #hero {
    padding-top: 128px !important;
    padding-bottom: 56px !important;
  }

  nav {
    padding: 14px 18px;
  }

  nav.scrolled {
    padding: 10px 18px;
    background: rgba(10, 14, 26, 0.96);
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
  }

  .nav-logo-text { font-size: 1.05rem; }

  .hero-audit-card { padding: 26px 20px; }

  .section-h2, .audit-h2 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; line-height: 1.15; }

  .hero-trust { gap: 10px; font-size: .74rem; }
  .trust-divider { display: none; }

  .hero-glow-1, .hero-glow-2, .hero-glow-3 { filter: blur(60px); opacity: .8; }
}

/* 8 · Small phones (≤420px) */
@media (max-width: 420px) {
  #hero { padding-top: 118px !important; }

  .hero-h1 { font-size: clamp(2.3rem, 11.5vw, 3rem); }

  .hero-audit-card { padding: 22px 16px; }

  .hac-title { font-size: 1.05rem; }

  .btn-primary, .btn-ghost { font-size: .85rem; }
}

/* 9 · Respect reduced-motion users — show everything, kill particles. */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  #hero-h1, #hero-sub, #hero-trust, #hero-right {
    opacity: 1 !important;
    transform: none !important;
  }
  #particles-canvas, #cursor, #cursor-ring { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   v3.2 — Hero audit card input fix + missing CTA button styles (2026-07)
   Appended overrides: keep at end of file so they win the cascade.
   ═══════════════════════════════════════════════════════════════ */

/* A · URL input must never be crushed by the Analyze button. */
.hac-url-input {
  min-width: 0;
}

/* Stack the input and button inside the pill on phones — previously the
   button sat beside the input and covered/crushed it at small widths. */
@media (max-width: 640px) {
  .hac-url-wrap {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
  }

  .hac-url-prefix { display: none; }

  .hac-url-input {
    flex: 1 1 100%;
    width: 100%;
    padding: 12px 10px;
    font-size: 1rem;
    text-align: left;
  }

  .btn-hac-analyze {
    flex: 1 1 100%;
    width: 100%;
    padding: 15px 22px;
    font-size: 1rem;
  }

  .hac-checks { justify-content: center; }
}

/* B · Final CTA buttons — .btn-hero-primary/.btn-hero-secondary had no
   styles at all, so they rendered as default white browser buttons. */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--cyan) 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(30, 111, 245, 0.45);
  transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(30, 111, 245, 0.65);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, background .25s, border-color .25s;
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Stack the CTA pair full-width on phones. */
@media (max-width: 640px) {
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-actions .btn-hero-primary,
  .cta-actions .btn-hero-secondary {
    width: 100%;
  }
}

/* C · Footer bottom line must not hide under the floating chat bubble. */
@media (max-width: 768px) {
  .footer-bottom { padding-bottom: 84px; }
}

/* ── Hero audit tabs (SEO / AdSense) ─────────────────────────── */
.hac-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 5px;
}
.hac-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.hac-tab.active {
  background: linear-gradient(135deg, var(--blue, #1e6ff5), var(--cyan, #00d4ff));
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,111,245,0.35);
}

/* ── Inline audit result card ────────────────────────────────── */
.rk-inline-result {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  animation: rkFadeIn .4s ease;
}
@keyframes rkFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.rk-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  flex-shrink: 0;
}
.rk-score small { font-size: 13px; opacity: .55; font-weight: 600; }
.rk-meta { flex: 1; min-width: 0; }
.rk-rating { font-weight: 700; font-size: 14px; color: #fff; }
.rk-verdict { font-size: 12px; color: #9fd8ff; margin-top: 2px; }
.rk-counts { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.rk-c { font-size: 10.5px; font-weight: 700; border-radius: 100px; padding: 2px 8px; white-space: nowrap; }
.rk-c.crit { background: rgba(239,68,68,.18); color: #ff8f8a; }
.rk-c.reco { background: rgba(245,158,11,.18); color: #ffd27d; }
.rk-c.pass { background: rgba(16,185,129,.18); color: #7ef7c9; }
.rk-view {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue, #1e6ff5), var(--cyan, #00d4ff));
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rk-view:hover { filter: brightness(1.1); }

/* Light background variant (bottom audit section) */
.audit-card .rk-inline-result { background: #f4f6fa; border-color: #e5eaf1; }
.audit-card .rk-rating { color: #16202e; }
.audit-card .rk-verdict { color: #1e6ff5; }

@media (max-width: 480px) {
  .rk-inline-result { flex-wrap: wrap; }
  .rk-view { width: 100%; text-align: center; }
}
