/*
 * Lytning Consulting Inc. — Marketing Architecture
 * Author: Lydia Nour
 * File: styles.css
 */

/* Reset and base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: #02010b;
  color: #e8edff;
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

/* Typography */
h1, h2, h3,
.brand-title,
.card-label,
.card-id,
.hero-name,
.hero-heading,
.section-heading,
.badge,
.api-health-pill,
.field label,
.submit-button {
  font-family: var(--font-primary);
}

/* Hero banner tagline (the line under the big title image banner) */
.hero-tagline {
  margin-top: 1rem;
  font-size: 1.25rem; /* ~20px */
  color: #c8e8ff;
  text-shadow: 0 0 12px rgba(0,0,0,0.9);
  font-weight: 300;
  padding: 0 16px;
  white-space: nowrap; /* keep it on one line on desktop */
}

/* Allow wrapping on smaller screens so it doesn't overflow */
@media (max-width: 720px) {
  .hero-tagline {
    white-space: normal;
  }
}

/* Palette and background */

:root {
  --neon-pink: #ff4fa8;
  --neon-blue: #4ef3ff;
  --neon-green: #3DFF6B; /* updated */

  --neon-yellow: #feff00;  /* added */
  --neon-red: #EF3925;     /* added */

  --bg-deep: #02010b;
  --bg-panel: rgba(7, 9, 28, 0.96);
  --bg-panel-soft: rgba(5, 9, 32, 0.94);

  --border-bright: rgba(255, 255, 255, 0.2);
  --border-soft: rgba(255, 255, 255, 0.08);
  --panel-light: rgba(255, 255, 255, 0.82);
  --panel-light-soft: rgba(255, 255, 255, 0.68);
  --ink-dark: #0b1020;

  /* consistent padding and fonts for branding */
  --radius: 20px;
  --border-w: 2px;
  --font-primary: "Oxanium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
}

.bg-gradient {
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--neon-red) 50%, transparent), transparent 55%),
    radial-gradient(circle at 80% 90%, color-mix(in srgb, var(--neon-yellow) 25%, transparent), transparent 60%),
    radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--neon-pink) 60%, transparent), transparent 70%),
    var(--bg-deep);
}

.bg-grid {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

.bg-particles {
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.3),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.22),
      transparent 55%
    );
  filter: blur(6px);
  opacity: 0.34;
  animation: particles-move 24s ease-in-out infinite alternate;
}

@keyframes particles-move {
  0% {
    transform: translate3d(-18px, 0, 0);
  }
  100% {
    transform: translate3d(18px, 8px, 0);
  }
}

.bg-scanlines {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 100% 3px;
  opacity: 0.2;
  mix-blend-mode: screen;
  animation: scan 9s linear infinite;
}

@keyframes scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(3px);
  }
}

/* Layout shell and header */

.scene-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px 40px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  gap: 16px;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 26px;
}

.column {
  min-width: 0;
}

/* Brand and portrait */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 0 18px var(--neon-blue));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 13px;
  color: #a6b4e5;
}

.about-portrait {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.about-portrait-img {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(78, 243, 255, 0.9);
  box-shadow:
    0 0 30px rgba(78, 243, 255, 0.9),
    0 0 40px rgba(255, 79, 168, 0.6);
}

.hero-name {
  font-size: 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.linkedin-inline {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.linkedin-icon {
  width: 45px;
  height: 45px;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  opacity: 0.95;

  /* makes it pop on dark backgrounds */
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.55));
}

.linkedin-inline:hover .linkedin-icon {
  transform: translateY(-1px) scale(1.06);
  opacity: 1;
}

.hero-heading {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Badges and API health */

.header-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge--live {
  color: var(--neon-blue);
  border-color: rgba(78, 243, 255, 0.8);
  background: rgba(5, 28, 39, 0.9);
  box-shadow: 0 0 18px rgba(78, 243, 255, 0.9);
}

.badge--stack {
  color: var(--neon-pink);
  border-color: rgba(255, 79, 168, 0.8);
  background: rgba(48, 10, 38, 0.9);
}

/* Make badge-style links behave like pills, not underlined links */
.badge-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease-out, filter 0.12s ease-out;
}

.badge-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.api-health-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(89, 255, 140, 0.9);
  border: 1px solid color-mix(in srgb, var(--neon-green) 90%, transparent);
  background: radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--neon-green) 28%, transparent),
      transparent 55%
    ),
    rgba(4, 30, 20, 0.96);
  color: var(--neon-green);
  text-decoration: none;
  box-shadow:
    0 0 24px color-mix(in srgb, var(--neon-green) 90%, transparent),
    0 0 40px rgba(78, 243, 255, 0.4);
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    filter 0.12s ease-out,
    box-shadow 0.12s ease-out;
}

.api-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 12px color-mix(in srgb, var(--neon-green) 90%, transparent);
}

.api-arrow {
  font-size: 12px;
  opacity: 0.9;
}

.api-health-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 30px color-mix(in srgb, var(--neon-green) 100%, transparent),
    0 0 48px rgba(78, 243, 255, 0.5);
}

/* Yellow variant of API pill (Accolades) */
.api-health-pill--yellow {
  border: 1px solid color-mix(in srgb, var(--neon-yellow) 90%, transparent);
  background: radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--neon-yellow) 28%, transparent),
      transparent 55%
    ),
    rgba(30, 28, 4, 0.96);

  color: var(--neon-yellow);

  box-shadow:
    0 0 24px color-mix(in srgb, var(--neon-yellow) 90%, transparent),
    0 0 40px rgba(78, 243, 255, 0.25);
}

.api-dot--yellow {
  background: var(--neon-yellow);
  box-shadow: 0 0 12px color-mix(in srgb, var(--neon-yellow) 90%, transparent);
}

.api-health-pill--yellow:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 30px color-mix(in srgb, var(--neon-yellow) 100%, transparent),
    0 0 48px rgba(78, 243, 255, 0.30);
}

/* Pink variant pill (HOME) */
.api-health-pill--pink{
  border: 1px solid color-mix(in srgb, var(--neon-pink) 90%, transparent);
  background: radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--neon-pink) 28%, transparent),
      transparent 55%
    ),
    rgba(30, 4, 20, 0.96);
  color: var(--neon-pink);

  box-shadow:
    0 0 24px color-mix(in srgb, var(--neon-pink) 90%, transparent),
    0 0 40px rgba(78, 243, 255, 0.25);
}

.api-health-pill--pink:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 30px color-mix(in srgb, var(--neon-pink) 100%, transparent),
    0 0 48px rgba(78, 243, 255, 0.35);
}

/* Current page pill: not clickable, no hover jump */
.api-health-pill--active{
  cursor: default;
  pointer-events: none;
}

.api-health-pill--active:hover{
  transform: none;
  filter: brightness(1.02);
}

/* Card layout */

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 0 0,
      rgba(78, 243, 255, 0.2),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 79, 168, 0.2),
      transparent 60%
    ),
    var(--bg-panel);
    border: var(--border-w) solid var(--border-bright);
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.96),
      0 0 50px rgba(78, 243, 255, 0.35);
    backdrop-filter: blur(18px);
}

.card::before {
  content: "";
  position: absolute;
  inset: -28%;
  background:
    linear-gradient(
      130deg,
      rgba(78, 243, 255, 0.38),
      transparent 55%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 79, 168, 0.35),
      transparent 60%
    );
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.card-header,
.card-body {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c6d0ff;
}

.card-id {
  font-size: 11px;
  color: #8fa3ff;
}

.card-body {
  padding: 16px 18px 16px;
}

.card-about {
  margin-bottom: 18px;
}

/* Profile copy and bullets */

.hero-copy {
  font-size: 15px;
  color: #cfd8ff;
  margin: 0 0 13px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #dfe6ff;
}

.hero-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 5px;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--neon-blue);
  box-shadow: 0 0 8px rgba(78, 243, 255, 0.9);
  transform: translateY(-50%);
}

.hero-skills {
  font-size: 13px;
  color: #b7c3ff;
  margin-top: 10px;
}

/* Platforms card */

.card-platforms-wide {
  margin-top: 18px;
}

.card-body-platforms {
  font-size: 14px;
  color: #dbe3ff;
}

.section-heading {
  margin: 4px 0 6px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8edff;
}

.platforms-copy {
  margin: 0 0 8px;
}

.platforms-list {
  margin-top: 4px;
}

.platforms-note {
  margin-top: 12px;
  font-size: 12px;
  color: #a4b0ea;
}

/* Certifications and education */

.card-cert-edu {
  margin-top: 26px;
}

.card-location {
  margin-top: 26px;
}


.cert-edu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-section {
  margin-top: 6px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.cert-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 9, 32, 0.96);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 130px;
}

.cert-badge-img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 6px;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

.cert-title {
  font-size: 13px;
  font-weight: 600;
  color: #e8edff;
}

.cert-meta {
  font-size: 12px;
  color: #c4cffc;
}

.edu-section {
  margin-top: 4px;
}

.edu-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 16px; /* extra space before Proudly Canadian */
}

/* Queen's logo: larger, natural aspect ratio, rounded edges, no fake square */
.edu-logo {
  max-width: 170px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(78, 243, 255, 0.8);
  background: transparent;
}

.edu-text {
  font-size: 13px;
  color: #dfe6ff;
}

.edu-degree {
  font-weight: 600;
  margin-bottom: 3px;
}

.edu-school {
  font-size: 12px;
  color: #c4cffc;
}

.edu-gpa {
  font-size: 12px;
  color: #b7ffc9;
  margin-top: 3px;
}

.canada-section {
  margin-top: 8px;             /* small gap above inside the card */
  padding: 10px 12px;          /* padding around image and text */
  display: flex;
  flex-direction: column;      /* stack image and text vertically */
  align-items: center;         /* center horizontally */
  text-align: center;          /* center the text */
  gap: 10px;
}

.canada-image {
  display: block;
  width: 100%;          /* stretch to the full width of the card */
  max-width: 100%;      /* no artificial cap, matches container */
  border-radius: 18px;  /* rounded corners */
  box-shadow:
    0 0 22px rgba(78, 243, 255, 0.8),
    0 0 32px rgba(255, 79, 168, 0.6);  /* neon glow */
  object-fit: cover;
}

.canada-tagline {
  font-size: 13px;
  color: #dfe6ff;
  max-width: 420px;
}


.edu-note {
  margin-top: 10px;
  font-size: 12px;
  color: #a4b0ea;
}

.link-inline {
  color: var(--neon-blue);
  text-decoration: none;
  border-bottom: 1px dashed rgba(78, 243, 255, 0.7);
}

.link-inline:hover {
  text-decoration: none;
  filter: brightness(1.1);
}

/* Form and button */

.card-form .card-body {
  padding-bottom: 18px;
}

.form-copy {
  font-size: 14px;
  color: #cfd8ff;
  margin: 0 0 10px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-row--single {
  grid-template-columns: minmax(0, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b4c1f2;
}

.field input {
  border-radius: var(--radius);
  border: var(--border-w) solid rgba(156, 172, 255, 0.55);
  background: radial-gradient(
      circle at 0 0,
      rgba(78, 243, 255, 0.18),
      transparent 55%
    ),
    #050926;
  padding: 9px 11px;
  font-size: 14px;
  color: #f9fbff;
  outline: none;
  transition:
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out;
}

.field input::placeholder {
  color: #8089b5;
}

.field input:focus {
  border-color: var(--neon-pink);
  background: radial-gradient(
      circle at 100% 0,
      rgba(255, 79, 168, 0.22),
      transparent 55%
    ),
    #070e3a;
  box-shadow:
    0 0 0 1px rgba(255, 79, 168, 0.5),
    0 0 18px rgba(255, 79, 168, 0.7);
}

.submit-button {
  margin-top: 6px;
  border-radius: 999px;
  border: none;
  padding: 11px 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #02010b;
  background: linear-gradient(
    120deg,
    var(--neon-pink),
    var(--neon-blue),
    var(--neon-green)
  );
  cursor: pointer;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.96),
    0 0 42px rgba(255, 79, 168, 0.9);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition:
    filter 0.15s ease-out,
    background 0.2s ease-out,
    transform 0.1s ease-out;
}

.submit-button:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-button--loading {
  cursor: progress;
  opacity: 0.8;
}

.submit-button--success {
  background: linear-gradient(
    120deg,
    #59ff8c,
    #bfffda
  );
}

.submit-button--error {
  background: linear-gradient(
    120deg,
    #ff4f4f,
    #ff9a7a
  );
}

.status-line {
  margin-top: 10px;
  min-height: 18px;
  font-size: 14px;
  color: var(--neon-green);
}

/* Footer */

.footer {
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid rgba(34, 44, 90, 0.96);
  font-size: 12px;
  color: #b4c1f2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-right {
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 960px) {
  .main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-form {
    order: 2;
  }

  .card-about {
    order: 1;
  }

  .card-platforms-wide {
    order: 3;
  }
}

@media (max-width: 640px) {
  .scene-shell {
    padding: 20px 14px 32px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-badges {
    width: 100%;
    justify-content: flex-start;
  }

  .about-portrait {
    justify-content: center;
  }

  .about-portrait-img {
    width: 210px;
    height: 210px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .submit-button {
    width: 100%;
  }

  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .edu-content {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ----------------------------
   HubSpot form blend fix
   ---------------------------- */

/* Remove the inset padding so the HubSpot form fills the card */
.card-form .card-body {
  padding: 0;
}

/* Make the outer card stop visually fighting the HubSpot container */
.card-form::before {
  opacity: 0.15; /* lower the glow overlay so HS styling reads cleaner */
}

/* Ensure the embed expands full width */
.card-form .hs-form-frame {
  display: block;
  width: 100%;
}

/* HubSpot usually injects an iframe — this styles the iframe shell */
.card-form .hs-form-frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
}

/* ----------------------------
   Success page: top nav + proof grid
   ---------------------------- */

.brand-home {
  display: inline-flex;
  line-height: 0;
}

.top-nav {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;

  color: #e8edff;
  border: 1px solid var(--border-bright);
  background: rgba(7, 9, 28, 0.7);
  backdrop-filter: blur(10px);

  box-shadow: 0 0 18px rgba(78, 243, 255, 0.25);
  transition: transform 0.12s ease-out, filter 0.12s ease-out;
}

.nav-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.nav-pill--active {
  border-color: rgba(255, 79, 168, 0.85);
  box-shadow:
    0 0 18px rgba(255, 79, 168, 0.45),
    0 0 28px rgba(78, 243, 255, 0.25);
}

/* Title card */
.card-page-title .card-body {
  padding: 18px;
}

.page-intro {
  margin: 0 0 12px;
  color: #cfd8ff;
  font-size: 15px;
}

.page-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #a4b0ea;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(5, 9, 32, 0.65);
}

.meta-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 12px rgba(61, 255, 107, 0.75);
}

/* Grid of recommendations */
.proof-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* Each quote card */
.quote-card .card-body {
  padding: 18px;
}

.quote-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar-shell {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(78, 243, 255, 0.55);
  box-shadow:
    0 0 14px rgba(78, 243, 255, 0.35),
    0 0 18px rgba(255, 79, 168, 0.25);
  flex: 0 0 auto;
}

.quote-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-who {
  min-width: 0;
}

.quote-name {
  font-family: var(--font-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

.quote-title {
  font-size: 12px;
  color: #a4b0ea;
  margin-top: 2px;
}

.bolt-mark {
  margin-left: auto;
  font-size: 18px;
  color: var(--neon-blue);
  text-shadow: 0 0 18px rgba(78, 243, 255, 0.8);
}

.bolt-mark--pink {
  color: var(--neon-pink);
  text-shadow: 0 0 18px rgba(255, 79, 168, 0.8);
}

.quote-text {
  margin: 0 0 14px;
  color: #dfe6ff;
  font-size: 14px;
  line-height: 1.6;
}

.quote-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(5, 9, 32, 0.7);
  color: #cfd8ff;
}

.tag--yellow {
  border-color: rgba(254, 255, 0, 0.55);
  color: #feff00;
  box-shadow: 0 0 14px rgba(254, 255, 0, 0.18);
}

.tag--red {
  border-color: rgba(239, 57, 37, 0.6);
  color: #EF3925;
  box-shadow: 0 0 14px rgba(239, 57, 37, 0.18);
}

/* Responsive */
@media (max-width: 960px) {
  .proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =======================================================================
   Accolades page
   ======================================================================= */

body.accolades-page--light {
  background: #f6f7ff;
  color: #0b1020;

  /* Light surfaces */
  --bg-panel: rgba(255, 255, 255, 0.82);
  --bg-panel-soft: rgba(255, 255, 255, 0.68);

  /* Borders & text */
  --border-bright: rgba(2, 1, 11, 0.18);
  --border-soft: rgba(2, 1, 11, 0.12);
}


/* Tighten shell spacing a bit for banner sections */
.accolades-shell {
  padding-top: 26px;
}

.accolades-header {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 16px 50px rgba(2, 1, 11, 0.08),
    0 0 26px rgba(78, 243, 255, 0.10);
  backdrop-filter: blur(12px);
}

body.accolades-page--light .brand-title { color: #0b1020; }
body.accolades-page--light .brand-subtitle { color: rgba(11, 16, 32, 0.72); }


/* Accolades header only: match main page brand text colors */
body.accolades-page--light .accolades-header .brand-title{
  color: #ffffff;
}

body.accolades-page--light .accolades-header .brand-subtitle{
  color: #a6b4e5;
}


body.accolades-page--light .nav-pill {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--border-soft);
  color: rgba(11, 16, 32, 0.80);
}

body.accolades-page--light .nav-pill:hover {
  border-color: rgba(78, 243, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(78, 243, 255, 0.12);
}

body.accolades-page--light .nav-pill--active {
  color: #0b1020;
  border-color: rgba(254, 255, 0, 0.70);
  box-shadow: 0 0 18px rgba(254, 255, 0, 0.20);
}

.accolades-page .cp-banner__content,
.accolades-page .accolades-header {
  background: var(--panel-light);
  border: 1px solid rgba(2, 1, 11, 0.12);
  color: var(--ink-dark);
}

/* ------------------------------
   Banner primitives
------------------------------ */

.cp-banner {
  margin-top: 22px;
  border-radius: 26px;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 60px rgba(2, 1, 11, 0.10),
    0 0 24px rgba(78, 243, 255, 0.10);
}

.cp-banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 12% 20%, rgba(78, 243, 255, 0.40), transparent 55%),
    radial-gradient(circle at 88% 30%, rgba(255, 79, 168, 0.30), transparent 60%),
    radial-gradient(circle at 60% 110%, rgba(254, 255, 0, 0.26), transparent 55%);
  opacity: 0.55;
  filter: blur(18px);
  pointer-events: none;
}

.cp-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 1, 11, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 1, 11, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cp-banner__content {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.cp-banner-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.cp-banner-chip {
  flex: 0 0 auto;
  font-family: var(--font-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(78, 243, 255, 0.35);
  background: rgba(78, 243, 255, 0.12);
  color: rgba(11, 16, 32, 0.86);
}

.cp-h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #0b1020;
}

.cp-lede {
  margin: 8px 0 0;
  color: rgba(11, 16, 32, 0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 70ch;
}

.cp-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cp-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(2, 1, 11, 0.14);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(11, 16, 32, 0.78);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(2, 1, 11, 0.08);
}

.cp-icon-btn:hover {
  border-color: rgba(78, 243, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(78, 243, 255, 0.12);
}

/* ------------------------------
   Hero banner
------------------------------ */

.cp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.cp-kicker {
  font-family: var(--font-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 16, 32, 0.70);
}

.cp-title {
  margin: 10px 0 8px;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #0b1020;
}

.cp-subtitle {
  margin: 0;
  color: rgba(11, 16, 32, 0.76);
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
}

.cp-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 1, 11, 0.14);
  background: rgba(255, 255, 255, 0.70);
  color: rgba(11, 16, 32, 0.84);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 16px;
  box-shadow: 0 16px 42px rgba(2, 1, 11, 0.10);
}

.cp-btn-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.cp-btn--primary {
  border-color: rgba(254, 255, 0, 0.72);
  background: rgba(254, 255, 0, 0.60);
  color: rgba(11, 16, 32, 0.92);
  box-shadow:
    0 16px 42px rgba(2, 1, 11, 0.12),
    0 0 18px rgba(254, 255, 0, 0.22);
}

.cp-btn--primary:hover {
  filter: brightness(1.02);
  box-shadow:
    0 18px 48px rgba(2, 1, 11, 0.14),
    0 0 26px rgba(254, 255, 0, 0.30);
}

.cp-btn--ghost:hover {
  border-color: rgba(78, 243, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(78, 243, 255, 0.12);
}

.cp-meta-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(2, 1, 11, 0.12);
  background: rgba(255, 255, 255, 0.62);
  width: fit-content;
}

.cp-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--neon-green);
  box-shadow: 0 0 14px rgba(61, 255, 107, 0.35);
}

.cp-meta-note {
  color: rgba(11, 16, 32, 0.62);
  font-size: 13px;
}

.cp-hero-art {
  border-radius: 22px;
  border: 1px solid rgba(78, 243, 255, 0.38);
  background:
    radial-gradient(circle at 25% 20%, rgba(78, 243, 255, 0.28), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255, 79, 168, 0.24), transparent 60%),
    radial-gradient(circle at 60% 110%, rgba(254, 255, 0, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 60px rgba(2, 1, 11, 0.12),
    0 0 24px rgba(78, 243, 255, 0.14);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.cp-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.cp-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 247, 255, 0.22), rgba(246, 247, 255, 0.62));
  mix-blend-mode: screen;
}

/* ------------------------------
   Stats
------------------------------ */

.cp-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cp-stat {
  border-radius: 20px;
  border: 1px solid rgba(2, 1, 11, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 16px;
  box-shadow: 0 12px 36px rgba(2, 1, 11, 0.08);
}

.cp-stat-value {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #0b1020;
}

.cp-stat-label {
  margin-top: 6px;
  color: rgba(11, 16, 32, 0.70);
  font-size: 13px;
}

/* ------------------------------
   Carousels
------------------------------ */

.cp-carousel {
  position: relative;
}

.cp-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cp-track::-webkit-scrollbar { height: 10px; }
.cp-track::-webkit-scrollbar-track { background: rgba(2, 1, 11, 0.06); border-radius: 999px; }
.cp-track::-webkit-scrollbar-thumb { background: rgba(2, 1, 11, 0.20); border-radius: 999px; }

.cp-chip {
  scroll-snap-align: start;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(2, 1, 11, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(11, 16, 32, 0.82);
  box-shadow: 0 12px 28px rgba(2, 1, 11, 0.08);
  white-space: nowrap;
}

.cp-chip--yellow {
  border-color: rgba(254, 255, 0, 0.65);
  box-shadow:
    0 12px 28px rgba(2, 1, 11, 0.08),
    0 0 18px rgba(254, 255, 0, 0.18);
}

.cp-chip--pink {
  border-color: rgba(255, 79, 168, 0.55);
  box-shadow:
    0 12px 28px rgba(2, 1, 11, 0.08),
    0 0 18px rgba(255, 79, 168, 0.14);
}

/* Recommendation cards */
.cp-track--cards {
  gap: 16px;
}

.cp-quote {
  scroll-snap-align: start;
  flex: 0 0 420px;
  border-radius: 22px;
  border: 1px solid rgba(254, 255, 0, 0.35);
  background:
    radial-gradient(circle at 18% 22%, rgba(254, 255, 0, 0.20), transparent 55%),
    radial-gradient(circle at 82% 28%, rgba(78, 243, 255, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.78);
  padding: 18px 18px 16px;
  box-shadow:
    0 18px 60px rgba(2, 1, 11, 0.10),
    0 0 26px rgba(254, 255, 0, 0.16);
}

.cp-quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cp-quote-name {
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  color: #0b1020;
}

.cp-quote-meta {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(11, 16, 32, 0.66);
}

.cp-mark {
  font-size: 18px;
  color: rgba(78, 243, 255, 0.90);
  text-shadow: 0 0 14px rgba(78, 243, 255, 0.35);
}

.cp-quote-text {
  margin: 12px 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 16, 32, 0.82);
}

.cp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cp-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 1, 11, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(11, 16, 32, 0.72);
}

.cp-tag--yellow {
  border-color: rgba(254, 255, 0, 0.70);
  background: rgba(254, 255, 0, 0.42);
  color: rgba(11, 16, 32, 0.90);
}

.cp-reco-footer {
  margin-top: 16px;
}

/* ------------------------------
   Case studies
------------------------------ */

.cp-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cp-case {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  border: 1px solid rgba(2, 1, 11, 0.12);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(2, 1, 11, 0.08);
}

.cp-thumb {
  height: 150px;
  background:
    radial-gradient(circle at 18% 30%, rgba(78, 243, 255, 0.22), transparent 60%),
    radial-gradient(circle at 78% 30%, rgba(255, 79, 168, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.55);
  position: relative;
}

.cp-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--thumb-img);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.cp-case-body {
  padding: 16px 16px 18px;
}

.cp-case-tag {
  font-family: var(--font-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 11px;
  color: rgba(11, 16, 32, 0.62);
}

.cp-case-title {
  margin-top: 8px;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 18px;
  color: #0b1020;
}

.cp-case-sub {
  margin-top: 8px;
  color: rgba(11, 16, 32, 0.70);
  font-size: 13px;
  line-height: 1.6;
}

.cp-case-action {
  margin-top: 12px;
  font-family: var(--font-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 16, 32, 0.80);
}

.cp-case:hover {
  border-color: rgba(78, 243, 255, 0.55);
  box-shadow:
    0 18px 60px rgba(2, 1, 11, 0.10),
    0 0 28px rgba(78, 243, 255, 0.14);
}

/* Single "Coming Soon" case study card */
.cp-case-soon{
  display: flex;
  justify-content: center;
}

.cp-case--soon{
  width: 100%;
  max-width: 860px;
  position: relative;
}

/* Bigger thumb for the single card */
.cp-case--soon .cp-thumb{
  height: 190px;
}

/* Yellow construction tape overlay */
.cp-tape{
  position: absolute;
  left: -80px;
  right: -80px;
  top: 42px;
  transform: rotate(-12deg);
  z-index: 3;
  pointer-events: none;

  background: repeating-linear-gradient(
    -45deg,
    rgba(254, 255, 0, 0.92) 0 14px,
    rgba(11, 16, 32, 0.14) 14px 28px
  );

  border: 1px solid rgba(11, 16, 32, 0.28);
  box-shadow:
    0 16px 40px rgba(2, 1, 11, 0.14),
    0 0 22px rgba(254, 255, 0, 0.18);

  padding: 10px 16px;
  text-align: center;
}

.cp-tape span{
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11, 16, 32, 0.92);
}
/* Case Studies: make this section just a wrapper (no extra panel background) */
.cp-banner--flush{
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* No padding so the card spans the full section width */
.cp-banner__content--flush{
  padding: 0;
}

/* Coming-soon card should fill the whole section width */
.cp-case--soon{
  width: 100%;
  max-width: none; /* this is what was preventing full width */
  position: relative;
}

/* ------------------------------
   CTA banner (Shopify-style)
------------------------------ */

.cp-cta-grid{
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); /* 25% / 75% */
  gap: 26px;
  align-items: start;
}

.cp-email {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cp-email-input {
  min-width: 260px;
  flex: 1 1 260px;
  border-radius: 999px;
  border: 1px solid rgba(2, 1, 11, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.cp-email-input:focus {
  border-color: rgba(78, 243, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(78, 243, 255, 0.12);
}

.cp-email-btn {
  border-radius: 999px;
  border: 1px solid rgba(254, 255, 0, 0.72);
  background: rgba(254, 255, 0, 0.62);
  color: rgba(11, 16, 32, 0.92);
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 14px 18px;
  cursor: pointer;
  box-shadow:
    0 16px 42px rgba(2, 1, 11, 0.10),
    0 0 20px rgba(254, 255, 0, 0.18);
}

.cp-email-btn:hover {
  box-shadow:
    0 18px 48px rgba(2, 1, 11, 0.12),
    0 0 28px rgba(254, 255, 0, 0.26);
}
/* CTA: HubSpot form should fill the right column */
.cp-cta-form{
  min-width: 0;
}

.cp-email--hubspot{
  display: block;          /* stop flex squeezing */
  width: 100%;
}

.cp-cta .hs-form-frame{
  display: block;
  width: 100%;
  max-width: none;
}

/* HubSpot injects an iframe */
.cp-cta .hs-form-frame iframe{
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.cp-cta-note {
  margin-top: 12px;
  color: rgba(11, 16, 32, 0.62);
  font-size: 13px;
}

/* Footer on light page */
body.accolades-page--light .accolades-footer {
  color: rgba(11, 16, 32, 0.68);
  border-top-color: rgba(2, 1, 11, 0.12);
}

/* CTA: keep the overall card from getting huge because HubSpot iframe is tall */
.cp-cta-form{
  max-height: 420px;     /* adjust: try 380–520 */
  overflow: auto;
  padding-right: 8px;    /* space for scrollbar */
}

/* Make sure the iframe still fills the width */
.cp-cta .hs-form-frame,
.cp-cta .hs-form-frame iframe{
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  display: block;
}

/* CTA: reduce vertical padding so the banner feels less tall */
.cp-cta .cp-banner__content{
  padding-top: 22px;
  padding-bottom: 22px;
}

@media (max-width: 820px){
  .cp-cta-form{
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 980px) {
  .cp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-title {
    font-size: 44px;
  }

  .cp-hero-art {
    min-height: 260px;
  }

  .cp-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-email {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .cp-title {
    font-size: 38px;
  }

  .cp-case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cp-quote {
    flex-basis: 86vw;
  }
}

@media (max-width: 900px) {
  .hero-banner h1 {
    font-size: 3rem !important;
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .hero-banner h1 {
    font-size: 2.4rem !important;
    line-height: 1.2;
  }
}
/* ACCOLADES HERO (clean + neon glow behind) */
.hero-banner--accolades {
  position: relative;
  isolation: isolate;
}

.hero-banner--accolades .hero-scrim {
  position: absolute;
  inset: 0;
  /* Higher = darker. Example 0.82 darker, 0.65 lighter. */
  background: rgba(2, 1, 11, 0.55);
  z-index: 1;
}

.hero-banner--accolades .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  isolation: isolate;
}

/* Neon pink aura BEHIND the text (background glow) */
.hero-banner--accolades .hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: radial-gradient(
    circle at 50% 50%,
    color-mix(in srgb, var(--neon-pink) 32%, transparent),
    transparent 65%
  );

  filter: blur(36px);
  opacity: 0.95;
}

/* H1 layout only (no shadows here, the glow is handled by neon-title) */
.hero-banner--accolades .hero-headline {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 1.06;
  letter-spacing: 3px;
}

/* Two-layer neon title (glow outline behind, clean fill on top) */
.neon-title {
  position: relative;
  display: inline-block;
}

.neon-title__text {
  position: relative;
  z-index: 2;
  color: var(--white-blue-text, #e8edff);
  text-shadow: none;
}

.neon-title__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--neon-red);
  filter: blur(0.4px);
  text-shadow:
    0 0 30px color-mix(in srgb, var(--neon-blue) 90%, transparent),
    0 0 60px color-mix(in srgb, var(--neon-green) 10%, transparent);
  pointer-events: none;
}

/* ==========================
   Logo marquee (auto carousel)
   ========================== */

:root{
  /* easy speed control */
  --marquee-speed: 28s;

  /* fade edge strength */
  --marquee-fade: 80px;
}

/* container */
.logo-marquee{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 8px;
  background: color-mix(in srgb, #ffffff 88%, transparent);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 18px 60px rgba(2,1,11,0.22),
    0 0 26px color-mix(in srgb, var(--neon-blue) 18%, transparent);

  /* fade both ends */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 var(--marquee-fade),
    #000 calc(100% - var(--marquee-fade)),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 var(--marquee-fade),
    #000 calc(100% - var(--marquee-fade)),
    transparent
  );
}

/* track that moves */
.logo-marquee__track{
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;

  animation: marquee-left var(--marquee-speed) linear infinite;
  will-change: transform;
}

/* each logo */
.logo-marquee__item{
  display: grid;
  place-items: center;
  height: 64px;
  min-width: 120px;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-marquee__item img{
  background: transparent !important;
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* hover pops */
.logo-marquee__item:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

/* movement */
@keyframes marquee-left{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .logo-marquee__track{ animation: none; }
}
/* Recommendations hero banner + expandable list */

.reco-wrap{
  margin-top: 26px;
}

.reco-hero{
  position: relative;
  width: 100%;
  background-image: url("https://lytning.ca/images/accolades_banner.png");
  overflow: hidden;
}

.reco-hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 48px 6vw;
}

.reco-hero__track{
  width: 100%;
}

.reco-hero__slide{
  display: none;
  width: 100%;
}

.reco-hero__slide.is-active{
  display: block;
}

.reco-hero__quote{
  margin: 0;
}

/* quote person name text */
.reco-hero__byline{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  color: rgba(232,237,255,0.9);
  font-size: 30px;
}

.reco-hero__dash{
  opacity: 0.9;
}

.reco-hero__name{
  font-weight: 700;
}

.reco-hero__title{
  opacity: 0.85;
}

.reco-toggle-row{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.reco-toggle{
  position: relative;
  border: 1px solid color-mix(in srgb, var(--neon-green) 80%, transparent);
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--neon-green) 34%, transparent), transparent 55%),
    rgba(7, 9, 28, 0.82);
  color: var(--neon-green);

  border-radius: 18px;
  padding: 16px 22px;              /* bigger */
  display: inline-flex;
  align-items: center;
  gap: 14px;

  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  font-size: clamp(13px, 1.25vw, 16px);  /* bigger + responsive */

  box-shadow:
    0 0 26px color-mix(in srgb, var(--neon-green) 60%, transparent),
    0 0 64px rgba(78, 243, 255, 0.20);

  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}


.reco-toggle:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 0 36px color-mix(in srgb, var(--neon-green) 75%, transparent),
    0 0 86px rgba(78, 243, 255, 0.26);
}

.reco-toggle:active{
  transform: translateY(0px);
}


.reco-toggle::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    transparent 35%,
    transparent 65%,
    rgba(255,255,255,0.06)
  );
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: screen;
}


.reco-toggle__chev{
  font-size: clamp(18px, 2vw, 26px); /* bigger + responsive */
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
  opacity: 0.95;
  text-shadow: 0 0 16px color-mix(in srgb, var(--neon-green) 70%, transparent);
}


.reco-panel{
  margin-top: 18px;
}

.reco-panel__content{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 10px;
}

.reco-row{
  border: 1px solid rgba(2, 1, 11, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 18px 18px 16px;
  margin-bottom: 14px;
  box-shadow: 0 12px 36px rgba(2, 1, 11, 0.08);
  color: rgba(11, 16, 32, 0.82);
}


.reco-row__head{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.reco-row__name{
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.reco-row__meta{
  color: rgba(11, 16, 32, 0.66);
  font-size: 13px;
}

.reco-row__body{
  color: rgba(11, 16, 32, 0.82);
  font-size: 14px;
  line-height: 1.7;
}


/* Full-bleed helper (break out of .scene-shell max-width) */
.full-bleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Accolades page: make the top header behave like the main page (no white bar) */
body.accolades-page .accolades-header{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}


/* FINAL OVERRIDE: Accolades header should match main page (dark + neon) */
body.accolades-page .accolades-header,
body.accolades-page--light .accolades-header{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: #e8edff !important; /* stops the dark ink color from winning */
}

/* Brand text in header */
body.accolades-page .accolades-header .brand-title,
body.accolades-page--light .accolades-header .brand-title{
  color: #ffffff !important;
}

body.accolades-page .accolades-header .brand-subtitle,
body.accolades-page--light .accolades-header .brand-subtitle{
  color: #a6b4e5 !important;
}

/* CTA: tighten bottom space under the HubSpot form */
.cp-cta .cp-banner__content{
  padding-bottom: 0px !important; /* was bigger */
}

.cp-cta .cp-cta-grid{
  margin-bottom: 0 !important;
}

.cp-cta .cp-cta-form{
  padding-bottom: 0 !important;
}

.cp-cta .cp-email--hubspot{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* If you're keeping the note, reduce its spacing */
.cp-cta .cp-cta-note{
  margin-top: 0px !important;
  padding-bottom: 0 !important;
}
