:root {
  --white: #ffffff;
  --off-white: #f7f5f2;
  --navy: #0b1a2b;
  --navy-soft: #1e3a5f;
  --coral: #f97066;
  --coral-soft: rgba(249, 112, 102, 0.12);
  --coral-hover: #e85a4f;
  --text-muted: rgba(11, 26, 43, 0.65);
  --border: rgba(11, 26, 43, 0.08);
  --shadow: 0 4px 24px rgba(11, 26, 43, 0.06);
  --shadow-lg: 0 12px 40px rgba(11, 26, 43, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --max-width: 1120px;
  --header-height: 72px;
  --font-heading: "Nunito Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--coral);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-hover);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-link {
  flex-shrink: 0;
  line-height: 0;
}

.logo-link img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.site-nav a:hover {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary:hover {
  background: var(--coral-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 15px;
}

.btn--ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: var(--radius-pill);
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Hero */

.hero {
  padding: 80px 0 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border: 0;
  outline: none;
}

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

.hero__pin-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%) scale(var(--scale, 1));
  z-index: 2;
}

.hero__pin-stack {
  position: relative;
  width: 36px;
  height: 44px;
  perspective: 320px;
}

.hero__pin-flip {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform-origin: 50% 95%;
  animation: hero-pin-spin-y 5s linear infinite;
  animation-delay: var(--delay, 0s);
}

.hero__pin-icon {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  filter: drop-shadow(0 4px 12px rgba(11, 26, 43, 0.4));
}

.hero__halo {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(249, 112, 102, 0.75);
  box-shadow: 0 0 12px rgba(249, 112, 102, 0.35);
  animation: hero-halo-pulse 3s ease-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero__halo--echo {
  animation-delay: calc(var(--delay, 0s) + 1.5s);
  border-color: rgba(249, 112, 102, 0.45);
}

@keyframes hero-halo-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

@keyframes hero-pin-spin-y {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__pin-flip,
  .hero__halo {
    animation: none;
  }

  .hero__halo {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Sections */

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--off-white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 12px;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section__intro {
  color: var(--text-muted);
  margin: 0;
  font-size: 18px;
}

/* Cards */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section--alt .card {
  background: var(--white);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.card p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

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

/* Feature carousel */

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

.feature-carousel {
  max-width: 880px;
  margin-inline: auto;
}

.feature-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-carousel__track {
  display: grid;
  grid-template-columns: 1fr;
}

.feature-card {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 32px;
  align-items: start;
  width: 100%;
  padding: 36px 40px;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.feature-card.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  animation: feature-fade-in 0.45s ease-out;
}

@keyframes feature-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card__icon {
  width: 48px;
  height: 48px;
}

.feature-card__body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.feature-card__body p {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 62ch;
}

.feature-card__body p:last-child {
  margin-bottom: 0;
}

.feature-card__summary,
.card__summary,
.persona-card__summary,
.moment__summary {
  margin: 16px 0 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  line-height: 1.45 !important;
  max-width: none !important;
}

.feature-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.feature-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.feature-carousel__btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.feature-carousel__btn svg {
  width: 20px;
  height: 20px;
}

.feature-carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(11, 26, 43, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.feature-carousel__dot.is-active {
  background: var(--coral);
  transform: scale(1.15);
}

.feature-carousel__dot:hover {
  background: var(--coral-hover);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card.is-active {
    animation: none;
  }
}

@media (max-width: 640px) {
  .feature-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }

  .feature-card__icon {
    width: 40px;
    height: 40px;
  }
}

/* Moment section */

.moment {
  background: var(--white);
}

.moment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}

.moment__content .section__eyebrow {
  display: block;
  margin-bottom: 12px;
}

.moment__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.moment__lead {
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.moment__body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
}

.moment__scenario {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.moment__step {
  flex: 1;
  text-align: center;
}

.moment__step-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.moment__step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  box-shadow: var(--shadow);
}

.moment__step-card--highlight {
  border-color: rgba(249, 112, 102, 0.35);
  background: var(--coral-soft);
}

.moment__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  font-size: 22px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--border);
}

.moment__step-card--highlight .moment__step-icon {
  border-color: rgba(249, 112, 102, 0.35);
  color: var(--coral);
}

.moment__step-name {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.moment__step-detail {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.moment__arrow {
  flex-shrink: 0;
  color: var(--coral);
  opacity: 0.7;
}

.moment__arrow svg {
  width: 40px;
  height: 24px;
}

.moment__examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.moment__examples li {
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.moment__examples li p {
  margin: 0 0 10px;
}

.card-title-pin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title-pin strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.pin-bullet {
  flex-shrink: 0;
  width: 22px;
  height: 28px;
  display: block;
}

.card__pin-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 32px;
  display: block;
  pointer-events: none;
}

.moment__examples li .card__summary {
  margin-top: 10px !important;
  font-size: 14px !important;
}

@media (max-width: 900px) {
  .moment__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .moment__examples {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .moment__scenario {
    flex-direction: column;
    padding: 24px 20px;
  }

  .moment__arrow {
    transform: rotate(90deg);
  }
}

.examples-grid .example-card p:not(.card__summary) {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Example cards — legacy quote style (unused) */

.example-card {
  position: relative;
}

.example-card__title {
  display: block;
  padding-right: 40px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.example-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy-soft);
}

.example-card blockquote {
  margin: 0 0 12px;
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Personas */

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

.persona-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.section--alt .persona-card {
  background: var(--white);
}

.persona-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin: 0 0 12px;
  padding-right: 40px;
}

.persona-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.35;
  padding-right: 40px;
}

.persona-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.persona-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.persona-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.7;
}

.persona-card li:last-child {
  margin-bottom: 0;
}

/* About */

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__photo {
  object-position: center 35%;
}

.about__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.2;
}

.about__content p {
  margin: 0 0 16px;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.65;
}

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

/* CTA */

.cta {
  text-align: center;
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--white);
}

.cta p {
  margin: 0 auto 32px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.cta .btn--primary {
  font-size: 17px;
  padding: 16px 32px;
}

.cta a:not(.btn) {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.cta a:not(.btn):hover {
  color: var(--coral);
}

/* Footer */

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--coral);
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 1024px) {
  .card-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--5 .card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__content {
    max-width: none;
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .card-grid--2,
  .card-grid--3,
  .persona-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-of-type {
    border-bottom: none;
  }

  .site-nav .btn--ghost {
    margin-top: 12px;
    text-align: center;
  }

  .card-grid--5 {
    grid-template-columns: 1fr;
  }

  .card-grid--5 .card:last-child {
    max-width: none;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .logo-link img {
    width: 120px;
  }
}

/* Solutions pages */

.page-hero {
  padding: 64px 0 48px;
}

.page-hero--compact {
  padding-bottom: 32px;
}

.page-hero--split {
  padding: 72px 0 80px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-hero__content {
  max-width: 520px;
}

.page-hero__content .section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.page-hero__content h1 {
  max-width: 18ch;
}

.page-hero__content .page-hero__lead {
  max-width: 46ch;
}

.page-hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-hero__shot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(249, 112, 102, 0.12), transparent 42%),
    linear-gradient(200deg, #eef2f6 0%, #f7f5f2 55%, #ebe4dc 100%);
  border: 1px dashed rgba(30, 58, 95, 0.22);
  border-radius: inherit;
}

.page-hero__shot-pin {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
}

.page-hero__shot-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

.page-hero__shot-note {
  margin: 0;
  max-width: none;
}

.page-hero__shot .doc-note {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(30, 58, 95, 0.16);
}

@media (max-width: 900px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero__content {
    max-width: none;
  }

  .page-hero__content h1 {
    max-width: 22ch;
  }

  .page-hero__visual {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--coral);
}

.breadcrumb__sep {
  opacity: 0.45;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.page-hero__lead {
  margin: 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 62ch;
}

.page-hero__lead + .page-hero__lead {
  margin-top: 14px;
}

.prose-section {
  padding: 0 0 72px;
}

.prose-section--alt {
  background: var(--off-white);
  padding: 72px 0;
  margin: 0;
}

.prose {
  max-width: 720px;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.prose p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.prose ul,
.prose ol {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.prose li:last-child {
  margin-bottom: 0;
}

.prose blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--coral);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

.prose blockquote p {
  margin: 0;
  color: inherit;
}

.prose-wide {
  max-width: 880px;
}

.solution-example {
  margin-top: 8px;
  padding: 24px 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.section--alt .solution-example,
.prose-section--alt .solution-example {
  background: var(--white);
}

.solution-example h2 {
  margin-top: 0;
}

.doc-note {
  margin: 20px 0;
  padding: 14px 18px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-soft);
  background: rgba(30, 58, 95, 0.05);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(30, 58, 95, 0.18);
}

.doc-note--availability {
  border-style: solid;
  border-color: rgba(249, 112, 102, 0.28);
  background: var(--coral-soft);
  color: var(--navy);
}

.metric-table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.metric-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.metric-table th,
.metric-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.metric-table th {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--off-white);
}

.metric-table td {
  color: var(--text-muted);
}

.metric-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  width: 34%;
}

.metric-table tr:last-child th,
.metric-table tr:last-child td {
  border-bottom: none;
}

.solutions-index-header {
  text-align: left;
  max-width: none;
  margin: 0 0 32px;
}

.solutions-index-header h2 {
  margin: 0;
}

.solutions-index-header .section__intro {
  margin-top: 12px;
}

.solutions-howitworks-link {
  margin: 16px 0 0;
}

.solutions-howitworks-link a {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}

.solutions-howitworks-link a:hover {
  color: var(--coral-hover);
  text-decoration: underline;
}

.solutions-browser {
  padding-top: 72px;
}

.solutions-browser .section__header {
  margin-bottom: 40px;
}

.solutions-carousel {
  max-width: 960px;
  margin-inline: auto;
}

.solutions-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.solutions-carousel__track {
  display: grid;
  grid-template-columns: 1fr;
}

.solutions-slide {
  grid-area: 1 / 1;
  display: none;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 36px 40px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.solutions-slide.card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.solutions-slide.is-active {
  display: flex;
  animation: feature-fade-in 0.45s ease-out;
}

.solutions-carousel:not(.is-enhanced) .solutions-carousel__controls,
.solutions-carousel:not(.is-enhanced) .solutions-carousel__caption {
  display: none;
}

.solutions-slide__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
}

.solutions-slide__icon {
  width: 48px;
  height: 48px;
}

.solutions-slide__header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.solutions-slide__header p {
  margin: 0;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 58ch;
}

.solutions-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.solutions-carousel__caption {
  margin: 14px 0 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: rgba(249, 112, 102, 0.35);
  color: inherit;
}

.solution-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
}

.solution-card h3,
.solution-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--navy);
}

.solution-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.solution-card__cta {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
}

.solutions-group__measure {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.solutions-measure {
  margin-top: 56px;
  max-width: 720px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .solutions-slide.is-active {
    animation: none;
  }
}

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

  .solutions-slide {
    padding: 28px 24px;
  }

  .solutions-slide__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-slide__icon {
    width: 40px;
    height: 40px;
  }
}

.solution-related {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.solution-related h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.solution-related ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.solution-related li {
  margin-bottom: 6px;
}

.solution-related a {
  font-weight: 600;
  text-decoration: none;
}

.solution-related a:hover {
  color: var(--coral-hover);
}

.solution-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.solution-pager a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 45%;
  text-decoration: none;
  color: var(--navy);
}

.solution-pager a:hover {
  color: var(--coral);
}

.solution-pager__dir {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.solution-pager__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.solution-pager__next {
  margin-left: auto;
  text-align: right;
}

.site-nav a[aria-current="page"] {
  color: var(--coral);
}

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

  .metric-table td:first-child {
    white-space: normal;
  }

  .solution-pager a {
    max-width: 100%;
  }

  .solution-pager__next {
    margin-left: 0;
    text-align: left;
  }
}

.prose-follow {
  margin-top: 32px;
}

.prose-back {
  margin-top: 40px;
}

/* How it works — step loop */

.how-steps-section {
  padding-bottom: 40px;
}

.how-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  flex: 1;
  min-width: 0;
}

.how-step-card {
  height: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.how-step-card--highlight {
  border-color: rgba(249, 112, 102, 0.35);
  background: var(--coral-soft);
}

.how-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--border);
}

.how-step-card--highlight .how-step-icon {
  border-color: rgba(249, 112, 102, 0.35);
  color: var(--coral);
}

.how-step-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.how-step-detail {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.how-steps__arrow {
  flex-shrink: 0;
  color: var(--coral);
  opacity: 0.7;
}

.how-steps__arrow svg {
  width: 32px;
  height: 20px;
}

.how-steps__closing {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.how-loop-back {
  max-width: 720px;
  margin: 8px auto 0;
}

.how-loop-back__arc {
  display: block;
  width: 100%;
  height: 36px;
  color: var(--coral);
  opacity: 0.7;
}

.how-loop-back__label {
  margin: 4px auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.example-card__link {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
}

.example-card__link:hover {
  color: var(--coral-hover);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
  }

  .how-steps__arrow {
    transform: rotate(90deg);
  }

  .how-loop-back__arc {
    display: none;
  }

  .how-loop-back__label {
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .how-step-card {
    padding: 22px 18px;
  }
}

/* —— website-2 extensions —— */

.site-nav a.is-active {
  color: var(--coral);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__nav a {
  font-size: 14px;
}

/* Insight band */
.insight {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(249, 112, 102, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(30, 58, 95, 0.06), transparent 50%),
    var(--off-white);
}

.insight__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.insight__quote {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.insight__body {
  margin: 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pillar__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

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

.pillar__proof {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pillar__proof li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.45;
}

.pillar__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.pillar--muted {
  background: var(--off-white);
  box-shadow: none;
}

.pillar--muted .pillar__num {
  color: var(--navy-soft);
}

/* Audience path cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 112, 102, 0.35);
  color: inherit;
}

.audience-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin: 0 0 12px;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--navy);
}

.audience-card p {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.audience-card__cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
}

/* Subnav for vendor section */
.subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 0;
  font-size: 14px;
}

.subnav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.subnav a:hover,
.subnav a.is-active {
  color: var(--coral);
}

/* Promise strip */
.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 0 0;
}

.promise-strip__item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.promise-strip__item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Use-case list */
.usecase-list {
  display: grid;
  gap: 20px;
}

.usecase {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.usecase:first-child {
  padding-top: 0;
}

.usecase:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.usecase__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

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

/* FAQ */
.faq {
  max-width: 760px;
  margin-inline: auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq details:first-child {
  border-top: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 12px 0 4px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 62ch;
}

/* Proof / platform list */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.platform-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.section--alt .platform-item {
  background: var(--white);
}

.platform-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.platform-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Steps vertical */
.flow-steps {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 36px;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.flow-step:not(:last-child) .flow-step__num::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.flow-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.flow-step p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Link row */
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
}

.link-row a {
  font-weight: 600;
  text-decoration: none;
}

.link-row a:hover {
  text-decoration: underline;
}

/* Brand mark in hero — keep brand dominant */
.hero__brand-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 16px;
}

.hero--fullbleed {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero--fullbleed .hero__bg {
  position: absolute;
  inset: 0;
}

.hero--fullbleed .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero--fullbleed .hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 26, 43, 0.25) 0%, rgba(11, 26, 43, 0.72) 100%),
    linear-gradient(90deg, rgba(11, 26, 43, 0.55) 0%, transparent 70%);
}

.hero--fullbleed .container {
  position: relative;
  z-index: 2;
  padding: 120px 0 72px;
  width: min(100% - 48px, var(--max-width));
}

.hero--fullbleed .hero__content {
  max-width: 560px;
}

.hero--fullbleed h1 {
  color: var(--white);
}

.hero--fullbleed .hero__lead {
  color: rgba(255, 255, 255, 0.85);
}

.hero--fullbleed .hero__brand-line {
  color: #ffb4ae;
}

.hero--fullbleed .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero--fullbleed .btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section__header--left {
  text-align: left;
  max-width: none;
  margin: 0 0 48px;
}

.section__header--left .section__intro {
  max-width: 62ch;
}

.compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-panel {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-panel--muted {
  background: var(--off-white);
}

.compare-panel--accent {
  background: var(--white);
  border-color: rgba(249, 112, 102, 0.25);
  box-shadow: var(--shadow);
}

.compare-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.compare-panel p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pillar-grid,
  .audience-grid,
  .promise-strip,
  .platform-grid,
  .compare-pair {
    grid-template-columns: 1fr;
  }

  .usecase {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero--fullbleed {
    min-height: min(78vh, 640px);
  }

  .hero--fullbleed .container {
    padding: 100px 0 56px;
  }
}

/* Demo videos */

.demo-video {
  margin: 0;
  max-width: 420px;
}

.demo-video--wide {
  max-width: 720px;
  margin-inline: auto;
}

.demo-video--phone {
  width: 260px;
  max-width: min(260px, 36vw);
  flex: 0 0 auto;
  margin: 0;
}

.demo-video__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.demo-video--phone .demo-video__frame {
  aspect-ratio: 9 / 18;
  max-height: 520px;
}

.demo-video video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.demo-video--phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Preview sizing must not apply in native fullscreen */
.demo-video video:fullscreen,
.demo-video video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.demo-video__frame:fullscreen,
.demo-video__frame:-webkit-full-screen,
.demo-video__frame:fullscreen video,
.demo-video__frame:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: #000;
}

.demo-video figcaption {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.demo-video figcaption strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.demo-split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px 56px;
}

.demo-split--reverse {
  flex-direction: row-reverse;
}

.demo-split__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.demo-split__copy .section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.demo-split__copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.demo-split__copy p {
  margin: 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 46ch;
}

.demo-band {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .demo-split,
  .demo-split--reverse {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .demo-split__copy p {
    margin-inline: auto;
  }

  .demo-video--phone {
    flex: 0 0 auto;
    margin-inline: auto;
  }
}

/* Story homepage (index3) */

.truths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.truth__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  opacity: 0.35;
  margin-bottom: 14px;
}

.truth h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  color: var(--navy);
}

.truth p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .truths {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 520px;
  }
}

/* Story timeline */

.story-beats {
  max-width: 760px;
  margin: 0 auto;
}

.story-beat {
  display: grid;
  grid-template-columns: 104px 28px 1fr;
  column-gap: 20px;
}

.story-beat__time {
  padding-top: 22px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}

.story-beat__spine {
  position: relative;
}

.story-beat__spine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: var(--border);
}

.story-beat:first-child .story-beat__spine::before {
  top: 28px;
}

.story-beat:last-child .story-beat__spine::before {
  bottom: auto;
  height: 28px;
}

.story-beat__dot {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(249, 112, 102, 0.18);
}

.story-beat__card {
  padding: 14px 0 40px;
}

.story-beat:last-child .story-beat__card {
  padding-bottom: 0;
}

.story-beat__card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--navy);
}

.story-beat__card p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 56ch;
}

.story-beat__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: var(--radius-pill);
}

.story-close {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
}

@media (max-width: 640px) {
  .story-beat {
    grid-template-columns: 28px 1fr;
  }

  .story-beat__time {
    display: none;
  }

  .story-beat__card h3 .story-beat__time-inline {
    display: inline;
  }
}

.story-beat__time-inline {
  display: none;
  color: var(--coral);
  font-size: 0.85em;
  margin-right: 8px;
}

/* Straight-talk aside */

.straight-talk {
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}

.straight-talk__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.straight-talk__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb4ae;
  margin-bottom: 16px;
}

.straight-talk__inner p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.straight-talk__inner p strong {
  color: var(--white);
}

/* Challenge-led homepage (index2) */

.card--accent {
  border-color: rgba(249, 112, 102, 0.3);
  background: var(--coral-soft);
}

.section--alt .card--accent {
  background: var(--coral-soft);
}

.card--accent h3 {
  color: var(--navy);
}

.card__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: 10px;
}

.prose-narrative {
  max-width: 680px;
  margin: 0 auto;
}

.prose-narrative .section__eyebrow {
  display: block;
  margin-bottom: 12px;
}

.prose-narrative h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.prose-narrative h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  margin: 28px 0 8px;
  line-height: 1.3;
}

.prose-narrative h2 + h3 {
  margin-top: 0;
}

.prose-narrative p {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.prose-narrative p:last-child {
  margin-bottom: 0;
}

.prose-narrative strong {
  color: var(--navy);
}

.pull-statement {
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}

/* Flywheel */

.flywheel-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.flywheel {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Padding-box square: children are all position:absolute and contribute no
   intrinsic size, and this sits inside a grid item with align-items:center,
   so aspect-ratio alone can resolve to a zero-height box. A padding-top
   spacer guarantees a real square regardless of layout context. */
.flywheel::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.flywheel__ring {
  position: absolute;
  inset: 9%;
  color: var(--coral);
  opacity: 0.5;
}

.flywheel__ring svg {
  width: 100%;
  height: 100%;
}

.flywheel__hub {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.flywheel__hub-inner {
  max-width: 190px;
  padding: 18px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(249, 112, 102, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.flywheel__hub-inner p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.flywheel__node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 190px;
  transform: translate(-50%, -50%);
}

.flywheel__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 16px 16px;
  text-align: center;
}

.flywheel__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}

.flywheel__title {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--navy);
}

.flywheel__detail {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.flywheel__closing {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .flywheel {
    position: static;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .flywheel::before {
    display: none;
  }

  .flywheel__ring,
  .flywheel__hub {
    display: none;
  }

  .flywheel__node {
    position: static;
    transform: none;
    width: 100%;
  }

  .flywheel__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
  }

  .flywheel__num {
    grid-row: 1 / 3;
    margin: 0;
  }

  .flywheel__title {
    margin: 0;
  }
}
