/* SL7 Autonomous Pentest — tokens extracted from Figma node 1341:4846 */

:root {
  /* Colors (Figma fills / semantic) */
  --color-white: #ffffff;
  --color-ink: #040c21;
  --color-hero-bg: #0b0e14;
  --color-gray-2: #ebebeb;
  --color-primary: #ff5911;
  /* Hero / marketing CTAs — matches live BugDazz landing orange */
  --color-hero-cta: #ff701f;
  --color-primary-dark: #ff9933;
  --color-announcement: #7d2d44;
  --color-badge: #bf4a7b;
  --color-velocity-bg: #0b0e21;
  /* Left mesh glow — approx. #1E1B4B in design */
  --color-velocity-glow: rgb(30 27 75 / 0.88);
  --color-card-stroke: #232950;
  --color-arrivals-bg: #05070a;
  --color-nav-scrim: rgba(4, 12, 33, 0.95);

  /* Typography — Poppins (Figma: style_* tokens) */
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;

  --fs-announcement: 1.125rem; /* 18 — style_BS3QNP */
  --lh-announcement: 1.3;

  --fs-nav: 1.125rem; /* 18 — style_2IC5CV / style_QQT5W9 */
  --lh-nav: 1.5;

  --fs-btn-nav: 1.25rem; /* 20 — style_D5QJD6 */
  --lh-btn-nav: 1.5;

  --fs-hero: 3.5rem; /* 56 — style_OSAFUO */
  --lh-hero: 1.3;
  --fw-hero: 700;

  --fs-hero-sub: 1.25rem; /* 20 — style_N8UUGM */
  --lh-hero-sub: 1.5;

  --fs-btn-lg: 1.5rem; /* 24 — style_QJVXLD */

  --fs-trust: 1.25rem; /* 20 — style_4MGB5S */
  --lh-trust: 1.5;

  --fs-velocity-title: 2.875rem; /* 46 — style_XX2JDE */
  --lh-velocity-title: 1.3;

  --fs-velocity-body: 1.25rem; /* 20 — style_4H6CB4 */
  --lh-velocity-body: 1.4;

  --fs-velocity-meta: 1.25rem; /* 20 — style_41JCYB, uppercase */
  --lh-velocity-meta: 1.4;

  --fs-evidence-title: 2.875rem; /* 46 — style_XX2JDE */
  --fs-evidence-lede: 1.25rem; /* 20 — style_N8UUGM */

  --fs-card-title: 1.625rem; /* 26 — style_WJ4DIH */
  --lh-card-title: 1.2;
  --fs-card-body: 1.25rem; /* 20 — style_P6YYUV */
  --lh-card-body: 1.4;

  --fs-ships-label: 1.25rem; /* 20 — style_GNZ3A4 */

  /* Spacing scale (Figma px → rem at 16px root) */
  --space-2: 0.125rem;
  --space-5: 0.3125rem;
  --space-8: 0.5rem;
  --space-10: 0.625rem;
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-40: 2.5rem;
  --space-46: 2.875rem; /* announcement bar height */
  --space-60: 3.75rem;
  --space-80: 5rem;
  --space-104: 6.5rem; /* nav height */
  --space-150: 9.375rem; /* header stack */
  --space-230: 14.375rem; /* hero content offset from artboard top */

  /* Layout */
  --page-max: 120rem; /* 1920 */
  --gutter-sm: 1rem;
  --gutter-md: 1.5rem;
  --gutter-lg: 3rem;
  --gutter-xl: 6.25rem; /* 100 */
  --gutter-2xl: 12.5rem; /* 200 — section gutters at max width */

  --hero-content-width: 53.6875rem; /* 859 */
  --hero-sub-width: 43.125rem; /* 690 */
  --btn-main-width: 18.5625rem; /* 297 */
  --btn-main-height: 5.25rem; /* 84 */
  --nav-inner-pad-x: 6.25rem; /* 100 — logo x from Figma */
  --card-width: 46.25rem; /* 740 */
  --card-height: 13.4375rem; /* 215 */
  --card-gap: 2.5rem; /* 40 */
  --radius-nav: 0.5rem; /* 8 — Book a Demo / reference */
  --radius-btn-login: 0.5rem; /* 8 — hero + key CTAs */
  --radius-pill: 100px;
  --radius-card: 1.25rem; /* 20 */

  /* Effects */
  --shadow-outline-btn: 0 0.25rem 0.75rem rgba(255, 89, 17, 1);
  --gradient-book: linear-gradient(90deg, #ff5911 0%, #ff9933 100%);

  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background-color: var(--color-white);
  color: var(--color-ink);
}

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

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

.page {
  min-height: 100vh;
  max-width: var(--page-max);
  margin-inline: auto;
  background-color: var(--color-white);
  color: var(--color-ink);
}

.announce-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#hide-announcement:checked + .site-header .announcement {
  display: none;
}

/* ----- Announcement — dark burgundy bar, dismiss (matches design reference) ----- */
.announcement {
  position: relative;
  min-height: var(--space-46);
  background-color: var(--color-announcement);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 2.75rem 0.625rem var(--gutter-md);
}

.announcement__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  width: 100%;
  max-width: 38.5rem;
  min-height: 1.9375rem;
}

.announcement__badge {
  flex: 0 0 auto;
  min-width: 6.4375rem;
  height: 1.9375rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-nav);
  background-color: var(--color-badge);
  font-size: var(--fs-announcement);
  font-weight: 400;
  line-height: var(--lh-announcement);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.announcement__text {
  margin: 0;
  flex: 1 1 15rem;
  font-size: var(--fs-announcement);
  font-weight: 400;
  line-height: var(--lh-announcement);
  text-align: center;
  color: var(--color-white);
}

.announcement__link {
  flex: 0 0 auto;
  font-size: var(--fs-announcement);
  font-weight: 500;
  line-height: var(--lh-announcement);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--color-white);
}

.announcement__dismiss {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  border-radius: 0.25rem;
}

.announcement__dismiss:hover {
  color: #ffffff;
}

/* ----- Nav — transparent over hero (design reference) ----- */
.nav-bar {
  position: relative;
  z-index: 2;
  background: transparent;
  min-height: var(--space-104);
  display: flex;
  align-items: center;
  border-bottom: none;
}

.nav-bar__inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  min-height: var(--space-104);
}

.nav-bar__brand {
  flex-shrink: 0;
}

.nav-bar__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.nav-bar__logo {
  width: 12.556875rem;
  height: auto;
  max-height: 2.875rem;
  object-fit: contain;
}

.nav-bar__tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.nav__chev {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
  vertical-align: middle;
  border-left: 0.22rem solid transparent;
  border-right: 0.22rem solid transparent;
  border-top: 0.3rem solid rgba(255, 255, 255, 0.85);
}

.nav {
  flex: 1;
  display: none;
  justify-content: center;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem; /* ~50px between clusters — Figma nav */
}

.nav__link {
  font-size: var(--fs-nav);
  font-weight: 500;
  line-height: var(--lh-nav);
  color: var(--color-white);
  white-space: nowrap;
}

.nav__link--emphasis {
  font-weight: 500;
}

.nav-bar__actions {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem; /* 20 — gap Log In → Book */
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-btn-nav);
  line-height: var(--lh-btn-nav);
  border-radius: var(--radius-btn-login);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn--ghost {
  width: 9.5rem; /* 152 */
  min-height: 3.375rem; /* 54 */
  background: transparent;
  border-color: var(--color-hero-cta);
  color: var(--color-hero-cta);
}

.btn--gradient {
  width: 11.5625rem; /* 185 */
  min-height: 3.375rem;
  background: linear-gradient(90deg, var(--color-hero-cta) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-nav);
}

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

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-outline-btn);
}

.btn--lg {
  width: min(100%, var(--btn-main-width));
  min-height: var(--btn-main-height);
  font-size: var(--fs-btn-lg);
  font-weight: 600;
  padding: 1.5rem 3.75rem; /* 24px y, 60px x — layout_SDMVAJ / F2Z0RB */
  border-radius: var(--radius-btn-login);
}

/* Mobile drawer (details/summary — no JS) */
.nav-bar__drawer {
  position: relative;
}

.nav-bar__drawer summary {
  list-style: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-nav);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.nav-bar__drawer summary::-webkit-details-marker {
  display: none;
}

.nav-bar__drawer summary::before,
.nav-bar__drawer summary::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--color-white);
  top: 0.9rem;
}

.nav-bar__drawer summary::after {
  top: 1.3rem;
  box-shadow: 0 0.4rem 0 var(--color-white);
}

.nav-bar__drawer-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 40;
  min-width: min(100vw - 2rem, 20rem);
  padding: var(--space-16);
  background: var(--color-nav-scrim);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-btn-login);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.nav__list--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-16);
}

.nav-bar__actions--mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: var(--space-16);
}

.nav-bar__actions--mobile .btn {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 5;
  background-color: var(--color-hero-bg);
}

/* ----- Hero — design reference: headline → CTAs → dashboard → creds → logos ----- */
.hero {
  position: relative;
  background-color: var(--color-hero-bg);
  overflow: hidden;
  padding: 5rem var(--gutter-md) 0;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__solid {
  position: absolute;
  inset: 0;
  background-color: var(--color-hero-bg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__glow--1 {
  width: 55rem;
  height: 42rem;
  left: -12%;
  top: 5%;
  background: radial-gradient(circle, rgba(160, 79, 135, 0.95) 0%, transparent 70%);
}

.hero__glow--2 {
  width: 48rem;
  height: 48rem;
  right: -8%;
  top: -5%;
  background: radial-gradient(circle, rgba(252, 130, 81, 0.65) 0%, transparent 72%);
}

.hero__glow--3 {
  width: 40rem;
  height: 40rem;
  left: 35%;
  bottom: 25%;
  background: radial-gradient(circle, rgba(113, 51, 176, 0.55) 0%, transparent 68%);
}

/* Mesh: layout_6YEYPR x:-636 y:-262 — node 1341:4868 (3259×4136 art) */
.hero__mesh {
  position: absolute;
  left: -33.125%;
  top: -16.375rem;
  width: 169.74%;
  min-width: 120rem;
  height: auto;
  max-width: none;
  display: block;
  user-select: none;
}

@media (min-width: 90rem) {
  .hero__mesh {
    width: 203.6875rem;
    min-width: 203.6875rem;
  }
}

@media (max-width: 47.99rem) {
  .hero__mesh {
    left: -45%;
    width: 220%;
    min-width: 0;
    top: -5rem;
    opacity: 0.95;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
}

/* Figma layout_L8SO15: 859 × 390 */
.hero__cluster {
  width: 100%;
  max-width: 53.6875rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* layout_1IWGU8: 859 × 146 — style_030HV8 (56px / 130% / 700 / center / #FFF) */
.hero__title {
  width: 100%;
  margin: 0;
  min-height: 0;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}

@media (min-width: 64rem) {
  .hero__title {
    font-size: 3.5rem;
  }
}

/* layout_98HDZP: 690 × 60 @ y:186 → 40px below title block — style_4XAVIS, Gray 2 */
.hero__subtitle {
  box-sizing: border-box;
  width: 100%;
  max-width: 43.125rem;
  margin: 2.5rem 0 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--color-gray-2);
}

/* layout_QCYDPC: 634 × 84 @ y:306 → 60px below subtitle start — buttons 297×84, gap 40 */
.hero__actions {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 39.625rem;
  min-height: 5.25rem;
  margin: 2.5rem 0 0;
  padding: 0;
}

/* layout_3EEK7K / PTRCL8: 297 × 84 — style_743MIV 24px semibold center */
.hero__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18.5625rem;
  height: 5.25rem;
  padding: 0 1rem;
  border-radius: var(--radius-btn-login);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.hero__btn:hover {
  opacity: 0.92;
}

.hero__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero__btn--secondary:focus-visible {
  outline-color: var(--color-hero-cta);
}

.hero__btn--primary {
  border: none;
  background-color: var(--color-hero-cta);
  color: #ffffff;
}

.hero__btn--secondary {
  background-color: transparent;
  color: var(--color-hero-cta);
  border: 1px solid var(--color-hero-cta);
  box-shadow: none;
}

@media (max-width: 47.99rem) {
  .hero__cluster {
    min-height: 0;
  }

  .hero__title {
    min-height: 0;
  }

  .hero__actions {
    flex-direction: column;
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    gap: 1rem;
  }

  .hero__btn {
    width: min(100%, 18.5625rem);
  }
}

/* Dashboard + floating card (reference layout) */
.hero__showcase {
  margin-top: clamp(5rem, 8vw, 6.25rem);
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
}

.hero__figure {
  position: relative;
  margin: 0;
  width: 100%;
}

.hero__dashboard {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  border-radius: 0.625rem;
  box-shadow:
    0 1.25rem 3.5rem rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero__overlay-card {
  position: absolute;
  right: clamp(0.75rem, 3.5vw, 2.75rem);
  bottom: clamp(-0.25rem, -1vw, 0.75rem);
  width: min(38%, 18.875rem);
  max-width: none;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 0.5rem 1.25rem rgba(0, 0, 0, 0.22));
}

@media (max-width: 47.99rem) {
  .hero__showcase {
    margin-top: 3rem;
  }

  .hero__overlay-card {
    width: min(44%, 13rem);
    right: 0.35rem;
    bottom: 0;
  }
}

/* Compliance row — orange disc + white check */
.hero__badges {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  max-width: 44rem;
  margin-inline: auto;
  padding: 0 0 2.5rem;
}

.hero__badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero__badges .trust-badge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: none;
  background-color: var(--color-hero-cta);
  flex-shrink: 0;
}

.hero__badges .trust-badge__check {
  display: block;
  width: 0.35rem;
  height: 0.55rem;
  margin-top: -0.1rem;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero__badges .trust-badge__text {
  font-size: var(--fs-trust);
  font-weight: 600;
  line-height: var(--lh-trust);
  color: var(--color-white);
}

/* Partner strip — slightly darker band, monochrome logos */
.hero__partners {
  margin-top: 0;
  margin-inline: calc(-1 * var(--gutter-md));
  padding: 2.25rem var(--gutter-md) 3rem;
  background-color: transparent;
}

/* Infinite horizontal marquee — two identical logo rows loop via translateX(-50%) */
.hero__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: hero-partner-marquee 52s linear infinite;
  will-change: transform;
}

.hero__marquee:hover .hero__marquee-track,
.hero__marquee:focus-within .hero__marquee-track {
  animation-play-state: paused;
}

@keyframes hero-partner-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero__marquee-set {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--partner-marquee-gap, 3rem);
  margin: 0;
  padding: 0.25rem calc(var(--partner-marquee-gap, 3rem) * 1.125);
  list-style: none;
}

.hero__logos-item {
  flex: 0 0 auto;
}

.hero__logos-item img {
  display: block;
  height: 2.625rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}

/* PNG exports are full-color; invert to white on dark strip. SVG exports are already white. */
.hero__logos-item img[src$=".png"] {
  filter: brightness(0) invert(1);
}

.hero__logos-img--sm {
  height: 2.5rem;
  max-height: 2.5rem;
}

@media (max-width: 47.99rem) {
  .hero__partners {
    margin-inline: calc(-1 * var(--gutter-sm));
    padding-inline: var(--gutter-sm);
  }

  .hero__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__marquee-set {
    gap: var(--partner-marquee-gap, 2.25rem);
    padding-inline: calc(var(--partner-marquee-gap, 2.25rem) * 0.875);
  }
}

/* ----- Velocity — deep navy + left indigo glow (design reference) ----- */
.velocity {
  position: relative;
  overflow: hidden;
  background-color: var(--color-velocity-bg);
  padding-block: 4.375rem;
  padding-inline: var(--gutter-md);
  min-height: 30.625rem;
}

.velocity__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 160% at 0% 50%,
    var(--color-velocity-glow) 0%,
    rgb(30 27 75 / 0.38) 38%,
    transparent 62%
  );
}

.velocity__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 68.125rem); /* 1090 — layout_WA2OFS */
  min-height: 21.875rem; /* 350 — layout_ILGWP8 */
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.velocity__kicker {
  margin: 0;
  order: 1;
  font-size: var(--fs-velocity-body);
  font-weight: 400;
  line-height: var(--lh-velocity-body);
  color: var(--color-white);
}

.velocity__title {
  order: 2;
  margin: 0.625rem 0 0; /* y:38 − 28 ≈ 10px from kicker baseline */
  font-size: clamp(1.75rem, 4vw, var(--fs-velocity-title));
  font-weight: 700;
  line-height: var(--lh-velocity-title);
  color: var(--color-white);
  max-width: 45.3125rem; /* 725 — layout_9W0XF0 width */
}

.velocity__footnote {
  order: 3;
  margin: 1.25rem 0 0; /* 158 → 178 */
  font-size: var(--fs-velocity-meta);
  font-weight: 400;
  line-height: var(--lh-velocity-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  width: 100%;
}

.velocity__highlight {
  order: 4;
  margin: 1.875rem 0 0; /* 206 → 236 */
  font-size: var(--fs-velocity-body);
  font-weight: 400;
  line-height: var(--lh-velocity-body);
  color: #ff5c00;
}

.velocity__body {
  order: 5;
  margin: 1.875rem 0 0; /* 264 → 294 */
  font-size: var(--fs-velocity-body);
  font-weight: 400;
  line-height: var(--lh-velocity-body);
  color: var(--color-white);
  max-width: 68.125rem;
}

/* ----- Evidence ----- */
.evidence {
  background-color: var(--color-velocity-bg); /* aligns with comps — dark navy vs ink */
  padding-block: var(--space-80) 6.25rem;
  padding-inline: var(--gutter-md);
}

.evidence__title {
  margin: 0 auto;
  max-width: 68.4375rem; /* 1095 */
  text-align: center;
  font-size: clamp(1.75rem, 4vw, var(--fs-evidence-title));
  font-weight: 700;
  line-height: var(--lh-velocity-title);
  color: var(--color-white);
}

.evidence__lede {
  margin: 2.5rem auto 0;
  max-width: 61.5625rem; /* 985 */
  text-align: center;
  font-size: var(--fs-evidence-lede);
  font-weight: 400;
  line-height: var(--lh-hero-sub);
  color: var(--color-gray-2);
}

.evidence-grid {
  margin-top: 4.375rem; /* gap before grid — matches vertical rhythm */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  justify-content: center;
  width: min(100%, calc(2 * var(--card-width) + var(--card-gap)));
  margin-inline: auto;
}

.feature-card {
  position: relative;
  width: 100%;
  max-width: var(--card-width);
  min-height: var(--card-height);
  margin-inline: auto;
  border: 1px solid var(--color-card-stroke);
  border-radius: var(--radius-card);
  padding: 3.375rem 1.25rem 1.5rem 1.25rem;
  overflow: hidden;
}

@media (min-width: 40rem) {
  .feature-card {
    padding: 3.375rem 1.5rem 1.5rem 12.1875rem;
  }

  .feature-card__glow {
    left: 1.875rem;
    transform: none;
  }

  .feature-card__icon {
    left: 4.25rem;
    transform: none;
  }
}

.feature-card__glow {
  position: absolute;
  left: 1.875rem; /* 30 */
  top: 2.5rem; /* 40 — layout_8MSWU6 */
  width: 8.4375rem; /* 135 */
  height: 8.4375rem;
  border-radius: var(--radius-pill);
  border: 4px solid var(--color-primary);
  opacity: 0.3;
  pointer-events: none;
}

.feature-card__icon {
  position: absolute;
  left: 4.25rem; /* 68 — Figma icon x */
  top: 4.875rem; /* 78 — Figma icon y */
  width: 3.75rem; /* 60 — fi_* frame */
  height: 3.75rem;
  color: var(--color-primary); /* #FF5911 line icons — Figma */
}

.feature-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Evidence: Figma-exported icons — match design file fi_* exactly at 3×, scale into 60² frame */
.feature-card__icon .evidence-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 39.99rem) {
  .feature-card__glow {
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-card__icon {
    left: 50%;
    transform: translateX(-50%);
  }
}

.feature-card__body {
  position: relative;
  z-index: 1;
  max-width: 31.625rem; /* 506 */
}

.feature-card__name {
  margin: 0;
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: var(--lh-card-title);
  color: var(--color-white);
}

.feature-card__desc {
  margin: 1.125rem 0 0; /* 18 */
  font-size: var(--fs-card-body);
  font-weight: 400;
  line-height: var(--lh-card-body);
  color: var(--color-gray-2);
}

/* ----- Ships (What ships — Figma Group 1410104132) ----- */
.ships {
  background-color: var(--color-white);
  padding-block: var(--space-40) var(--space-80);
  padding-inline: var(--gutter-md);
}

.ships__label {
  margin: 0 0 var(--space-24);
  font-size: var(--fs-ships-label);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-2);
  text-align: center;
}

.ships__stage {
  position: relative;
  max-width: 78.57125rem;
  margin-inline: auto;
}

.ships__dashboard {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  box-shadow: 0 -1rem 3.375rem rgba(0, 0, 0, 0.75);
}

.ships__overlay {
  position: absolute;
  right: 3%;
  bottom: 4%;
  max-width: 39%;
  height: auto;
  border-radius: 0.625rem;
  box-shadow: 0 0 3.125rem rgba(0, 0, 0, 0.25);
}

@media (max-width: 47.99rem) {
  .ships__overlay {
    position: static;
    display: block;
    max-width: 100%;
    margin-top: var(--space-16);
  }
}

/* ----- Arrivals: proven exploit (dark mesh + dashboard + three cards) ----- */
.arrivals {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 5.5rem);
  padding-inline: var(--gutter-md);
  color: var(--color-white);
}

.arrivals__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.arrivals__solid {
  position: absolute;
  inset: 0;
  background-color: var(--color-arrivals-bg);
}

.arrivals__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.arrivals__glow--warm {
  background: radial-gradient(
    ellipse 58% 75% at 18% 55%,
    rgba(255, 95, 45, 0.2) 0%,
    rgba(255, 75, 30, 0.08) 38%,
    transparent 62%
  );
}

.arrivals__glow--cool {
  background: radial-gradient(
    ellipse 48% 88% at 93% 38%,
    rgba(92, 86, 255, 0.16) 0%,
    rgba(60, 80, 200, 0.06) 35%,
    transparent 56%
  );
}

.arrivals__container {
  position: relative;
  z-index: 1;
  max-width: 96rem;
  margin-inline: auto;
}

.arrivals__header {
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}

.arrivals__eyebrow {
  margin: 0 0 var(--space-10);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.arrivals__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  line-height: 1.28;
  color: #ffffff;
}

.arrivals__body {
  margin: 1.25rem 0 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.arrivals__figure {
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  max-width: 81.75rem; /* 1308px — Figma rect 1345:6668 */
}

/* Figma node 1345:6668 — radius 10px, shadow effect_9YWS4I */
.arrivals__hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  box-shadow: 0 2.125rem 5.25rem -0.625rem rgba(0, 0, 0, 0.45);
}

.arrivals__grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 64rem) {
  .arrivals__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.arrivals .delivery-card {
  margin: 0;
  padding: var(--space-24) var(--space-24) 1.75rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(18, 22, 34, 0.72);
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(255, 110, 50, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.arrivals .delivery-card__title {
  margin: 0 0 var(--space-16);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.arrivals .delivery-card--integrations .delivery-card__lede {
  margin-top: auto;
  padding-top: var(--space-24);
}

.delivery-card__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-card__checklist li {
  display: flex;
  gap: var(--space-10);
  align-items: flex-start;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--color-white);
}

.delivery-card__checklist li + li {
  margin-top: 0.875rem;
}

.arrivals-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background-color: var(--color-hero-cta);
}

.arrivals-check__mark {
  display: block;
  width: 0.3125rem;
  height: 0.53125rem;
  margin-bottom: 0.05rem;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.delivery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.arrivals .delivery-chip {
  padding: 0.45rem 0.875rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 10, 16, 0.55);
}

.delivery-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.delivery-field__label {
  margin: 0 0 var(--space-8);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.delivery-field__text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.arrivals .delivery-card__lede {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

/* ----- Benchmark — Figma Group 1410104156 (1359:2759) ----- */
.benchmark {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 5rem);
  padding-inline: var(--gutter-md);
  background-color: var(--color-ink);
  color: var(--color-white);
}

.benchmark__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 52% 70% at 92% -5%,
    rgba(118, 100, 255, 0.18) 0%,
    rgba(118, 100, 255, 0.06) 38%,
    transparent 62%
  );
}

.benchmark__inner {
  position: relative;
  z-index: 1;
  max-width: 95rem; /* 1520px */
  margin-inline: auto;
}

.benchmark__intro {
  max-width: 65.1875rem; /* ~1043 */
  margin-bottom: 3.125rem; /* 340 − 290 Figma gap */
  text-align: left;
}

.benchmark__meta {
  margin: 0 0 0.625rem;
  font-size: 1.25rem; /* 20 — style_V3FLZO */
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-2);
}

.benchmark__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.875rem); /* 46px */
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-white); /* fills white */
}

.benchmark__body {
  margin: 1.875rem 0 0; /* ~30px rhythm */
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 61.5625rem; /* 985 content width */
  color: var(--color-gray-2);
}

.benchmark__footnote {
  margin: 1.25rem 0 0;
  font-size: 1.25rem;
  font-weight: 500; /* style_WRDOTE Medium */
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-2);
  opacity: 0.6;
  max-width: 61.5625rem;
}

.benchmark__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--color-primary); /* #FF5911 */
}

.benchmark__link:hover {
  color: var(--color-hero-cta);
}

/* Comparison panel — radial fill @ 40% + 2px #868EE4, column rules #3F4478 */
.benchmark__compare {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.25rem;
  border: 2px solid #868ee4;
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(106, 103, 184, 0.44) 0%,
      rgba(47, 46, 82, 0.44) 100%
    );
}

.benchmark-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.5rem 2.25rem 2.625rem;
  min-height: 0;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
}

.benchmark-tile:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #3f4478; /* Lines 268/272 — fill_NWMT4B */
}

.benchmark-tile__label {
  margin: 0;
  padding: 0;
  font-size: 1rem; /* 16 — style_JK53P2 */
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.125em; /* 12.5% */
  text-transform: uppercase;
  color: var(--color-gray-2);
}

.benchmark-tile__vs {
  margin: 0.75rem 0 0;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.benchmark-tile__vs s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
}

.benchmark-tile__muted {
  display: inline-block;
  margin-top: 0.125rem;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.benchmark-tile__highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  margin-top: 1.875rem;
  flex-shrink: 0;
}

.benchmark-tile__value {
  display: block;
  font-size: 2.25rem; /* 36 — style_BXGN9W */
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary); /* #FF5911 */
}

.benchmark-tile__with {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem; /* 14 — style_ADGEBH */
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.benchmark-tile__desc {
  margin: 2.8125rem 0 0; /* aligns ~235px rail from tile top minus prior blocks */
  font-size: 1.125rem; /* 18 — style_W7IBHY */
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-2);
  flex-grow: 1;
}

@media (max-width: 63.99rem) {
  .benchmark__compare {
    grid-template-columns: 1fr;
  }

  .benchmark-tile:not(:first-child)::before {
    display: none;
  }

  .benchmark-tile {
    padding: var(--space-24) var(--space-24) 2rem;
  }

  .benchmark-tile:not(:last-child) {
    border-bottom: 1px solid #3f4478;
  }

  .benchmark-tile__highlight {
    margin-top: 1.25rem;
  }

  .benchmark-tile__desc {
    margin-top: 1.25rem;
  }
}

/* Rabit0 panel — stroke #868EE4 1px, fill #040C21 @ 40%, vertical divider */
.rabit-card {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, min(44%, 43.5rem)) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #868ee4;
  background: rgba(4, 12, 33, 0.4); /* Rectangle opacity on #040C21 */
  color: var(--color-white);
}

.rabit-card__lead {
  padding: 2.5rem 2rem 2.75rem;
  display: flex;
  flex-direction: column;
}

.rabit-card__title {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--color-gray-2);
}

.rabit-card__tagline {
  margin: 1rem 0 0;
  max-width: 36.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem); /* ~36 — style_VZ8AL1 */
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.rabit-card__summary {
  margin: auto 0 0;
  padding-top: 2.75rem;
  max-width: 33.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-2);
}

.rabit-card__aside {
  padding: 2.5rem 2rem 2.75rem;
  border-left: 1px solid #3f4478;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rabit-card__feat {
  padding: 0 0 1.25rem;
}

.rabit-card__feat:last-child {
  padding-bottom: 0;
}

.rabit-card__feat:not(:first-child) {
  padding-top: 1rem;
  border-top: 1px solid rgba(63, 68, 120, 0.65);
}

.rabit-card__feat-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--color-gray-2);
  opacity: 0.5;
}

.rabit-card__feat-text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-2);
}

@media (max-width: 63.99rem) {
  .rabit-card {
    grid-template-columns: 1fr;
  }

  .rabit-card__aside {
    border-left: none;
    border-top: 1px solid #3f4478;
  }

  .rabit-card__summary {
    padding-top: 1.75rem;
  }
}

/* ----- Engine — Figma Group 1410104145 / image 297 (1352:2554–2561) ----- */
.engine {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6.875rem);
  padding-inline: var(--gutter-md);
  background-color: var(--color-ink);
}

.engine__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(47, 46, 82, 0.4); /* Rectangle 3465952 — #2F2E52 */
}

.engine__inner {
  position: relative;
  z-index: 1;
  max-width: 75rem; /* 1200px column — layout 9801AE */
  margin-inline: auto;
}

.engine__copy {
  max-width: 68.125rem; /* 1090 — Group 1410104080 */
  margin-inline: auto;
  text-align: center;
}

.engine__eyebrow {
  margin: 0;
  font-size: 1.25rem; /* style_AZ7JCN — 20px */
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gray-2);
}

.engine__title {
  margin: 0.625rem 0 0; /* eyebrow 28px → title @38px */
  font-size: clamp(1.75rem, 4vw, 2.875rem); /* 46px — style_T56EAM */
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}

.engine__body {
  margin: 1.875rem 0 0; /* title block → body @128px ≈30px gap */
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gray-2);
}

/* Diagram sits in a slightly elevated panel vs page bg (design reference) */
.engine__stage {
  margin-top: 3.125rem; /* 234 − 184 — space below copy stack */
  border-radius: var(--radius-card); /* 20px — Group 1410103171 */
  background: rgba(15, 17, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.065);
  overflow: hidden;
}

.engine__figure {
  margin: 0;
}

.engine__diagram {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 47.99rem) {
  .engine__stage {
    border-radius: 0.875rem;
  }
}

/* ----- Lab (Figma 1374:2515 — SL7 Lab / disclosure ledger) ----- */
.lab {
  position: relative;
  overflow: hidden;
  background-color: #050a1b;
  padding-block: var(--space-80);
  padding-inline: var(--gutter-md);
}

.lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 85% 55% at 10% 100%,
    rgb(120 40 90 / 0.45) 0%,
    rgb(40 20 60 / 0.12) 38%,
    transparent 62%
  );
}

.lab__inner {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  margin-inline: auto;
}

.lab__eyebrow {
  margin: 0 0 var(--space-10);
  text-align: center;
  font-size: 1.25rem; /* 20 — Figma */
  font-weight: 400;
  line-height: 1.4; /* 140% */
  color: var(--color-gray-2);
}

.lab__title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.75rem, 4.2vw, var(--fs-velocity-title)); /* max 46px */
  font-weight: 700;
  line-height: 1.3; /* 130% */
  color: var(--color-white);
}

.lab__lede {
  margin: 1.875rem auto 0;
  max-width: 68.125rem; /* 1090px copy width */
  text-align: center;
  font-size: 1.25rem; /* 20 */
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gray-2);
}

.lab__link {
  display: block;
  margin: 1.875rem auto 0;
  text-align: center;
  font-size: 1.25rem; /* 20 */
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--color-primary); /* #ff5911 */
}

.lab__link:hover {
  color: var(--color-primary-dark);
}

.lab__figure {
  margin: 2.5rem 0 0; /* 40px gap to ledger image — Figma */
}

.lab__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card); /* 20px */
  box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 0.45), 0 0 0 1px rgb(255 255 255 / 0.06);
}

/* ----- Quote (Figma Group 1410104172 — node 1374:2622) ----- */
.quote {
  position: relative;
  overflow: hidden;
  /* Frame uses velocity-style navy behind a #2F2E52 overlay (see ::before). */
  background-color: var(--color-velocity-bg);
  padding-block: 6.25rem; /* 100 — vertical inset in 597px-high frame */
  padding-inline: var(--gutter-md);
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Rectangle 3465952 — fill #2F2E52 @ 40% across full frame */
  background-color: rgba(47, 46, 82, 0.4);
}

.quote__inner {
  position: relative;
  z-index: 1;
  max-width: 51.9375rem; /* 831px content column */
  margin-inline: auto;
  text-align: center;
}

.quote__eyebrow {
  margin: 0 0 3.125rem; /* 50 — label bottom → avatar top (y 28 → 78) */
  font-size: 1.25rem; /* 20 — style_LNCX63 */
  font-weight: 400;
  line-height: 1.4; /* 140% */
  color: var(--color-gray-2); /* Gray 2 */
}

.quote__avatar {
  display: block;
  width: 6.875rem; /* 110 */
  height: 6.875rem;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.quote__text {
  margin: 1.875rem 0 0; /* 30 — avatar bottom → quote top (188 → 218) */
  font-size: clamp(1.5rem, 2.65vw, 1.875rem); /* caps at 30px — style_PN1BDA */
  font-weight: 600;
  font-style: normal;
  line-height: 1.3; /* 130% */
  color: var(--color-white);
}

.quote__text p {
  margin: 0;
}

.quote__cite {
  margin: 2.5rem 0 0; /* 40 — quote bottom → cite top (335 → 375) */
  font-size: 1rem; /* 16 — style_A0MURS */
  font-weight: 400;
  line-height: 1.4; /* 140% */
  color: var(--color-gray-2);
}

/* ----- Bottom CTA strip (Figma Group 1410102649 — node 1290:5052) ----- */
.cta-strip {
  --cta-strip-rule: linear-gradient(
    90deg,
    rgba(4, 12, 33, 0) 2%,
    rgba(14, 16, 41, 0) 29%,
    rgba(236, 111, 72, 0.38) 41%,
    rgb(123, 79, 255) 49%,
    rgba(236, 111, 72, 0.5) 57%,
    rgba(4, 12, 33, 0) 75%,
    rgba(4, 12, 33, 0) 99%
  );
  --cta-strip-side-wash: linear-gradient(
    180deg,
    rgba(239, 89, 86, 0) 2%,
    rgba(96, 26, 73, 0.61) 52%,
    rgba(111, 43, 89, 0) 100%
  );

  position: relative;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-velocity-bg);
  padding: 6.5625rem var(--gutter-md); /* ~105px vertical — eyebrow y≈104.87 in frame */
  /* Lines 58/59 — 4px strokes (linear 5); left wash + mesh — ::before */
  background-image: var(--cta-strip-rule), var(--cta-strip-rule);
  background-size: 100% 4px, 100% 4px;
  background-position: top center, bottom center;
  background-repeat: no-repeat;
}

.cta-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(5.87 / 16 * 1rem); /* Vector 5053 y offset in Figma */
  bottom: 4px; /* sit above bottom stroke */
  width: min(749px, 39.06vw);
  pointer-events: none;
  background-image: radial-gradient(
      rgb(236 146 174 / 0.09) 0.065rem,
      transparent 0.095rem
    ),
    var(--cta-strip-side-wash);
  background-size: 0.6875rem 0.6875rem, 100% 100%;
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 69.5rem; /* 1112 — layout_7W7NTK width */
  margin-inline: auto;
}

.cta-strip__eyebrow {
  margin: 0 0 1.25rem; /* 20 — eyebrow bottom → heading top */
  font-size: 1.25rem; /* 20 — style_5U7EOG */
  font-weight: 400;
  line-height: 1.2; /* 120% */
  color: var(--color-white);
}

.cta-strip__title {
  margin: 0 auto;
  max-width: 51.5625rem; /* 825 — layout_2XQYYT */
  font-size: clamp(1.75rem, 4vw, var(--fs-velocity-title)); /* 46 bold — style_P7TA0X */
  font-weight: 700;
  line-height: 1.3; /* 130% */
  color: var(--color-white);
}

.cta-strip__body {
  margin: 2.5rem auto 0; /* 40 — heading block → body */
  max-width: 69.5rem;
  font-size: 1.625rem; /* 26 — style_Y99EWS */
  font-weight: 400;
  line-height: 1.5; /* 150% */
  color: var(--color-white);
}

.cta-strip__btn {
  margin-top: 2.5rem; /* 40 — body → button row */
  width: fit-content;
  max-width: 100%;
  min-height: 5.25rem; /* 84 */
  padding: 1.5rem 1.875rem; /* 24 / ~30 inset from Figma */
  border-radius: 0.625rem; /* 10 */
  font-size: 1.5rem; /* 24 — style_5CCQGF */
  font-weight: 600;
  box-sizing: border-box;
}

@media (max-width: 29.99rem) {
  .cta-strip__btn {
    width: min(22rem, 100%);
    min-height: unset;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
  }
}

/* ----- Footer ----- */
.site-footer {
  background-color: #101522;
  padding-block: 4rem 2rem;
  padding-inline: var(--gutter-md);
  color: var(--color-white);
}

.site-footer__inner {
  max-width: 96rem;
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 64rem) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    align-items: start;
  }
}

.site-footer__tagline {
  margin: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 22rem;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.site-footer__badges img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.site-footer__heading--follow {
  margin-top: 1.5rem;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 0.5rem;
}

.site-footer__list a {
  font-size: 0.875rem;
  opacity: 0.85;
}

.site-footer__list a:hover,
.site-footer__address a:hover,
.site-footer__legal a:hover,
.site-footer__social a:hover {
  opacity: 1;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.85;
}

.site-footer__address p {
  margin: 0 0 0.5rem;
}

.site-footer__social {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
}

.site-footer__bar {
  max-width: 96rem;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.85;
}

.site-footer__legal a {
  margin: 0 0.15rem;
}

/* ========== Breakpoints ========== */
/* 768px — tablet */
@media (min-width: 48rem) {
  :root {
    --gutter-md: 2rem;
  }

  .nav-bar__inner {
    padding-inline: var(--gutter-xl);
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, var(--card-width)));
  }

  .feature-card {
    margin-inline: 0;
  }
}

/* 1024px — desktop nav */
@media (min-width: 64rem) {
  .nav {
    display: flex;
  }

  .nav-bar__actions {
    display: flex;
  }

  .nav-bar__drawer {
    display: none;
  }

  .nav-bar__inner {
    padding-inline: var(--nav-inner-pad-x);
  }
}

/* 1440px — wide */
@media (min-width: 90rem) {
  :root {
    --gutter-md: 3rem;
    --partner-marquee-gap: 3.75rem;
  }

  .hero__marquee-track {
    animation-duration: 58s;
  }
}

/* Reduced motion — static single row, duplicate strip hidden */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .hero__btn {
    transition: none;
  }

  .hero__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__marquee-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
    transform: none;
  }

  .hero__marquee-set--duplicate {
    display: none;
  }

  .hero__marquee-set {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 0;
    row-gap: 1rem;
  }
}
.talkExpert {
 top: 50px;
 position: relative;
  padding: 1.5rem 1.875rem;
  border-radius: 10px;
  background-color: #ff5911;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
