/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-dark: #1B1D1E;
  --color-body: #333333;
  --color-muted: rgba(27, 29, 30, 0.6);
  --color-white: #FFFFFF;
  --color-purple: #0061FF;
  --color-yellow: #F6E683;
  --color-border: rgba(27, 29, 30, 0.1);
  --color-light-bg: rgba(27, 29, 30, 0.05);

  /* Gradients */
  --gradient-mint:   linear-gradient(135deg, hsl(145 54% 88%), hsl(145 54% 95%));
  --gradient-peach:  linear-gradient(135deg, hsl(33 100% 77%), hsl(33 100% 85%));
  --gradient-yellow: linear-gradient(135deg, hsl(50 100% 79%), hsl(50 100% 87%));
  --gradient-pink:   linear-gradient(135deg, hsl(358 71% 86%), hsl(358 71% 92%));
  --gradient-warm:   linear-gradient(135deg, hsl(33 100% 77%), hsl(50 100% 79%));

  /* Badge / card colors */
  --color-badge-purple: rgba(186, 129, 238, 0.2);
  --color-badge-blue: rgba(112, 181, 255, 0.2);
  --color-badge-orange: rgba(255, 175, 104, 0.2);
  --color-badge-pink: rgba(244, 136, 154, 0.2);
  --color-badge-green: rgba(121, 212, 94, 0.2);

  /* Typography */
  --font-primary: "Suisse Int'l", Inter, "Helvetica Neue", sans-serif;
  --font-accent: "Instrument Serif", serif;
  --font-hero: "Suisse Int'l", Inter, "Helvetica Neue", sans-serif;

  /* Stripe-style hero palette */
  --color-hero-bg: #F6F9FC;
  --color-headline-top: #635BFF;
  --color-headline-bottom: #0A2540;
  --color-subcopy: #425466;

  /* Layout */
  --container-max: 1272px;
  --container-padding: 0 20px;

  /* Radius */
  --radius-pill: 999px;
  --radius-btn: 33px;
  --radius-card: 16px;
  --radius-card-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================ */
/* TYPOGRAPHY                                   */
/* ============================================ */
.accent-serif {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.section-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 48px;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  border-radius: var(--radius-btn);
  padding: 8px 8px 8px 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-purple);
  color: var(--color-white);
}

.btn-dark {
  background: #252525;
  color: var(--color-white);
  border: 1px solid #252525;
}

.btn-dark-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 45px;
  padding: 9px 8px 9px 20px;
}

.btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-arrow-circle img {
  width: 14px;
  height: 14px;
}

.btn-arrow-circle--dark {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483647;
  padding: 25px 24px 0;
  background: transparent;
}

.navbar-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 0 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #1F1F1F;
  border-radius: 20px;
  box-shadow: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: 100px;
  height: 26px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.nav-link {
  font-family: var(--font-hero);
  font-size: 17px;
  font-weight: 400;
  color: #1F1F1F;
  padding: 8px 14px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #635BFF;
}

.nav-link.active {
  color: #0A2540;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.5px;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.nav-btn--secondary {
  background-color: #252525;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-btn--secondary:hover {
  background-color: #3a3a3a;
}

.nav-btn--primary {
  background: linear-gradient(90deg, #F87D4F, #EE5C89, #CA48C2, #933FE4);
  color: #FFFFFF;
  border: none;
}

.nav-btn--primary:hover {
  filter: brightness(1.05);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 20;
  position: relative;
}

.hamburger img {
  width: 24px;
  height: 24px;
}

.hamburger-close {
  display: none;
}

.hamburger.is-open .hamburger-open {
  display: none;
}

.hamburger.is-open .hamburger-close {
  display: block;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark);
}

.mobile-nav-cta {
  margin-top: 16px;
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero {
  position: relative;
  /* 760 visible band + 97 to cover behind the nav (25px wrapper + 72px pill).
     Keeps the diagonal cut at its previous y-position relative to the mockups. */
  min-height: 857px;
  background: var(--color-hero-bg);
  overflow: hidden;
  isolation: isolate;
  margin-top: -97px;
  padding-top: 97px;
}

/* Skewed gradient layer — single replaceable target so a future WebGL
   <canvas> can drop in without touching surrounding markup or CSS. */
.hero-gradient {
  position: absolute;
  top: -138px;
  left: 0;
  right: 0;
  height: 100%;
  background: url("../assets/images/hero-mesh-gradient.png") center/cover no-repeat;
  transform: matrix(1, -0.13, 0, 1, 0, 0);
  transform-origin: top left;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding: 56px 20px 32px;
}

.hero-text {
  max-width: 540px;
}

.hero-headline {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.05;
  letter-spacing: clamp(-2.5px, -0.2vw, -1px);
  color: var(--color-headline-bottom);
  margin: 0;
}

.hero-subcopy {
  color: #252525;
  font-family: var(--font-hero);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 400;
  max-width: 480px;
  margin: 24px 0 32px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-headline-bottom);
  color: #FFFFFF;
  font-family: var(--font-hero);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(10, 37, 64, 0.4);
}

.hero-text-link {
  color: var(--color-headline-bottom);
  font-family: var(--font-hero);
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.hero-text-link:hover {
  opacity: 0.75;
}

/* Right column — layered placeholder mockups */
.hero-mockups {
  position: relative;
  height: clamp(420px, 45vw, 540px);
}

.hero-mockup-card {
  position: absolute;
  background: #FFFFFF;
  box-shadow:
    0 60px 120px -30px rgba(10, 37, 64, 0.25),
    0 30px 60px -20px rgba(10, 37, 64, 0.15);
  padding: 24px;
}

.hero-mockup-card--dashboard {
  width: clamp(420px, 48vw, 580px);
  height: clamp(280px, 32vw, 380px);
  right: clamp(-120px, -10vw, -60px);
  top: 80px;
  border-radius: 16px;
  transform: rotate(-2deg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-mockup-card--phone {
  width: clamp(180px, 20vw, 240px);
  height: clamp(360px, 40vw, 480px);
  right: clamp(260px, 27vw, 380px);
  top: 30px;
  border-radius: 36px;
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 20px 24px;
}

.mockup-bar {
  background: #E3E8EE;
  border-radius: 6px;
  height: 12px;
}

.mockup-bar--title {
  height: 18px;
  width: 60%;
  background: #C1C9D2;
}

.mockup-bar--short {
  width: 50%;
}

.mockup-bar--avatar {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #C1C9D2;
}

.mockup-bar--button {
  margin-top: auto;
  height: 40px;
  border-radius: 999px;
  background: var(--color-headline-bottom);
}

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

.mockup-row {
  height: 14px;
  border-radius: 4px;
  background: #E3E8EE;
}

.mockup-row--short {
  width: 65%;
}

.mockup-chart {
  flex: 1;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(99, 91, 255, 0.18)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(99, 91, 255, 0.08) 47px,
      rgba(99, 91, 255, 0.08) 48px
    ),
    #F6F9FC;
  position: relative;
}

.mockup-chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18%;
  height: 38%;
  background: linear-gradient(135deg, var(--color-headline-top), #81C7FF);
  clip-path: polygon(
    0% 80%, 12% 60%, 24% 70%, 36% 40%, 48% 55%, 60% 25%, 72% 45%, 84% 20%, 100% 35%,
    100% 100%, 0% 100%
  );
  opacity: 0.85;
}

.mockup-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0A2540;
  border-radius: 0 0 12px 12px;
}

/* ============================================ */
/* HERO DEMO VIDEO                              */
/* ============================================ */
.hero-video-section {
  background: var(--color-hero-bg);
  padding: 24px 0 80px;
}

.hero-video-frame {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow:
    0 60px 120px -30px rgba(10, 37, 64, 0.25),
    0 30px 60px -20px rgba(10, 37, 64, 0.15);
  background: #000;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================ */
/* LOGO BAR / CLIENTS                           */
/* ============================================ */
.logo-bar {
  padding: 60px 0;
}

/* In-hero logos strip — pinned to the bottom of the hero, sitting in the
   off-white area below the diagonal cut. */
.hero-logos {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 24px;
}

.hero-logos .logo-bar-divider {
  margin-bottom: 16px;
}

.hero-logos .marquee-overlay-left {
  background: linear-gradient(90deg, var(--color-hero-bg), rgba(246, 249, 252, 0) 75%);
}

.hero-logos .marquee-overlay-right {
  background: linear-gradient(90deg, rgba(246, 249, 252, 0), var(--color-hero-bg) 75%);
}

.logo-bar-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.divider-text {
  font-size: 14px;
  color: var(--color-muted);
  white-space: nowrap;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-overlay-left,
.marquee-overlay-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-overlay-left {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 75%);
}

.marquee-overlay-right {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255) 75%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  flex-shrink: 0;
}

.brand-logo {
  height: 30px;
  width: auto;
}

.brand-logo--large {
  height: 50px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================ */
/* ABOUT / PROBLEM STATEMENT SECTION            */
/* ============================================ */
.about {
  padding: 80px 0 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.about .container {
  max-width: var(--container-max);
  width: 100%;
}

/* Problem followup text */
.problem-followup {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-dark);
  max-width: 900px;
  margin: 24px auto 0;
}

/* ============================================ */
/* TAGLINE STRIPE (rotating-word)               */
/* ============================================ */
.topics-tagline {
  position: relative;
  width: 100%;
  padding: 48px 0;
  text-align: center;
  overflow: hidden;
  background: url("../assets/images/hero-mesh-gradient.png") center/cover no-repeat;
}

.topics-tagline .marquee-overlay-left,
.topics-tagline .marquee-overlay-right {
  width: 180px;
}

.tagline-stripe-text {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--color-headline-bottom);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
  flex-wrap: nowrap;
}

.tagline-carousel {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.2em;
  padding-left: 0.05em;
  padding-bottom: 0.15em;
  position: relative;
}

.tagline-carousel-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.tagline-carousel-word {
  height: 1.2em;
  display: flex;
  align-items: center;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 130px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  border-right: 1px solid var(--color-border);
  padding-right: 40px;
  padding-left: 40px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-figure {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ============================================ */
/* FEATURES SECTION                             */
/* ============================================ */
.features {
  position: relative;
  /* vw-based padding so the section scales vertically with viewport width,
     which is what governs the skew shift. Keeps navy fully inside bounds. */
  padding: 18vw 0 20vw;
  overflow: hidden;
  background: #FFFFFF;
  isolation: isolate;
}

/* Single shared transform for navy + accents, so they all shift together
   and their pre-transform relative positions are preserved. */
.features-shapes {
  position: absolute;
  inset: 0;
  transform: matrix(1, -0.13, 0, 1, 0, 0);
  transform-origin: top left;
  z-index: 0;
  pointer-events: none;
}

.features-bg {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 16vw;
  bottom: 4vw;
  background: #0A2540;
}

.features-accent {
  position: absolute;
  height: 18px;
}

.features-accent--top-outer {
  left: -4%;
  width: 32%;
  top: 13vw;
  background: #F87D4F;
}

.features-accent--top-inner {
  left: -2%;
  width: 45%;
  top: 14.7vw;
  background: #EE5C89;
}

.features-accent--bottom-inner {
  right: -2%;
  width: 45%;
  bottom: 2.7vw;
  background: #CA48C2;
}

.features-accent--bottom-outer {
  right: -4%;
  width: 32%;
  bottom: 1vw;
  background: #933FE4;
}

/* At narrow viewports the skew shift becomes large relative to section
   height — switch to flat horizontal stripes. */
@media (max-width: 768px) {
  .features {
    padding: 80px 0 80px;
  }

  .features-shapes {
    transform: none;
  }

  .features-bg,
  .features-accent {
    left: 0;
    right: 0;
    width: auto;
  }

  .features-bg {
    top: 40px;
    bottom: 40px;
  }

  .features-accent--top-outer { top: 12px; }
  .features-accent--top-inner { top: 24px; }
  .features-accent--bottom-inner { bottom: 24px; }
  .features-accent--bottom-outer { bottom: 12px; }
}

.features > .container {
  position: relative;
  z-index: 1;
}

.features .section-heading {
  color: #FFFFFF;
}

.features-label {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.features .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 12px 32px -14px rgba(10, 37, 64, 0.12);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--card-accent, linear-gradient(90deg, #F87D4F, #EE5C89));
}

.features-grid .feature-card {
  border-radius: var(--radius-card-lg);
  --tilt: 0deg;
}

.features-grid .feature-card:nth-child(6n+1) { --card-accent: linear-gradient(90deg, #F87D4F, #EE5C89); }
.features-grid .feature-card:nth-child(6n+2) { --card-accent: linear-gradient(90deg, #EE5C89, #CA48C2); }
.features-grid .feature-card:nth-child(6n+3) { --card-accent: linear-gradient(90deg, #CA48C2, #933FE4); }
.features-grid .feature-card:nth-child(6n+4) { --card-accent: linear-gradient(90deg, #933FE4, #F87D4F); }
.features-grid .feature-card:nth-child(6n+5) { --card-accent: linear-gradient(90deg, #F87D4F, #CA48C2); }
.features-grid .feature-card:nth-child(6n)   { --card-accent: linear-gradient(90deg, #EE5C89, #933FE4); }

.feature-card:hover {
  transform: rotate(0deg) translateY(-6px);
  background: #FFFFFF;
  box-shadow: 0 20px 44px -12px rgba(10, 37, 64, 0.22);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-svg {
  width: 24px;
  height: 24px;
}

.feature-icon--brand-orange {
  background: rgba(248, 125, 79, 0.2);
  color: #F87D4F;
}

.feature-icon--brand-pink {
  background: rgba(238, 92, 137, 0.2);
  color: #EE5C89;
}

.feature-icon--brand-magenta {
  background: rgba(202, 72, 194, 0.2);
  color: #CA48C2;
}

.feature-icon--brand-purple {
  background: rgba(147, 63, 228, 0.2);
  color: #933FE4;
}

.feature-card-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.feature-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
}

.feature-card-body .accent-serif {
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 60px 0 80px;
  }

  .features-grid .feature-card {
    border-radius: var(--radius-card-lg);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================ */
/* PULL QUOTE                                   */
/* ============================================ */
.pull-quote-section {
  padding: 80px 0;
}

.pull-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote-text {
  font-family: var(--font-accent);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.pull-quote-cite {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  font-style: normal;
  letter-spacing: 0.02em;
}

.pull-quote-banner {
  background: var(--color-dark);
  border-radius: var(--radius-card-lg);
  padding: 60px 48px;
  text-align: center;
}

.pull-quote-banner-text {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.pull-quote-banner-cite {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================ */
/* HOW IT WORKS SECTION                         */
/* ============================================ */
.how-it-works {
  padding: 100px 0 120px;
}

.hiw-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.hiw-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, #F87D4F 0%, #EE5C89 33%, #CA48C2 66%, #933FE4 100%);
  border-radius: 2px;
  transform-origin: top center;
  transform: translateX(-50%) scaleY(var(--line-progress, 0));
  transition: transform 0.1s linear;
}

.hiw-step {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 72px;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step--left {
  justify-content: flex-start;
}

.hiw-step--right {
  justify-content: flex-end;
}

.hiw-dot {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 22px;
  height: 22px;
  background: var(--accent-color);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transform: translateX(-50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hiw-step.is-visible .hiw-dot {
  transform: translateX(-50%) scale(1);
}

.hiw-step .hiw-card {
  opacity: 0;
  transition: opacity 0.65s ease 0.3s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.hiw-step--left .hiw-card {
  transform: translateX(-120px);
}

.hiw-step--right .hiw-card {
  transform: translateX(120px);
}

.hiw-step.is-visible .hiw-card {
  opacity: 1;
  transform: translateX(0);
}

.hiw-card {
  position: relative;
  width: calc(50% - 52px);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hiw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--accent-gradient);
}

.hiw-number {
  display: block;
  font-size: 88px;
  line-height: 0.9;
  color: var(--accent-color);
  margin-bottom: 4px;
  opacity: 0.9;
}

.hiw-heading {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hiw-body {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}


.hiw-illustration {
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  min-height: 280px;
}

.hiw-illustration--purple { background: var(--color-badge-purple); }
.hiw-illustration--blue { background: var(--color-badge-blue); }
.hiw-illustration--pink { background: var(--color-badge-pink); }
.hiw-illustration--orange { background: var(--color-badge-orange); }

.hiw-tagline-banner {
  background: var(--color-dark);
  border-radius: var(--radius-card-lg);
  padding: 60px 48px;
  text-align: center;
  margin-top: 20px;
}

.hiw-tagline-banner p {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================ */
/* WHAT YOU CAN SUPERTEST SECTION               */
/* ============================================ */
.what-you-can-test {
  padding: 0;
}

.test-cards-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.test-card {
  flex: 1;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.2s ease;
}

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

.test-card--purple { background: var(--color-badge-purple); }
.test-card--blue { background: var(--color-badge-blue); }
.test-card--pink { background: var(--color-badge-pink); }

.test-card-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 16px;
}

.test-card-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
}

.topics-marquee {
  margin-top: 0;
}

/* Topics marquee has 2 copies of the content (vs the logo bar's 4), so the
   shared `marquee` keyframe (which translates -25%) lands mid-copy and snaps.
   Override with a -50% keyframe so the loop lands exactly one copy later. */
.topics-marquee .marquee-track {
  animation-name: topics-marquee;
}

@keyframes topics-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topics-band {
  background: #FFFFFF;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.topics-marquee {
  overflow: visible;
}

.topics-marquee--row-a .marquee-track {
  animation: topics-marquee 30s linear infinite;
}

.topics-marquee--row-b .marquee-track {
  animation: topics-marquee-reverse 36s linear infinite;
}

@keyframes topics-marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.topics-marquee .marquee-content {
  gap: 20px;
  padding: 20px 10px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-hero);
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.topic-pill-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.topic-pill .accent-serif {
  font-size: 1.08em;
  margin-left: 2px;
}

.topics-marquee .topic-pill:nth-child(4n+1) { background: #F87D4F; }
.topics-marquee .topic-pill:nth-child(4n+2) { background: #EE5C89; }
.topics-marquee .topic-pill:nth-child(4n+3) { background: #CA48C2; }
.topics-marquee .topic-pill:nth-child(4n+4) { background: #933FE4; }

/* ============================================ */
/* WORK / PORTFOLIO SECTION                     */
/* ============================================ */
.work {
  padding: 80px 0;
}

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.portfolio-row {
  display: flex;
  gap: 24px;
}

.portfolio-card {
  flex: 1;
}

.portfolio-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 20px;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.03);
}

.portfolio-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.portfolio-arrow img {
  width: 24px;
  height: 24px;
}

.portfolio-card:hover .portfolio-arrow {
  transform: scale(1.1);
}

.portfolio-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 12px;
}

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

.tag {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 14px;
  color: var(--color-muted);
}

/* ============================================ */
/* TEAM SECTION                                 */
/* ============================================ */
.team {
  padding: 80px 0;
  text-align: center;
}

.team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-story-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 30px;
}

.team-story-backdrop {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-mesh-gradient.png") center/cover no-repeat;
  border-radius: 48px;
  filter: blur(36px);
  opacity: 0.85;
  z-index: 0;
  will-change: transform;
  transform: translateY(var(--backdrop-shift, 0px));
}

.team-story-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 56px 16px 56px 16px;
  padding: 72px 72px;
  box-shadow: 0 28px 60px -24px rgba(10, 37, 64, 0.28);
  transform: rotate(-1.2deg);
}

.team-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr;
  gap: 60px;
  align-items: start;
}

.team-story-heading {
  font-size: 56px;
  text-align: left;
  margin-bottom: 0;
  line-height: 1.05;
}

.team-story {
  max-width: none;
  text-align: left;
}

.team-story p {
  font-size: 17px;
  color: #252525;
  line-height: 1.65;
  margin-bottom: 18px;
}

.team-story p:last-child {
  margin-bottom: 0;
}

.team-story-statement {
  font-family: var(--font-hero);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-headline-bottom) !important;
  line-height: 1.25;
  margin-top: 8px !important;
  letter-spacing: -0.3px;
}

.team-story-statement .accent-serif {
  font-size: 1.06em;
}

.drop-cap {
  float: left;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 72px;
  line-height: 0.85;
  color: #CA48C2;
  padding-right: 12px;
  padding-top: 6px;
}

.team-grid {
  display: flex;
  gap: 24px;
}

.team-card {
  flex: 1;
  text-align: center;
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team-shape {
  position: absolute;
  bottom: 0;
  border-radius: 200px 200px 16px 16px;
  width: 80%;
  height: 70%;
  z-index: 0;
}

.team-shape--purple { background: rgba(186, 129, 238, 0.3); }
.team-shape--orange { background: rgba(255, 175, 104, 0.3); }
.team-shape--yellow { background: rgba(246, 230, 131, 0.5); }
.team-shape--blue { background: rgba(112, 181, 255, 0.3); }

.team-placeholder {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 40px;
}

.team-placeholder--purple { background: rgba(186, 129, 238, 0.5); }
.team-placeholder--orange { background: rgba(255, 175, 104, 0.5); }
.team-placeholder--yellow { background: rgba(246, 230, 131, 0.7); }
.team-placeholder--blue { background: rgba(112, 181, 255, 0.5); }

.team-photo {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 40px;
}

.team-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

/* ============================================ */
/* TESTIMONIALS SECTION                         */
/* ============================================ */
.testimonials {
  padding: 80px 0 100px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0 72px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-stat-number {
  font-family: var(--font-hero);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #F87D4F, #EE5C89, #CA48C2, #933FE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-stat-label {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.testimonials-marquee {
  overflow: visible;
}

.testimonials-marquee .marquee-track {
  animation: marquee 60s linear infinite;
  gap: 28px;
}

.testimonials-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.testimonials-marquee .marquee-content {
  gap: 28px;
  padding: 32px 14px;
}

.testimonials-marquee .marquee-overlay-left,
.testimonials-marquee .marquee-overlay-right {
  width: 120px;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  min-height: 320px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 14px 32px -8px rgba(10, 37, 64, 0.15);
  transform: rotate(var(--tilt, 0deg));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 20px 44px -10px rgba(10, 37, 64, 0.22);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.testimonial-mark {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 140px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.testimonial-theme {
  display: inline-block;
  font-family: var(--font-hero);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-headline-bottom);
  margin: 0 0 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--avatar-bg);
  color: #FFFFFF;
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.testimonial-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--color-muted);
}

.testimonial-company-logo {
  flex-shrink: 0;
  height: 20px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.75;
}

/* ============================================ */
/* PRICING SECTION                              */
/* ============================================ */
.pricing {
  padding: 80px 0;
}

.gradient-text {
  background: linear-gradient(90deg, #F87D4F, #EE5C89, #CA48C2, #933FE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================ */
/* PRICING MATRIX (Variant C — soft tints)      */
/* ============================================ */
.pm-wrap {
  --pm-navy: #0A2540;
  --pm-subcopy: #425466;
  --pm-muted: rgba(27, 29, 30, 0.6);
  --pm-body: #2A2C2D;
  --pm-orange: #F87D4F;
  --pm-pink: #EE5C89;
  --pm-magenta: #CA48C2;
  --pm-purple: #933FE4;
  --pm-gradient: linear-gradient(90deg, #F87D4F, #EE5C89, #CA48C2, #933FE4);

  font-family: "Inter Tight", "Suisse Int'l", Inter, "Helvetica Neue", sans-serif;
  color: var(--pm-navy);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.pm-promo {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px 16px 24px;
  border-radius: 16px;
  margin: 0 0 28px;
  font-size: 17px;
  background: #fff;
  border: 1.5px solid rgba(10, 37, 64, 0.16);
  box-shadow: 0 6px 18px -8px rgba(10, 37, 64, 0.18);
  color: var(--pm-navy);
}
.pm-promo__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--pm-gradient);
  color: #fff;
}
.pm-promo__copy { flex: 1; font-weight: 500; }
.pm-promo__copy .pm-promo-amount { font-weight: 600; }
.pm-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 20px;
  border-radius: 999px;
  background: var(--pm-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s;
}
.pm-promo__cta:hover { opacity: 0.92; transform: translateY(-1px); }
.pm-promo__cta-arrow {
  width: 22px; height: 22px; border-radius: 999px;
  background: #fff; color: var(--pm-navy);
  display: inline-flex; align-items: center; justify-content: center;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.pm-card {
  position: relative;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 660px;
  box-sizing: border-box;
  border: 1px solid rgba(10, 37, 64, 0.06);
}
.pm-card--single { background: #FCEEDD; }
.pm-card--recurring {
  background: #FADCE6;
  box-shadow: 0 16px 36px -22px rgba(238, 92, 137, 0.55),
              0 4px 14px -10px rgba(10, 37, 64, 0.08);
}
.pm-card--enterprise { background: #ECE0F7; }

.pm-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--pm-navy);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pm-tag__dot { width: 7px; height: 7px; border-radius: 999px; margin-right: 9px; }
.pm-tag--single .pm-tag__dot     { background: var(--pm-orange); }
.pm-tag--recurring .pm-tag__dot  { background: var(--pm-pink); }
.pm-tag--enterprise .pm-tag__dot { background: var(--pm-purple); }

.pm-flag-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  overflow: hidden;
  pointer-events: none;
  border-top-right-radius: 20px;
}
.pm-featured-flag {
  position: absolute;
  display: block;
  width: 184px;
  top: 33px;
  right: -46px;
  transform: rotate(45deg);
  background: var(--pm-pink);
  color: #fff;
  padding: 6px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(238, 92, 137, 0.4);
}

.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 60px;
}
.pm-price {
  font-family: "Inter Tight", "Suisse Int'l", Inter, sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.8px;
  color: var(--pm-navy);
}
.pm-unit {
  font-size: 16px;
  color: var(--pm-muted);
  font-weight: 500;
}

.pm-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--pm-navy);
  opacity: 0.75;
  margin: 0 0 24px;
  min-height: 72px;
}

.pm-toggle-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pm-navy);
  opacity: 0.55;
  margin: 0 0 10px;
}
.pm-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  margin-bottom: 22px;
  font-size: 14px;
  gap: 2px;
}
.pm-toggle__btn {
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: var(--pm-subcopy);
  padding: 11px 4px 10px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
}
.pm-toggle__btn:hover:not(.is-active) { color: var(--pm-navy); }
.pm-toggle__btn.is-active {
  background: #fff;
  color: var(--pm-magenta);
  box-shadow: 0 2px 6px rgba(238, 92, 137, 0.25);
  font-weight: 600;
}
.pm-toggle__count {
  font-variant-numeric: tabular-nums;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.pm-toggle__suffix {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.pm-divider {
  height: 1px;
  background: rgba(10, 37, 64, 0.07);
  margin: 22px 0;
}

.pm-feat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pm-navy);
  opacity: 0.55;
  margin: 0 0 14px;
}

.pm-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pm-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--pm-body);
}
.pm-check {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pm-check svg { width: 20px; height: 20px; }
.pm-card--single .pm-check     { color: #C24A1A; }
.pm-card--recurring .pm-check  { color: var(--pm-magenta); }
.pm-card--enterprise .pm-check { color: var(--pm-purple); }

.pm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: var(--pm-navy);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
  margin-top: auto;
  box-sizing: border-box;
}
.pm-cta:hover { opacity: 0.92; transform: translateY(-1px); }
.pm-cta__arrow {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--pm-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pm-cta--recurring { background: var(--pm-magenta); }
.pm-cta--recurring .pm-cta__arrow { color: var(--pm-magenta); }

.pm-footer-note {
  text-align: center;
  font-size: 15px;
  color: var(--pm-muted);
  margin: 32px 0 0;
}
.pm-footer-note a {
  color: var(--pm-navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pm-footer-note a:hover { opacity: 0.7; }

@media (max-width: 1023px) {
  .pm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pm-card { min-height: auto; }
  .pm-card--recurring { order: 0; }
}

@media (max-width: 640px) {
  .pm-card { padding: 24px; }
  .pm-price { font-size: 48px; letter-spacing: -1.4px; }
  .pm-toggle__count { font-size: 17px; }
  .pm-toggle__suffix { font-size: 10.5px; }
  .pm-features li { font-size: 14px; }
  .pm-promo {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  .pm-promo__pill { align-self: center; }
  .pm-promo__cta { justify-content: center; width: 100%; }
}

/* ============================================ */
/* FAQ SECTION                                  */
/* ============================================ */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-dark);
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--color-light-bg);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-dark);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 8px 32px 32px;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 80ch;
}

.faq-category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-category-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  background: var(--color-light-bg);
  transition: background 0.2s ease;
  cursor: pointer;
}

.faq-category-header:hover {
  background: rgba(27, 29, 30, 0.08);
}

.faq-category.is-open .faq-category-header .faq-chevron {
  transform: rotate(180deg);
}

.faq-category-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-category-body .faq-item {
  border: none;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
}

/* ============================================ */
/* FINAL CTA SECTION                            */
/* ============================================ */
.final-cta {
  padding: 80px 0;
}

.final-cta-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card-lg);
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.final-cta-text-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-purple);
  transition: opacity 0.2s ease;
}

.final-cta-text-link:hover {
  opacity: 0.8;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  padding: 80px 0 0;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  flex: 1;
  max-width: 300px;
}

.footer-email {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-headline-bottom);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-dark);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--color-muted);
}

.footer-bottom a {
  color: var(--color-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-dark);
}

/* ============================================ */
/* TEXT REVEAL ANIMATION                        */
/* ============================================ */
.text-reveal .word {
  display: inline-block;
  white-space: nowrap;
}

.text-reveal .char {
  display: inline;
  opacity: 0.15;
  transition: opacity 0.1s ease;
}

.text-reveal .char.is-space {
  width: 0.3em;
  display: inline-block;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .team-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .team-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 250px;
  }

  .testimonial-row-1 {
    grid-template-columns: 1fr;
  }

  .testimonial-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-pill {
    padding: 0 12px 0 16px;
  }
}

@media (max-width: 960px) {

  .hero {
    min-height: auto;
  }

  /* Below the two-column breakpoint, drop absolute positioning so logos
     flow naturally below the grid instead of overlapping the CTA. */
  .hero-logos {
    position: static;
    padding: 24px 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 20px 60px;
    min-height: auto;
  }

  /* Stacked layout: center text and mockups as a single column. */
  .hero-text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-headline br {
    display: none;
  }

  .hero-subcopy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .hero-mockups {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    height: clamp(320px, 44vw, 420px);
  }

  .hero-mockup-card--dashboard {
    width: 100%;
    height: clamp(240px, 32vw, 300px);
    right: 0;
    top: 40px;
  }

  .hero-mockup-card--phone {
    width: clamp(160px, 22vw, 200px);
    height: clamp(300px, 42vw, 360px);
    right: 55%;
    top: 0;
  }
}

@media (max-width: 768px) {

  .topics-band {
    padding: 40px 0;
    gap: 16px;
  }

  .topic-pill {
    font-size: 16px;
    padding: 10px 20px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 24px 0 48px;
    margin-bottom: 40px;
  }

  .trust-stat-number {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .trust-stat-label {
    font-size: 12px;
  }

  .testimonial-card {
    width: 300px;
    min-height: 280px;
    padding: 28px 24px 20px;
  }

  .testimonial-mark {
    font-size: 100px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .section-heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .final-cta-heading {
    font-size: 36px;
  }

  /* Problem followup responsive */
  .problem-followup {
    font-size: 22px;
  }

  /* Tagline stripe responsive */
  .topics-tagline {
    padding: 28px 0;
  }

  .team-story-wrapper {
    padding: 24px 12px;
  }

  .team-story-card {
    padding: 40px 28px;
    border-radius: 32px 12px 32px 12px;
    transform: rotate(-0.6deg);
  }

  .team-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-story-heading {
    font-size: 36px;
  }

  .team-story-statement {
    font-size: 22px;
  }

  .team-story-backdrop {
    filter: blur(28px);
    border-radius: 32px;
  }

  .drop-cap {
    font-size: 54px;
  }

  .tagline-stripe-text {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  /* How it works responsive */
  .how-it-works {
    padding: 60px 0 72px;
  }

  .hiw-timeline {
    padding: 16px 0;
  }

  .hiw-timeline-line {
    left: 20px;
  }

  .hiw-step,
  .hiw-step--left,
  .hiw-step--right {
    justify-content: flex-start;
    padding-left: 56px;
    margin-bottom: 48px;
  }

  .hiw-card {
    width: 100%;
    padding: 32px 28px;
  }

  .hiw-step--left .hiw-card,
  .hiw-step--right .hiw-card {
    transform: translateY(40px);
  }

  .hiw-step.is-visible .hiw-card {
    transform: translateY(0);
  }

  .hiw-dot {
    left: 20px;
    top: 32px;
  }

  .hiw-number {
    font-size: 64px;
  }

  .hiw-heading {
    font-size: 22px;
  }

  .hiw-tagline-banner {
    padding: 40px 24px;
  }

  .hiw-tagline-banner p {
    font-size: 22px;
  }

  /* What you can test responsive */
  .test-cards-grid {
    flex-direction: column;
  }

  .test-card {
    min-height: 160px;
  }

  .portfolio-row {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .final-cta-card {
    padding: 60px 24px;
  }

  .divider-text {
    white-space: normal;
    text-align: center;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-mockups {
    display: none;
  }

  .section-heading {
    font-size: 28px;
  }

  .final-cta-heading {
    font-size: 28px;
  }

  .problem-followup {
    font-size: 18px;
  }

  .hiw-heading {
    font-size: 24px;
  }

  .hiw-tagline-banner p {
    font-size: 18px;
  }

  .testimonial-stat-number {
    font-size: 56px;
  }

  .testimonial-quote-large {
    font-size: 20px;
  }
}
