:root {
  --bg: #081019;
  --panel: rgba(11, 20, 32, 0.78);
  --panel-strong: rgba(13, 25, 40, 0.92);
  --border: rgba(147, 197, 253, 0.16);
  --border-strong: rgba(125, 211, 252, 0.34);
  --text: #ebf2ff;
  --muted: #94a7be;
  --accent: #72e5ff;
  --accent-strong: #2ab6d8;
  --accent-warm: #f2b880;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(34, 197, 94, 0.12), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(242, 184, 128, 0.16), transparent 34%),
    linear-gradient(180deg, #071018 0%, #081019 50%, #05090f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 95%);
  pointer-events: none;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(114, 229, 255, 0.12), rgba(114, 229, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.brand-text {
  font-size: 1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

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

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  padding: 56px 0 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-warm);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text,
.section-heading p,
.service-card p,
.band-card p,
.timeline p,
.panel-card span,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid transparent;
  color: #031218;
  background: linear-gradient(135deg, var(--accent), #d0f7ff);
  box-shadow: 0 20px 50px rgba(42, 182, 216, 0.24);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-metrics article,
.panel-card,
.service-card,
.band-card,
.timeline article,
.leads-form {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.7rem;
}

.hero-panel {
  position: relative;
}

.panel-card {
  padding: 24px;
  backdrop-filter: blur(16px);
}

.panel-card p,
.service-card span,
.timeline span {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel-card strong,
.service-card h3,
.band-card h3 {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.panel-card-primary {
  min-height: 240px;
  background:
    radial-gradient(circle at top right, rgba(114, 229, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(10, 24, 38, 0.96), rgba(8, 16, 25, 0.88));
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 60px;
  color: var(--muted);
}

.logo-strip div {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.95rem;
}

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading p {
  margin: 16px 0 0;
}

.service-grid,
.section-bands {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.band-card,
.timeline article {
  padding: 24px;
}

.section-bands {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.band-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(17, 32, 48, 0.92), rgba(8, 16, 25, 0.9)),
    var(--panel);
}

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

.leads-form {
  padding: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.field-stack {
  display: block;
}

label {
  display: grid;
  gap: 10px;
  color: #d6e0ef;
  font-size: 0.96rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  background: rgba(3, 9, 15, 0.72);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #607188;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(114, 229, 255, 0.08);
}

textarea {
  resize: vertical;
  min-height: 160px;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  margin-top: 14px;
  min-height: 24px;
  color: var(--accent);
}

.form-status.is-success {
  color: #96f1b8;
}

.form-status.is-error {
  color: #ffb4b4;
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .timeline,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .section-bands,
  .panel-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-bands,
  .panel-grid,
  .hero-metrics,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .leads-form,
  .service-card,
  .band-card,
  .timeline article,
  .panel-card {
    border-radius: 20px;
  }
}
