:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "PingFang SC", sans-serif;
  color-scheme: light;
  --bg: #fef8ff;
  --surface: transparent;
  --surface-soft: transparent;
  --surface-strong: transparent;
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --border-strong: rgba(148, 163, 184, 0.5);
  --accent: #ec4899;
  --accent-soft: rgba(244, 114, 182, 0.12);
  --accent-2: #22c55e;
  --accent-3: #f59e0b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 114, 182, 0.4), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.4), transparent 55%),
    linear-gradient(180deg, #fef8ff, #f9fafb);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
}

.global-nav.compact {
  position: static;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: #374151;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--muted);
}

.ghost-btn,
.primary-btn,
.outline-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.ghost-btn {
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.7);
}

.primary-btn {
  border-color: transparent;
  background: linear-gradient(120deg, #ec4899, #f97316);
  color: #fefce8;
  box-shadow: 0 16px 36px rgba(236, 72, 153, 0.4);
}

.outline-btn {
  border-color: #ec4899;
  color: #ec4899;
  background: #fff7ed;
}

.ghost-btn:hover,
.primary-btn:hover,
.outline-btn:hover {
  transform: translateY(-1px);
}

main {
  padding: 2.5rem clamp(1.25rem, 4vw, 4rem) 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: #ec4899;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  margin: 0;
  color: #0f172a;
}

.hero-lede {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 0.5rem 0 0;
}

.hero-stats dt {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-panel {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.glass {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 0.9rem;
}

.hero-shot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(248, 250, 252, 0.7);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-main {
  min-height: 140px;
}

.hero-shot-side {
  min-height: 66px;
}

.hero-side-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-shot .tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #f9fafb;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border-radius: 999px;
  padding: 0.32rem 1.05rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.chip.is-active {
  border-color: #ec4899;
  background: var(--accent-soft);
  color: #be185d;
}

.sparkline {
  height: 90px;
  border-radius: 16px;
  background-image: linear-gradient(180deg, rgba(37, 99, 235, 0.12), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(148, 163, 184, 0.15),
      rgba(148, 163, 184, 0.15) 1px,
      transparent 1px,
      transparent 8px
    );
  position: relative;
  overflow: hidden;
}

.sparkline::before {
  content: "";
  position: absolute;
  inset: 20% -10%;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #22c55e, #2563eb);
  opacity: 0.8;
  filter: blur(14px);
  transform-origin: center;
  animation: wave 18s linear infinite;
}

@keyframes wave {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(20%);
  }
}

.panel-metrics {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.82rem;
}

.panel-metrics span {
  display: block;
  color: var(--muted);
}

.panel-metrics strong {
  display: block;
  margin-top: 0.1rem;
  color: #0f172a;
}

.panel-view {
  display: none;
}

.panel-view.is-active {
  display: block;
}

.band,
.timeline,
.industries,
.resources {
  border-radius: 0;
  padding: 1.9rem 0;
  background: transparent;
  border: none;
}

.band-header {
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: #2563eb;
}

.band-header h2 {
  margin: 0.5rem 0 0;
}

/* showreel carousel */
.showreel {
  padding-top: 0;
}

.showreel-shell {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.9rem 0.9rem 1.3rem;
}

.showreel-track {
  position: relative;
  overflow: hidden;
}

.showreel-slide {
  margin: 0;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  inset: 0.2rem 0.2rem auto;
}

.showreel-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.showreel-slide img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.showreel-slide figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.showreel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.3);
  color: #f9fafb;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showreel-nav.prev {
  left: 0.6rem;
}

.showreel-nav.next {
  right: 0.6rem;
}

.showreel-dots {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.showreel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  padding: 0;
}

.showreel-dots button.is-active {
  width: 16px;
  background: #ec4899;
}

.band-platform .band-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.band-column {
  padding: 0 1.3rem 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  position: relative;
}

.band-column h3 {
  margin-top: 0;
}

.band-column p {
  margin: 0.3rem 0 0.4rem;
  color: var(--muted);
}

.band-column ul {
  padding-left: 1.05rem;
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.platform-scene {
  margin-top: 1.5rem;
}

.scene-strip {
  display: flex;
  gap: 0.9rem;
}

.scene-item {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.9);
}

.scene-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.band-actions {
  margin-top: 1.2rem;
}

.text-link {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.9rem;
  color: #2563eb;
  cursor: pointer;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.timeline-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.timeline-node {
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}

.timeline-node.is-active {
  border-color: #ec4899;
  background: var(--accent-soft);
  color: #be185d;
}

.timeline-detail {
  position: relative;
}

.timeline-panel {
  display: none;
  max-width: 720px;
}

.timeline-panel.is-active {
  display: block;
}

.timeline-panel p {
  color: var(--muted);
}

.timeline-panel ul {
  padding-left: 1.05rem;
  color: var(--muted);
}

.timeline-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.phone-frame {
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.45rem;
  position: relative;
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.phone-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.timeline-caption {
  font-size: 0.8rem;
  color: var(--muted);
}

.industries-strip {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  margin-top: 1rem;
}

.chip-large {
  min-width: 250px;
  padding: 1.1rem 0.3rem 1.1rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
  flex: 0 0 auto;
}

.chip-large h3 {
  margin-top: 0;
}

.chip-large p {
  margin: 0.4rem 0 0.3rem;
  color: var(--muted);
}

.chip-large span {
  font-size: 0.8rem;
  color: #059669;
}

.strip-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.8rem;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.resource-card {
  border-radius: 0;
  padding: 1rem 0;
  background: transparent;
  border-bottom: 1px solid var(--border-subtle);
}

.resource-card p {
  color: var(--muted);
}

.resource-body {
  margin-top: 0.45rem;
  color: var(--muted);
}

.resource-aside {
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-subtle);
}

.resource-aside p {
  color: var(--muted);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-panel {
  width: min(520px, 90vw);
  border-radius: 22px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.overlay-panel p {
  color: var(--muted);
}

.overlay-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.overlay-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.88rem;
}

.overlay-form input,
.overlay-form select,
.overlay-form textarea {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  padding: 0.65rem 0.8rem;
  color: var(--text);
  font-family: inherit;
}

.form-feedback {
  font-size: 0.82rem;
  color: #059669;
}

.overlay-close {
  float: right;
}

.global-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.footer-links {
  display: flex;
  gap: 2.3rem;
  flex-wrap: wrap;
}

.footer-links h4 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.footer-copy a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: var(--text);
  text-decoration: underline;
}

.subpage {
  background: var(--bg);
}

.subpage-main {
  padding: 2.2rem clamp(1.25rem, 4vw, 4rem) 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.sub-hero {
  padding: 2rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.sub-hero-card {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.9rem;
}

.sub-hero-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

.sub-hero-card strong {
  display: block;
  font-size: 1.4rem;
}

.module {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 1.8rem 0;
}

.mosaic {
  display: grid;
  gap: 0.9rem;
}

.mosaic article {
  border-left: 4px solid var(--border-strong);
  padding-left: 1.1rem;
}

.mosaic article p {
  color: var(--muted);
}

.detail-grid .detail-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.stacked {
  border-radius: 0;
  border: none;
  overflow: visible;
}

.accordion-head {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
}

.accordion-body {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard-card {
  border-radius: 0;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
}

.dashboard-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.dashboard-card li {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: #e0edff;
  font-size: 0.82rem;
}

.timeline-card {
  border-radius: 0;
  padding: 1.2rem 0;
  background: transparent;
  border: none;
}

.timeline-card ol {
  padding-left: 1.1rem;
  color: var(--muted);
}

.schema-row {
  display: grid;
  grid-template-columns: 100px 1fr 160px;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

.schema-row:last-child {
  border-bottom: none;
}

.city-code {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
}

.schema-row p {
  margin: 0;
  color: var(--muted);
}

.schema-row em {
  font-style: normal;
  font-size: 0.88rem;
  color: #059669;
}

.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .resources-layout {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .global-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  main,
  .subpage-main {
    padding-inline: 1.25rem;
  }

  .hero,
  .band,
  .timeline,
  .industries,
  .resources,
  .module {
    padding-inline: 1.5rem;
  }

  .schema-row {
    grid-template-columns: 1fr;
  }
}


