:root {
  --ink: #10252b;
  --ink-soft: #405861;
  --line: #dce7e9;
  --paper: #f7fbfb;
  --white: #ffffff;
  --cyan: #17d8e8;
  --teal: #087786;
  --mint: #baf7d4;
  --coral: #ff6f4f;
  --gold: #ffd166;
  --shadow: 0 18px 50px rgba(9, 35, 42, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--ink);
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 231, 233, 0.75);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.ghost-link {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.ghost-link:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.ghost-link {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  color: #06242b;
  background: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 216, 232, 0.25);
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 216, 232, 0.32);
}

.button-small {
  min-height: 42px;
  padding-inline: 1rem;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.button.light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 7rem clamp(1rem, 4vw, 3rem) 3.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(url("/assets/fast-music-banner.png?v=20260814") 1x) center / cover no-repeat,
    #0c3c44;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 27, 0.92) 0%, rgba(4, 22, 27, 0.72) 47%, rgba(4, 22, 27, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 36, 43, 0.42), rgba(6, 36, 43, 0.08));
}

.hero-inner {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 650px;
  margin: 0;
}

.hero-stats div {
  min-height: 88px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-copy p,
.intro-panel,
.contact-grid {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}

.intro-panel {
  padding-left: clamp(1rem, 4vw, 2rem);
  border-left: 4px solid var(--coral);
}

.services,
.plans {
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2rem;
}

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

.service-card,
.plan {
  min-height: 250px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(10, 40, 48, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p,
.plan p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.service-mark {
  display: block;
  width: 42px;
  height: 10px;
  margin-bottom: 1.4rem;
  background: var(--cyan);
  border-radius: 999px;
}

.service-card.accent .service-mark {
  background: var(--coral);
}

.service-card.warm .service-mark {
  background: var(--gold);
}

.platform-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: var(--teal);
}

.platform-band > div {
  max-width: 800px;
}

.platform-band h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.plan-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.plan.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.plan.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.plan a {
  justify-self: start;
  padding-bottom: 0.18rem;
  color: var(--teal);
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.plan.featured a {
  color: var(--cyan);
}

.contact-grid {
  display: grid;
  gap: 0.85rem;
}

.contact-grid a,
.contact-grid span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.76);
  background: #071a20;
}

.site-footer img {
  width: 168px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 1rem;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .site-nav {
    align-items: start;
    flex-direction: column;
    padding-top: 1rem;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 0.75rem;
  }

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

  .intro,
  .contact,
  .platform-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 6rem;
  }

  .hero-stats,
  .service-grid,
  .plan-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .plan {
    min-height: auto;
  }

  .intro-panel {
    padding-left: 1rem;
  }
}
