/* Styling for the two Corporate Pricing entry points.
   Geometry is matched to the app's own `Card` primitive as measured in the
   running export: ink300 fill, 20px radius, 1px --pv-line border, 16px padding,
   16px bottom margin, and the same card shadow. */

.pv-corp-card {
  box-sizing: border-box;
  background-color: var(--pv-ink300);
  border: 1px solid var(--pv-line-strong);
  border-radius: var(--pv-radius-lg);
  box-shadow: var(--pv-shadow-card);
  padding: var(--pv-space-lg);
  margin: 0 0 var(--pv-space-lg);
  font-family: var(--pv-font);
  /* The teal hairline reads as "related to the plans above, but not a fourth
     self-serve tier" — the distinction the card's footnote also spells out. */
  position: relative;
  overflow: hidden;
}

.pv-corp-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pv-teal), var(--pv-teal-deep));
}

.pv-corp-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pv-space-md);
}

.pv-corp-card__name {
  color: var(--pv-fg);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}

.pv-corp-card__badge {
  flex: none;
  color: var(--pv-teal);
  background: rgba(63, 224, 193, 0.12);
  border: 1px solid var(--pv-line-strong);
  border-radius: var(--pv-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  white-space: nowrap;
}

.pv-corp-card__desc {
  color: var(--pv-fg-soft);
  font-size: 14px;
  line-height: 20px;
  margin: var(--pv-space-md) 0 0;
}

.pv-corp-card__list {
  list-style: none;
  margin: var(--pv-space-md) 0 0;
  padding: 0;
}

.pv-corp-card__list li {
  position: relative;
  color: var(--pv-fg-soft);
  font-size: 14px;
  line-height: 20px;
  padding: 0 0 0 18px;
  margin-top: var(--pv-space-sm);
}

.pv-corp-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pv-teal);
}

.pv-corp-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pv-space-sm);
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  margin-top: var(--pv-space-lg);
  padding: 0 var(--pv-space-lg);
  border: 0;
  border-radius: var(--pv-radius-pill);
  background: var(--pv-teal);
  color: var(--pv-ink000);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.pv-corp-card__cta:hover { background: #55e7cb; }
.pv-corp-card__cta:focus-visible {
  outline: 2px solid var(--pv-teal);
  outline-offset: 2px;
}

.pv-corp-card__note {
  color: var(--pv-fg-mute);
  font-size: 12px;
  line-height: 17px;
  margin: var(--pv-space-md) 0 0;
}

/* Account > Plan: an inline link, not a second button, so it does not compete
   with the existing "View plans & pricing" control directly above it. */
.pv-corp-accountlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  margin-top: var(--pv-space-sm);
  color: var(--pv-teal);
  font-family: var(--pv-font);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
}

.pv-corp-accountlink:hover { text-decoration: underline; }
.pv-corp-accountlink:focus-visible {
  outline: 2px solid var(--pv-teal);
  outline-offset: 2px;
  border-radius: var(--pv-radius-sm);
}

.pv-corp-accountlink__arrow { font-size: 15px; line-height: 1; }
