:root {
  --bg: #f8fbff;
  --bg-soft: #eef4ff;
  --text: #060914;
  --muted: #4d5668;
  --line: #dfe7f3;
  --blue: #2754ff;
  --blue-2: #44a3ff;
  --purple: #b938ff;
  --green: #75d63b;
  --dark: #07101d;
  --dark-2: #0b1423;
  --radius: 24px;
  --shadow: 0 20px 55px rgba(25, 45, 85, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 30%, rgba(39, 84, 255, .08), transparent 28%),
    radial-gradient(circle at 18% 15%, rgba(185, 56, 255, .045), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(39, 84, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 84, 255, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, black 48%, black 100%);
  opacity: .35;
}

.container {
  width: min(1420px, calc(100vw - 88px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 20, 40, .08);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.06em;
  min-width: 235px;
}

.brand strong {
  color: var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 38px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.nav a:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  gap: 16px;
  min-width: 365px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 46px;
  padding: 0 24px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2657ff, #3b37ff);
  color: #fff;
  box-shadow: 0 12px 24px rgba(39, 84, 255, .25);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .75);
  border-color: #c9d3e4;
}

.btn-large {
  height: 58px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-light {
  background: #ffffff;
  color: var(--blue);
  min-width: 290px;
  height: 58px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.hero {
  padding: 60px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(44px, 4.8vw, 67px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.065em;
}

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

.lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: #303848;
  font-size: 19px;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid #d7deea;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.trust-item:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 22px;
}

.trust-icon.google {
  color: #ea4335;
  font-size: 24px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  min-height: 347px;
  padding: 24px 28px 58px;
  border-radius: var(--radius);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% -10%, rgba(83, 161, 255, .26), transparent 36%),
    linear-gradient(180deg, #0b1424 0%, #07101d 100%);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .14);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px -40px;
  height: 160px;
  z-index: -1;
  background: radial-gradient(circle, rgba(39, 84, 255, .18), transparent 70%);
}

.card-purple {
  background:
    radial-gradient(circle at 50% -10%, rgba(185, 56, 255, .26), transparent 36%),
    linear-gradient(180deg, #151124 0%, #0b0a16 100%);
}

.card-green {
  background:
    radial-gradient(circle at 50% -10%, rgba(117, 214, 59, .22), transparent 36%),
    linear-gradient(180deg, #0e1b14 0%, #07110c 100%);
}

.card-number {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.card-purple .card-number,
.card-purple .product-subtitle,
.card-purple .product-link {
  color: #d14cff;
}

.card-green .card-number,
.card-green .product-subtitle,
.card-green .product-link {
  color: #8af044;
}

.product-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  display: flex;
  align-items: center;
  font-size: 45px;
  font-weight: 900;
}

.shield-icon {
  color: var(--blue-2);
  filter: drop-shadow(0 0 12px rgba(68, 163, 255, .6));
}

.redirect-icon {
  color: #d14cff;
  filter: drop-shadow(0 0 12px rgba(209, 76, 255, .6));
}

.file-icon {
  color: #8af044;
  filter: drop-shadow(0 0 12px rgba(138, 240, 68, .6));
}

.product-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.product-subtitle {
  margin: 8px 0 0;
  color: var(--blue-2);
  font-size: 15px;
  font-weight: 800;
}

.product-text {
  margin: 14px 0 0;
  color: #d4dce8;
  font-size: 14px;
  line-height: 1.5;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 7px;
}

.product-card li {
  color: #dbe3ee;
  font-size: 14px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: var(--blue-2);
  font-size: 10px;
  flex: 0 0 auto;
}

.card-purple li::before { color: #d14cff; }
.card-green li::before { color: #8af044; }

.product-link {
  position: absolute;
  left: 28px;
  bottom: 22px;
  color: var(--blue-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.ai-section {
  border-top: 1px solid #dfe7f3;
  border-bottom: 1px solid #dfe7f3;
  background: rgba(255, 255, 255, .7);
}

.ai-grid {
  display: grid;
  grid-template-columns: .7fr 1.2fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 28px 0;
}

.ai-grid h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.ai-grid p {
  margin: 0;
  color: #2b3342;
  font-size: 15px;
  line-height: 1.62;
}

.ai-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 26px;
}

.ai-logos > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
}



.ai-logos > span > span {
  font-size: 13px;
  line-height: 1.08;
  font-weight: 700;
}

.logo-google { color: #4285f4 !important; }
.logo-claude { color: #ff7043 !important; }
.logo-perplexity { color: #06a9d7 !important; }
.logo-gemini { color: #3457ff !important; }

.benefit-strip {
  padding: 18px 0 22px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #dfe7f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 42px rgba(20, 35, 70, .06);
  overflow: hidden;
}

.benefit-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border-right: 1px solid #dfe7f3;
}

.benefit-item:last-child { border-right: 0; }

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 27px;
  font-weight: 900;
  flex: 0 0 auto;
}

.benefit-icon.blue { background: #ecf5ff; color: var(--blue); }
.benefit-icon.purple { background: #f6ecff; color: var(--purple); }
.benefit-icon.green { background: #effbea; color: #45a329; }
.benefit-icon.violet { background: #f6ecff; color: #a735e7; }

.benefit-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.benefit-item p {
  margin: 0;
  color: #4b5565;
  font-size: 13px;
  line-height: 1.28;
}

.audit-cta {
  padding: 0 0 18px;
}

.audit-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 120px 1fr 330px;
  gap: 26px;
  align-items: center;
  padding: 18px 110px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 50%, rgba(185, 56, 255, .28), transparent 34%),
    linear-gradient(135deg, #101d35 0%, #243fff 58%, #1b0c4c 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(39, 84, 255, .18);
}

.audit-icon {
  width: 88px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 46px;
  color: #70a7ff;
  background: rgba(255, 255, 255, .06);
}

.audit-copy h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.audit-copy p {
  margin: 8px 0 0;
  color: #e5e9ff;
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .container { width: min(1100px, calc(100vw - 44px)); }
  .nav { display: none; }
  .nav-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .product-cards { grid-template-columns: 1fr; }
  .product-card { min-height: auto; padding-bottom: 86px; }
  .ai-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: 0; border-bottom: 1px solid #dfe7f3; }
  .audit-card { grid-template-columns: 1fr; padding: 28px; }
}

@media (max-width: 720px) {
  .container { width: min(100%, calc(100vw - 28px)); }
  .nav-wrap { height: auto; padding: 16px 0; flex-wrap: wrap; }
  .brand { min-width: 0; }
  .nav-actions { width: 100%; justify-content: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero { padding-top: 36px; }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-item { border-right: 0; margin-right: 0; padding-right: 0; }
  .ai-logos { grid-template-columns: repeat(3, 1fr); }
  .audit-card { gap: 18px; }
}

/* BATCH 1: Fixes for rev-scanner badges and typography alignment */
.rev-scanner {
  font-family: 'Inter', sans-serif !important;
}

.rev-cms-list {
  align-items: flex-start !important;
  align-content: flex-start !important;
}

.cms-tag {
  height: max-content;
  align-self: flex-start;
}
