@import url("assets/design-tokens.css");

/*
  Prumetra landing page V1
  Flat, interface-led visual system. No gradients, no visual metaphors from construction.
*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--pru-color-background);
  color: var(--pru-color-foreground);
  font-family: var(--pru-type-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--pru-ink);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 6.2vw, 5.75rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}

p {
  color: var(--pru-color-muted);
}

:focus-visible {
  outline: 3px solid var(--pru-color-focus);
  outline-offset: 4px;
}

::selection {
  background: var(--pru-calibration);
  color: var(--pru-ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--pru-radius-sm);
  background: var(--pru-white);
  color: var(--pru-ink);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--pru-duration-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: clamp(80px, 10vw, 136px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--pru-cobalt);
}

.eyebrow-light {
  color: #b9c2cb;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.split-heading h2,
.split-heading > p {
  margin-bottom: 0;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

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

.centered-heading > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--pru-radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background-color var(--pru-duration-fast) ease,
    border-color var(--pru-duration-fast) ease,
    color var(--pru-duration-fast) ease,
    transform var(--pru-duration-fast) ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--pru-button-bg);
  color: var(--pru-button-fg);
}

.button-primary:hover {
  background: var(--pru-button-hover-bg);
}

.button-secondary {
  border-color: var(--pru-grid);
  background: transparent;
  color: var(--pru-ink);
}

.button-secondary:hover {
  border-color: var(--pru-ink);
  background: var(--pru-white);
}

.button-light {
  background: var(--pru-white);
  color: var(--pru-ink);
}

.button-light:hover {
  background: var(--pru-calibration);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgb(246 248 251 / 94%);
  transition:
    border-color var(--pru-duration-fast) ease,
    box-shadow var(--pru-duration-fast) ease;
}

.site-header.is-scrolled {
  border-color: var(--pru-grid);
  box-shadow: 0 5px 20px rgb(13 23 33 / 5%);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-link {
  display: flex;
  min-width: 156px;
  align-items: center;
}

.brand-link img {
  width: 156px;
  height: auto;
}

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

.site-nav > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #43505c;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--pru-duration-fast) ease;
}

.site-nav > a:hover {
  color: var(--pru-ink);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: var(--pru-radius-sm);
  background: var(--pru-cobalt);
  color: var(--pru-white);
}

.site-nav .nav-cta:hover {
  background: var(--pru-cobalt-dark);
  color: var(--pru-white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-sm);
  background: var(--pru-white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--pru-ink);
  transition: transform var(--pru-duration-fast) ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  padding-top: clamp(152px, 15vw, 208px);
  padding-bottom: clamp(92px, 10vw, 136px);
}

.hero::before {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--pru-grid);
  content: "";
  opacity: 0.55;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #4f5d68;
  font-size: clamp(1.03rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.025em;
}

.trust-list li:not(:last-child) {
  margin-right: 13px;
  padding-right: 13px;
}

.trust-list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pru-cobalt);
  content: "";
  transform: translateY(-50%);
}

.hero-product {
  position: relative;
}

.product-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #cfd6dc;
  border-radius: 18px;
  background: var(--pru-white);
  box-shadow: 0 30px 70px rgb(13 23 33 / 11%);
}

.product-topbar {
  display: grid;
  min-height: 44px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-inline: 16px;
  border-bottom: 1px solid var(--pru-grid);
  background: #fbfcfd;
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd2d8;
}

.product-id {
  justify-self: end;
  color: var(--pru-ink);
}

.product-layout {
  display: grid;
  min-height: 430px;
  grid-template-columns: 72px minmax(0, 1fr);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 22px 16px;
  border-right: 1px solid var(--pru-grid);
  background: var(--pru-ink);
}

.product-sidebar img {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  padding: 4px;
  border-radius: 6px;
  background: var(--pru-white);
}

.side-item {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: #3e4b58;
}

.side-item.short {
  width: 22px;
}

.side-item.active {
  background: var(--pru-cobalt);
}

.product-content {
  padding: 28px;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.product-heading > div {
  display: grid;
  gap: 4px;
}

.product-heading small,
.metric-row small,
.workflow-title small,
.workflow-title span,
.after-head small,
.after-data small {
  font-family: var(--pru-font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-heading small,
.metric-row small,
.after-head small,
.after-data small {
  color: var(--pru-slate);
}

.product-heading strong {
  font-size: 0.92rem;
}

.status-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #a6d5c6;
  border-radius: var(--pru-radius-pill);
  background: #edf8f4;
  color: #11684d;
  font-family: var(--pru-font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  white-space: nowrap;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-md);
}

.metric-row article {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 14px;
}

.metric-row article:not(:last-child) {
  border-right: 1px solid var(--pru-grid);
}

.metric-row strong {
  overflow: hidden;
  font-family: var(--pru-font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-row span {
  overflow: hidden;
  color: var(--pru-slate);
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-preview {
  padding: 18px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-md);
  background: #fcfdfe;
}

.workflow-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.workflow-title span {
  color: var(--pru-ink);
  font-weight: 500;
}

.workflow-title small {
  color: var(--pru-slate);
}

.progress-track {
  height: 3px;
  margin-block: 14px 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #e7ebef;
}

.progress-track span {
  display: block;
  width: 67%;
  height: 100%;
  background: var(--pru-cobalt);
}

.workflow-preview ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.workflow-preview li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: #62707c;
  font-size: 0.71rem;
}

.workflow-preview li i {
  width: 8px;
  height: 8px;
  border: 1px solid #b9c2ca;
  border-radius: 50%;
}

.workflow-preview li.done i {
  border-color: var(--pru-cobalt);
  background: var(--pru-cobalt);
}

.workflow-preview li.current {
  color: var(--pru-ink);
  font-weight: 700;
}

.workflow-preview li.current i {
  border: 2px solid var(--pru-cobalt);
  background: var(--pru-white);
}

.workflow-preview li small {
  font-family: var(--pru-font-mono);
  font-size: 0.58rem;
}

.product-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--pru-slate);
  font-size: 0.62rem;
  line-height: 1.45;
}

.note-icon {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 2px solid var(--pru-cobalt);
  border-radius: 50%;
}

.alignment-motif {
  position: absolute;
  z-index: 1;
  right: -36px;
  bottom: -38px;
  display: grid;
  width: 176px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 13px 8px;
}

.alignment-motif span {
  height: 1px;
  background: #c9d0d7;
}

.alignment-motif i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--pru-cobalt);
}

/* Proof strip */

.proof-strip {
  border-top: 1px solid var(--pru-grid);
  border-bottom: 1px solid var(--pru-grid);
  background: var(--pru-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding-inline: 22px;
}

.proof-grid > div:not(:last-child) {
  border-right: 1px solid var(--pru-grid);
}

.proof-grid strong {
  color: var(--pru-cobalt);
  font-family: var(--pru-font-mono);
  font-size: 0.66rem;
  font-weight: 500;
}

.proof-grid span {
  color: #394652;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Problems */

.problem-section {
  background: var(--pru-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-lg);
  overflow: hidden;
}

.problem-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  background: var(--pru-white);
}

.problem-card:not(:last-child) {
  border-right: 1px solid var(--pru-grid);
}

.problem-card-accent {
  background: #f3f6ff;
}

.card-index {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--pru-cobalt);
  font-family: var(--pru-font-mono);
  font-size: 0.7rem;
}

.problem-card p {
  margin-bottom: 36px;
  font-size: 0.91rem;
}

.card-signal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  height: 28px;
  align-items: end;
  justify-content: space-between;
  gap: 6px;
}

.card-signal i {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #cbd2d8;
}

.signal-scattered i:nth-child(1) { width: 27%; }
.signal-scattered i:nth-child(2) { width: 16%; transform: translateY(-12px); }
.signal-scattered i:nth-child(3) { width: 40%; transform: translateY(-5px); background: var(--pru-cobalt); }
.signal-repeat i { width: 31%; }
.signal-repeat i:nth-child(2) { background: var(--pru-cobalt); }
.signal-hidden i:nth-child(1) { width: 55%; }
.signal-hidden i:nth-child(2) { width: 8%; background: var(--pru-cobalt); }
.signal-hidden i:nth-child(3) { width: 18%; }
.signal-delay i:nth-child(1) { width: 14%; }
.signal-delay i:nth-child(2) { width: 14%; }
.signal-delay i:nth-child(3) { width: 58%; background: var(--pru-cobalt); }

/* Operational flow */

.flow-section {
  overflow: hidden;
  background: var(--pru-ink);
}

.flow-section .section-heading h2,
.confidence-section h2,
.contact-section h2 {
  color: var(--pru-white);
}

.flow-section .section-heading > p:last-child,
.confidence-section p,
.contact-copy > p {
  color: #b8c1ca;
}

.service-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow::before {
  position: absolute;
  top: 18px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: #354453;
  content: "";
}

.service-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.service-flow li::before {
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 9px solid var(--pru-ink);
  border-radius: 50%;
  background: #596776;
  box-shadow: 0 0 0 1px #596776;
  content: "";
}

.service-flow li:nth-child(1)::before,
.service-flow li:nth-child(4)::before,
.service-flow li:nth-child(7)::before {
  background: var(--pru-cobalt);
  box-shadow: 0 0 0 1px var(--pru-cobalt);
}

.service-flow small {
  position: absolute;
  top: -28px;
  color: #788793;
  font-family: var(--pru-font-mono);
  font-size: 0.61rem;
}

.service-flow strong {
  max-width: 112px;
  color: #e8edf1;
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Offers */

.offers-section {
  background: var(--pru-canvas);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-lg);
  background: var(--pru-white);
  box-shadow: 0 8px 30px rgb(13 23 33 / 4%);
}

.offer-featured {
  border-color: #97acf9;
  box-shadow: 0 14px 40px rgb(49 92 244 / 10%);
}

.offer-label {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 6px 10px;
  border-radius: 0 0 7px 7px;
  background: var(--pru-calibration);
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.offer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 64px;
}

.offer-topline span,
.offer-topline small {
  font-family: var(--pru-font-mono);
  font-size: 0.65rem;
}

.offer-topline span {
  color: var(--pru-cobalt);
}

.offer-topline small {
  color: var(--pru-slate);
  text-transform: uppercase;
}

.offer-card > p {
  min-height: 78px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.price {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
  padding-block: 19px;
  border-top: 1px solid var(--pru-grid);
  border-bottom: 1px solid var(--pru-grid);
}

.price small {
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.price strong {
  color: var(--pru-ink);
  font-family: var(--pru-font-mono);
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.offer-card ul {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 20px;
  color: #53616c;
  font-size: 0.8rem;
}

.offer-card li::before {
  position: absolute;
  top: 0.7em;
  left: 1px;
  width: 7px;
  height: 2px;
  background: var(--pru-cobalt);
  content: "";
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--pru-cobalt-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform var(--pru-duration-fast) ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.continuity-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr);
  gap: 28px 54px;
  margin-top: 24px;
  padding: 30px 32px 24px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-lg);
  background: var(--pru-ink);
}

.continuity-heading > span {
  display: block;
  margin-bottom: 20px;
  color: #7f8c98;
  font-family: var(--pru-font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
}

.continuity-heading h3 {
  margin-bottom: 8px;
  color: var(--pru-white);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.continuity-heading p {
  margin: 0;
  color: #929eaa;
  font-size: 0.72rem;
}

.continuity-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.continuity-plans article {
  padding: 17px;
  border: 1px solid #354351;
  border-radius: 9px;
  background: #152330;
}

.continuity-plans article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.continuity-plans strong {
  color: var(--pru-white);
  font-size: 0.76rem;
}

.continuity-plans span {
  color: #aebeff;
  font-family: var(--pru-font-mono);
  font-size: 0.67rem;
  white-space: nowrap;
}

.continuity-plans p {
  margin: 0;
  color: #9aa5af;
  font-size: 0.64rem;
  line-height: 1.55;
}

.continuity-block > small {
  grid-column: 2;
  color: #77848f;
  font-size: 0.56rem;
}

/* Demo */

.demo-section {
  border-top: 1px solid var(--pru-grid);
  background: var(--pru-white);
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(64px, 8vw, 112px);
}

.demo-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.02rem;
}

.demo-disclaimer {
  display: flex;
  gap: 12px;
  margin-block: 30px;
  padding: 15px 16px;
  border: 1px solid #b9c7fb;
  border-radius: var(--pru-radius-md);
  background: #f4f6ff;
  color: #3f4c6e;
  font-size: 0.76rem;
  line-height: 1.55;
}

.demo-disclaimer svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--pru-cobalt);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.demo-features {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.demo-features li {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: start;
  gap: 11px;
  color: #45525e;
  font-size: 0.83rem;
}

.demo-features li > span {
  width: 8px;
  height: 8px;
  margin-top: 0.48em;
  border: 2px solid var(--pru-cobalt);
  border-radius: 2px;
}

.demo-open-button {
  margin-top: 30px;
}

.demo-panel {
  overflow: hidden;
  border: 1px solid #cfd6dc;
  border-radius: 18px;
  background: var(--pru-canvas);
  box-shadow: 0 24px 60px rgb(13 23 33 / 9%);
}

.demo-scenario-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 16px;
  background: var(--pru-ink);
  color: #dfe6ed;
  font-family: var(--pru-font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.demo-scenario-label span:last-child {
  color: #9db0ff;
}

.demo-tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--pru-grid);
  background: var(--pru-white);
}

.demo-tabs button {
  min-width: 96px;
  min-height: 42px;
  padding-inline: 20px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--pru-slate);
  cursor: pointer;
  font-family: var(--pru-font-mono);
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: uppercase;
}

.demo-tabs button[aria-selected="true"] {
  background: var(--pru-ink);
  color: var(--pru-white);
}

.demo-tab-panel {
  padding: 34px;
}

.before-flow {
  display: flex;
  min-height: 184px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px dashed #bdc5cc;
  border-radius: var(--pru-radius-md);
  background: var(--pru-white);
}

.before-flow span {
  padding: 8px 9px;
  border: 1px solid var(--pru-grid);
  border-radius: 6px;
  color: #586570;
  font-size: 0.64rem;
  white-space: nowrap;
}

.before-flow i {
  color: #9ba6af;
  font-family: var(--pru-font-mono);
  font-size: 0.66rem;
  font-style: normal;
}

.after-screen {
  min-height: 184px;
  padding: 20px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-md);
  background: var(--pru-white);
}

.after-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pru-grid);
}

.after-head > div {
  display: grid;
  gap: 3px;
}

.after-head strong {
  font-family: var(--pru-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
}

.after-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-block: 19px;
}

.after-steps span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pru-slate);
  font-size: 0.62rem;
  white-space: nowrap;
}

.after-steps i {
  width: 7px;
  height: 7px;
  border: 1px solid #aab5be;
  border-radius: 50%;
}

.after-steps .complete i {
  border-color: var(--pru-cobalt);
  background: var(--pru-cobalt);
}

.after-steps .current {
  color: var(--pru-ink);
  font-weight: 700;
}

.after-steps .current i {
  border: 2px solid var(--pru-cobalt);
}

.after-data {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 8px;
}

.after-data > div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 7px;
  background: var(--pru-canvas);
}

.after-data strong {
  overflow: hidden;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.demo-metrics article {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid #cbd6fb;
  border-radius: 8px;
  background: #edf1ff;
}

.demo-metrics small,
.demo-metrics span {
  color: #5f6c77;
  font-family: var(--pru-font-mono);
  font-size: 0.53rem;
  line-height: 1.35;
}

.demo-metrics strong {
  color: var(--pru-ink);
  font-family: var(--pru-font-mono);
  font-size: 0.96rem;
  font-weight: 500;
}

.muted-metrics article {
  border-color: var(--pru-grid);
  background: #f3f5f7;
}

.demo-footnote {
  margin: 0;
  padding: 0 34px 24px;
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.55rem;
  line-height: 1.55;
}

/* Assisted agent application */

.agent-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(500px, 1.18fr);
  overflow: hidden;
  margin-top: clamp(64px, 9vw, 112px);
  padding: 0;
  border: 1px solid #2f4050;
  border-radius: 20px;
  background: var(--pru-ink);
  box-shadow: 0 24px 60px rgb(13 23 33 / 12%);
}

.agent-feature-copy {
  padding: clamp(34px, 5vw, 64px);
}

.agent-feature-copy h2 {
  max-width: 650px;
  color: var(--pru-white);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.agent-feature-copy > p:not(.eyebrow, .agent-feature-note) {
  max-width: 600px;
  color: #c0c9d2;
  font-size: 0.94rem;
}

.agent-feature-copy .button {
  margin-top: 12px;
}

.agent-feature-note {
  max-width: 560px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #354453;
  color: #8f9ba6;
  font-size: 0.7rem;
  line-height: 1.55;
}

.agent-workflow {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 52px);
  border-left: 1px solid #354453;
  background: #12202c;
}

.agent-workflow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #83909c;
  font-family: var(--pru-font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.045em;
}

.agent-workflow-head span:last-child {
  color: #aebeff;
}

.agent-workflow ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #3a4855;
  list-style: none;
}

.agent-workflow li {
  position: relative;
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(112px, 0.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 17px 12px 17px 22px;
  border-bottom: 1px solid #3a4855;
}

.agent-workflow li::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--pru-cobalt);
  border-radius: 2px;
  content: "";
}

.agent-workflow li:last-child::before {
  background: var(--pru-cobalt);
}

.agent-workflow small {
  color: #8ea4ff;
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
}

.agent-workflow strong {
  color: #e7ecf1;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.agent-workflow > p {
  margin: 22px 0 0;
  padding: 15px 16px;
  border: 1px solid #465564;
  border-radius: var(--pru-radius-sm);
  color: #aeb8c2;
  font-size: 0.68rem;
  line-height: 1.55;
}

.offer-scope-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  border: 1px solid #cbd5fa;
  border-radius: var(--pru-radius-md);
  background: #f1f4ff;
  color: #53617d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.offer-scope-note strong {
  color: var(--pru-ink);
}

/* Method */

.method-section {
  border-top: 1px solid var(--pru-grid);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pru-grid);
  list-style: none;
}

.method-grid li {
  position: relative;
  min-height: 250px;
  padding: 32px 28px 24px 0;
}

.method-grid li:not(:last-child) {
  margin-right: 28px;
  border-right: 1px solid var(--pru-grid);
}

.method-grid li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--pru-cobalt);
  content: "";
}

.method-grid small {
  display: block;
  margin-bottom: 54px;
  color: var(--pru-cobalt);
  font-family: var(--pru-font-mono);
  font-size: 0.65rem;
}

.method-grid h3 {
  margin-bottom: 8px;
}

.method-grid p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

/* Confidence */

.confidence-section {
  background: var(--pru-ink);
}

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
}

.confidence-copy p:last-child {
  max-width: 520px;
  margin-bottom: 0;
}

.confidence-agent-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #40505f;
  border-radius: var(--pru-radius-md);
  background: #142330;
  color: #c6cfd7 !important;
  font-size: 0.73rem;
  line-height: 1.55;
}

.confidence-list {
  border-top: 1px solid #344250;
}

.confidence-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid #344250;
}

.confidence-list > article > span {
  padding-top: 3px;
  color: #768493;
  font-family: var(--pru-font-mono);
  font-size: 0.63rem;
}

.confidence-list h3 {
  margin-bottom: 4px;
  color: var(--pru-white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.confidence-list p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

/* About */

.about-section {
  background: var(--pru-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-lg);
  background: var(--pru-canvas);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  background: var(--pru-grid);
  content: "";
}

.about-mark::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.about-mark::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.about-mark img {
  z-index: 2;
  width: 118px;
  height: 118px;
  padding: 24px;
  border: 1px solid var(--pru-grid);
  border-radius: 20px;
  background: var(--pru-white);
  box-shadow: 0 18px 46px rgb(13 23 33 / 8%);
}

.about-lines {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: grid;
  width: 90px;
  gap: 8px;
}

.about-lines span {
  height: 2px;
  background: #bcc5cd;
}

.about-lines span:nth-child(2) {
  width: 72%;
  background: var(--pru-cobalt);
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 0.98rem;
}

.founder-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--pru-grid);
}

.founder-line > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--pru-ink);
  color: var(--pru-white);
  font-family: var(--pru-font-mono);
  font-size: 0.67rem;
}

.founder-line > div {
  display: grid;
  gap: 2px;
}

.founder-line strong {
  font-size: 0.87rem;
}

.founder-line small {
  color: var(--pru-slate);
  font-size: 0.73rem;
}

.founder-line strong,
.founder-line small {
  transition: color var(--pru-duration-fast) ease;
}

.founder-line:hover strong {
  color: var(--pru-cobalt-dark);
}

.founder-line:hover small {
  color: var(--pru-cobalt);
}

/* FAQ, contact and footer */

.faq-section {
  border-top: 1px solid var(--pru-grid);
  background: var(--pru-canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: clamp(64px, 9vw, 128px);
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--pru-grid);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 20px 52px 20px 0;
  color: var(--pru-ink);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 1.5px;
  background: var(--pru-cobalt);
  content: "";
  transition: transform var(--pru-duration-fast) ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 700px;
  margin: -2px 52px 24px 0;
  color: #52606c;
  font-size: 0.87rem;
}

.contact-section {
  padding-top: 40px;
  background: var(--pru-white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 86px);
  padding: clamp(40px, 6vw, 72px);
  border-radius: 18px;
  background: var(--pru-cobalt);
}

.contact-card h2 {
  max-width: 720px;
}

.contact-copy > .contact-intro {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--pru-white);
}

.contact-follow-up {
  max-width: 650px;
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 30%);
  color: var(--pru-white) !important;
  font-size: 0.75rem;
  line-height: 1.55;
}

.contact-section .eyebrow-light {
  color: var(--pru-white);
}

.contact-section .eyebrow > span {
  background: var(--pru-white);
}

.contact-location {
  display: block;
  color: var(--pru-white);
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
  line-height: 1.6;
}

.contact-form {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: var(--pru-radius-lg);
  background: var(--pru-white);
  box-shadow: 0 20px 48px rgb(13 23 33 / 14%);
}

.contact-form :focus-visible {
  outline: 3px solid var(--pru-cobalt-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--pru-white);
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.form-field label {
  color: #35424d;
  font-size: 0.76rem;
  font-weight: 700;
}

.form-field label > span {
  color: var(--pru-danger);
}

.form-field label small {
  margin-left: 5px;
  color: var(--pru-slate);
  font-size: 0.66rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd3d9;
  border-radius: var(--pru-radius-sm);
  background: var(--pru-white);
  color: var(--pru-ink);
  font-family: var(--pru-font-sans);
  font-size: 0.9rem;
  line-height: 1.5;
  transition:
    border-color var(--pru-duration-fast) ease,
    box-shadow var(--pru-duration-fast) ease;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #89949d;
  opacity: 1;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #9ca8b1;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--pru-danger);
  box-shadow: 0 0 0 1px var(--pru-danger);
}

.form-error,
.form-help {
  margin: 0;
  font-size: 0.67rem;
  line-height: 1.45;
}

.form-error {
  color: var(--pru-danger);
  font-weight: 600;
}

.form-help {
  color: var(--pru-slate);
}

.form-submit-row {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.form-submit-row .button {
  width: 100%;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-submit-row > p {
  margin: 0;
  color: #64717d;
  font-size: 0.69rem;
  line-height: 1.5;
  text-align: center;
}

.form-feedback {
  padding: 14px;
  border: 1px solid var(--pru-grid);
  border-radius: var(--pru-radius-sm);
  background: var(--pru-canvas);
}

.form-feedback p {
  margin: 0;
  color: #394650;
  font-size: 0.73rem;
}

.form-feedback.is-error {
  border-color: #e5b3b8;
  background: #fff3f4;
}

.form-feedback.is-error p {
  color: #842a33;
}

.form-feedback.is-success {
  border-color: #a7d5c5;
  background: #eef8f4;
}

.form-feedback.is-success p {
  color: #0f674b;
}

.form-feedback.is-fallback {
  border-color: #b6c5fa;
  background: #f1f4ff;
}

.form-email-fallback {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 10px;
  color: var(--pru-cobalt-dark);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-email-alternative,
.form-noscript,
.form-privacy-note {
  margin: 0;
  color: var(--pru-slate);
  font-size: 0.7rem;
  text-align: center;
}

.contact-email-alternative a,
.form-noscript a,
.form-privacy-note a {
  color: var(--pru-cobalt-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy-note {
  padding-top: 12px;
  border-top: 1px solid var(--pru-grid);
  line-height: 1.6;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding-block: 70px 48px;
  background: var(--pru-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 70px;
}

.footer-grid > div:first-child img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer-grid > div:first-child p {
  margin-bottom: 0;
  color: #919da8;
  font-size: 0.78rem;
}

.footer-links,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: #c3cbd2;
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--pru-white);
}

.footer-meta span {
  color: #76838f;
  font-family: var(--pru-font-mono);
  font-size: 0.62rem;
  line-height: 1.6;
}

/* Legal and form status pages */

.legal-body,
.status-body {
  background: var(--pru-canvas);
}

.legal-header {
  position: absolute;
}

.legal-back-link {
  min-height: 42px;
}

.legal-main {
  padding-block: 146px 112px;
}

.legal-document {
  max-width: 860px;
}

.legal-title {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--pru-grid);
}

.legal-title h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-title > p:last-child,
.legal-summary {
  margin-bottom: 0;
}

.legal-summary {
  max-width: 760px;
  padding-block: 42px 14px;
  color: #35424d;
  font-size: 1.12rem;
}

.legal-document > section {
  padding-block: 32px;
  border-bottom: 1px solid var(--pru-grid);
}

.legal-document section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.025em;
}

.legal-document section p,
.legal-document section li {
  color: #4e5b66;
  font-size: 0.94rem;
}

.legal-document section p:last-child,
.legal-document section ul:last-child {
  margin-bottom: 0;
}

.legal-document section ul {
  display: grid;
  gap: 9px;
  margin-block: 0 20px;
  padding-left: 22px;
}

.legal-document section a,
.status-card small a {
  color: var(--pru-cobalt-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact-box {
  display: grid;
  margin-top: 48px;
  padding: 30px;
  border: 1px solid var(--pru-grid);
  border-left: 4px solid var(--pru-cobalt);
  background: var(--pru-white);
  gap: 10px;
}

.legal-contact-box span {
  color: var(--pru-slate);
  font-family: var(--pru-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.legal-contact-box strong {
  overflow-wrap: anywhere;
  color: var(--pru-ink);
  font-size: 1.08rem;
}

.legal-contact-box .button {
  width: fit-content;
  margin-top: 8px;
}

.legal-footer {
  margin-top: 0;
}

.status-main {
  display: grid;
  min-height: 100vh;
  padding: 32px 24px;
  place-items: center;
}

.status-card {
  width: min(100%, 720px);
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid var(--pru-grid);
  background: var(--pru-white);
  box-shadow: 0 28px 80px rgb(13 23 33 / 10%);
}

.status-brand {
  display: inline-block;
  width: 152px;
  margin-bottom: 54px;
}

.status-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border: 1px solid #a7d5c5;
  border-radius: 50%;
  background: #eef8f4;
  color: #0f674b;
  font-size: 1.35rem;
  font-weight: 700;
  place-items: center;
}

.status-icon-code {
  border-color: #bdc8fa;
  background: #f0f3ff;
  color: var(--pru-cobalt-dark);
  font-family: var(--pru-font-mono);
  font-size: 0.82rem;
}

.status-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 7vw, 4.6rem);
}

.status-card > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 34px;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.status-card > small {
  color: var(--pru-slate);
  font-size: 0.7rem;
}

/* Motion is progressive enhancement only. */

html.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--pru-duration-slow) ease,
    transform var(--pru-duration-slow) ease;
}

html.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav > a {
    font-size: 0.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
    gap: 46px;
  }

  .product-content {
    padding: 23px;
  }

  .alignment-motif {
    right: -12px;
  }

  .proof-grid > div {
    padding-inline: 15px;
  }

  .proof-grid span {
    font-size: 0.72rem;
  }

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

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

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

  .demo-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 48px;
  }

  .demo-tab-panel {
    padding: 24px;
  }

  .before-flow {
    flex-wrap: wrap;
  }

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

  .method-grid li:nth-child(3) {
    margin-right: 0;
    border-right: 0;
  }

  .method-grid li:nth-child(n + 4) {
    border-top: 1px solid var(--pru-grid);
  }
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 28px;
    border-top: 1px solid var(--pru-grid);
    border-bottom: 1px solid var(--pru-grid);
    background: var(--pru-canvas);
    box-shadow: 0 20px 40px rgb(13 23 33 / 10%);
  }

  .site-nav.is-open {
    display: flex;
  }

  html:not(.js-ready) .menu-button {
    display: none;
  }

  html:not(.js-ready) .header-inner {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  html:not(.js-ready) .site-nav {
    position: static;
    display: flex;
    width: 100%;
    max-height: none;
    overflow: visible;
    flex-flow: row wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  html:not(.js-ready) .site-nav > a {
    min-height: 44px;
    margin-right: 18px;
    border: 0;
  }

  html:not(.js-ready) .site-nav .nav-cta {
    min-height: 44px;
    margin-top: 0;
    padding-inline: 16px;
  }

  .site-nav > a {
    min-height: 52px;
    border-bottom: 1px solid var(--pru-grid);
    font-size: 0.88rem;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    justify-content: center;
    margin-top: 18px;
    border-bottom: 0;
  }

  .hero-grid,
  .demo-grid,
  .agent-feature,
  .confidence-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .agent-feature-copy {
    max-width: 760px;
  }

  .agent-workflow {
    border-top: 1px solid #354453;
    border-left: 0;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-product {
    width: min(100%, 680px);
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pru-grid);
  }

  .service-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 0;
  }

  .service-flow::before {
    display: none;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }

  .continuity-block {
    max-width: 660px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .continuity-block > small {
    grid-column: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card > p {
    min-height: 0;
  }

  .demo-copy {
    max-width: 670px;
  }

  .confidence-copy {
    max-width: 680px;
  }

  .about-mark {
    width: min(100%, 560px);
    min-height: 320px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-grid .section-heading {
    max-width: 680px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .contact-form {
    width: min(100%, 680px);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #2d3a47;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--pru-content-width));
  }

  .section {
    padding-block: 80px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-link img {
    width: 142px;
  }

  .site-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    padding-top: 132px;
    padding-bottom: 88px;
  }

  .hero::before {
    top: 70px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-list {
    display: grid;
    gap: 7px;
  }

  .trust-list li:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
  }

  .trust-list li::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 8px 2px 1px;
    border-radius: 50%;
    background: var(--pru-cobalt);
    content: "";
  }

  .trust-list li:not(:last-child)::after {
    display: none;
  }

  .product-topbar {
    grid-template-columns: 1fr auto;
  }

  .product-topbar > span:nth-child(2) {
    display: none;
  }

  .product-layout {
    min-height: 390px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .product-sidebar {
    padding: 18px 8px;
  }

  .product-sidebar img {
    width: 25px;
    height: 25px;
    margin-bottom: 8px;
  }

  .side-item {
    width: 20px;
  }

  .side-item.short {
    width: 14px;
  }

  .product-content {
    padding: 18px 14px;
  }

  .product-heading {
    align-items: flex-start;
  }

  .product-heading strong {
    font-size: 0.74rem;
  }

  .status-badge {
    font-size: 0.51rem;
  }

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

  .metric-row article {
    grid-template-columns: 1fr 1fr;
    gap: 3px 8px;
  }

  .metric-row article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--pru-grid);
  }

  .metric-row article span {
    grid-column: 2;
  }

  .workflow-preview {
    padding: 14px;
  }

  .workflow-title small {
    display: none;
  }

  .product-note {
    align-items: flex-start;
  }

  .alignment-motif {
    right: -12px;
  }

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

  .proof-grid > div {
    min-height: 70px;
    padding-inline: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--pru-grid);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

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

  .problem-card {
    min-height: 290px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--pru-grid);
  }

  .problem-card p,
  .offer-card > p,
  .offer-card li,
  .demo-features li,
  .method-grid p,
  .confidence-list p {
    font-size: 0.9rem;
  }

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

  .card-index {
    margin-bottom: 36px;
  }

  .service-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-flow li {
    min-height: 70px;
    grid-template-columns: 42px 1fr;
    align-items: center;
    justify-items: start;
    gap: 14px;
    padding-left: 0;
    border-bottom: 1px solid #303e4b;
    text-align: left;
  }

  .service-flow li::before {
    width: 30px;
    height: 30px;
    border-width: 7px;
  }

  .service-flow small {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .service-flow strong {
    max-width: none;
  }

  .offer-card {
    padding: 26px 24px;
  }

  .continuity-block {
    padding: 24px;
  }

  .continuity-plans {
    grid-template-columns: 1fr;
  }

  .continuity-heading p,
  .continuity-plans p {
    font-size: 0.78rem;
  }

  .offer-topline {
    margin-bottom: 54px;
  }

  .price strong {
    font-size: 1.55rem;
  }

  .demo-tab-panel {
    padding: 18px;
  }

  .demo-scenario-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .demo-open-button {
    width: 100%;
  }

  .before-flow {
    min-height: 250px;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .before-flow i {
    transform: rotate(90deg);
  }

  .after-head {
    align-items: flex-start;
  }

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

  .after-data {
    grid-template-columns: 1fr;
  }

  .demo-metrics {
    grid-template-columns: 1fr;
  }

  .demo-metrics article {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    align-items: center;
  }

  .demo-footnote {
    padding: 0 18px 20px;
  }

  .agent-feature {
    border-radius: 14px;
  }

  .agent-feature-copy,
  .agent-workflow {
    padding: 28px 24px;
  }

  .agent-workflow-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .agent-workflow li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 8px 17px 22px;
  }

  .agent-workflow strong {
    font-size: 0.82rem;
  }

  .offer-scope-note {
    font-size: 0.78rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .method-grid li,
  .method-grid li:nth-child(n) {
    display: grid;
    min-height: 0;
    grid-template-columns: 44px 1fr;
    margin-right: 0;
    padding: 24px 0;
    border-top: 1px solid var(--pru-grid);
    border-right: 0;
  }

  .method-grid li::before {
    top: 21px;
  }

  .method-grid small {
    grid-row: 1 / 3;
    margin: 0;
    padding-left: 15px;
  }

  .method-grid h3,
  .method-grid p {
    grid-column: 2;
  }

  .method-grid h3 {
    margin-bottom: 4px;
  }

  .confidence-grid {
    gap: 58px;
  }

  .confidence-list article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .about-mark {
    min-height: 270px;
  }

  .about-mark img {
    width: 96px;
    height: 96px;
  }

  .contact-section {
    padding-block: 24px 0;
  }

  .contact-card {
    width: 100%;
    padding: 64px 24px;
    border-radius: 0;
  }

  .contact-form {
    width: 100%;
    padding: 24px 20px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-right: 42px;
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 24px;
    font-size: 0.88rem;
  }

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

  .footer-meta {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .legal-back-link {
    width: auto;
    min-height: 42px;
    padding-inline: 14px;
  }

  .legal-main {
    padding-block: 124px 80px;
  }

  .legal-summary {
    padding-top: 32px;
    font-size: 1rem;
  }

  .legal-document > section {
    padding-block: 26px;
  }

  .legal-contact-box {
    padding: 24px 20px;
  }

  .status-main {
    padding: 16px;
  }

  .status-card {
    padding: 32px 24px;
  }

  .status-brand {
    margin-bottom: 42px;
  }
}

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

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

  html.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
