/*
Theme Name: CleanClicks
Theme URI: https://cleanclicks.io
Author: ClickPath Consultants LLC
Author URI: https://clickpathconsultants.com
Description: CleanClicks marketing website — first-party conversion tracking infrastructure.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleanclicks-theme
*/


/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(27, 51, 83, 0.08);
  --shadow-card-hero: 0 8px 40px rgba(27, 51, 83, 0.15);
  --shadow-card-hover: 0 12px 40px rgba(27, 51, 83, 0.18);
  --shadow-btn-glow: 0 4px 20px rgba(50, 133, 80, 0.35);

  /* Radii */
  --radius-card: 12px;
  --radius-card-sm: 8px;
  --radius-card-lg: 16px;
  --radius-card-hero: 20px;

  /* Colors */
  --color-navy: #1B3353;
  --color-navy-deep: #0F1F35;
  --color-navy-darkest: #0D1B2E;
  --color-navy-card: #22436B;
  --color-navy-mid: #162A45;
  --color-green: #328550;
  --color-green-verified: #4ADE80;
  --color-red-action: #EA1C1C;
  --color-amber: #F59E0B;
  --color-surface: #F0F2F5;
  --color-off-white: #F8F9FA;
  --color-body: #4A5568;
  --color-body-dark: #374151;
  --color-caption: #6B7280;
  --color-border: #E2E8F0;

  /* Typography stacks */
  --font-inter: "Inter", sans-serif;
  --font-source: "Source Sans 3", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}


/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes ledPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes ledPulseNav {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes dataStream {
  0% { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}

@keyframes terminalBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* rackGlow: replaced box-shadow animation (forces repaint) with static glow */
@keyframes rackGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gapMeterFill {
  from { width: 0%; }
}

@keyframes signalFlow {
  0% { left: -6px; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes activityPulse {
  0%   { height: 4px;  opacity: 0.3; }
  100% { height: 20px; opacity: 1;   }
}

/* --- DATA TELEMETRY ANIMATIONS --- */
@keyframes dataPacketFlow {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 100%)); opacity: 0; }
}

@keyframes dataPacketFlowReverse {
  0%   { transform: translateX(calc(100vw + 100%)); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateX(-100%); opacity: 0; }
}

@keyframes terminalTypeIn {
  0%   { width: 0; opacity: 0; }
  5%   { opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

@keyframes nodeFlicker {
  0%, 100% { opacity: 0.15; }
  25% { opacity: 0.4; }
  50% { opacity: 0.1; }
  75% { opacity: 0.35; }
}

@keyframes hexPulse {
  0%, 100% { opacity: 0.04; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.02); }
}


/* ============================================================
   WORDPRESS RESETS
   ============================================================ */

.wp-site-blocks > footer {
  margin-block-start: 0;
}

/* Reset WP core button defaults so our custom classes win.
   padding + font-size intentionally omitted — lower-specificity
   btn-* rules must be able to set these without !important. */
.wp-block-button.btn-primary .wp-block-button__link.wp-element-button,
.wp-block-button.btn-secondary .wp-block-button__link.wp-element-button,
.wp-block-button.btn-primary--lg .wp-block-button__link.wp-element-button,
.wp-block-button.btn-secondary--lg .wp-block-button__link.wp-element-button,
.wp-block-button.btn-ghost .wp-block-button__link.wp-element-button {
  background-color: unset;
  border: unset;
  line-height: unset;
  color: unset;
  width: auto;
}

/* Kill WP default heading top margins */
.wp-block-heading {
  margin-top: 0;
}

/* ---- WORDPRESS LAYOUT RESETS ----
   WordPress injects is-layout-constrained on wp:group blocks, which adds:
     max-width: var(--wp--style--root--content-size)
     margin-left: auto !important; margin-right: auto !important
   to all direct children.

   Strategy:
   - Kill max-width on headings/paragraphs/groups (use !important to beat WP)
   - Leave margin alone on text elements (WP's margin:auto is harmless or helpful
     for centered intros — we only need to kill it on GRID CHILDREN)
   - Grid children get explicit margin:0 override so cards fill cells evenly */

/* Kill WP contentSize max-width on headings, groups, and paragraphs */
.gut-feeling .wp-block-heading,
.gut-feeling .wp-block-group:not(.content-wrap),
.gut-feeling p,
.pollution-problem .wp-block-heading,
.pollution-problem .wp-block-group:not(.content-wrap),
.pollution-problem p,
.missing-data .wp-block-heading,
.missing-data .wp-block-group:not(.content-wrap),
.missing-data p,
.compound-effect .wp-block-heading,
.compound-effect .wp-block-group:not(.content-wrap),
.compound-effect p,
.false-fix .wp-block-heading,
.false-fix .wp-block-group:not(.content-wrap),
.false-fix p,
.the-fix .wp-block-heading,
.the-fix .wp-block-group:not(.content-wrap),
.the-fix p,
.the-gap .wp-block-heading,
.the-gap .wp-block-group:not(.content-wrap),
.the-gap p,
.differentiator .wp-block-heading,
.differentiator .wp-block-group:not(.content-wrap),
.differentiator p,
.final-cta .wp-block-heading,
.final-cta .wp-block-group:not(.content-wrap),
.final-cta p,
.hero-section .wp-block-heading,
.hero-section p,
.page-hero .wp-block-heading,
.page-hero p,
/* Interior page sections */
.pricing-hero .wp-block-heading,
.pricing-hero p,
.interior-hero .wp-block-heading,
.interior-hero p,
.bottom-cta .wp-block-heading,
.bottom-cta p {
  max-width: none !important;
}

/* Interior page: wp:html blocks must escape WP max-width cap */
.pricing-hero .wp-block-html,
.interior-hero .wp-block-html,
.bottom-cta .wp-block-html,
.wp-block-group.alignfull > .wp-block-html {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Interior page grids: force full-width (WP injects phantom max-width) */
.pricing-cards-grid,
.included-grid,
.addon-cards-grid,
.timeline,
.privacy-grid,
.founder-card,
.examine-grid,
.timeline-steps,
.contact-layout,
.audit-hero-layout,
.comparison-stack,
.decision-cards,
.vs-columns,
.faq-list,
.concierge-layout {
  max-width: none !important;
  width: 100% !important;
}

/* Kill WP-injected padding on groups inside our sections */
.gut-feeling > .wp-block-group,
.pollution-problem > .wp-block-group,
.missing-data > .wp-block-group,
.compound-effect > .wp-block-group,
.false-fix > .wp-block-group,
.the-fix > .wp-block-group,
.the-gap > .wp-block-group,
.differentiator > .wp-block-group,
.final-cta > .wp-block-group {
  padding-left: 0;
  padding-right: 0;
}

/* Grid children: override WP is-layout-constrained margin:auto !important
   so cards fill their grid cells evenly and top-align horizontally.
   This is the surgical fix — only grids need margin:0. */
.gut-feeling__grid > *,
.pollution-problem__grid > *,
.compound-effect__symptoms > *,
.false-fix__grid > *,
.the-fix__pillars > *,
.differentiator__grid > *,
/* Interior page grids */
.pricing-cards-grid > *,
.included-grid > *,
.addon-cards-grid > *,
.timeline > *,
.privacy-grid > *,
.founder-card > *,
.examine-grid > *,
.timeline-steps > *,
.contact-layout > *,
.audit-hero-layout > *,
.comparison-stack > *,
.decision-cards > *,
.concierge-layout > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Reset WP button wrapper — kill display:flex and margin WP adds */
.wp-block-button {
  margin: 0;
}

.wp-block-buttons {
  gap: 16px;
}

/* Ensure wp-block-paragraph doesn't get WP margin-bottom */
.hero-section p.wp-block-paragraph,
.gut-feeling p,
.pollution-problem p,
.missing-data p,
.compound-effect p,
.false-fix p,
.the-fix p,
.the-gap p,
.differentiator p,
.final-cta p {
  margin-bottom: 0;
  margin-top: 0;
}


/* ============================================================
   GLOBAL BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
}

body {
  background: #0D1B2E;
  color: #1B3353;
  overflow-x: hidden;
  font-family: var(--font-source);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed header offset */
body {
  padding-top: 72px;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* content-wrap: applies to BOTH wp:group blocks AND raw HTML divs.
   Side padding handled by parent sections (24px desktop, 16px mobile). */
.content-wrap.wp-block-group,
.content-wrap:not(.wp-block-group) {
  max-width: 1248px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
}

/* Ensure content-wrap sits above absolutely-positioned grid line overlays */
.compound-effect > .wp-block-group.content-wrap,
.the-fix > .wp-block-group.content-wrap,
.differentiator > .wp-block-group.content-wrap,
.final-cta > .wp-block-group.content-wrap {
  position: relative;
  z-index: 1;
}

.section-fade {
  animation: fadeUp 0.7s ease forwards;
}

.hover-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,51,83,0.18);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .stack-mobile { flex-direction: column !important; }
  .full-mobile { width: 100% !important; }
  /* Side padding handled by parent sections */
  .content-wrap.wp-block-group,
  .content-wrap:not(.wp-block-group) { padding: 0; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}


/* ============================================================
   LED COMPONENT
   ============================================================ */

.led {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ledPulse 2.4s ease-in-out infinite;
}

/* Default size: 6px */
.led {
  width: 6px;
  height: 6px;
}

.led--sm {
  width: 4px;
  height: 4px;
}

.led--xs {
  width: 3px;
  height: 3px;
}

.led--md {
  width: 5px;
  height: 5px;
}

.led--green {
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,0.5), 0 0 12px rgba(74,222,128,0.25);
}

.led--red {
  background: #EA1C1C;
  box-shadow: 0 0 6px rgba(234,28,28,0.5), 0 0 12px rgba(234,28,28,0.25);
}

.led--amber {
  background: #F59E0B;
  box-shadow: 0 0 6px rgba(245,158,11,0.5), 0 0 12px rgba(245,158,11,0.25);
}

.led--brand {
  background: #328550;
  box-shadow: 0 0 6px rgba(50,133,80,0.5), 0 0 12px rgba(50,133,80,0.25);
}

.led--no-pulse {
  animation: none;
}

.led--green-static {
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,0.5), 0 0 12px rgba(74,222,128,0.25);
  animation: none;
}


/* ============================================================
   SECTION EYEBROW
   ============================================================ */

.section-eyebrow {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #328550;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Auto-generated LED dot via pseudo-element */
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #328550;
  box-shadow: 0 0 5px rgba(50,133,80,0.5), 0 0 10px rgba(50,133,80,0.25);
  animation: ledPulse 2.4s ease-in-out 0s infinite;
  flex-shrink: 0;
}

.section-eyebrow--green::before {
  background: #4ADE80;
  box-shadow: 0 0 5px rgba(74,222,128,0.5), 0 0 10px rgba(74,222,128,0.25);
}

.section-eyebrow--centered {
  justify-content: center;
}

.section-eyebrow--green {
  color: #4ADE80;
}

.section-eyebrow--red {
  color: #EA1C1C;
}
.section-eyebrow--red::before {
  background: #EA1C1C;
  box-shadow: 0 0 5px rgba(234,28,28,0.5), 0 0 10px rgba(234,28,28,0.25);
}

.section-eyebrow--amber {
  color: #F59E0B;
}

.section-eyebrow__system-label {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.5;
}


/* ============================================================
   BUTTONS
   ============================================================ */

/* --- SHARED BUTTON BASE ---
   Both plain <a class="btn-*"> AND WP <div class="wp-block-button btn-*"><a class="wp-block-button__link">
   must produce identical visual output. WP wrapper div is display:contents to flatten it. */
.wp-block-button.btn-primary,
.wp-block-button.btn-secondary,
.wp-block-button.btn-ghost,
.wp-block-button.btn-primary--lg,
.wp-block-button.btn-secondary--lg,
.wp-block-button.btn-primary--sm,
.wp-block-button.btn-secondary--sm {
  display: contents;
}

/* --- Primary Button --- */
a.btn-primary,
.btn-primary .wp-block-button__link.wp-element-button,
.wp-block-button.btn-primary .wp-block-button__link.wp-element-button {
  background: #328550;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}

a.btn-primary:hover,
.btn-primary .wp-block-button__link.wp-element-button:hover,
.wp-block-button.btn-primary .wp-block-button__link.wp-element-button:hover {
  background: #3a9a5c;
  box-shadow: 0 4px 24px rgba(50,133,80,0.45);
  transform: translateY(-1px);
}

.btn-primary .btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

a.btn-primary.btn-primary--sm,
.btn-primary--sm .wp-block-button__link.wp-element-button,
.wp-block-button.btn-primary--sm .wp-block-button__link.wp-element-button {
  padding: 8px 20px;
  font-size: 14px;
}

a.btn-primary.btn-primary--lg,
.btn-primary--lg .wp-block-button__link.wp-element-button,
.wp-block-button.btn-primary--lg .wp-block-button__link.wp-element-button {
  padding: 18px 36px;
  font-size: 18px;
}


/* --- Secondary Button (white outline, dark backgrounds) --- */
a.btn-secondary,
.btn-secondary .wp-block-button__link.wp-element-button,
.wp-block-button.btn-secondary .wp-block-button__link.wp-element-button {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}

a.btn-secondary:hover,
.btn-secondary .wp-block-button__link.wp-element-button:hover,
.wp-block-button.btn-secondary .wp-block-button__link.wp-element-button:hover {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 16px rgba(255,255,255,0.15);
  transform: translateY(-1px);
  background: transparent;
}

a.btn-secondary.btn-secondary--sm,
.btn-secondary--sm .wp-block-button__link.wp-element-button,
.wp-block-button.btn-secondary--sm .wp-block-button__link.wp-element-button {
  padding: 8px 20px;
  font-size: 14px;
}

a.btn-secondary.btn-secondary--lg,
.btn-secondary--lg .wp-block-button__link.wp-element-button,
.wp-block-button.btn-secondary--lg .wp-block-button__link.wp-element-button {
  padding: 18px 36px;
  font-size: 18px;
}


/* --- Ghost Button (green outline, light backgrounds) --- */
a.btn-ghost,
.btn-ghost .wp-block-button__link.wp-element-button,
.wp-block-button.btn-ghost .wp-block-button__link.wp-element-button {
  background: transparent;
  color: #328550;
  border: 1.5px solid rgba(50,133,80,0.4);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}

a.btn-ghost:hover,
.btn-ghost .wp-block-button__link.wp-element-button:hover,
.wp-block-button.btn-ghost .wp-block-button__link.wp-element-button:hover {
  border-color: rgba(50,133,80,0.7);
  box-shadow: 0 0 16px rgba(50,133,80,0.25);
  transform: translateY(-1px);
}

/* Ghost on dark backgrounds — brighter green for contrast */
.final-cta a.btn-ghost,
.final-cta .btn-ghost .wp-block-button__link.wp-element-button,
.final-cta .wp-block-button.btn-ghost .wp-block-button__link.wp-element-button,
.the-gap a.btn-ghost {
  color: #4ADE80;
  border-color: rgba(74,222,128,0.35);
}

.final-cta a.btn-ghost:hover,
.final-cta .btn-ghost .wp-block-button__link.wp-element-button:hover,
.final-cta .wp-block-button.btn-ghost .wp-block-button__link.wp-element-button:hover,
.the-gap a.btn-ghost:hover {
  border-color: rgba(74,222,128,0.7);
  box-shadow: 0 0 16px rgba(74,222,128,0.25);
}


/* --- Text Link --- */
.text-link {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-inter);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.text-link:hover {
  color: #4ADE80;
}

.text-link--dark {
  color: #328550;
}

.text-link--dark:hover {
  color: #3a9a5c;
}


/* ============================================================
   GRID LINES
   ============================================================ */

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.02;
}

.grid-lines__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #4ADE80;
}


/* ============================================================
   SERVER ACTIVITY BAR
   ============================================================ */

.server-activity-bar {
  display: flex;
  gap: 6px;
  align-items: center;
}

.server-activity-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ledPulse 2.4s ease-in-out infinite;
}

.server-activity-dot--green {
  background-color: #4ADE80;
  box-shadow: 0 0 5px rgba(74,222,128,0.5), 0 0 10px rgba(74,222,128,0.25);
}

.server-activity-dot--red {
  background-color: #EA1C1C;
  box-shadow: 0 0 5px rgba(234,28,28,0.5), 0 0 10px rgba(234,28,28,0.25);
}

.server-activity-dot--amber {
  background-color: #F59E0B;
  box-shadow: 0 0 5px rgba(245,158,11,0.5), 0 0 10px rgba(245,158,11,0.25);
}


/* ============================================================
   SCANLINE OVERLAY
   ============================================================ */

.scanline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;

}

.scanline-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.06), transparent);
  animation: scanline 8s linear infinite;

}


/* ============================================================
   ANIMATED STAT
   ============================================================ */

.animated-stat {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.animated-stat--green {
  color: #4ADE80;
}

.animated-stat--red {
  color: #EA1C1C;
}

.animated-stat--white {
  color: white;
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  transition: all 0.35s ease;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(27,51,83,0.06);
}

.site-header.header-scrolled {
  box-shadow: 0 2px 20px rgba(27,51,83,0.08);
}

.site-header__inner {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}


/* --- Logo --- */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo-img {
  width: 32px;
  height: 32px;
}

.site-header__logo-text {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 20px;
  color: #1B3353;
  letter-spacing: -0.02em;
}

.site-header__logo-text .green {
  color: #328550;
}


/* --- Desktop Nav Links --- */
.site-header__nav,
.header-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__nav-link,
.header-nav-link {
  color: #4A5568;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-inter);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-header__nav-link:hover,
.header-nav-link:hover {
  color: #328550;
  text-shadow: 0 0 8px rgba(50,133,80,0.3);
}

.site-header__nav-link--active,
.header-nav-link--active {
  color: #328550;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(50,133,80,0.4);
  border-bottom: 2px solid #328550;
}

@media (max-width: 768px) {
  .header-navigation { display: none; }
}


/* --- Desktop Dropdown Menus --- */

/* Reset wp_nav_menu list styles */
.header-nav-list,
.header-nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-item {
  position: relative;
}

/* Dropdown parent arrows */
.header-nav-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}

.header-nav-item.has-dropdown.dropdown-open > a::after {
  transform: rotate(180deg);
}

/* Dropdown parent link: no navigate on click */
.header-nav-item.has-dropdown > a {
  cursor: default;
}

/* Submenu panel */
.header-nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(27, 51, 83, 0.08);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 9999;
}

/* Hover bridge — prevents gap between parent and submenu */
.header-nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}

/* Show dropdown on hover or when open via keyboard/click */
.header-nav-item.has-dropdown:hover > .sub-menu,
.header-nav-item.has-dropdown.dropdown-open > .sub-menu {
  display: block;
}

.header-nav-item.has-dropdown:hover::after,
.header-nav-item.has-dropdown.dropdown-open::after {
  display: block;
}

/* Dropdown items */
.header-dropdown-item {
  display: block;
}

.header-dropdown-item a.header-nav-link {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #4A5568;
  border-bottom: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-dropdown-item a.header-nav-link:hover {
  background: rgba(50, 133, 80, 0.06);
  color: #328550;
  text-shadow: none;
}

/* Hide placeholder menu items until their pages exist */
.cc-menu-hidden {
  display: none;
}


/* --- Mobile Menu: wp_nav_menu overrides --- */

.mobile-menu-nav {
  display: contents;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-item {
  display: block;
}

/* Mobile dropdown: show children inline with indent */
.mobile-nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
}

.mobile-nav-item.mobile-has-children > a.mobile-menu__link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  padding-bottom: 8px;
  border-bottom: none;
  margin-top: 16px;
}

.mobile-nav-item.mobile-has-children:first-child > a.mobile-menu__link {
  margin-top: 0;
}


/* --- Footer Menu: wp_nav_menu overrides --- */

.footer-nav {
  display: block;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  display: block;
}


/* --- Header CTA Buttons --- */
.site-header__cta-group,
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__cta-audit,
.btn-header-audit {
  color: #328550;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-inter);
  padding: 8px 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(50,133,80,0.4);
  text-decoration: none;
  transition: all 0.25s ease;
}

.site-header__cta-audit:hover,
.btn-header-audit:hover {
  box-shadow: 0 0 16px rgba(50,133,80,0.25);
  border-color: rgba(50,133,80,0.7);
}

.site-header__cta-start,
.btn-header-start {
  background: #328550;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-inter);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.site-header__cta-start:hover,
.btn-header-start:hover {
  box-shadow: 0 4px 20px rgba(50,133,80,0.4);
  background: #3a9a5c;
}


/* --- Scroll Dots (below header) --- */
.scroll-dots-container {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dots {
  display: flex;
  gap: 3px;
  align-items: center;
}

.scroll-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: ledPulseNav 2.4s ease-in-out infinite;
  transition: opacity 0.12s ease, filter 0.12s ease, transform 0.12s ease;
  flex-shrink: 0;
}

.scroll-dot--green {
  background-color: #328550;
  box-shadow: 0 0 5px rgba(50,133,80,0.6);
}

.scroll-dot--red {
  background-color: #B91C1C;
  box-shadow: 0 0 5px rgba(185,28,28,0.6);
}

.scroll-dot--amber {
  background-color: #D97706;
  box-shadow: 0 0 5px rgba(217,119,6,0.6);
}


/* --- Mobile Toggle --- */
.site-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .site-header__mobile-toggle { display: flex; align-items: center; }
  .header-ctas { display: none !important; }
}

/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1B3353;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.mobile-menu--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.mobile-menu__link {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-inter);
  text-decoration: none;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__link--active {
  color: #4ADE80;
  font-weight: 600;
  border-bottom: 1px solid rgba(74,222,128,0.3);
}

.mobile-menu__cta-group {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}

.mobile-menu__cta-audit {
  color: #4ADE80;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-inter);
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(50,133,80,0.6);
  text-decoration: none;
  text-align: center;
}

.mobile-menu__cta-start {
  background: #328550;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-inter);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #0D1B2E;
  border-top: 1px solid rgba(50,133,80,0.1);
  padding: 64px 0 32px;
}

.site-footer__columns {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.site-footer__brand {
  flex: 1 1 280px;
  max-width: 320px;
}

.site-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.site-footer__brand-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.site-footer__brand-sub {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__col {
  flex: 1 1 160px;
}

.site-footer__col-header {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.site-footer__link {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: rgba(255,255,255,0.7);
}


/* --- Footer Bottom Bar --- */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__copyright {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__legal-link {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  text-decoration: none;
}

.site-footer__legal-link:hover {
  color: rgba(255,255,255,0.5);
}

.site-footer__legal-link--ccpa {
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}


/* ============================================================
   SECTION: HERO
   ============================================================ */

.hero-section {
  background: linear-gradient(180deg, #1B3353 0%, #0F1F35 100%);
  padding-top: 120px;
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(50,133,80,0.08);
}
/* Aurora glow overlay: animates opacity only (GPU-composited) instead of box-shadow (repaint) */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(50,133,80,0.12);
  animation: rackGlow 6s ease-in-out infinite;

  pointer-events: none;
  z-index: 0;
}

.hero-section__content {
  position: relative;
  z-index: 1;
}

/* --- AURORA / NORTHERN LIGHTS (GSAP-driven) --- */
.hero-blob-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Aurora ribbons: NO filter:blur — Firefox re-renders blur every frame
   even on opacity-only changes. Wide gradients + border-radius simulate
   the soft glow without any per-frame cost. */
.hero-aurora-ribbon {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-columns {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-section__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-section__left {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero-section__right {
  flex: 0 0 40%;
  max-width: 40%;
}

.hero-section__headline {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 24px;
}

.hero-section__headline .green {
  color: #4ADE80;
}

p.hero-section__subhead {
  font-family: var(--font-source);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 580px !important;
  margin-bottom: 30px;
}

.hero-section__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-section .wp-block-buttons {
  margin-bottom: 30px;
}

.hero-section__footnote {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-family: var(--font-inter);
}


/* --- Pipeline Container (right column) --- */
.hero-pipeline {
  background: rgba(15,31,53,0.5);
  border: 1px solid rgba(50,133,80,0.15);
  border-radius: 16px;
  padding: 20px 16px;
  position: relative;
}

.hero-pipeline__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.hero-pipeline__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(74,222,128,0.6);
  letter-spacing: 0.1em;
}


/* --- Ambient LEDs (positioned absolutely in hero / final-cta) --- */
.ambient-led {
  position: absolute;
}


/* ============================================================
   SECTION: CAPABILITY STRIP
   ============================================================ */

.capability-strip {
  background: #162A45;
  border-top: 1px solid rgba(50,133,80,0.1);
  border-bottom: 1px solid rgba(50,133,80,0.1);
  padding: 20px 0;
}

.capability-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.capability-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.capability-strip__text {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}


/* ============================================================
   SECTION EDGE PADDING
   Prevent content from touching viewport edge on all sections.
   Desktop: 24px, Mobile: 16px.
   ============================================================ */

.gut-feeling,
.pollution-problem,
.missing-data,
.compound-effect,
.false-fix,
.the-fix,
.the-gap,
.differentiator,
.final-cta,
.capability-strip,
.page-hero,
.interior-hero,
.pricing-hero,
.bottom-cta,
.section-white,
.section-light,
.section-navy,
.section-gradient-dark,
.vs-section,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .hero-section,
  .gut-feeling,
  .pollution-problem,
  .missing-data,
  .compound-effect,
  .false-fix,
  .the-fix,
  .the-gap,
  .differentiator,
  .final-cta,
  .capability-strip,
  .page-hero,
  .interior-hero,
  .pricing-hero,
  .bottom-cta,
  .section-white,
  .section-light,
  .section-navy,
  .section-gradient-dark,
  .vs-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ============================================================
   SECTION: GUT FEELING (ProblemSection)
   ============================================================ */

.gut-feeling {
  background: #FFFFFF;
  padding: 90px 0;
}

.gut-feeling__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

.gut-feeling__heading .green {
  color: #328550;
}

p.gut-feeling__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}

.gut-feeling__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}


/* --- Problem Card --- */
.problem-card {
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.problem-card__led {
  position: absolute;
  top: 16px;
  right: 16px;
}

.problem-card__label {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.problem-card__label--red {
  color: #EA1C1C;
}

.problem-card__label--amber {
  color: #F59E0B;
}

.problem-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  color: #1B3353;
  margin-bottom: 12px;
  line-height: 1.3;
}

.problem-card__body {
  font-family: var(--font-source);
  font-size: 16px;
  color: #4A5568;
  line-height: 1.6;
}

.problem-card__body strong {
  color: #1B3353;
}


/* --- Kicker Callout (dark bg, green left border) --- */
.kicker-callout {
  background: #1B3353;
  border-left: 4px solid #328550;
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  max-width: fit-content;
  margin: 0 auto !important;
}

.kicker-callout p {
  font-family: var(--font-source);
  color: white;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.kicker-callout strong {
  color: #4ADE80;
}


/* ============================================================
   SECTION: POLLUTION PROBLEM (HowItWorks)
   ============================================================ */

.pollution-problem {
  background: #F0F2F5;
  padding: 90px 0;
}

.pollution-problem__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

p.pollution-problem__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 48px !important;
  text-align: center;
}

.pollution-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* --- Damage Card --- */
.damage-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.damage-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.damage-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #EA1C1C;
  font-weight: 600;
}

.damage-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  color: #1B3353;
  margin-bottom: 12px;
  line-height: 1.3;
}

.damage-card__body {
  font-family: var(--font-source);
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
}


/* --- Closing Statement (red left border) --- */
.closing-statement {
  margin-top: 40px;
  border-left: 4px solid #EA1C1C;
  padding-left: 24px;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.closing-statement p {
  font-family: var(--font-source);
  font-size: 17px;
  color: #1B3353;
  line-height: 1.65;
  font-weight: 500;
}


/* ============================================================
   SECTION: MISSING DATA (FeatureGrid)
   ============================================================ */

.missing-data {
  background: #FFFFFF;
  padding: 90px 0;
}

.missing-data__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

p.missing-data__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}


/* --- Impact Row --- */
.missing-data__impact-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.missing-data__stat-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.missing-data__stat-number {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 48px;
  color: #EA1C1C;
  line-height: 1;
  margin-bottom: 8px;
}

.missing-data__stat-caption {
  font-family: var(--font-source);
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

.missing-data__context-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
}

.missing-data__context-card p {
  font-family: var(--font-source);
  font-size: 16px;
  color: #4A5568;
  line-height: 1.65;
}

.missing-data__context-card strong {
  color: #1B3353;
}


/* --- Native Tools Dark Box --- */
.native-tools-box {
  background: #1B3353;
  border-radius: 12px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.native-tools-box__content {
  position: relative;
  z-index: 1;
}

.native-tools-box__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.native-tools-box__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #F59E0B;
}

.native-tools-box p {
  font-family: var(--font-source);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 800px !important;
}

.native-tools-box p + p {
  margin-top: 16px;
}

.native-tools-box p:last-child {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.native-tools-box strong {
  color: #4ADE80;
}


/* ============================================================
   SECTION: COMPOUND EFFECT (PrivacySection)
   ============================================================ */

.compound-effect {
  background: #1B3353;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.compound-effect__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

p.compound-effect__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}

.compound-effect__intro strong {
  color: white;
}


/* --- Symptom Cards --- */
.compound-effect__symptoms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.symptom-card {
  background: rgba(234,28,28,0.08);
  border: 1px solid rgba(234,28,28,0.15);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
}

.symptom-card p {
  font-family: var(--font-source);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}


/* --- Compound Kicker --- */
.compound-effect__kicker {
  border-left: 4px solid #4ADE80;
  padding-left: 24px;
  max-width: fit-content;
  margin: 0 auto !important;
}

.compound-effect__kicker-line {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 22px;
  color: white;
  line-height: 1.4;
}

.compound-effect__kicker-punch {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 28px;
  color: #4ADE80;
  line-height: 1.3;
  margin-top: 12px;
}


/* ============================================================
   SECTION: FALSE FIX (ComparisonSection)
   ============================================================ */

.false-fix {
  background: #F0F2F5;
  padding: 90px 0;
}

.false-fix__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

.false-fix__heading .green {
  color: #328550;
}

p.false-fix__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}

.false-fix__intro strong {
  color: #328550;
}

.false-fix__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 0;
}


/* --- Counterpoint Card (expandable) --- */
.counterpoint-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 32px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.counterpoint-card:hover {
  box-shadow: var(--shadow-card);
}

.counterpoint-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* Expand indicator chevron */
.counterpoint-card__header::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #328550;
  border-bottom: 2px solid #328550;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
  opacity: 0.6;
}

.counterpoint-card:hover .counterpoint-card__header::after {
  opacity: 1;
}

.counterpoint-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #F59E0B;
  font-weight: 600;
}

.counterpoint-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  color: #1B3353;
  margin-bottom: 10px;
  line-height: 1.3;
}

.counterpoint-card__summary,
.counterpoint-card__detail {
  font-family: var(--font-source);
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
}

.counterpoint-card__detail {
  border-top: 1px solid #E2E8F0;
  padding-top: 12px;
  margin-top: 12px;
}

.counterpoint-card__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #328550;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-inter);
}

.counterpoint-card__toggle-arrow {
  transition: transform 0.2s;
}

.counterpoint-card__toggle-arrow--open {
  transform: rotate(180deg);
}


/* ============================================================
   SECTION: THE FIX (AgencyCallout)
   ============================================================ */

.the-fix {
  background: #1B3353;
  padding: 90px 0;
  position: relative;
}

.the-fix__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

.the-fix__heading .green {
  color: #4ADE80;
}

p.the-fix__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 48px !important;
  text-align: center;
}


/* --- Pillar Cards --- */
.the-fix__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.pillar-card--capture {
  background: rgba(50,133,80,0.08);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 16px;
  padding: 36px 32px;
}

.pillar-card--filter {
  background: rgba(234,28,28,0.05);
  border: 1px solid rgba(234,28,28,0.12);
  border-radius: 16px;
  padding: 36px 32px;
}

.pillar-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pillar-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.pillar-card__label--green {
  color: #4ADE80;
}

.pillar-card__label--red {
  color: #EA1C1C;
}

.pillar-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 22px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar-card__body {
  font-family: var(--font-source);
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.pillar-card__body strong {
  color: rgba(255,255,255,0.9);
}


/* --- Result Statement (green left border) --- */
.the-fix__result {
  border-left: 4px solid #4ADE80;
  padding-left: 28px;
  max-width: fit-content;
  margin: 0 auto !important;
}

.the-fix__result p {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: #4ADE80;
  line-height: 1.3;
}


/* ============================================================
   SECTION: THE GAP
   ============================================================ */

.the-gap {
  background: #FFFFFF;
  padding: 90px 0;
}

.the-gap__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

.the-gap__heading .green {
  color: #328550;
}

p.the-gap__intro {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}

.the-gap__intro strong {
  color: #1B3353;
}


/* --- Audit Callout Box --- */
.audit-callout {
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center;
}

p.audit-callout__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  color: #1B3353;
  margin-bottom: 16px;
}

p.audit-callout__body {
  font-family: var(--font-source);
  font-size: 16px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.audit-callout__body strong {
  color: #1B3353;
}

.audit-callout__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ============================================================
   SECTION: DIFFERENTIATOR
   ============================================================ */

.differentiator {
  background: #1B3353;
  padding: 90px 0;
  position: relative;
}

.differentiator__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: white;
  margin-bottom: 48px;
  text-align: center;
}

.differentiator__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* --- Feature Card --- */
.feature-card {
  background: #22436B;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(74,222,128,0.08);
  position: relative;
}

.feature-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.feature-card__sys-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(74,222,128,0.3);
}

.feature-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card__body {
  font-family: var(--font-source);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}


/* ============================================================
   SECTION: FINAL CTA
   ============================================================ */

.final-cta {
  background: linear-gradient(180deg, #0F1F35 0%, #0D1B2E 100%);
  padding: 90px 0;
  position: relative;
  text-align: center;
}

.final-cta__activity-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.final-cta__heading {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 24px;
}

.final-cta__heading .green {
  color: #4ADE80;
}

p.final-cta__subhead {
  font-family: var(--font-source);
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 580px !important;
  margin: 0 auto 36px !important;
}

.final-cta__cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

p.final-cta__footnote {
  font-family: var(--font-inter);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 500px !important;
  margin: 0 auto 30px !important;
  line-height: 1.5;
}


/* ============================================================
   SHARED SECTION TYPOGRAPHIC HELPERS
   ============================================================ */

/* Light-bg section heading (reusable) */
.section-heading--light {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #1B3353;
  margin-bottom: 24px;
  text-align: center;
}

/* Dark-bg section heading (reusable) */
.section-heading--dark {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

/* Light-bg section intro paragraph */
.section-intro--light {
  font-family: var(--font-source);
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}

/* Dark-bg section intro paragraph */
.section-intro--dark {
  font-family: var(--font-source);
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 760px !important;
  margin: 0 auto 40px !important;
  text-align: center;
}


/* ============================================================
   FORM STYLES
   ============================================================ */

.form-card {
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 640px;
}

.form-card--dark {
  background: rgba(15,31,53,0.5);
  border: 1px solid rgba(50,133,80,0.15);
}

.form-card label {
  display: block;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  color: #1B3353;
  margin-bottom: 6px;
}

.form-card--dark label {
  color: rgba(255,255,255,0.8);
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="url"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-source);
  font-size: 16px;
  color: #1B3353;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-card--dark input[type="text"],
.form-card--dark input[type="email"],
.form-card--dark input[type="url"],
.form-card--dark input[type="tel"],
.form-card--dark select,
.form-card--dark textarea {
  background: rgba(15,31,53,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: #328550;
  box-shadow: 0 0 0 3px rgba(50,133,80,0.15);
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #9CA3AF;
}

.form-card--dark input::placeholder,
.form-card--dark textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-success {
  background: rgba(50,133,80,0.08);
  border: 1px solid rgba(50,133,80,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  color: #328550;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
}

.form-error--banner {
  background: rgba(234,28,28,0.08);
  border: 1px solid rgba(234,28,28,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  color: #EA1C1C;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
}

.form-loading {
  opacity: 0.6;
  pointer-events: none;
}


/* ============================================================
   INTERIOR PAGE STYLES
   ============================================================ */

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: linear-gradient(180deg, #1B3353 0%, #0F1F35 100%);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__heading {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

p.page-hero__subhead {
  font-family: var(--font-source);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 900px !important;
  margin: 0 auto !important;
  text-align: center;
}

.page-id-11 p.page-hero__subhead {
  max-width: 750px !important;
}


/* --- Code Snippet Blocks --- */
pre,
.code-block {
  background: #0F1F35;
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: 8px;
  padding: 24px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: rgba(50,133,80,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #4ADE80;
}

pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}


/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--highlighted {
  border-color: #328550;
  box-shadow: 0 0 24px rgba(50,133,80,0.15);
}

.pricing-card--dark {
  background: #22436B;
  border-color: rgba(74,222,128,0.12);
}

.pricing-card__tier {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #328550;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 36px;
  color: #1B3353;
  margin-bottom: 8px;
}

.pricing-card--dark .pricing-card__price {
  color: white;
}

.pricing-card__desc {
  font-family: var(--font-source);
  font-size: 15px;
  color: #4A5568;
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-card--dark .pricing-card__desc {
  color: rgba(255,255,255,0.6);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-card__features li {
  font-family: var(--font-source);
  font-size: 14px;
  color: #4A5568;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid #E2E8F0;
}

.pricing-card--dark .pricing-card__features li {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-card__cta {
  margin-top: auto;
}


/* --- FAQ (details/summary) --- */
.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-item summary {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 17px;
  color: #1B3353;
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #328550;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item__body {
  font-family: var(--font-source);
  font-size: 16px;
  color: #4A5568;
  line-height: 1.65;
  padding-bottom: 20px;
}


/* --- Comparison Topic Sections --- */
.comparison-topic {
  padding: 48px 0;
  border-bottom: 1px solid #E2E8F0;
}

.comparison-topic:last-child {
  border-bottom: none;
}

.comparison-topic__heading {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 22px;
  color: #1B3353;
  margin-bottom: 16px;
}

.comparison-topic__body {
  font-family: var(--font-source);
  font-size: 16px;
  color: #4A5568;
  line-height: 1.65;
}


/* ============================================================
   SECTION CONTENT CENTERING & POLISH
   ============================================================ */

/* Center section eyebrows */
.section-eyebrow {
  justify-content: center;
}

/* Center CTA button rows inside sections */
.audit-callout .wp-block-buttons,
.audit-callout__cta-row {
  justify-content: center;
}

/* Center impact row */
.missing-data__impact-row {
  justify-content: center;
}

/* Equal-height cards via flexbox */
.problem-card,
.damage-card,
.counterpoint-card,
.feature-card,
.symptom-card,
.pillar-card--capture,
.pillar-card--filter {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.problem-card__body,
.damage-card__body,
.counterpoint-card__summary,
.feature-card__body,
.pillar-card__body {
  flex-grow: 1;
}

/* Consistent card padding across all card types */
.problem-card,
.damage-card,
.counterpoint-card {
  padding: 32px;
}

.feature-card {
  padding: 28px 24px;
}

/* Center orphan cards in last row (e.g. differentiator 5 cards in 3-col) */
.differentiator__grid {
  justify-items: stretch;
}

/* Missing data stat + context cards equal sizing */
.missing-data__stat-card,
.missing-data__context-card {
  min-height: 140px;
}

/* Tablet breakpoint — 3-column grids collapse to 2 */
@media (max-width: 1024px) {
  .pollution-problem__grid,
  .compound-effect__symptoms,
  .differentiator__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .false-fix__grid {
    grid-template-columns: 1fr;
  }

  /* Tighten section padding on tablet */
  .gut-feeling,
  .pollution-problem,
  .missing-data,
  .compound-effect,
  .false-fix,
  .the-fix,
  .the-gap,
  .differentiator,
  .section-white,
  .section-light,
  .section-navy,
  .section-gradient-dark,
  .bottom-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}


/* ============================================================
   CARD LAYOUT SYSTEM (WordPress block columns)
   ============================================================ */

.equal-cards > .wp-block-column {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}

.equal-cards > .wp-block-column > .wp-block-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equal-cards .cta-bottom {
  margin-top: auto;
  justify-content: center;
}


/* Auto-narrow: first paragraph after a section heading.
   Accounts for spacer blocks between heading and paragraph.
   Override via editor width/layout sliders (inline styles win). */
.wp-block-heading + p:not([class*="hero"]):not([class*="subhead"]):not([class*="step-"]),
.wp-block-heading + .wp-block-spacer + p:not([class*="hero"]):not([class*="subhead"]):not([class*="step-"]) {
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Eyebrow → heading spacing (section labels above section titles) */
.section-eyebrow + .wp-block-heading,
.section-eyebrow + .wp-block-spacer + .wp-block-heading {
  margin-top: 30px;
}

/* Utility class: narrow any block on desktop. Apply via Block Editor >
   Advanced > Additional CSS class. Editor width sliders override. */
.intro-narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wp-block-heading + p:not([class*="hero"]):not([class*="subhead"]):not([class*="step-"]),
  .wp-block-heading + .wp-block-spacer + p:not([class*="hero"]):not([class*="subhead"]):not([class*="step-"]),
  .intro-narrow {
    max-width: none;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 768px) {

  /* Header */
  body {
    padding-top: 72px;
  }

  /* Hero */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .page-hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  /* Capability strip: stack on mobile */
  .capability-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hide the spacer above hero content */
  .hero-section > .wp-block-spacer {
    display: none;
  }

  /* Hero columns: stack, hide empty middle column */
  .hero-columns {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .hero-columns > .wp-block-column:not(:first-child) {
    display: none !important;
  }

  .hero-section__inner {
    flex-direction: column;
    gap: 24px;
  }

  .hero-section__left,
  .hero-columns > .wp-block-column:first-child {
    flex: 1 1 auto;
    max-width: 100%;
    text-align: center;
  }

  .hero-section__right {
    display: none !important;
  }

  /* Center the eyebrow on mobile and hide system labels */
  .hero-section .section-eyebrow {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    text-align: center;
    font-size: 10px;
  }

  .section-eyebrow__system-label {
    display: none;
  }

  .hero-section__headline,
  .hero-section h1 {
    font-size: clamp(24px, 6vw, 30px);
    text-align: center;
    line-height: 1.15;
  }

  p.hero-section__subhead {
    text-align: center;
    max-width: 85% !important;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center CTA buttons on mobile */
  .hero-section .wp-block-buttons {
    justify-content: center;
  }

  .hero-section__cta-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-section__cta-row .btn-primary,
  .hero-section__cta-row .btn-secondary,
  .hero-section__cta-row a {
    justify-content: center;
    text-align: center;
  }

  .hero-section__footnote,
  .hero-section p {
    text-align: center;
  }

  /* Sections */
  .gut-feeling,
  .pollution-problem,
  .missing-data,
  .compound-effect,
  .false-fix,
  .the-fix,
  .the-gap,
  .differentiator,
  .section-white,
  .section-light,
  .section-navy,
  .section-gradient-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .final-cta,
  .bottom-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Grids stack to single column */
  .gut-feeling__grid,
  .pollution-problem__grid,
  .compound-effect__symptoms,
  .false-fix__grid,
  .the-fix__pillars,
  .differentiator__grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Impact row stacks via flex-wrap naturally */
  .missing-data__impact-row {
    flex-direction: column;
  }

  /* Mobile: center headings and intros for cohesion */
  .gut-feeling__heading,
  .pollution-problem__heading,
  .missing-data__heading,
  .compound-effect__heading,
  .false-fix__heading,
  .the-fix__heading,
  .the-gap__heading,
  .differentiator__heading {
    text-align: center;
    font-size: clamp(24px, 6vw, 34px);
  }

  .gut-feeling__intro,
  .pollution-problem__intro,
  .missing-data__intro,
  .compound-effect__intro,
  .false-fix__intro,
  .the-fix__intro,
  .the-gap__intro {
    text-align: center;
    font-size: 16px;
    max-width: 100%;
  }

  .section-eyebrow {
    justify-content: center;
  }

  /* Hide telemetry ambient effects on small screens */
  .data-stream-lane,
  .telemetry-readout,
  .data-node {
    display: none;
  }

  /* Cards */
  .missing-data__stat-card {
    max-width: 100%;
  }

  .audit-callout {
    padding: 28px 24px;
  }

  /* Kicker text sizes */
  .compound-effect__kicker-line {
    font-size: 18px;
  }

  .compound-effect__kicker-punch {
    font-size: 22px;
  }

  /* Signal flow animations hide on mobile */
  .signal-flow {
    display: none;
  }

  /* Gap meter tighten */
  .gap-meter {
    padding: 0 8px;
  }

  /* Native tools box */
  .native-tools-box {
    padding: 24px 20px;
  }

  /* Footer */
  .site-footer__columns {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }

  /* Interior page hero */
  .page-hero {
    padding: 80px 0 48px;
  }

  /* Form card */
  .form-card {
    padding: 28px 20px;
  }
}


/* ============================================================
   INTERIOR PAGE — SHARED ELEMENTS
   ============================================================ */

/* Interior hero (gradient background + aurora effect) */
.interior-hero {
  position: relative;
  overflow: hidden;
}

/* Ensure all content inside interior heroes sits above the aurora blob layer (z-index: 0) */
.interior-hero > .wp-block-group,
.interior-hero > .wp-block-html,
.interior-hero > .wp-block-heading,
.interior-hero > .wp-block-paragraph,
.pricing-hero > .wp-block-group,
.pricing-hero > .wp-block-html {
  position: relative;
  z-index: 1;
}

/* Green accent bar above headings */
.interior-hero .section-eyebrow {
  margin-bottom: 20px;
}

/* Prose blocks — long-form copy sections */
.prose-block {
  font-family: var(--font-source);
  font-size: 17px;
  color: var(--color-body);
  line-height: 1.7;
}

.prose-block p {
  margin-bottom: 20px;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.prose-block--dark {
  color: rgba(255,255,255,0.65);
}

.prose-block--dark p {
  margin-bottom: 20px;
}

/* Inline links */
.inline-link {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.inline-link:hover {
  color: var(--color-green-verified);
}

.inline-link--light {
  color: var(--color-green-verified);
}

.inline-link--light:hover {
  color: #6EE7A0;
}

/* Bottom CTA sections (gradient dark) */
.bottom-cta {
  background: linear-gradient(180deg, #0F1F35 0%, #0D1B2E 100%);
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  text-align: center;
}

/* CTA button rows */
.cta-button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* White paper download card */
.white-paper-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 40px 32px;
  text-align: center;
}

.white-paper-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.white-paper-card__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--color-navy);
  margin-bottom: 12px;
}

.white-paper-card__desc {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ROI prose section */
.roi-prose {
  font-family: var(--font-source);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.roi-prose p {
  margin-bottom: 20px;
}

.roi-prose p:last-of-type {
  margin-bottom: 0;
}

.roi-disclaimer {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}


/* ============================================================
   INTERIOR PAGE — CONTACT
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form-col,
.contact-info-col {
  min-width: 0;
}

/* Contact info cards */
.info-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.info-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-card__email {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-navy);
  text-decoration: none;
}

.info-card__email:hover {
  color: var(--color-green);
}

.info-card__desc {
  font-family: var(--font-source);
  font-size: 14px;
  color: var(--color-caption);
  line-height: 1.5;
  margin-top: 8px;
}

/* Dark variant info cards (for navy backgrounds) */
.info-card--dark {
  background: rgba(15,31,53,0.5);
  border: 1px solid rgba(50,133,80,0.15);
  color: #fff;
}

/* Contact form card — light background so HubSpot default styling works */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  color-scheme: light;
}

.contact-form-card h2 {
  color: #1B3353;
}

.contact-form-card > p {
  color: #4A5568;
}

/* HubSpot form — minimal overrides on light background */
.contact-form-card .hs-form fieldset {
  max-width: 100% !important;
}

.contact-form-card .hs-form .hs-form-field {
  margin-bottom: 16px !important;
}

.contact-form-card .hs-form .hs-button,
.contact-form-card .hs-form input[type="submit"] {
  background: #328550 !important;
  color: #fff !important;
  font-family: var(--font-inter) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.contact-form-card .hs-form .hs-button:hover,
.contact-form-card .hs-form input[type="submit"]:hover {
  background: #3a9a5c !important;
  box-shadow: 0 4px 20px rgba(50,133,80,0.35) !important;
}

/* HubSpot form in iframe fallback */
.contact-form-card iframe {
  width: 100% !important;
  min-height: 400px;
  border: none !important;
  color-scheme: light;
}

/* Routing links */
.routing-links {
  margin-top: 32px;
}

.routing-links__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.routing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: padding-left 0.2s;
}

.routing-item:last-child {
  border-bottom: none;
}

/* Dark variant routing items */
.info-card--dark .routing-item {
  border-bottom-color: rgba(255,255,255,0.1);
}

.routing-item:hover {
  padding-left: 6px;
}

.routing-item__arrow {
  color: var(--color-green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.routing-item__text {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.4;
}

.routing-item:hover .routing-item__text {
  color: var(--color-navy);
}


/* ============================================================
   INTERIOR PAGE — FORMS (shared contact + audit)
   ============================================================ */

.cc-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-navy);
  background: #F8F9FA;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-sm);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(50,133,80,0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Dark form variant (audit page) */
.form-field--dark label {
  color: rgba(255,255,255,0.7);
}

.form-field--dark input,
.form-field--dark select,
.form-field--dark textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: white;
}

.form-field--dark input::placeholder,
.form-field--dark textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-field--dark input:focus,
.form-field--dark select:focus,
.form-field--dark textarea:focus {
  border-color: var(--color-green-verified);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
}

.form-field--dark select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-green);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-card-sm);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: #2A7344;
  box-shadow: var(--shadow-btn-glow);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-green);
  margin-bottom: 12px;
}

.form-success p {
  font-family: var(--font-source);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.6;
}

.form-success--dark h3 {
  color: var(--color-green-verified);
}

.form-success--dark p {
  color: rgba(255,255,255,0.6);
}


/* ============================================================
   AUDIT FORM — Multi-Step, Step Indicator, Transitions
   ============================================================ */

/* Step indicator bar */
.audit-step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.audit-step-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.audit-step-bar__fill {
  height: 100%;
  width: 50%;
  background: var(--color-green-verified);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.audit-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Step heading */
.form-step__heading {
  font-family: var(--font-source);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

/* Step transitions */
.form-step {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-step--active {
  opacity: 1;
  transform: translateX(0);
}

.form-step--exit {
  opacity: 0;
  transform: translateX(-12px);
}

/* Helper text under fields */
.form-helper {
  font-family: var(--font-source);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

/* Inline validation errors */
.form-error {
  display: none;
  font-family: var(--font-source);
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
  line-height: 1.3;
}

.has-error {
  border-color: #f87171;
}

/* Target market radio pills */
.target-market-toggle {
  display: flex;
  gap: 0;
  margin-top: 6px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.radio-pill {
  flex: 1;
  cursor: pointer;
  user-select: none;
}

.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill__label {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-source);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, color 0.2s;
}

.radio-pill input[type="radio"]:checked + .radio-pill__label {
  background: rgba(74,222,128,0.15);
  color: var(--color-green-verified);
}

.radio-pill:hover .radio-pill__label {
  background: rgba(255,255,255,0.08);
}

.radio-pill input[type="radio"]:checked + .radio-pill__label:hover {
  background: rgba(74,222,128,0.2);
}

.radio-pill input[type="radio"]:focus-visible + .radio-pill__label {
  outline: 2px solid var(--color-green-verified);
  outline-offset: -2px;
}

/* State multi-select */
.state-multiselect {
  position: relative;
  margin-top: 6px;
}

.state-multiselect__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 42px;
  max-height: 120px;
  overflow-y: auto;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  transition: border-color 0.2s;
}

.state-multiselect__selected:hover {
  border-color: rgba(255,255,255,0.25);
}

.state-multiselect__placeholder {
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

.state-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(74,222,128,0.15);
  color: var(--color-green-verified);
  border-radius: 4px;
  font-family: var(--font-source);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.state-tag button {
  background: none;
  border: none;
  color: rgba(74,222,128,0.6);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0 1px;
}

.state-tag button:hover {
  color: var(--color-green-verified);
}

.state-multiselect__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #1B2838;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.state-multiselect__search {
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-source);
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.state-multiselect__search::placeholder {
  color: rgba(255,255,255,0.35);
}

.state-multiselect__options {
  max-height: 200px;
  overflow-y: auto;
  padding: 4px;
}

.state-multiselect__options::-webkit-scrollbar {
  width: 4px;
}

.state-multiselect__options::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.state-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s;
}

.state-option:hover {
  background: rgba(255,255,255,0.08);
}

.state-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-green-verified);
  cursor: pointer;
  flex-shrink: 0;
}

/* Step 2 action row */
.form-step__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-back {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 12px 20px;
  border-radius: var(--radius-card-sm);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-back:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

.form-step__actions .btn-submit {
  flex: 1;
}

/* Error state panel */
.form-error-state {
  display: none;
}


/* ============================================================
   INTERIOR PAGE — ABOUT (Signal Timeline)
   ============================================================ */

/* --- Creator Story Section --- */
.creator-story {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(74,222,128,0.08);
}

.creator-story__layout {
  max-width: 900px;
  margin: 0 auto;
}

.creator-story__title {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.creator-story__text {
  font-family: var(--font-source);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.creator-story__text:last-child {
  margin-bottom: 0;
}

.creator-story__text--accent {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-green);
  margin-top: 4px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .creator-story__layout {
    text-align: left;
  }
}

/* --- Timeline Container --- */
.signal-timeline {
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

/* --- Vertical Pipe --- */
.timeline__pipe {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(74,222,128,0) 0%,
    rgba(74,222,128,0.4) 5%,
    rgba(74,222,128,0.4) 95%,
    rgba(74,222,128,0) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Glow halo on pipe */
.timeline__pipe::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(74,222,128,0) 0%,
    rgba(74,222,128,0.08) 5%,
    rgba(74,222,128,0.08) 95%,
    rgba(74,222,128,0) 100%
  );
}

/* --- Animated Scroll Dot --- */
.timeline__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow:
    0 0 8px rgba(74,222,128,0.6),
    0 0 20px rgba(74,222,128,0.3),
    0 0 40px rgba(74,222,128,0.15);
  transform: translateX(-50%);
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

/* --- Timeline Node --- */
.timeline-node {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
}

.timeline-node.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Right-side nodes: content on right half */
.timeline-node--right {
  flex-direction: row;
  padding-left: calc(50% + 40px);
}

/* Left-side nodes: content on left half */
.timeline-node--left {
  flex-direction: row-reverse;
  padding-right: calc(50% + 40px);
}

/* --- Node Marker (LED on the pipe) --- */
.timeline-node__marker {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ring around marker LED */
.timeline-node__marker::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.2);
  background: rgba(13,27,46,0.9);
}

.timeline-node__marker .led {
  position: relative;
  z-index: 1;
}

/* --- Year Label --- */
.timeline-node__year {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%) translateY(-100%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(74,222,128,0.6);
  white-space: nowrap;
  z-index: 4;
}

/* Shift year label to avoid pipe overlap */
.timeline-node--right .timeline-node__year {
  left: calc(50% + 24px);
  transform: translateY(-100%);
}

.timeline-node--left .timeline-node__year {
  left: auto;
  right: calc(50% + 24px);
  transform: translateY(-100%);
  text-align: right;
}

/* --- Paired Node (two cards at same level) --- */
.timeline-node--paired {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
}

.timeline-node--paired.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-node--paired .timeline-node__marker {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-node--paired .timeline-node__marker::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.2);
  background: rgba(13,27,46,0.9);
}

.timeline-node--paired .timeline-node__year {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%) translateY(-100%);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(74,222,128,0.6);
  white-space: nowrap;
  z-index: 4;
}

.timeline-paired__left {
  justify-self: end;
  max-width: calc(50vw - 80px);
}

.timeline-paired__right {
  justify-self: start;
  max-width: calc(50vw - 80px);
}

/* --- Timeline Card --- */
.timeline-card {
  background: rgba(27,51,83,0.65);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  width: 100%;
  position: relative;
}

/* Color accent border-top by card type */
.timeline-card--green {
  border-top: 2px solid rgba(74,222,128,0.4);
}

.timeline-card--amber {
  border-top: 2px solid rgba(245,158,11,0.4);
}

.timeline-card--red {
  border-top: 2px solid rgba(234,28,28,0.4);
}

/* Highlight card (CleanClicks node) */
.timeline-card--highlight {
  background: rgba(50,133,80,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-top: 2px solid #4ADE80;
}

.timeline-card__header {
  margin-bottom: 8px;
}

.timeline-card__sys {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(74,222,128,0.35);
}

.timeline-card__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-card__desc {
  font-family: var(--font-source);
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 12px;
}

.timeline-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-card__bullets li {
  font-family: var(--font-source);
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.timeline-card__bullets li:last-child {
  margin-bottom: 0;
}

.timeline-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4ADE80;
  opacity: 0.6;
}

/* Red card bullets use red dots */
.timeline-card--red .timeline-card__bullets li::before {
  background: #EA1C1C;
  opacity: 0.5;
}

/* Amber card bullets use amber dots */
.timeline-card--amber .timeline-card__bullets li::before {
  background: #F59E0B;
  opacity: 0.5;
}

.timeline-card__bullets li strong {
  color: rgba(255,255,255,0.85);
}

.timeline-card__bullets li code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(74,222,128,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  color: #4ADE80;
}

/* Dense bullet variant (more compact) */
.timeline-card__bullets--dense li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* --- Founder Section --- */
.founder-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 32px;
}

.founder-card__photo {
  flex: 0 0 200px;
}

.founder-card__placeholder {
  width: 200px;
  height: 240px;
  background: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-card__photo img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.founder-card__bio {
  flex: 1;
  min-width: 0;
}

.founder-card__name {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.founder-card__role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-green);
  margin-bottom: 20px;
}

.founder-card__text {
  font-family: var(--font-source);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.founder-card__text:last-child {
  margin-bottom: 0;
}

/* Callout box (kept for reuse on other pages) */
.callout-box {
  background: var(--color-surface);
  border-left: 4px solid var(--color-green);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 32px;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.callout-box__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.callout-box__body {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.6;
}


/* ============================================================
   INTERIOR PAGE — HOW IT WORKS
   ============================================================ */

/* Hero dark variant (inherits gradient from .interior-hero) */
.interior-hero--dark {
  position: relative;
  overflow: hidden;
}

/* Hero two-column layout */
.hiw-hero-columns {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hiw-hero__left {
  flex: 0 0 55%;
  max-width: 55%;
}

.hiw-hero__right {
  flex: 0 0 40%;
  max-width: 40%;
}

/* Pipeline container (matches homepage) */
.hiw-pipeline {
  background: rgba(15,31,53,0.5);
  border: 1px solid rgba(50,133,80,0.15);
  border-radius: 16px;
  padding: 20px 16px;
  position: relative;
}

.hiw-pipeline__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.hiw-pipeline__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(74,222,128,0.6);
  letter-spacing: 0.1em;
}

/* Step illustration column */
.step-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.step-illustration svg {
  width: 80%;
  height: auto;
}

/* Step layouts */
.step-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.step-content {
  min-width: 0;
  overflow: hidden;
}

.step-meta,
.step-number-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.step-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-green);
  opacity: 0.25;
  line-height: 1;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
  font-weight: 600;
}

.step-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.25;
  margin-bottom: 16px;
}

.step-desc {
  font-family: var(--font-source);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-detail {
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* Navy step sections */
.step-section--navy .step-title {
  color: white;
}

.step-section--navy .step-desc {
  color: rgba(255,255,255,0.65);
}

.step-section--navy .step-detail {
  color: rgba(255,255,255,0.45);
}

/* Light step sections */
.step-section--light .step-title {
  color: var(--color-navy);
}

.step-section--light .step-desc {
  color: var(--color-body);
}

.step-section--light .step-detail {
  color: var(--color-caption);
}

/* Code blocks in steps */
.step-code-col {
  min-width: 0;
}

.code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.code-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.code-block__label--green {
  color: var(--color-green-verified);
}

.code-block__label--amber {
  color: var(--color-amber);
}

/* Privacy architecture grid */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.privacy-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.privacy-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.privacy-card__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
}

.privacy-card__body {
  font-family: var(--font-source);
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.6;
}

/* sGTM explainer box */
.sgtm-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}


/* ============================================================
   INTERIOR PAGE — AUDIT
   ============================================================ */

/* Hero layout */
.audit-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.audit-hero-content {
  min-width: 0;
}

.audit-hero-content p {
  color: rgba(255,255,255,0.75);
}

/* Trust signals */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-signal__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-verified);
  flex-shrink: 0;
}

.trust-signal__text,
.trust-signal span:last-child {
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* Audit form card */
.audit-form-card {
  min-width: 0;
}

.form-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card-lg);
  padding: 36px 28px;
}

/* HubSpot meetings embed */
.form-card-inner .meetings-iframe-container {
  border-radius: 8px;
}

.form-card-inner__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

.form-card-inner__sub {
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

/* Examine grid */
.examine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* First 3 cards span 2 columns each (fills 6-col row) */
.examine-card:nth-child(-n+3) {
  grid-column: span 2;
}

/* Cards 4 and 5 span 2 cols each, offset to center */
.examine-card:nth-child(4) {
  grid-column: 2 / 4;
}
.examine-card:nth-child(5) {
  grid-column: 4 / 6;
}

.examine-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.examine-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.examine-card__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-green);
  opacity: 0.3;
}

.examine-card__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
}

.examine-card__body {
  font-family: var(--font-source);
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.6;
}

/* Deliverables list */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.deliverable-check {
  color: var(--color-green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-text {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.5;
}

/* Timeline steps */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.timeline-step {
  text-align: center;
}

.timeline-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-green-verified);
  margin-bottom: 16px;
}

.timeline-step__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}

.timeline-step__desc {
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ============================================================
   INTERIOR PAGE — AUDIT (Self-Serve additions)
   ============================================================ */

/* ROI callout box (dark section variant) */
.roi-callout-box {
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.15);
  border-left: 4px solid var(--color-green-verified);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 28px 32px;
  margin-top: 32px;
}

/* Concierge section layout */
.concierge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.concierge-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concierge-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.concierge-detail-item .led {
  margin-top: 5px;
  flex-shrink: 0;
}

.concierge-scheduler {
  min-width: 0;
}

/* Audit page examine-grid override for 6 cards (3x2) */
.page-id-100 .examine-card:nth-child(4) {
  grid-column: span 2;
}
.page-id-100 .examine-card:nth-child(5) {
  grid-column: span 2;
}
.page-id-100 .examine-card:nth-child(6) {
  grid-column: span 2;
}


/* ============================================================
   INTERIOR PAGE — PRICING
   ============================================================ */

/* Wider content wrap for 4-column pricing */
.content-wrap--pricing {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px !important;
  background: var(--color-navy);
  border-radius: 30px;
  padding: 4px;
  max-width: 320px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.billing-toggle__btn {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  color: rgba(255,255,255,0.5);
}

.billing-toggle__btn--active {
  background: var(--color-green);
  color: white;
}

.billing-toggle__btn:hover:not(.billing-toggle__btn--active) {
  color: rgba(255,255,255,0.8);
}

.billing-toggle__save {
  font-size: 11px;
  font-weight: 700;
  background: rgba(74,222,128,0.15);
  color: var(--color-green-verified);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.billing-toggle__btn--active .billing-toggle__save {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Pricing cards grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.plan-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 32px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card--highlighted {
  background: var(--color-navy);
  border: 2px solid var(--color-green);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green);
  color: white;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}

.plan-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.plan-card__name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
}

.plan-card--highlighted .plan-card__name {
  color: white;
}

.plan-card__price-row {
  margin-bottom: 4px;
}

.plan-card__price {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.plan-card__price--custom {
  font-size: clamp(24px, 3vw, 32px);
}

.plan-card--highlighted .plan-card__price {
  color: var(--color-green-verified);
}

.plan-card__period {
  font-family: var(--font-source);
  font-size: 16px;
  color: var(--color-caption);
}

.plan-card--highlighted .plan-card__period {
  color: rgba(255,255,255,0.5);
}

.plan-card__events {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-green);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.plan-card--highlighted .plan-card__events {
  color: rgba(74,222,128,0.6);
}

.plan-card__tagline {
  font-family: var(--font-source);
  font-size: 14px;
  color: var(--color-caption);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 42px;
}

.plan-card--highlighted .plan-card__tagline {
  color: rgba(255,255,255,0.55);
}

.plan-card__features {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-bottom: 16px;
  flex: 1;
}

.plan-card--highlighted .plan-card__features {
  border-top-color: rgba(255,255,255,0.08);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.plan-feature__check {
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card--highlighted .plan-feature__check {
  color: var(--color-green-verified);
}

.plan-feature span:last-child {
  font-family: var(--font-source);
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.4;
}

.plan-card--highlighted .plan-feature span:last-child {
  color: rgba(255,255,255,0.7);
}

.plan-feature--label {
  margin-top: 18px;
  margin-bottom: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.plan-feature--label:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.plan-card--highlighted .plan-feature--label {
  border-top-color: rgba(255,255,255,0.06);
}

.plan-card--dark .plan-feature--label {
  border-top-color: rgba(255,255,255,0.06);
}

.plan-feature--label span {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
}

.plan-card__best-for {
  font-family: var(--font-source);
  font-size: 12px;
  color: var(--color-caption);
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: auto;
  font-style: italic;
}

.plan-card--highlighted .plan-card__best-for {
  color: rgba(255,255,255,0.4);
}

/* --- Dark plan card (Command tier) --- */
.plan-card--dark {
  background: var(--color-navy-deep);
  border-color: rgba(74,222,128,0.15);
}

.plan-card--dark .plan-card__name {
  color: white;
}

.plan-card--dark .plan-card__price {
  color: var(--color-green-verified);
}

.plan-card--dark .plan-card__period {
  color: rgba(255,255,255,0.5);
}

.plan-card--dark .plan-card__events {
  color: rgba(74,222,128,0.6);
}

.plan-card--dark .plan-card__tagline {
  color: rgba(255,255,255,0.55);
}

.plan-card--dark .plan-card__features {
  border-top-color: rgba(255,255,255,0.08);
}

.plan-card--dark .plan-feature__check {
  color: var(--color-green-verified);
}

.plan-card--dark .plan-feature span:last-child {
  color: rgba(255,255,255,0.7);
}

.plan-card--dark .plan-card__best-for {
  color: rgba(255,255,255,0.4);
}

/* Full-width button variants */
.btn-primary--full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn-ghost--full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Annual billing callout */
.annual-callout {
  background: var(--color-navy);
  border-left: 4px solid var(--color-green);
  padding: 24px 28px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  max-width: 800px;
  margin-top: 30px !important;
  margin-left: auto;
  margin-right: auto;
}

.annual-callout p {
  font-family: var(--font-source);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Overage line on plan cards */
.plan-card__overage {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-caption);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.plan-card--highlighted .plan-card__overage {
  color: rgba(255,255,255,0.4);
  border-top-color: rgba(255,255,255,0.08);
}

.plan-card--dark .plan-card__overage {
  color: rgba(74,222,128,0.6);
  border-top-color: rgba(255,255,255,0.08);
}

/* "Included in every plan" grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 48px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.included-item__icon {
  color: var(--color-green-verified);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.included-item__text {
  font-family: var(--font-source);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Add-on cards grid */
.addon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.addon-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 32px 28px;
}

.addon-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 12px;
}

.addon-card__name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
}

.addon-card__price {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-navy);
  white-space: nowrap;
}

.addon-card__period {
  font-family: var(--font-source);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-caption);
}

.addon-card__desc {
  font-family: var(--font-source);
  font-size: 14px;
  color: var(--color-caption);
  line-height: 1.6;
  margin-bottom: 16px;
}

.addon-card__includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-source);
  font-size: 12px;
  color: var(--color-green);
}

/* Overage table */
.overage-table-wrap {
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.overage-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-source);
  font-size: 14px;
}

.overage-table th {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-caption);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--color-border);
}

.overage-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-body);
}

.overage-table tbody tr:last-child td {
  border-bottom: none;
}

.overage-table tbody tr:hover {
  background: rgba(57,137,75,0.04);
}


/* ============================================================
   INTERIOR PAGE — VS SERVER-SIDE TRACKING
   ============================================================ */

/* Comparison card stack */
.comparison-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comparison-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 36px 32px;
}

.comparison-card--alt {
  background: var(--color-surface);
}

.comparison-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comparison-card__number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-green);
  opacity: 0.25;
}

.comparison-card__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--color-navy);
  line-height: 1.25;
}

.comparison-card__perspective {
  margin-bottom: 24px;
}

.comparison-card__perspective:last-child {
  margin-bottom: 0;
}

.comparison-card__perspective p {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.65;
  padding-left: 13px;
  margin: 0;
}

/* Perspective labels */
.perspective-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.perspective-label span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.perspective-label--amber span:last-child {
  color: var(--color-amber);
}

.perspective-label--green span:last-child {
  color: var(--color-green);
}

/* Decision framework grid */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.decision-card {
  border-radius: var(--radius-card-lg);
  padding: 36px 32px;
}

.decision-card--sgtm {
  background: #F9FAFB;
  border: 1px solid var(--color-border);
}

.decision-card--cleanclicks {
  background: white;
  border: 2px solid rgba(50,133,80,0.3);
}

.decision-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.decision-card__name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
}

.decision-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.decision-card__list li {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
  margin-bottom: 14px;
}

.decision-bullet {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 700;
  font-size: 14px;
}

.decision-bullet--amber {
  color: var(--color-amber);
}

.decision-bullet--green {
  color: var(--color-green);
}


/* ============================================================
   VS PAGE: Comparison layout components
   ============================================================ */

/* Reverse grid: illustration left, text right */
.step-layout--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* VS comparison columns (two-col bullet grid inside step-content) */
.vs-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.vs-col {
  min-width: 0;
}

/* VS bullet list */
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-list li {
  font-family: var(--font-source);
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}

.vs-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #B8860B;
}

.vs-list--green li::before {
  color: var(--color-green);
}

/* Dark background variants */
.vs-list--dark li {
  color: rgba(255,255,255,0.65);
}

/* Coexistence note below decision grid */
.vs-coexistence {
  font-family: var(--font-source);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.55;
  text-align: center;
  max-width: 100%;
  margin: 32px auto 0;
  opacity: 0.7;
  font-style: italic;
}

/* VS page alternating section backgrounds (fallback if DB overrides pattern classes) */
.vs-hero ~ .vs-section:nth-of-type(odd) {
  background: #1B3353;
  background-color: #1B3353;
  position: relative;
}
.vs-hero ~ .vs-section:nth-of-type(odd) .step-title,
.vs-hero ~ .vs-section:nth-of-type(odd) .vs-list li {
  color: rgba(255,255,255,0.65);
}
.vs-hero ~ .vs-section:nth-of-type(odd) .step-title {
  color: #FFFFFF;
}

/* VS page — constrain content, prevent overflow */
.vs-section {
  overflow: hidden;
}
.vs-section > .wp-block-group.content-wrap {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* VS page nuclear reset additions — exclude content-wrap from override */
.vs-section .wp-block-heading,
.vs-section .wp-block-group:not(.content-wrap),
.vs-section p {
  max-width: none !important;
}

.vs-section .vs-columns > *,
.vs-section .decision-grid > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* VS page responsive */
@media (max-width: 768px) {
  .step-layout--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-layout--reverse .step-illustration {
    display: none;
  }

  .vs-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ============================================================
   DATA TELEMETRY AMBIENT EFFECTS
   Decorative data-stream overlays for visual depth
   ============================================================ */

/* Data stream lane — horizontal packet flow across sections */
.data-stream-lane {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.data-stream-lane::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4ADE80, transparent);
  animation: dataPacketFlow 8s linear infinite;
}

.data-stream-lane--slow::before {
  animation-duration: 12s;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.4), transparent);
}

.data-stream-lane--reverse::before {
  animation: dataPacketFlowReverse 10s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
  width: 45px;
}

/* Telemetry readout — floating monospace data */
.telemetry-readout {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(74,222,128,0.12);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;

}

.telemetry-readout--animate {
  animation: nodeFlicker 4s ease-in-out infinite;
}

/* Hex grid background pattern (subtle, for dark sections) */
.hex-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background-image:
    radial-gradient(circle at 25% 25%, #4ADE80 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #4ADE80 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hexPulse 6s ease-in-out infinite;
}

/* Data node dots — tiny pulsing dots at intersections */
.data-node {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4ADE80;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: nodeFlicker 3s ease-in-out infinite;


}

/* Section divider — thin telemetry line between sections */
.section-telemetry-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74,222,128,0.08) 20%,
    rgba(74,222,128,0.15) 50%,
    rgba(74,222,128,0.08) 80%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

.section-telemetry-divider::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4ADE80, transparent);
  animation: dataPacketFlow 6s linear infinite;
}


/* ============================================================
   JS-DRIVEN ELEMENTS
   ============================================================ */

/* Grid line (vertical, generated by animations.js) */
.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #4ADE80;
}

/* Activity pips (animated bar chart pips) */
.activity-pip {
  display: inline-block;
  width: 4px;
  border-radius: 2px;
  background: var(--color-green-verified);
  animation: activityPulse 1.2s ease-in-out infinite alternate;
}

/* Fade-in-up animation (for staggered reveals) */
.fade-in-up {
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
}

/* Field error state (form validation) */
.field-error {
  border-color: var(--color-red-action);
  box-shadow: 0 0 0 3px rgba(234,28,28,0.12);
}

/* Active nav item */
.wp-block-navigation-item.current-menu-item > a {
  color: var(--color-green);
  font-weight: 600;
}

/* Scroll dot active state */
.scroll-dot--active {
  transform: scale(1.6);
  box-shadow: 0 0 6px currentColor;
}


/* ============================================================
   LED VARIANTS (for interior pages)
   ============================================================ */

/* Static green LED (no pulse) */
.led--green {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-green);
  display: inline-block;
  flex-shrink: 0;
}

/* Bright green LED (pulsing) */
.led--green-bright {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-green-verified);
  box-shadow: 0 0 6px rgba(74,222,128,0.4);
  display: inline-block;
  flex-shrink: 0;
  animation: ledPulse 2s ease-in-out infinite;
}

/* Amber LED */
.led--amber {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-amber);
  box-shadow: 0 0 6px rgba(245,158,11,0.3);
  display: inline-block;
  flex-shrink: 0;
  animation: ledPulseAmber 2s ease-in-out infinite;
}

@keyframes ledPulseAmber {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}


/* ============================================================
   INTERIOR PAGE RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  /* Pricing cards: 2 columns on tablet */
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Included grid: single column on tablet */
  .included-grid {
    grid-template-columns: 1fr;
  }

  /* Add-on cards: stack on tablet */
  .addon-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  /* Comparison decision cards stack */
  .decision-grid {
    grid-template-columns: 1fr;
  }

  /* Tech stats: 2 columns on tablet */
  .tech-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Privacy grid: 2 up */
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* How It Works hero columns */
  .hiw-hero-columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* How It Works hero stacks */
  .hiw-hero-columns {
    flex-direction: column;
    gap: 32px;
  }
  .hiw-hero__left {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .step-illustration {
    display: none;
  }

  /* Contact layout stacks */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Audit hero stacks */
  .audit-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Concierge layout stacks */
  .concierge-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Audit page 6-card grid: all span full on mobile */
  .page-id-100 .examine-card:nth-child(4),
  .page-id-100 .examine-card:nth-child(5),
  .page-id-100 .examine-card:nth-child(6) {
    grid-column: span 1;
  }

  /* Step layouts stack */
  .step-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Pricing: single column */
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Billing toggle: compact on mobile */
  .billing-toggle {
    max-width: 280px;
  }
  .billing-toggle__btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Add-on cards: full width on mobile */
  .addon-cards-grid {
    max-width: 100%;
  }

  /* Signal Timeline: paired node stacks on mobile */
  .timeline-node--paired {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 48px;
  }

  .timeline-node--paired .timeline-node__marker {
    left: 16px;
  }

  .timeline-node--paired .timeline-node__year {
    left: 40px;
    transform: translateY(-100%);
  }

  .timeline-paired__left,
  .timeline-paired__right {
    max-width: 100%;
    justify-self: stretch;
  }

  /* Signal Timeline: pipe shifts left, cards full-width */
  .timeline {
    padding-left: 32px;
  }

  .timeline__pipe {
    left: 16px;
  }

  .timeline-node--right,
  .timeline-node--left {
    flex-direction: row;
    padding-left: 48px;
    padding-right: 0;
  }

  .timeline-node__marker {
    left: 16px;
  }

  .timeline-node--right .timeline-node__year,
  .timeline-node--left .timeline-node__year {
    left: 40px;
    right: auto;
    transform: translateY(-100%);
    text-align: left;
  }

  .timeline__dot {
    left: 16px;
  }

  .timeline-node {
    margin-bottom: 48px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card__title {
    font-size: 17px;
  }

  /* Founder: stack vertically */
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .founder-card__photo {
    flex: none;
  }

  .founder-card__placeholder {
    width: 160px;
    height: 192px;
  }

  /* Privacy grid: single */
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline: single column */
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Deliverables: single column */
  /* deliverables-list is flex column, no mobile override needed */

  /* Form row: single column */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Examine grid: single */
  .examine-grid {
    grid-template-columns: 1fr;
  }

  .examine-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  /* Comparison card padding */
  .comparison-card {
    padding: 28px 20px;
  }

  /* Decision card padding */
  .decision-card {
    padding: 28px 24px;
  }

  /* Form card inner */
  .form-card-inner {
    padding: 28px 20px;
  }

  /* White paper card */
  .white-paper-card {
    padding: 32px 20px;
  }

  /* Interior hero padding */
  .interior-hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  /* Pricing hero padding */
  .pricing-hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  /* Bottom CTA reduce */
  .bottom-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* CTA button row stacks */
  .cta-button-row {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-row .btn-primary,
  .cta-button-row .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================================
   INTERIOR PAGE STYLES
   ============================================================ */

/* Section backgrounds — used across all interior pages */
.interior-hero { background: linear-gradient(180deg, #1B3353 0%, #0F1F35 100%); position: relative; overflow: hidden; }
.pricing-hero  { background: linear-gradient(180deg, #1B3353 0%, #0F1F35 100%); position: relative; overflow: hidden; }
.section-white { background: #FFFFFF; padding-top: 90px; padding-bottom: 90px; }
.section-light { background: #F0F2F5; padding-top: 90px; padding-bottom: 90px; }
.section-navy,
.wp-block-group.section-navy,
div.section-navy {
  background: #1B3353;
  background-color: #1B3353;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}
.section-gradient-dark { background: linear-gradient(180deg, #1B3353 0%, #0F1F35 100%); padding-top: 90px; padding-bottom: 90px; position: relative; color: rgba(255,255,255,0.75); }
.section-gradient-dark h1,
.section-gradient-dark h2,
.section-gradient-dark h3,
.section-gradient-dark h4 { color: #fff; }
.section-gradient-dark p { color: rgba(255,255,255,0.7); }
.section-gradient-dark a { color: var(--color-green); }
.section-gradient-dark .wp-block-button__link { color: #fff; }

/* Content width variants */
.content-wrap--narrow { max-width: 800px; margin-left: auto; margin-right: auto; }
.content-wrap--narrow-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.content-wrap--center { text-align: center; }
.narrow-wrap { max-width: 760px; margin-left: auto; margin-right: auto; }

/* z-index for content above grid overlays on interior dark sections */
.section-navy > .wp-block-group.content-wrap,
.section-gradient-dark > .wp-block-group.content-wrap,
.pricing-hero > .wp-block-group.content-wrap {
  position: relative;
  z-index: 1;
}

/* Interior page headings */
.page-title {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
/* Green accent spans in hero headings — force bright green over inline styles */
.interior-hero .page-title span[style*="color"],
.interior-hero .page-title--dark span[style*="color"] {
  color: #4ADE80 !important;
}
.page-title--dark {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.page-intro--dark {
  margin-top: 0;
}

.section-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  color: #1B3353;
  text-align: center;
  margin-bottom: 24px;
}

.section-body {
  text-align: center;
}
.section-title--dark {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 24px;
}

.section-title--sm {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  color: #1B3353;
  text-align: center;
  margin-bottom: 24px;
}
.section-title--sm-dark {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 24px;
}

/* Interior page body text */
.page-intro {
  font-family: var(--font-source);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.page-intro--dark {
  font-family: var(--font-source);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.section-body {
  font-family: var(--font-source);
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
}
.section-body--lg {
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 1.7;
  color: #4A5568;
}
.section-body--dark {
  font-family: var(--font-source);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
.section-body--dark-lg {
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA section text */
.cta-heading {
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #FFFFFF;
}
.cta-subtext {
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-footnote {
  font-family: var(--font-inter);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   WHITEPAPER LANDING PAGE
   ============================================================ */

.whitepaper-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .whitepaper-layout {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .whitepaper-form-card {
    padding: 24px 20px;
  }
}

.whitepaper-gate {
  position: sticky;
  top: 100px;
}

.whitepaper-form-card {
  background: #FFFFFF;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  color-scheme: light;
}

/* Table of contents */
.wp-toc__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}

.wp-toc__item:last-child {
  border-bottom: none;
}

.wp-toc__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #328550;
  min-width: 24px;
}

.wp-toc__title {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1B3353;
}

.wp-toc__desc {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 4px 0 0 36px;
}

@media (max-width: 768px) {
  .wp-toc__item {
    display: block;
  }
  .wp-toc__num {
    display: inline;
    margin-right: 8px;
  }
  .wp-toc__title {
    display: inline;
  }
  .wp-toc__desc {
    margin: 8px 0 0 0;
  }
}


/* ============================================================
   SOCIAL PROOF STATS
   ============================================================ */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  text-align: center;
}

/* Compact proof-grid variant (e.g. whitepaper stats) — smaller min for 3-col on tablet */
.proof-grid[style*="gap:16px"] {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .proof-grid[style*="gap:16px"] {
    grid-template-columns: 1fr;
  }
}

.proof-stat {
  padding: 32px 24px;
}

.proof-stat__number {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: #328550;
  margin-bottom: 8px;
}

.proof-stat__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1B3353;
  margin-bottom: 16px;
}

.proof-stat__detail {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}


/* ============================================================
   INTEGRATIONS PAGE
   ============================================================ */

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.integration-card {
  flex: 0 1 calc(33.333% - 20px);
  max-width: 380px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 51, 83, 0.12);
  border-left-color: var(--brand, var(--color-green));
}

.integration-card--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(74, 222, 128, 0.08);
  border-left: 3px solid rgba(74, 222, 128, 0.15);
}

.integration-card--dark:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border-left-color: rgba(74, 222, 128, 0.5);
}

.integration-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.integration-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.integration-card__name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-navy);
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.3;
}

.integration-card--dark .integration-card__name {
  color: #fff;
}

.integration-card__desc {
  font-family: var(--font-source);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-body);
  margin: 0;
}

.integration-card--dark .integration-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1024px) {
  .integration-card {
    flex: 0 1 calc(50% - 15px);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .integrations-grid {
    gap: 20px;
  }
  .integration-card {
    flex: 0 1 100%;
  }
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-content {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

.legal-content h2 {
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1B3353;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1B3353;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h4 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #328550;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content table {
  font-size: 0.9em;
  border-radius: 8px;
  overflow: hidden;
}

.legal-content table th {
  background: #f1f5f9;
  color: #1B3353;
}

.legal-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88em;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #328550;
}

.legal-content a {
  color: #328550;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #256b3f;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
