/* Zombie IT Services — layout & theme */

:root {
  --bg-deep: #0c0f12;
  --bg-elevated: #12171d;
  --bg-card: #161c24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaed;
  --text-muted: #9aa3ad;
  --accent: #3ecf8e;
  --accent-dim: rgba(62, 207, 142, 0.15);
  --accent-glow: rgba(62, 207, 142, 0.35);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1100px;
  --narrow: 640px;
  --header-scroll-pad: clamp(4.25rem, 12vw, 5.5rem);
  --ease-out-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-pad);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after,
  .hero-bg,
  .hero-bg::before,
  .hero-bg::after,
  .page-hero::before,
  .hero-title-line,
  .hero-eyebrow,
  .hero-logo-wrap,
  .hero-lead,
  .hero-actions,
  .hero-title-accent {
    animation: none !important;
  }

  .hero-title-line,
  .hero-eyebrow,
  .hero-logo-wrap,
  .hero-lead,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(62, 207, 142, 0.28);
  color: var(--text);
}

/* In-page anchors clear the sticky header */
section[id],
.hero[id] {
  scroll-margin-top: var(--header-scroll-pad);
}

body::before {
  content: "";
  position: fixed;
  inset: -45% -35%;
  z-index: -2;
  background:
    radial-gradient(ellipse 85% 55% at 12% 18%, rgba(62, 207, 142, 0.13), transparent 58%),
    radial-gradient(ellipse 70% 65% at 88% 12%, rgba(62, 207, 142, 0.09), transparent 52%),
    radial-gradient(ellipse 90% 50% at 48% 92%, rgba(40, 130, 95, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 45% at 72% 48%, rgba(62, 207, 142, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 60% at 8% 65%, rgba(50, 160, 110, 0.07), transparent 48%),
    var(--bg-deep);
  animation:
    ambient-flow-main 42s ease-in-out infinite,
    ambient-breathe 11s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Second ambient sheet — different timing so greens never move in lockstep */
body::after {
  content: "";
  position: fixed;
  inset: -50% -40%;
  z-index: -2;
  background:
    radial-gradient(ellipse 75% 70% at 55% 35%, rgba(62, 207, 142, 0.07), transparent 55%),
    radial-gradient(ellipse 65% 55% at 22% 78%, rgba(45, 140, 100, 0.09), transparent 52%),
    radial-gradient(ellipse 80% 45% at 92% 72%, rgba(62, 207, 142, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 80% at 40% 8%, rgba(62, 207, 142, 0.06), transparent 54%);
  animation: ambient-flow-secondary 56s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
  opacity: 1;
}

@keyframes ambient-flow-main {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1) rotate(0deg);
  }
  20% {
    transform: translate(4%, -3%) scale(1.05) rotate(0.4deg);
  }
  40% {
    transform: translate(-3%, 4%) scale(1.02) rotate(-0.35deg);
  }
  60% {
    transform: translate(5%, 3%) scale(1.06) rotate(0.25deg);
  }
  80% {
    transform: translate(-4%, -2%) scale(1.03) rotate(-0.2deg);
  }
}

@keyframes ambient-flow-secondary {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1.04);
  }
  25% {
    transform: translate(-5%, 4%) scale(1) rotate(-0.5deg);
  }
  50% {
    transform: translate(4%, -5%) scale(1.08);
  }
  75% {
    transform: translate(3%, 3%) scale(1.02) rotate(0.4deg);
  }
}

@keyframes ambient-breathe {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

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

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

a:hover {
  text-decoration: underline;
}

/* Prose links: draw underline instead of a harsh jump */
main .hero-lead a,
main .section-desc a,
main .page-lead a,
main .pull-quote a,
main .pricing-note a,
main .legal-doc a,
main .card-body a,
main .pricing-detail a {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s var(--ease-out-smooth), color 0.2s ease;
}

main .hero-lead a:hover,
main .section-desc a:hover,
main .page-lead a:hover,
main .pull-quote a:hover,
main .pricing-note a:hover,
main .legal-doc a:hover,
main .card-body a:hover,
main .pricing-detail a:hover {
  text-decoration: none;
  background-size: 100% 1px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Softer bottom edge: backdrop-filter alone reads as a hard line over scrolling content */
  background: linear-gradient(
    180deg,
    rgba(12, 15, 18, 0.92) 0%,
    rgba(12, 15, 18, 0.78) 72%,
    rgba(12, 15, 18, 0.45) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: none;
  transition: background 0.4s ease;
  box-shadow: none;
}

/* Feather below the bar so scroll doesn’t look “cut off” by a ruler line */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 2.25rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(12, 15, 18, 0.55), transparent);
  z-index: 49;
}

.site-header.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(12, 15, 18, 0.97) 0%,
    rgba(12, 15, 18, 0.88) 70%,
    rgba(12, 15, 18, 0.5) 100%
  );
  box-shadow: none;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.brand-text {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 0.9rem;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  position: relative;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(62, 207, 142, 0.35));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent) !important;
  border: 1px solid rgba(62, 207, 142, 0.35);
}

.nav-cta:hover {
  background: rgba(62, 207, 142, 0.22);
}

.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Inner pages */

.page-hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.25rem clamp(2rem, 5vw, 3rem);
  border-bottom: none;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -45% -25%;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 70% 0%, rgba(62, 207, 142, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 20% 60%, rgba(50, 150, 105, 0.06), transparent 55%);
  animation: page-hero-glow 22s ease-in-out infinite;
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

@keyframes page-hero-glow {
  0%,
  100% {
    opacity: 0.75;
    transform: translate(-2%, 0) scale(1);
  }
  33% {
    opacity: 1;
    transform: translate(5%, 3%) scale(1.06);
  }
  66% {
    opacity: 0.85;
    transform: translate(1%, -2%) scale(1.03);
  }
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  opacity: 0.6;
}

.breadcrumb-current {
  color: var(--text);
}

.page-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

.page-hero .page-title::after {
  content: "";
  display: block;
  width: min(3.25rem, 12vw);
  height: 2px;
  margin: 0.75rem 0 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}

.page-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-tight-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section-cta {
  text-align: center;
}

.cta-inner {
  padding: 2rem 1rem;
}

.cta-text {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--text);
}

/* Audio samples (music page) */

.audio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.audio-track {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition:
    border-color 0.2s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.audio-track:hover {
  border-color: rgba(62, 207, 142, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.audio-track-title {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.audio-player {
  display: block;
  width: 100%;
  min-height: 2.5rem;
  border-radius: var(--radius-sm);
}

.audio-player:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Custom song brief (wizard) */

.brief-wizard-top {
  margin-bottom: 1.75rem;
}

.brief-progress-label {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.brief-progress-track {
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.brief-progress-fill {
  height: 100%;
  width: 10%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #52d89a);
  transition: width 0.25s ease;
}

.brief-step:not(.is-active) {
  display: none !important;
}

.brief-step.is-active {
  display: block;
}

.brief-wizard-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.brief-wizard-nav-spacer {
  flex: 1;
  min-width: 0;
}

.brief-wizard-nav .btn[hidden] {
  display: none !important;
}

.brief-form {
  max-width: 100%;
}

.brief-fieldset {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.brief-fieldset:last-of-type {
  margin-bottom: 1.5rem;
}

.brief-legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
}

.brief-optional {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
}

.brief-form .form-field label abbr {
  color: var(--accent);
  text-decoration: none;
}

.brief-submit {
  margin-top: 0.5rem;
}

.section-tight-top .container.narrow .contact-status {
  text-align: left;
  margin-top: 1.25rem;
}

.brief-teaser-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Song brief — success state */

.brief-success-panel {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.brief-success-card {
  max-width: 26rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(62, 207, 142, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.brief-success-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.brief-success-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

#brief-new-request,
#contact-send-another {
  width: 100%;
  max-width: 20rem;
}

/* 404 */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-inner {
  text-align: center;
}

.error-page .section-title {
  margin-bottom: 0.75rem;
}

.error-page .section-desc {
  margin-bottom: 1.5rem;
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3.5rem, 10vw, 5rem);
  overflow: hidden;
}

/* Soft fade into the next section — no hard line under the hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(8rem, 26vw);
  background: linear-gradient(to bottom, transparent 0%, rgba(12, 15, 18, 0.35) 55%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(62, 207, 142, 0.08), transparent 50%),
    var(--bg-deep);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: hero-bg-breathe 8.5s ease-in-out infinite alternate;
  }
}

@keyframes hero-bg-breathe {
  0%,
  100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 100%;
  top: -30%;
  left: 5%;
  background: radial-gradient(ellipse closest-side, rgba(62, 207, 142, 0.2), transparent 72%);
  animation: hero-blob-a 26s ease-in-out infinite;
  filter: blur(3px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 85%;
  bottom: -22%;
  right: -12%;
  background: radial-gradient(ellipse closest-side, rgba(62, 207, 142, 0.11), transparent 70%);
  animation: hero-blob-b 32s ease-in-out infinite;
}

@keyframes hero-blob-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.82;
  }
  33% {
    transform: translate(10%, 5%) scale(1.1);
    opacity: 1;
  }
  66% {
    transform: translate(-4%, 8%) scale(1.05);
    opacity: 0.9;
  }
}

@keyframes hero-blob-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-12%, -6%) scale(1.09);
  }
  50% {
    transform: translate(6%, -12%) scale(1.03);
  }
  75% {
    transform: translate(-5%, 4%) scale(1.11);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-logo-wrap {
    animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  }

  .hero-eyebrow {
    animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  .hero-title-line:first-child {
    animation: hero-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  }

  .hero-lead {
    animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
  }

  .hero-actions {
    animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
  }

  .hero-title-line.hero-title-accent {
    animation:
      hero-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both,
      accent-soft-glow 5s ease-in-out infinite alternate 1.2s;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accent-soft-glow {
  from {
    text-shadow: 0 0 20px rgba(62, 207, 142, 0.15);
  }
  to {
    text-shadow: 0 0 36px rgba(62, 207, 142, 0.35);
  }
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo {
  display: block;
  width: min(560px, 92vw);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-logo-wrap:hover .hero-logo {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(62, 207, 142, 0.15);
  }
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: #52d89a;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(62, 207, 142, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(62, 207, 142, 0.35);
  background: rgba(62, 207, 142, 0.06);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.08s;
  }

  .btn-ghost:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.08s;
  }
}

/* Sections — no hard rules between bands; blend with gradients + spacing */

.section {
  padding: clamp(3.25rem, 9vw, 5.75rem) 1.25rem;
}

.section-alt {
  position: relative;
  overflow: hidden;
  /* Soft vertical blend: eases into neighbors instead of a ruled stripe */
  background: linear-gradient(
    180deg,
    var(--bg-deep) 0%,
    rgba(18, 23, 29, 0.65) 14%,
    var(--bg-elevated) 38%,
    var(--bg-elevated) 62%,
    rgba(12, 15, 18, 0.92) 86%,
    var(--bg-deep) 100%
  );
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.container.narrow {
  max-width: var(--narrow);
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  flex: 1 1 0;
  min-width: 0;
  max-width: 4.5rem;
  height: 1px;
  border-radius: 1px;
  opacity: 0.45;
}

.section-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section-eyebrow::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

.section-header .section-title::after {
  content: "";
  display: block;
  width: min(3.5rem, 14vw);
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.75;
}

.section-desc {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.22s ease,
    transform 0.28s var(--ease-out-smooth),
    box-shadow 0.28s ease;
}

.pricing-card:hover {
  border-color: rgba(62, 207, 142, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.pricing-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-tier {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.pricing-tier:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pricing-price-line {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-price-line .price-from {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.35rem;
}

.price-amt {
  color: var(--accent);
}

.pricing-detail {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-callout {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.pricing-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.pricing-compact {
  max-width: 36rem;
  margin: 0 auto;
}

.pricing-crosslink {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.pricing-footnote-center {
  margin-top: 1.25rem;
  text-align: center;
}

/* Quote */

.quote-section {
  padding-top: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.pull-quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .pull-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  }
}

.pull-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  line-height: 1.5;
  font-style: italic;
}

.pull-quote em {
  color: var(--accent);
  font-style: italic;
}

/* Cards */

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.28s var(--ease-out-smooth);
}

.card:hover {
  border-color: rgba(62, 207, 142, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.card-body {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Contact */

.contact-panel {
  position: relative;
  text-align: left;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.28s var(--ease-out-smooth), box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .contact-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  }
}

.contact-form {
  margin: 0;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

@media (max-width: 540px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s var(--ease-out-smooth);
}

.form-field textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(62, 207, 142, 0.5);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-actions .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-status {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.9375rem;
}

.contact-status.is-success {
  color: var(--accent);
}

.contact-status.is-error {
  color: #f87171;
}

/* Legal / terms (custom music) */

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p,
.legal-doc ul {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc li:last-child {
  margin-bottom: 0;
}

.legal-doc .legal-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
}

/* Footer */

.site-footer {
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
  border-top: none;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #080a0c 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

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

/* Motion: scroll reveal + reduced-motion fallbacks handled above */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
