.screen-tabs {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin: 0 auto 24px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface-ivory);
}

.screen-tabs button {
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 48px;
  background: transparent;
  color: var(--foreground);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.screen-tabs button:hover {
  color: var(--primary);
}

.screen-tabs button[aria-selected="true"] {
  background: var(--surface-card);
  color: var(--foreground);
  box-shadow: var(--shadow-card);
}

.screen-frame {
  border-radius: 16px;
}

.screen-panel[hidden] {
  display: none;
}

.screen-panel {
  overflow: hidden;
  animation: screen-enter 0.18s ease;
}

.screen-description {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: end;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

.screen-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.screen-description h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -0.016em;
  font-weight: 600;
}

.screen-description p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.screen-panel img {
  object-fit: cover;
  object-position: top left;
}

.capabilities-section {
  background: var(--lavender-mist);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.capability-grid article {
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  grid-column: span 2;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.capability-grid article:first-child,
.capability-grid article:nth-child(2) {
  grid-column: span 3;
}

.item-number {
  width: 36px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 100px;
  background: var(--lavender-mist);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.capability-grid h3 {
  margin: 32px 0 8px;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.capability-grid p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.benefit-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-table article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.benefit-table h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: -0.018em;
  font-weight: 600;
}

.benefit-table p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.audience {
  display: block;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.workflow-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 60px;
  background: var(--lavender-mist);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.workflow-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-cards {
  display: none;
}

.pricing-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.pricing-card-featured {
  border-color: var(--primary);
  background: var(--lavender-mist);
}

.pricing-card .plan-badge {
  margin-bottom: 12px;
}

.pricing-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-card-head .plan-price {
  font-size: 22px;
}

.pricing-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.pricing-card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.pricing-card-list li > span {
  color: var(--muted);
}

.pricing-card-list li > strong {
  font-weight: 600;
}

.pricing-card-list .pricing-yes {
  color: var(--success);
}

.pricing-card-list .pricing-no {
  color: var(--helper);
  font-weight: 400;
}

.pricing-card .button {
  width: 100%;
}

.pricing-scroll-hint {
  display: none;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.pricing-table {
  min-width: 720px;
  overflow: hidden;
  border-radius: 16px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  align-items: stretch;
}

.pricing-row:not(.pricing-head):nth-of-type(odd) {
  background: var(--surface-ivory);
}

.pricing-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.pricing-row > div {
  padding: 14px 20px;
  color: var(--body);
  font-size: 14px;
  text-align: center;
}

.pricing-row .pricing-feature {
  position: sticky;
  left: 0;
  z-index: 1;
  background: inherit;
  color: var(--muted);
  font-weight: 500;
  text-align: left;
}

.pricing-yes {
  color: var(--success);
  font-weight: 600;
}

.pricing-no {
  color: var(--helper);
}

.pricing-head {
  border-bottom: 1px solid var(--border);
  background: var(--surface-card);
}

.pricing-plan {
  min-height: 196px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px 20px;
}

.pricing-plan-featured {
  background: var(--lavender-mist);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--surface-card);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-name {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.plan-price {
  margin-top: 2px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.plan-price small {
  margin-left: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.pricing-plan .button {
  width: 100%;
  margin-top: 12px;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.contact-section {
  padding: 80px 0 !important;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 90, 255, 0.1), rgba(182, 203, 253, 0.4));
}

.contact-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.6vw, 57px);
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-card .button {
  flex: none;
}

footer {
  padding: 40px 0;
  background: var(--surface-card);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-content nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-content nav a {
  color: var(--muted);
}

.footer-content nav a:hover,
.footer-content nav a:focus-visible {
  color: var(--primary);
}

@keyframes screen-enter {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
