/* CSS Variables - Updated to match brand guidelines */
:root {
  /* Primary Colors from Brand Guide */
  --primary-white: #FAFBFF;
  --primary-blue: #00B8FF;
  --primary-dark: #000D27;
  --primary-blue-alt: #0093FF;

  /* Grayscale Colors from Brand Guide */
  --cloud: #EDEFF7;
  --smoke: #D3D6E0;
  --steel: #BCBFCC;
  --space: #9DA2B3;
  --graphite: #6E7180;
  --arsenic: #40424D;
  --phantom: #1E1E24;
  --black: #000000;

  /* Success color (keeping existing) */
  --tech-green: #22C55E;

  /* Blog-specific variables */
  --bg-secondary: #0A1628;
  --panel-border: rgba(188, 191, 204, 0.15);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--primary-dark);
  color: var(--primary-white);
  line-height: 1.6;
}

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

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 13, 39, 0.95);
  border-bottom: 1px solid rgba(250, 251, 255, 0.05);
  z-index: 999;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--smoke);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

/* Hamburger Button - Hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 8rem 5% 6rem 5%;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(0, 184, 255, 0.35), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(0, 147, 255, 0.25), transparent 60%);
  background-size: cover;
  background-position: center;
  color: var(--primary-white);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-carousel {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel Styles */
.carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.carousel-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-label {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0.5rem 0 1rem 0;
}

.hero p {
  font-size: 1.125rem;
  color: var(--smoke);
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-primary {
  background-color: var(--primary-blue);
  color: var(--primary-dark);
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.cta-primary:hover {
  background-color: var(--primary-blue-alt);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 184, 255, 0.3);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  background-color: var(--phantom);
  padding: 3rem 5%;
  text-align: center;
}

.stats-bar .stat {
  flex: 1 1 150px;
}

.stats-bar h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.stats-bar p {
  font-size: 0.9rem;
  color: var(--smoke);
  font-weight: 400;
}

/* How It Works */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.how-it-works .section-eyebrow {
  color: var(--primary-blue);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.85rem;
  font-family: 'Roboto Mono', 'Courier New', monospace;
}

.how-it-works h2 {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--primary-white);
}

.how-it-works .section-subhead {
  text-align: center;
  color: var(--space);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.workflow-step {
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 1.5rem 1.4rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.workflow-step:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 184, 255, 0.4);
}

.workflow-step.workflow-step-final {
  background: linear-gradient(180deg, rgba(0, 184, 255, 0.08), var(--bg-secondary));
  border-color: rgba(0, 184, 255, 0.3);
}

.workflow-step .step-num {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: 0.85rem;
}

.workflow-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--primary-white);
}

.workflow-step p {
  font-size: 0.85rem;
  color: var(--space);
  line-height: 1.55;
  margin: 0;
}

.workflow-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .workflow-steps { grid-template-columns: repeat(3, 1fr); }
  .workflow-step.workflow-step-final {
    grid-column: span 3;
    background: linear-gradient(90deg, rgba(0, 184, 255, 0.08), var(--bg-secondary) 60%);
  }
}

@media (max-width: 640px) {
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-step.workflow-step-final { grid-column: span 1; }
  .how-it-works h2 { font-size: 1.7rem; }
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  grid-auto-rows: 1fr;
  padding: 0 4rem;
}

.pricing-card {
  background-color: var(--phantom);
  border: 1px solid rgba(250, 251, 255, 0.08);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.highlight {
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 184, 255, 0.4);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.pricing-card .tier-desc {
  font-size: 0.85rem;
  color: var(--smoke);
  margin-bottom: 1rem;
  font-weight: 400;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.pricing-card .price.beta-price {
  color: var(--primary-blue);
}

.pricing-card ul {
  text-align:left;
  margin: 1rem 0 2rem 0;
  padding: 0 0 0 3rem;
}

.pricing-card ul li {
  font-size: 1rem;
  color: var(--smoke);
  margin: 0.4rem 0;
  font-weight: 400;
}

.cta-wrapper {
  margin-top: auto;
}

.cta-button {
  width: 100%;
  background-color: var(--primary-blue);
  color: var(--primary-dark);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-button:hover {
  background-color: var(--primary-blue-alt);
  transform: translateY(-2px);
}

.cta-button:disabled {
  background-color: var(--graphite);
  cursor: not-allowed;
  opacity: 0.6;
}

.pricing-card .note {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: var(--graphite);
  font-weight: 400;
}

.pricing-card.highlight .note {
  color: var(--tech-green);
}

/* Why Section */
.why-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.why-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background-color: rgba(250, 251, 255, 0.05);
  border: 1px solid rgba(250, 251, 255, 0.08);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.advantage-card .icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-white);
  margin-bottom: 0.75rem;
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--smoke);
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  background-color: rgba(250, 251, 255, 0.03);
  text-align: center;
  padding: 3rem 5%;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-white);
}

.cta-section p {
  font-size: 1rem;
  color: var(--smoke);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 400;
}

/* Footer */
footer {
  background-color: var(--phantom);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.85rem;
  color: var(--graphite);
  font-weight: 400;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: var(--space);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-carousel {
    width: 100%;
    margin-top: 40px;
  }

  .carousel-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Show hamburger button */
  .hamburger {
    display: flex;
  }

  /* Mobile nav layout */
  nav {
    flex-wrap: wrap;
    padding: 1rem 3%;
  }

  /* Hide nav-links by default, show when open */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    padding: 1rem 0;
    gap: 0;
  }

  /* Show nav-links when menu is open */
  nav.nav-open .nav-links {
    display: flex;
  }

  /* Style nav links for mobile */
  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(250, 251, 255, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* Hamburger animation when open */
  nav.nav-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .stats-bar h3 {
    font-size: 1.6rem;
  }

  .stats-bar p {
    font-size: 0.8rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero {
    padding: 6rem 3% 4rem 3%;
  }

  .stats-bar,
  .how-it-works,
  .pricing-section,
  .why-section,
  .cta-section {
    padding: 3rem 3%;
  }
}

/* ===== BLOG STYLES ===== */

/* Blog List Page */
.blog-page {
  min-height: 100vh;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(10, 22, 40, 0.95) 100%);
  border-bottom: 1px solid rgba(0, 184, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.blog-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-logo:hover {
  color: var(--primary-blue-alt);
}

.blog-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--smoke);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.blog-nav-link:hover {
  background: rgba(250, 251, 255, 0.05);
  color: var(--primary-blue);
}

.blog-content {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.blog-subtitle {
  font-size: 1.125rem;
  color: var(--smoke);
  margin-bottom: 3rem;
}

/* Blog Post Cards */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.blog-card:hover {
  border-color: rgba(0, 184, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 184, 255, 0.1);
  transform: translateY(-2px);
}

.blog-card-date {
  font-size: 0.875rem;
  color: var(--graphite);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-preview {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.6;
}

/* Individual Post Page */
.post-content {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--panel-border);
}

.post-date {
  font-size: 0.875rem;
  color: var(--graphite);
  margin-bottom: 1rem;
}

.post-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-white);
  line-height: 1.3;
  margin-bottom: 0;
}

.post-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--smoke);
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-signature {
  margin-top: 2rem;
  font-style: italic;
  color: var(--primary-white);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--smoke);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.back-to-blog:hover {
  color: var(--primary-blue);
}

.back-to-blog svg {
  width: 16px;
  height: 16px;
}

/* Blog Footer */
.blog-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--panel-border);
  color: var(--graphite);
  font-size: 0.875rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-header {
    padding: 1rem;
  }

  .blog-content,
  .post-content {
    padding: 2rem 1rem;
  }

  .blog-title {
    font-size: 2rem;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .blog-logo span {
    display: none;
  }
}

/* =============================================
   Report Showcase — Hero rework, new section,
   pricing highlight, and closing CTA updates
   ============================================= */

.hero h1 .hero-accent {
  color: var(--primary-blue);
  text-shadow: 0 0 40px rgba(0, 184, 255, 0.35);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.75rem 0;
}

.hero-pill {
  background: rgba(0, 184, 255, 0.08);
  border: 1px solid rgba(0, 184, 255, 0.25);
  color: var(--primary-blue);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary-blue);
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--primary-blue);
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: rgba(0, 184, 255, 0.08);
  transform: translateY(-1px);
}

/* Report showcase section */

.report-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--primary-dark) 0%, #050A1A 100%);
  position: relative;
}

.report-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 184, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 147, 255, 0.05), transparent 55%);
  pointer-events: none;
}

.report-section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.report-section .section-eyebrow {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.report-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--primary-white);
  text-align: left;
}

.report-section .section-subhead {
  color: var(--smoke);
  font-size: 1.125rem;
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.report-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 3rem;
}

.report-thumbnails figure {
  margin: 0;
  background: transparent;
}

.report-thumbnails img {
  width: 100%;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  display: block;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.report-thumbnails figure:hover img {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 184, 255, 0.25);
}

.report-thumbnails figcaption {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-top: 0.625rem;
  text-align: center;
}

.report-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 3rem;
}

.report-pillar {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.report-pillar:hover {
  border-color: rgba(0, 184, 255, 0.4);
  transform: translateY(-2px);
}

.report-pillar .pillar-count {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.625rem;
}

.report-pillar .pillar-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cloud);
  margin-bottom: 0.625rem;
}

.report-pillar p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.6;
  margin: 0;
}

.report-sample-card {
  background: rgba(0, 184, 255, 0.05);
  border: 1px solid rgba(0, 184, 255, 0.3);
  border-radius: 8px;
  padding: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.report-sample-card h3 {
  font-size: 1.375rem;
  color: var(--primary-white);
  margin: 0 0 0.625rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.report-sample-card p {
  color: var(--smoke);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}

.report-sample-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Featured bullet in pricing card */

.pricing-card ul li.featured {
  color: var(--primary-white);
  font-weight: 600;
  position: relative;
  /* Suppress the default disc marker so only the custom blue glow dot from
     ::before below renders. Without this, the featured row stacks two markers
     (default disc + custom glow) and looks like a donut/target. */
  list-style: none;
}

.pricing-card ul li.featured::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-blue);
}

/* Closing CTA section — dual buttons */

.cta-row-final {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* Responsive */

@media (max-width: 840px) {
  .report-thumbnails { grid-template-columns: repeat(2, 1fr); }
  .report-pillars { grid-template-columns: 1fr; }
  .report-section h2 { font-size: 1.875rem; }
  .report-section { padding: 4rem 5%; }
}

@media (max-width: 640px) {
  .hero-pill { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row a { text-align: center; }
  .cta-row-final { flex-direction: column; align-items: stretch; }
  .cta-row-final a { text-align: center; }
  .report-sample-cta-row { flex-direction: column; align-items: stretch; }
  .report-sample-cta-row a { text-align: center; }
}
