.suite-shot {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #111418;
  box-shadow: 0 24px 64px rgba(23, 26, 31, 0.16);
}

.suite-shot img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.module-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module-rail span {
  flex: none;
  padding: 4px 8px;
  border: 1px solid rgba(110, 161, 255, 0.28);
  border-radius: 5px;
  color: #a9c8ff;
  background: rgba(47, 109, 240, 0.09);
  font: 600 11px/1.2 'SFMono-Regular', Menlo, Consolas, monospace;
}

.suite-shot figcaption {
  padding: 10px 14px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
}

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

.local-grid,
.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 26px;
  align-items: start;
}

.local-grid h2,
.pricing-row h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.local-grid > div > p,
.pricing-row > div > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.boundary-card {
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.boundary-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 750;
  text-transform: uppercase;
}

.boundary-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.pricing-row {
  grid-template-columns: minmax(0, 1fr) 150px 150px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.price-card span,
.price-card small {
  color: var(--muted);
  font-size: 12.5px;
}

.price-card strong {
  margin: 6px 0 2px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 920px) {
  .suite-features { grid-template-columns: repeat(2, 1fr); }
  .local-grid,
  .pricing-row { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
}

@media (max-width: 640px) {
  .suite-features { grid-template-columns: 1fr; }
  .module-rail span:nth-child(n+3) { display: none; }
}

@media (prefers-color-scheme: dark) {
  .suite-shot { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4); }
}
