/* Illustrated portfolio surfaces share the bot's tycoon silhouettes. */
.enterprise-page {
  display: grid;
  gap: 28px;
  min-width: 0;
}
.enterprise-page section,
.enterprise-page form,
.enterprise-page article,
.enterprise-page header,
.enterprise-page header > div {
  min-width: 0;
}
.enterprise-hero.table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .65fr);
  align-items: center;
  gap: 12px 24px;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--green);
}
.enterprise-hero h1 {
  margin: 12px 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.enterprise-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40ch;
}
.enterprise-hero-art {
  border-radius: 18px;
  background: radial-gradient(ellipse at center, #23394b 0, #142236 64%, #0b1220 100%);
}
.enterprise-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 32 / 19;
  overflow: visible;
}
.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 16px;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.enterprise-stat {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}
.enterprise-stat dt {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}
.enterprise-stat dd {
  margin: 0;
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 750;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.enterprise-stat dd small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
}
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  align-items: stretch;
  gap: 18px;
}
.enterprise-card.table {
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.enterprise-card:focus-within {
  border-color: var(--focus);
}
.enterprise-picture {
  position: relative;
  background: radial-gradient(ellipse at 50% 40%, #20364b, #142236 65%, #0b1220);
  border-bottom: 1px solid #293b55;
  overflow: hidden;
}
.enterprise-picture .enterprise-art {
  max-height: 210px;
}
.enterprise-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border: 1px solid #46596c;
  border-radius: 6px;
  background: #142236;
  color: #eef5ff;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}
.enterprise-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  min-width: 0;
}
.enterprise-body .eyebrow {
  margin: 0;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.enterprise-body h3 {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.5px;
  margin: -6px 0 0;
  overflow-wrap: anywhere;
}
.enterprise-detail {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.enterprise-price {
  font-size: 27px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  margin: 0;
  overflow-wrap: anywhere;
}
.enterprise-price small {
  color: var(--muted);
  font-size: 10px;
  margin-left: 8px;
  font-weight: 500;
  white-space: nowrap;
}
.enterprise-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.enterprise-card-stats .enterprise-stat dd {
  font-size: 20px;
}
.enterprise-meter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.enterprise-meter strong {
  color: var(--text);
  font-weight: 650;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.enterprise-meter meter {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 10px;
  border: none;
  border-radius: 5px;
  background: var(--raised);
  accent-color: var(--green);
}
.enterprise-meter meter::-webkit-meter-bar {
  height: 10px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.enterprise-meter meter::-webkit-meter-optimum-value {
  background: var(--accent-text);
  border-radius: 5px;
}
.enterprise-meter meter::-moz-meter-bar {
  background: var(--accent-text);
  border-radius: 5px;
}
.enterprise-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.enterprise-actions button,
.enterprise-actions select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  white-space: normal;
  line-height: 1.4;
}
.enterprise-actions button {
  padding: 12px;
  font-size: 12px;
}
.enterprise-actions label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.enterprise-actions select {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--raised-text);
  background: var(--raised);
  text-overflow: ellipsis;
  font-family: inherit;
}
.enterprise-actions button:disabled {
  opacity: .65;
  cursor: default;
}
.enterprise-sale {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.enterprise-sale summary {
  cursor: pointer;
  padding: 10px 0;
  min-height: 44px;
}
.enterprise-sale p {
  margin: 4px 0 12px;
}
.enterprise-warning {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  line-height: 1.5;
}
.enterprise-empty.table {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px;
  border-style: dashed;
}
.enterprise-empty h3 {
  margin: 0 0 10px;
}
.enterprise-empty p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.enterprise-footnote,
.enterprise-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.enterprise-note {
  color: var(--canvas-muted);
}
.enterprise-page .section-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
}
.enterprise-page .section-heading h2 {
  margin: 0;
}
.enterprise-page .section-heading button {
  min-height: 44px;
  padding: 10px 16px;
}
@media (max-width: 620px) {
  .enterprise-hero.table {
    grid-template-columns: minmax(0, 1fr);
    padding: 20px;
    gap: 18px;
  }
  .enterprise-hero-art {
    display: none;
  }
  .enterprise-stats {
    gap: 20px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .enterprise-stats .enterprise-stat:last-child {
    grid-column: 1 / -1;
  }
  .enterprise-body {
    padding: 20px;
  }
  .enterprise-actions select {
    font-size: 16px;
  }
  .enterprise-price small {
    display: block;
    margin: 4px 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .enterprise-card.table {
    transition: none;
  }
}
