:root {
  --product-bg: #070b0e;
  --product-panel: #0c1216;
  --product-panel-soft: #10171b;
  --product-line: rgba(255, 255, 255, 0.13);
  --product-line-strong: rgba(255, 255, 255, 0.25);
  --product-text: #f3f5f7;
  --product-muted: #9fa8ae;
  --product-accent: #edf3f6;
  --product-gutter: clamp(1.25rem, 5vw, 5.25rem);
  --product-max: 92rem;
}

html {
  scroll-behavior: smooth;
}

.product-page {
  background: var(--product-bg);
}

.product-page main {
  overflow: hidden;
}

.product-container {
  width: min(100%, var(--product-max));
  margin-inline: auto;
  padding-inline: var(--product-gutter);
}

.product-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--product-gutter);
}

.product-header::after {
  position: absolute;
  right: var(--product-gutter);
  bottom: 0;
  left: var(--product-gutter);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.product-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  color: #c6ccd0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.product-nav > a:not(.nav-cta) {
  transition: color 180ms ease;
}

.product-nav > a:not(.nav-cta):hover,
.product-nav > a:not(.nav-cta):focus-visible {
  color: #fff;
  outline: none;
}

.nav-cta {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: color 250ms ease, border-color 250ms ease;
}

.nav-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: #edf3f6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #0b1014;
  border-color: #edf3f6;
  outline: none;
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.product-hero {
  position: relative;
  min-height: min(58rem, 100svh);
  overflow: hidden;
  background: #081016;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px);
  animation: product-image-settle 1.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.96) 0%, rgba(3, 7, 10, 0.82) 35%, rgba(3, 7, 10, 0.25) 70%, rgba(3, 7, 10, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 7, 10, 0.92) 0%, transparent 42%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.35), transparent 25%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 4rem;
  min-height: min(58rem, 100svh);
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: clamp(4rem, 8vh, 6.75rem);
}

.product-hero-copy {
  max-width: 55rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.8rem;
  color: var(--product-accent);
  font-family: "Oxanium", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.product-hero h1,
.product-section h2,
.product-cta h2 {
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(3.65rem, 6.2vw, 7.1rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 39rem;
  margin: clamp(1.75rem, 3.5vw, 2.75rem) 0 0;
  color: #b9c0c4;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.product-button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  min-width: 16rem;
  padding: 1.05rem 1.25rem;
  font-size: 0.88rem;
  transition: color 250ms ease, border-color 250ms ease;
}

.product-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms cubic-bezier(0.65, 0, 0.35, 1);
}

.product-button svg {
  width: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  transition: transform 180ms ease;
}

.product-button:hover svg,
.product-button:focus-visible svg {
  transform: translateX(0.3rem);
}

.product-button:hover::before,
.product-button:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.product-button-primary {
  color: #d9dde0;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.product-button-primary::before {
  background: #edf3f6;
}

.product-button-primary:hover,
.product-button-primary:focus-visible {
  color: #0b1014;
  border-color: #edf3f6;
  outline: none;
}

.text-link {
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #d2d7da;
  font-size: 0.83rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link span {
  margin-left: 0.35rem;
  color: var(--product-accent);
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  border-color: var(--product-accent);
  outline: none;
}

.hero-readout {
  width: min(22rem, 26vw);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 12, 16, 0.72);
  backdrop-filter: blur(14px);
}

.hero-readout > p {
  margin: 0 0 1.25rem;
  color: #dfe3e5;
  font-family: "Oxanium", "Arial Narrow", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.readout-slider {
  overflow: hidden;
}

.readout-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-readout dl {
  flex: 0 0 100%;
  margin: 0;
  border-top: 1px solid var(--product-line);
}

.hero-readout dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--product-line);
  font-size: 0.7rem;
}

.hero-readout dt {
  color: #778188;
}

.hero-readout dd {
  margin: 0;
  color: #cdd2d5;
}

.readout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.readout-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #9fa8ae;
  font-size: 0.66rem;
}

.readout-status span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--product-accent);
  box-shadow: 0 0 0.8rem rgba(237, 243, 246, 0.45);
}

.readout-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.readout-dots button {
  width: 0.38rem;
  height: 0.38rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.readout-dots button[aria-current="true"] {
  width: 1.15rem;
  border-radius: 1rem;
  background: var(--product-accent);
}

.readout-dots button:focus-visible {
  outline: 1px solid var(--product-accent);
  outline-offset: 0.25rem;
}

.product-section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
}

.section-heading h2,
.outcomes-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.7vw, 5.4rem);
  line-height: 0.98;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.section-heading-split > p {
  margin: 0 0 0.45rem;
  color: var(--product-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.challenge-section {
  background: var(--product-bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--product-line-strong);
  border-left: 1px solid var(--product-line-strong);
}

.problem-card {
  min-height: 19rem;
  padding: 1.5rem;
  border-right: 1px solid var(--product-line-strong);
  border-bottom: 1px solid var(--product-line-strong);
}

.problem-card > span,
.step-number,
.use-case-list article > span {
  color: var(--product-accent);
  font-family: "Oxanium", "Arial Narrow", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.problem-card h3 {
  margin: 7rem 0 0.85rem;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.problem-card p {
  margin: 0;
  color: var(--product-muted);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
}

.workflow-section {
  border-block: 1px solid var(--product-line);
  background: var(--product-panel);
}

.section-heading-centered {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.workflow-grid li {
  position: relative;
  min-height: 20rem;
  padding: 1.5rem;
  border-top: 1px solid var(--product-line-strong);
  border-right: 1px solid var(--product-line);
}

.workflow-grid li:first-child {
  border-left: 1px solid var(--product-line);
}

.workflow-grid li::after {
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  z-index: 1;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 50%;
  background: var(--product-accent);
}

.workflow-grid li:last-child::after {
  display: none;
}

.workflow-grid li > div {
  position: absolute;
  right: 1.5rem;
  bottom: 1.75rem;
  left: 1.5rem;
}

.workflow-grid h3 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 300;
}

.workflow-grid p {
  margin: 0;
  color: var(--product-muted);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.showcase-section {
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  background: var(--product-panel);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.showcase-card {
  position: relative;
  min-height: 33rem;
  margin: 0;
  overflow: hidden;
  background: #11191d;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.showcase-card:hover img {
  transform: scale(1.025);
}

.showcase-card::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 7, 10, 0.95), transparent);
}

.showcase-card figcaption {
  position: absolute;
  right: 1.75rem;
  bottom: 1.6rem;
  left: 1.75rem;
  z-index: 1;
}

.showcase-card figcaption span {
  color: #fff;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45rem;
}

.showcase-card figcaption p {
  max-width: 30rem;
  margin: 0.6rem 0 0;
  color: #aeb6ba;
  font-size: 0.78rem;
  line-height: 1.65;
}

.use-cases-section {
  background: #e9ecea;
  color: #0b1114;
}

.use-cases-section .eyebrow {
  color: #4f575b;
}

.use-cases-section .section-heading-split > p {
  color: #596166;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(11, 17, 20, 0.24);
}

.use-case-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  min-height: 12.5rem;
  padding: 1.75rem 2rem 1.75rem 0;
  border-bottom: 1px solid rgba(11, 17, 20, 0.24);
}

.use-case-list article:nth-child(odd) {
  border-right: 1px solid rgba(11, 17, 20, 0.24);
}

.use-case-list article:nth-child(even) {
  padding-left: 2rem;
}

.use-case-list article > span {
  color: #606a70;
}

.use-case-list h3 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.use-case-list p {
  max-width: 30rem;
  margin: 0;
  color: #626a6e;
  font-size: 0.84rem;
  line-height: 1.7;
}

.outcomes-section {
  background: var(--product-bg);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
}

.outcomes-copy > p:last-child {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: var(--product-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.outcome-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--product-line-strong);
  border-left: 1px solid var(--product-line-strong);
}

.outcome-panel div {
  min-height: 9rem;
  padding: 1.3rem;
  border-right: 1px solid var(--product-line-strong);
  border-bottom: 1px solid var(--product-line-strong);
}

.outcome-panel span {
  color: var(--product-accent);
  font-family: "Oxanium", "Arial Narrow", sans-serif;
  font-size: 0.6rem;
}

.outcome-panel p {
  margin: 3.1rem 0 0;
  color: #d2d7da;
  font-size: 0.82rem;
}

.faq-section {
  border-top: 1px solid var(--product-line);
  background: var(--product-panel);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 3rem;
}

.faq-intro > p:not(.eyebrow) {
  margin: 2rem 0 0.75rem;
  color: var(--product-muted);
  font-size: 0.83rem;
}

.faq-intro > a {
  color: #e1e5e7;
  font-size: 0.85rem;
}

.faq-intro > a span {
  margin-left: 0.3rem;
  color: var(--product-accent);
}

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

.faq-list details {
  border-bottom: 1px solid var(--product-line-strong);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.65rem 0;
  color: #e7eaec;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--product-accent);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.3rem 3rem 1.8rem 0;
  color: var(--product-muted);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
}

.product-cta {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  color: #08100a;
  background: var(--product-accent);
}

.product-cta .eyebrow {
  color: #343a3e;
}

.product-cta h2 {
  max-width: 67rem;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  line-height: 0.95;
}

.product-button-light {
  margin-top: 3rem;
  color: #08100a;
  border: 1px solid #08100a;
}

.product-button-light::before {
  background: #08100a;
}

.product-button-light:hover,
.product-button-light:focus-visible {
  color: #fff;
  outline: none;
}

.product-footer {
  min-height: 7rem;
  padding-inline: var(--product-gutter);
  border-top: 0;
  background: var(--product-bg);
}

@keyframes product-image-settle {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-readout {
    display: none;
  }

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

  .workflow-grid li:nth-child(3) {
    border-left: 1px solid var(--product-line);
  }

  .workflow-grid li:nth-child(2)::after {
    display: none;
  }

  .outcomes-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .product-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 0.58rem 0.75rem;
    font-size: 0.68rem;
  }

  .product-hero {
    min-height: 48rem;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 7, 10, 0.94), rgba(3, 7, 10, 0.48)),
      linear-gradient(0deg, rgba(3, 7, 10, 0.96) 0%, transparent 55%);
  }

  .hero-layout {
    align-items: end;
    min-height: 48rem;
    padding-top: 8.5rem;
    padding-bottom: 3.5rem;
  }

  .product-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.75rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .product-button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .problem-grid,
  .workflow-grid,
  .showcase-grid,
  .use-case-list,
  .outcome-panel {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 14rem;
  }

  .problem-card h3 {
    margin-top: 4.5rem;
  }

  .workflow-grid li,
  .workflow-grid li:nth-child(3) {
    min-height: 15rem;
    border-left: 1px solid var(--product-line);
  }

  .workflow-grid li::after,
  .workflow-grid li:nth-child(2)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -0.28rem;
    left: -0.28rem;
  }

  .workflow-grid li:last-child::after {
    display: none;
  }

  .showcase-card {
    min-height: 27rem;
  }

  .use-case-list article:nth-child(odd) {
    border-right: 0;
  }

  .use-case-list article:nth-child(even) {
    padding-left: 0;
  }

  .use-case-list article {
    min-height: 10rem;
  }

  .faq-list summary {
    gap: 1rem;
  }

  .product-footer {
    padding-block: 1.75rem;
  }
}

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