/* Palette pulled from the artist app (landon tailwind.config.js) */
:root {
  --bg-dark: #06062a;
  --bg-overly: #090e38;
  --gb-footer: #08082d;
  --light-dark: #292962;
  --rose: #f33274;
  --light-rose: #ea3c7a;
  --lime: #35e8b4;
  --cyan: #707281;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, system-ui, Segoe UI, Roboto;
  background: var(--bg-dark);
  color: var(--text);
}

.container {
  max-width: 1170px;
  margin: auto;
  padding: 40px 20px;
}

.header {
  background: rgba(6, 6, 42, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  font-weight: 700;
  font-size: 20px;
}

.nav-links a {
  margin-right: 24px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--lime);
}

.hero {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(243, 50, 116, 0.18),
      transparent 45%
    ),
    radial-gradient(circle at 85% 10%, rgba(53, 232, 180, 0.12), transparent 45%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 58px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 15ch;
}

h1 em {
  font-style: normal;
  color: var(--rose);
}

h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--text);
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.75;
}

.btn {
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.25s,
    color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.dark {
  background: var(--rose);
  color: #fff;
}

.btn.dark:hover {
  background: var(--light-rose);
}

.btn.light {
  background: transparent;
  color: var(--lime);
  border: 1px solid var(--lime);
}

.btn.light:hover {
  background: var(--lime);
  color: var(--bg-dark);
}

.btn-row {
  margin-top: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  padding: 34px;
  border-radius: 20px;
}

.card h3 {
  margin-top: 0;
  font-size: 22px;
}

.card ul {
  padding-left: 20px;
  line-height: 2;
}

.card.dark {
  background: var(--bg-overly);
  border: 1px solid var(--light-dark);
  color: var(--text-muted);
}

.card.dark h3 {
  color: var(--cyan);
}

.card.red {
  background: linear-gradient(145deg, var(--rose), var(--light-rose));
  color: #fff;
}

.card.red h3 {
  color: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.feature {
  background: var(--bg-overly);
  border: 1px solid var(--light-dark);
  border-radius: 20px;
  padding: 30px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.feature:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.feature h3 {
  color: var(--lime);
  margin-top: 0;
  font-size: 20px;
}

.feature p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.contact {
  background: linear-gradient(145deg, var(--rose), var(--light-rose));
  color: #fff;
  border-radius: 20px;
  text-align: center;
}

.contact .tel {
  font-size: 24px;
  font-weight: 600;
}

.contact a,
.contact a:visited {
  color: #fff;
}

.tel a {
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 40px;
  color: var(--cyan);
  background: var(--gb-footer);
}

@media (max-width: 768px) {
  .container {
    padding: 28px 16px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links a {
    margin-right: 0;
  }

  .hero {
    padding: 56px 0;
  }

  .split,
  .features {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .btn-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .btn {
    margin-right: 0;
  }
}
