.hero-home {
  min-height: calc(100vh - 72px);
  background: var(--ink);
  color: var(--cream);
  padding: 122px 72px 92px;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(221, 229, 237, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(221, 229, 237, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.hero-home::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  top: -22vw;
  right: -18vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 104, 196, 0.22), rgba(154, 219, 232, 0.08) 38%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: rgba(221, 229, 237, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 16px;
  height: 2px;
  background: rgba(221, 229, 237, 0.4);
}

.hero-copy h1 {
  margin-top: 12px;
}

.hero-copy .lead {
  color: rgba(221, 229, 237, 0.8);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cards {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-card {
  position: absolute;
  width: 230px;
  height: 320px;
  border: 1px solid rgba(221, 229, 237, 0.2);
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(221, 229, 237, 0.1), rgba(221, 229, 237, 0.02));
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-radius: 12px;
}

.hero-card:nth-child(1) { left: 0; top: 100px; transform: rotate(-7deg); z-index: 1; }
.hero-card:nth-child(2) { left: 154px; top: 0; transform: rotate(4deg); z-index: 2; }
.hero-card:nth-child(3) { left: 258px; top: 188px; transform: rotate(8deg); z-index: 3; }

.show-strip {
  display: flex;
  gap: 16px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.show-item {
  min-width: 330px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 12px;
  overflow: hidden;
}

.show-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.show-image {
  aspect-ratio: 2 / 3;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--cream);
}

.show-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 60, 64, 0.6), transparent 42%);
}

.show-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(46, 60, 64, 0.4);
  border: 1px solid rgba(221, 229, 237, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
}

.show-image-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(221, 229, 237, 0.9);
}

.show-body {
  padding: 20px 18px;
}

.show-body h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.show-body p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 6px;
}

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

/* FIX: Forces the background to be light and the text to be dark, ensuring visibility */
.team-card {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  color: var(--ink) !important;
}

.team-card h3 {
  margin-top: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink) !important;
}

.team-card p {
  color: var(--muted) !important;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-block {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}

.contact-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
}

.platform-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stage-card {
  border: 1px solid rgba(221, 229, 237, 0.16);
  background: rgba(221, 229, 237, 0.05);
  padding: 24px;
  border-radius: 12px;
}

.stage-card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-like {
  border: 1px solid var(--border);
  background: var(--cream-2);
  padding: 32px;
  border-radius: 12px;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote {
  padding: 28px;
  background: var(--ink-2);
  position: relative;
  border-radius: 12px;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  color: rgba(154, 219, 232, 0.12);
}

.quote p {
  color: rgba(221, 229, 237, 0.85);
  line-height: 1.8;
  font-size: 1.05rem;
}

.quote span {
  margin-top: 14px;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(221, 229, 237, 0.5);
}

.showcase-lead-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: end;
}

.showcase-note-box {
  border: 1px solid var(--border);
  background: var(--cream-2);
  padding: 24px;
  color: var(--ink);
  line-height: 1.8;
  border-radius: 12px;
}

.showcase-note-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blush);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero-home, .page-hero, .section { padding-left: 22px; padding-right: 22px; }
  .hero-inner, .platform-stage, .team-grid, .social-proof, .contact-grid { grid-template-columns: 1fr; }
  .hero-cards { min-height: 360px; }
  .hero-card { width: 170px; height: 230px; }
  .hero-card:nth-child(2) { left: 90px; }
  .hero-card:nth-child(3) { left: 170px; }
  .show-item { min-width: 292px; }
  .showcase-lead-wrap { grid-template-columns: 1fr; }
}