:root {
  --bg: #101214;
  --bg-soft: #171a1f;
  --panel: #1f242b;
  --panel-2: #252b33;
  --text: #f4f6f8;
  --muted: #a8b0ba;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #d9ab2f;
  --accent-2: #f1d36a;
  --success: #8fd19e;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(217, 171, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #0d0f12 0%, #13171c 52%, #0f1216 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 48px;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar a {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 17, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  border-radius: 10px;
}

.footer-brand .brand-logo {
  width: min(320px, 100%);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #8d6b16);
  color: #111;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px rgba(217, 171, 47, 0.35);
}

.brand-text {
  min-width: 0;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.mobile-quote-link {
  display: none;
}

.quote-button {
  animation: quote-glow 2.4s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(241, 211, 106, 0.32),
    0 10px 24px rgba(217, 171, 47, 0.34),
    0 0 22px rgba(217, 171, 47, 0.3);
}

.quote-button:hover {
  box-shadow:
    0 0 0 1px rgba(241, 211, 106, 0.5),
    0 14px 30px rgba(217, 171, 47, 0.46),
    0 0 30px rgba(217, 171, 47, 0.42);
}

@keyframes quote-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(241, 211, 106, 0.24),
      0 10px 24px rgba(217, 171, 47, 0.28),
      0 0 16px rgba(217, 171, 47, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(241, 211, 106, 0.46),
      0 12px 28px rgba(217, 171, 47, 0.42),
      0 0 28px rgba(217, 171, 47, 0.38);
  }
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  color: #121212;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 14px 30px rgba(217, 171, 47, 0.28);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(217, 171, 47, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(217, 171, 47, 0.2);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.hero-panel {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #20262d 0%, #171b21 60%, #111419 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
}

.panel-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-top,
.panel-bottom,
.float-card {
  background: rgba(13, 16, 20, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.panel-top {
  align-self: flex-start;
  padding: 1rem 1.1rem;
  max-width: 280px;
}

.panel-top strong,
.panel-bottom strong,
.float-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.panel-bottom {
  align-self: flex-end;
  padding: 1.1rem;
  max-width: 310px;
}

.float-card {
  position: absolute;
  width: min(280px, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
}

.float-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.float-card li + li {
  margin-top: 0.35rem;
}

.section {
  padding: 4.75rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.grid {
  display: grid;
  gap: 1.15rem;
}

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

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

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.14rem;
}

.card p,
.card li,
.small-text,
.page-meta {
  color: var(--muted);
}

.card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.card ul li + li {
  margin-top: 0.32rem;
}

.icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(217, 171, 47, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(217, 171, 47, 0.18);
  font-size: 1.3rem;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.band-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.83rem;
  color: var(--muted);
}

.band-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.band-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 5px rgba(217, 171, 47, 0.09);
}

.cta-panel {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 171, 47, 0.22);
  background:
    radial-gradient(circle at top right, rgba(217, 171, 47, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel h3 {
  margin-top: 0;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  display: flex;
  gap: 0.75rem;
  align-items: start;
}

.list-clean li + li {
  margin-top: 0.8rem;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(217, 171, 47, 0.15);
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.page-hero {
  padding: 4.2rem 0 2.5rem;
}

.page-meta {
  max-width: 70ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.35rem;
}

.contact-list a,
.footer a {
  color: var(--text);
}

.contact-box {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.contact-box + .contact-box {
  margin-top: 1rem;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

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

label span {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  font: inherit;
}

select {
  appearance: none;
  background-color: var(--panel-2);
  color: var(--text);
  color-scheme: dark;
}

select option {
  background-color: var(--panel-2);
  color: var(--text);
}

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

input::placeholder,
textarea::placeholder {
  color: #8f98a4;
}

.form-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-response {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(143, 209, 158, 0.08);
  border: 1px solid rgba(143, 209, 158, 0.18);
  color: #d8f5df;
  display: none;
}

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

.brands-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  min-height: 140px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(217, 171, 47, 0.22);
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.98), rgba(18, 20, 24, 0.98));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.brand-card-image {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer {
  padding: 3rem 0 1.6rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 1rem;
}

.footer h4 {
  margin: 0 0 0.8rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tagline {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.muted-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: 18px;
}

@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .footer-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .hero-stats,
  .band-list,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-panel {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.6rem 0;
  }

  .brand-logo {
    width: min(280px, calc(100vw - 8rem));
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(16, 18, 22, 0.98);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-actions .button {
    width: 100%;
    justify-content: center;
  }

  .nav-links .mobile-quote-link {
    display: inline-flex;
    color: #121212;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
  }

  .nav-actions .button {
    display: none;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 3.5rem;
  }

  .grid-3,
  .grid-2,
  .hero-stats,
  .band-list,
  .form-grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 120px;
  }

  .brand-card-image {
    max-height: 62px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .float-card {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .quote-button {
    animation: none;
  }
}
