.enterprise-page {
  --lime: var(--gold);
  --lime-soft: var(--gold-soft);
  --cyan: var(--signal);
  --cyan-soft: rgba(125, 166, 255, .11);
  --enterprise-navy: var(--canvas-soft);
  background:
    radial-gradient(circle at 82% 8%, rgba(125, 166, 255, .06), transparent 25%),
    var(--canvas);
}

.enterprise-page .primary-nav a[aria-current="page"] {
  color: var(--text);
}

.enterprise-page .primary-nav a[aria-current="page"]::after {
  right: 0;
  background: var(--lime);
}

.enterprise-page .eyebrow {
  color: var(--cyan);
}

.enterprise-page .button-primary {
  background: var(--text);
  color: var(--canvas);
  box-shadow: 0 14px 38px rgba(247, 250, 255, .1);
}

.enterprise-page .button-primary:hover {
  box-shadow: 0 18px 46px rgba(125, 166, 255, .22);
}

.enterprise-page .button-secondary:hover {
  border-color: var(--cyan);
  background: var(--cyan-soft);
}

.enterprise-hero {
  min-height: 820px;
  padding: calc(var(--header-height) + 76px) 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}

.enterprise-hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -280px;
  top: 30px;
  border: 1px solid rgba(125, 166, 255, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(125, 166, 255, .018),
    0 0 0 210px rgba(224, 184, 90, .012);
  pointer-events: none;
}

.enterprise-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 70px;
  align-items: center;
}

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

.enterprise-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.1vw, 6.65rem);
  line-height: .91;
  letter-spacing: -.072em;
}

.enterprise-hero h1 span {
  display: block;
  color: var(--lime);
}

.enterprise-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

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

.download-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .78rem;
}

.download-meta::before {
  content: "PDF";
  min-width: 42px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 184, 90, .38);
  border-radius: 7px;
  color: var(--lime);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.enterprise-visual {
  position: relative;
  min-height: 590px;
}

.enterprise-visual-frame {
  position: absolute;
  inset: 0 0 34px 44px;
  overflow: hidden;
  border: 1px solid rgba(125, 166, 255, .34);
  border-radius: 36px;
  background: #02070d;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .48);
}

.enterprise-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .55), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(5, 9, 20, .8));
  pointer-events: none;
}

.enterprise-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.enterprise-float-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(350px, 78%);
  padding: 22px 24px;
  border: 1px solid rgba(224, 184, 90, .33);
  border-radius: 20px;
  background: rgba(6, 18, 29, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.enterprise-float-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.enterprise-float-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.35;
}

.enterprise-signal-line {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 13px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.enterprise-signal-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.enterprise-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(9, 17, 31, .75);
}

.enterprise-proof-strip div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 22px;
  border-right: 1px solid var(--stroke);
}

.enterprise-proof-strip div:last-child {
  border-right: 0;
}

.enterprise-proof-strip span {
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.enterprise-proof-strip strong {
  font-size: .98rem;
  line-height: 1.3;
}

.enterprise-section-heading {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.enterprise-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5.2vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.enterprise-section-heading > div:last-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.7;
}

.enterprise-section-heading .signal-copy {
  color: var(--lime);
}

.identity-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--stroke);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(7, 14, 26, .72);
}

.identity-principle {
  min-height: 278px;
  padding: 30px 27px;
  position: relative;
  border-right: 1px solid var(--stroke);
}

.identity-principle:last-child {
  border-right: 0;
}

.identity-principle::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--cyan);
}

.identity-principle:nth-child(odd)::before {
  background: var(--lime);
}

.identity-principle span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.identity-principle h3 {
  margin: 42px 0 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.identity-principle p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.enterprise-use-cases {
  display: grid;
  gap: 24px;
}

.use-case {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background: rgba(8, 16, 29, .88);
}

.use-case:nth-child(even) .use-case-visual {
  order: 2;
}

.use-case-copy {
  padding: clamp(34px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.use-case-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.use-case-index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.use-case h3 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.use-case-copy > p {
  margin-bottom: 25px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.use-case-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(125, 166, 255, .24);
  border-radius: 999px;
  color: var(--cyan);
  background: var(--cyan-soft);
  font-size: .69rem;
  font-weight: 800;
}

.outcome-line {
  margin: 0 !important;
  padding-top: 22px;
  border-top: 1px solid var(--stroke);
  color: var(--text) !important;
  font-weight: 700;
}

.outcome-line span {
  color: var(--lime);
}

.use-case-visual {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(125, 166, 255, .16), transparent 46%),
    #040a12;
}

.use-case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-visual-phone img {
  width: auto;
  max-width: 78%;
  height: 88%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, .55));
}

.use-case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .025);
  pointer-events: none;
}

.trust-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.trust-chain::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.trust-node {
  min-height: 330px;
  padding: 0 18px;
  position: relative;
}

.trust-node-number {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  margin: 0 auto 28px;
  border: 1px solid rgba(224, 184, 90, .45);
  border-radius: 50%;
  background: var(--enterprise-navy);
  color: var(--lime);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 0 10px var(--canvas-soft);
}

.trust-node:nth-child(even) .trust-node-number {
  border-color: rgba(125, 166, 255, .52);
  color: var(--cyan);
}

.trust-node-content {
  height: calc(100% - 112px);
  padding: 25px 23px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(6, 18, 29, .8);
}

.trust-node-content span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.trust-node-content h3 {
  margin: 14px 0 12px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.trust-node-content p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.security-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 56px;
  align-items: start;
}

.security-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.security-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
  line-height: .95;
  letter-spacing: -.062em;
}

.security-intro > p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.security-boundaries {
  display: grid;
  gap: 12px;
}

.security-boundary {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(6, 18, 29, .72);
}

.security-boundary header span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.security-boundary h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.security-boundary p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.standards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.standards-row span {
  padding: 9px 12px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, .025);
  font-size: .68rem;
  font-weight: 800;
}

.enterprise-pilot {
  position: relative;
  overflow: hidden;
}

.enterprise-pilot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 30%, rgba(224, 184, 90, .08), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(125, 166, 255, .07), transparent 28%);
  pointer-events: none;
}

.pilot-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
  position: relative;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(224, 184, 90, .28);
  border-radius: 32px;
  background: rgba(6, 18, 29, .88);
}

.pilot-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: .94;
  letter-spacing: -.06em;
}

.pilot-copy > p:not(.eyebrow) {
  color: var(--muted-strong);
  line-height: 1.7;
}

.pilot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pilot-stat {
  min-height: 142px;
  padding: 23px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}

.pilot-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.04em;
}

.pilot-stat span {
  color: var(--muted);
  font-size: .82rem;
}

.pilot-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  border-top: 1px solid var(--stroke);
}

.pilot-step {
  padding: 25px 18px 0 0;
}

.pilot-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.pilot-step strong {
  display: block;
  margin-bottom: 7px;
}

.pilot-step p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.download-section {
  background: #f2f6f5;
  color: #07131d;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.document-preview {
  position: relative;
  max-width: 470px;
  margin-inline: auto;
}

.document-preview::before,
.document-preview::after {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 18px;
  z-index: 0;
  border: 1px solid rgba(7, 19, 29, .14);
  background: #e5ebea;
  transform: rotate(2deg);
}

.document-preview::after {
  inset: 12px -9px -11px 9px;
  background: #edf1f1;
  transform: rotate(1deg);
}

.document-preview a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 29, .2);
  background: #fff;
  box-shadow: 0 32px 80px rgba(7, 19, 29, .16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.document-preview a:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 90px rgba(7, 19, 29, .22);
}

.document-preview img {
  display: block;
  width: 100%;
}

.download-copy .eyebrow {
  color: var(--signal-deep);
}

.download-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.download-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: #3f535d;
  font-size: 1.05rem;
  line-height: 1.72;
}

.download-copy .button-primary {
  background: #07131d;
  color: #fff;
  box-shadow: none;
}

.download-copy .button-primary:hover {
  box-shadow: 0 14px 34px rgba(7, 19, 29, .2);
}

.download-copy .download-meta {
  color: #5d717a;
}

.download-copy .download-meta::before {
  border-color: rgba(7, 19, 29, .28);
  color: var(--signal-deep);
}

.enterprise-contact {
  text-align: center;
}

.enterprise-contact-shell {
  padding: clamp(44px, 7vw, 88px);
  border: 1px solid var(--stroke);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(224, 184, 90, .06), rgba(125, 166, 255, .045)),
    rgba(7, 14, 26, .72);
}

.enterprise-contact h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: clamp(2.8rem, 5.5vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.enterprise-contact p {
  max-width: 690px;
  margin: 0 auto 30px;
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.enterprise-contact .enterprise-actions {
  justify-content: center;
}

.enterprise-contact-note {
  display: block;
  margin-top: 21px;
  color: var(--muted);
  font-size: .75rem;
}

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

  .enterprise-hero h1 {
    font-size: clamp(3.25rem, 7.5vw, 5.6rem);
  }

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

  .enterprise-proof-strip div:nth-child(2),
  .identity-principle:nth-child(2) {
    border-right: 0;
  }

  .enterprise-proof-strip div:nth-child(-n+2),
  .identity-principle:nth-child(-n+2) {
    border-bottom: 1px solid var(--stroke);
  }

  .trust-chain {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-chain::before {
    display: none;
  }

  .trust-node {
    min-height: 0;
    padding: 0;
  }

  .trust-node-number {
    margin-left: 22px;
  }

  .trust-node-content {
    min-height: 220px;
  }

  .pilot-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .enterprise-hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .enterprise-hero-grid,
  .enterprise-section-heading,
  .security-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .enterprise-hero-grid {
    gap: 54px;
  }

  .enterprise-visual {
    min-height: 570px;
  }

  .enterprise-visual-frame {
    left: 24px;
  }

  .enterprise-section-heading {
    gap: 28px;
  }

  .use-case {
    grid-template-columns: 1fr;
  }

  .use-case:nth-child(even) .use-case-visual {
    order: initial;
  }

  .use-case-visual,
  .use-case-visual-phone {
    min-height: 430px;
  }

  .security-intro {
    position: static;
  }

  .pilot-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .document-preview {
    width: min(82%, 430px);
  }
}

@media (max-width: 620px) {
  .enterprise-hero {
    min-height: 0;
    padding-bottom: 56px;
  }

  .enterprise-hero h1 {
    font-size: clamp(3rem, 16vw, 4.45rem);
  }

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

  .enterprise-actions {
    display: grid;
  }

  .enterprise-actions .button {
    width: 100%;
  }

  .enterprise-visual {
    min-height: 460px;
  }

  .enterprise-visual-frame {
    inset: 0 0 48px 0;
    border-radius: 24px;
  }

  .enterprise-float-card {
    width: 88%;
    padding: 18px;
  }

  .enterprise-proof-strip,
  .identity-principles,
  .trust-chain,
  .pilot-stats,
  .pilot-steps {
    grid-template-columns: 1fr;
  }

  .enterprise-proof-strip div,
  .identity-principle {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }

  .enterprise-proof-strip div:last-child,
  .identity-principle:last-child {
    border-bottom: 0;
  }

  .identity-principle {
    min-height: 230px;
  }

  .use-case {
    min-height: 0;
  }

  .use-case-copy {
    padding: 34px 24px;
  }

  .use-case h3 {
    font-size: 2.55rem;
  }

  .use-case-visual,
  .use-case-visual-phone {
    min-height: 390px;
  }

  .security-boundary {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 23px;
  }

  .pilot-shell {
    gap: 38px;
    padding: 30px 22px;
  }

  .pilot-step {
    padding-right: 0;
  }

  .document-preview {
    width: 86%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .document-preview a,
  .enterprise-page .button {
    transition: none;
  }
}
