:root {
  --page-accent: var(--blue);
  --page-accent-soft: var(--blue-panel);
  --page-accent-faint: color-mix(in srgb, var(--page-accent) 10%, var(--white));
}

.product-page.product-sourcing {
  --page-accent: var(--teal);
  --page-accent-soft: var(--teal-panel);
}

.product-page.product-workflows {
  --page-accent: var(--coral);
  --page-accent-soft: var(--coral-panel);
}

.product-page .site-header {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
}

.product-page .site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 95%, transparent);
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 166px 0 92px;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -310px;
  right: -230px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: var(--page-accent-soft);
}

.product-hero::after {
  content: "";
  position: absolute;
  bottom: -310px;
  left: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lime) 55%, transparent);
  filter: blur(2px);
}

.product-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: radial-gradient(rgba(16, 33, 25, 0.2) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.product-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.product-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-breadcrumb::before {
  content: "\2190";
  color: var(--page-accent);
  font-size: 15px;
}

.product-breadcrumb:hover,
.product-breadcrumb:focus-visible {
  color: var(--ink);
}

.product-hero .eyebrow > span,
.product-page .section-eyebrow > span {
  background: var(--page-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--page-accent) 13%, transparent);
}

.product-hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(51px, 5.35vw, 78px);
  font-weight: 700;
  letter-spacing: -0.064em;
  line-height: 0.99;
}

.product-hero h1 em {
  display: block;
  color: var(--page-accent);
  font-style: normal;
  font-weight: 500;
}

.product-hero-lede {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.product-hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 37px;
}

.product-page .button-primary:hover,
.product-page .button-primary:focus-visible {
  background: var(--page-accent);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--page-accent) 24%, transparent);
}

.product-page .text-link:hover,
.product-page .text-link:focus-visible {
  color: var(--page-accent);
}

.product-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 29px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.product-proof-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-proof-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--page-accent);
}

.product-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 34px 90px rgba(16, 33, 25, 0.22);
  color: var(--white);
}

.product-console::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -170px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--page-accent) 30%, transparent);
  filter: blur(5px);
}

.console-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-dark);
  padding: 17px 20px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-head > strong {
  margin-right: auto;
  font-size: inherit;
  font-weight: 500;
}

.console-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lime) 14%, transparent);
  animation: console-pulse 2.4s ease-in-out infinite;
}

.console-meta {
  color: rgba(255, 255, 255, 0.46);
}

.console-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.signal-row,
.candidate-row,
.workflow-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-row {
  display: grid;
  grid-template-columns: 48px 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  padding: 13px 14px;
}

.signal-row:last-child,
.candidate-row:last-child,
.workflow-row:last-child {
  margin-bottom: 0;
}

.signal-time {
  color: rgba(255, 255, 255, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.signal-tag,
.workflow-state {
  justify-self: start;
  border-radius: 999px;
  background: var(--page-accent);
  padding: 5px 8px;
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-tag.is-lime,
.workflow-state.is-done {
  background: var(--lime);
  color: var(--ink);
}

.signal-tag.is-coral {
  background: var(--coral);
}

.signal-copy strong,
.candidate-copy strong,
.workflow-copy strong {
  display: block;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.signal-copy span,
.candidate-copy span,
.workflow-copy span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
  line-height: 1.45;
}

.console-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  padding: 13px 20px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.console-foot span:first-child {
  color: color-mix(in srgb, var(--lime) 74%, white);
}

.candidate-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}

.candidate-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 13px;
}

.candidate-stat strong {
  display: block;
  color: var(--lime);
  font-size: 21px;
  line-height: 1;
}

.candidate-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.candidate-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  padding: 12px 13px;
}

.candidate-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--page-accent);
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
}

.candidate-row:nth-of-type(3) .candidate-avatar {
  background: var(--blue);
}

.candidate-row:nth-of-type(4) .candidate-avatar {
  background: var(--coral);
}

.fit-score {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
}

.workflow-console .console-body {
  display: grid;
  gap: 9px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.workflow-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.workflow-state {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.workflow-state.is-live {
  background: var(--coral);
  color: var(--ink);
}

.product-page .client-strip {
  border-top-color: color-mix(in srgb, var(--page-accent) 20%, transparent);
  border-bottom-color: color-mix(in srgb, var(--page-accent) 20%, transparent);
}

.product-section {
  position: relative;
}

.product-section.is-white {
  background: var(--white);
}

.product-section.is-tinted {
  background: var(--page-accent-soft);
}

.product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.58fr);
  align-items: end;
  gap: 78px;
  margin-bottom: 58px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.product-section-heading h2,
.product-section-title {
  margin: 0;
  font-size: clamp(41px, 4.8vw, 65px);
  font-weight: 600;
  letter-spacing: -0.057em;
  line-height: 1.03;
}

.product-section-heading > p,
.product-section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--white) 82%, transparent);
  padding: 26px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--page-accent) 38%, var(--line));
  box-shadow: 0 22px 54px color-mix(in srgb, var(--ink) 9%, transparent);
}

.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--page-accent-soft);
  color: var(--page-accent);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
}

.feature-card h3 {
  margin: 29px 0 0;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.dark-process {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.dark-process .section-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.dark-process .product-section-title {
  max-width: 610px;
}

.dark-process .product-section-lede {
  max-width: 560px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
}

.dark-process .model-copy .button {
  margin-top: 33px;
}

.product-page .model-steps .step-label,
.product-page .model-steps .step-number {
  color: color-mix(in srgb, var(--page-accent) 70%, white);
}

.product-page .model-steps .step-status {
  border-color: color-mix(in srgb, var(--page-accent) 35%, transparent);
  color: color-mix(in srgb, var(--page-accent) 68%, white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.audience-card {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 28px;
}

.audience-card:last-child {
  border-right: 0;
}

.audience-number {
  color: var(--page-accent);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.audience-card h3 {
  margin: 62px 0 0;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.24;
}

.audience-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.deliverable-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.deliverable-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.72fr) minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 25px 28px;
}

.deliverable-row:last-child {
  border-bottom: 0;
}

.deliverable-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--page-accent-soft);
  color: var(--page-accent);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.deliverable-row h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.deliverable-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.ownership.product-ownership {
  background: var(--page-accent-soft);
}

.product-page .ownership-icon {
  color: color-mix(in srgb, var(--page-accent) 55%, white);
}

.price-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1fr);
  align-items: center;
  gap: 90px;
}

.price-copy .product-section-lede {
  margin-top: 24px;
}

.price-card-new {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--page-accent) 24%, var(--line));
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 28px 80px color-mix(in srgb, var(--ink) 12%, transparent);
}

.price-card-head {
  background: var(--ink);
  padding: 31px;
  color: var(--white);
}

.price-card-head span {
  display: block;
  color: color-mix(in srgb, var(--page-accent) 58%, white);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-head strong {
  display: block;
  margin-top: 10px;
  font-size: 45px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-card-head small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.price-card-body {
  padding: 28px 31px 31px;
}

.price-card-body ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.price-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card-body li::before {
  content: "\2713";
  color: var(--page-accent);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item-new {
  border-bottom: 1px solid var(--line);
}

.faq-item-new summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 52px 24px 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

.faq-item-new summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--page-accent-soft);
  color: var(--page-accent);
  font-family: "DM Mono", monospace;
  font-size: 15px;
}

.faq-item-new[open] summary::after {
  content: "\2212";
}

.faq-answer {
  max-width: 760px;
  padding: 0 52px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-page .final-cta::before {
  background: color-mix(in srgb, var(--page-accent) 35%, transparent);
}

.product-page .final-cta .eyebrow > span {
  background: color-mix(in srgb, var(--page-accent) 52%, white);
}

.footer-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-product-links a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.footer-product-links a:hover,
.footer-product-links a:focus-visible {
  color: var(--page-accent);
}

@keyframes console-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .product-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
    gap: 42px;
  }

  .feature-grid.is-four,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card:nth-child(2) {
    border-right: 0;
  }

  .audience-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .price-shell {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .product-hero {
    padding: 138px 0 76px;
  }

  .product-hero-grid,
  .product-section-heading,
  .price-shell {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    gap: 55px;
  }

  .product-section-heading {
    gap: 24px;
  }

  .product-section-heading > p {
    max-width: 650px;
  }

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

  .feature-grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .deliverable-row p {
    grid-column: 2;
  }

  .price-shell {
    gap: 46px;
  }

  .price-card-new {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .product-hero {
    padding: 118px 0 63px;
  }

  .product-hero::before {
    top: -250px;
    right: -330px;
  }

  .product-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .product-hero-lede {
    font-size: 16px;
  }

  .product-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-console {
    border-radius: 19px;
  }

  .console-head,
  .console-body,
  .console-foot {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .signal-tag {
    grid-column: 2;
    grid-row: 1;
  }

  .signal-copy {
    grid-column: 2;
  }

  .signal-time {
    grid-row: 1 / span 2;
  }

  .candidate-summary {
    gap: 6px;
  }

  .candidate-stat {
    padding: 10px;
  }

  .candidate-stat strong {
    font-size: 18px;
  }

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

  .workflow-state {
    grid-column: 2;
    justify-self: start;
  }

  .feature-grid,
  .feature-grid.is-four,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
  }

  .audience-card,
  .audience-card:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-card:last-child {
    border-bottom: 0;
  }

  .audience-card h3 {
    margin-top: 42px;
  }

  .deliverable-row {
    gap: 16px;
    padding: 22px 19px;
  }

  .price-card-head,
  .price-card-body {
    padding: 25px 22px;
  }

  .price-card-head strong {
    font-size: 38px;
  }

  .footer-product-links {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .console-led {
    animation: none;
  }

  .feature-card,
  .feature-card:hover {
    transform: none;
    transition: none;
  }
}
