:root { --bg:#000; --panel:#0b0b0f; --fg:#eae8f5; --muted:#cfcbe0; --accent:#f0b392; --border:rgba(255,255,255,.18); }
* { box-sizing:border-box; }
html, body { margin:0; background:var(--bg); color:var(--fg); }
body { font-family:'AwakeRegular', Helvetica, Arial, sans-serif; }
a { color:inherit; }
#home { width:min(1100px, calc(100% - 32px)); margin:0 auto; padding:48px 0 24px; }
.banner { padding:40px 0 18px; text-align:center; }
.banner h1 { margin:0; font-family:'donovanregular', Helvetica, Arial, sans-serif; font-size:clamp(3rem,8vw,6.2rem); line-height:.95; }
.animated-header { display:block; width:100%; background:linear-gradient(270deg,#0ff,#ff9955,#0ff); background-size:600% 100%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; text-shadow:0 0 1px #0ff,0 0 2px #0ff,0 0 4px #ff9955; animation:audioGradient 6s linear infinite,audioPulse 4s ease-in-out infinite alternate; }
@keyframes audioGradient { 0%{background-position:0% 0} 100%{background-position:100% 0} }
@keyframes audioPulse { 0%,100%{text-shadow:0 0 1px #0ff,0 0 2px #0ff,0 0 4px #ff9955} 50%{text-shadow:0 0 1.5px #0ff,0 0 3px #0ff,0 0 5px #ff9955} }
.motto { text-align:center; color:var(--muted); font-size:clamp(1.25rem,2.5vw,2rem); margin:0 auto 28px; max-width:850px; line-height:1.35; }
.hero { display:grid; grid-template-columns:1fr; gap:24px; align-items:center; padding:28px 0; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
@media (min-width:900px) { .hero { grid-template-columns:.9fr 1.1fr; } }
.mark { width:min(320px,80vw); aspect-ratio:1; border-radius:50%; margin:0 auto; background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.18),transparent 35%),linear-gradient(135deg,rgba(0,255,255,.95),rgba(255,153,85,.9)); box-shadow:0 0 0 8px #fff,0 6px 20px rgba(0,0,0,.45); display:grid; place-items:center; color:#000; font-family:'donovanregular', Helvetica, Arial, sans-serif; font-size:clamp(3.5rem,14vw,7rem); letter-spacing:-.08em; }
.hero-copy h2 { margin:0 0 14px; font-family:'donovanregular', Helvetica, Arial, sans-serif; font-size:clamp(2rem,4vw,3.5rem); line-height:1.08; }
.hero-copy p { margin:0 0 16px; color:var(--muted); font-size:clamp(1.05rem,2vw,1.25rem); line-height:1.6; }
.accent { color:var(--accent); }
.cards { display:grid; grid-template-columns:1fr; gap:18px; padding:28px 0; }
@media (min-width:760px) { .cards { grid-template-columns:repeat(2,1fr); } }
.card { display:block; min-height:180px; padding:22px; border-radius:12px; background:var(--panel); border:1px solid #fff; outline:1px solid var(--border); outline-offset:-6px; text-decoration:none; box-shadow:0 2px 10px rgba(0,0,0,.4); transition:transform .2s ease,box-shadow .2s ease; }
.card:hover { transform:translateY(-3px); box-shadow:0 0 15px rgba(0,255,255,.25),0 0 25px rgba(255,153,85,.18); }
.card h3 { margin:0 0 10px; color:#fff; font-family:'donovanregular', Helvetica, Arial, sans-serif; font-size:clamp(1.5rem,3vw,2rem); }
.card p { margin:0; color:var(--muted); line-height:1.55; font-size:1rem; }
.footer { padding:18px 0 10px; border-top:1px solid rgba(255,255,255,.06); color:var(--muted); font-size:.82rem; text-align:center; line-height:1.5; }
.footer a { color:var(--fg); text-decoration:none; border-bottom:1px solid rgba(255,153,85,.65); }
@media (prefers-reduced-motion:reduce) { .animated-header{animation:none} .card{transition:none} .card:hover{transform:none} }


/* Homepage offer cards: more intentional button treatment */
.cards .card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(#0b0b0f, #0b0b0f) padding-box,
    linear-gradient(90deg, rgba(101, 255, 249, 0.65), rgba(255, 153, 85, 0.55)) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

/* Soft moving sheen */
.cards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(101, 255, 249, 0.08) 35%,
    rgba(255, 153, 85, 0.10) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.cards .card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 14px rgba(101, 255, 249, 0.22),
    0 0 24px rgba(255, 153, 85, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.cards .card:hover::before {
  transform: translateX(120%);
}

.cards .card h3,
.cards .card p {
  position: relative;
  z-index: 1;
}

/* Make Book a Call feel like the next-action card */
.cards .card.card-cta {
  background:
    linear-gradient(#0b0b0f, #0b0b0f) padding-box,
    linear-gradient(90deg, #0ff, #ff9955, #0ff) border-box;
  border: 1px solid transparent;
}

/* Center the Book a Call card under the two offer cards */
@media (min-width: 760px) {
  .cards .card.card-cta {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 560px);
    min-height: 140px;
    text-align: center;
  }
}
.cards .card.card-cta h3 {
  color: #fff;
}

.cards .card.card-cta:hover {
  box-shadow:
    0 0 16px rgba(101, 255, 249, 0.30),
    0 0 28px rgba(255, 153, 85, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

/* Keyboard accessibility */
.cards .card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .cards .card,
  .cards .card::before {
    transition: none;
  }

  .cards .card:hover {
    transform: none;
  }

  .cards .card:hover::before {
    transform: translateX(-120%);
  }
  
}.hero-copy .through-line {
  margin-top: 20px;
  color: var(--accent);
  font-family: 'donovanregular', Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.12;
}
.mark.hero-photo {
  width: clamp(220px, 68vw, 320px);
  height: clamp(220px, 68vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  background: #05050a;
  box-shadow: 0 0 0 8px #fff, 0 6px 20px rgba(0,0,0,.45);
  display: block;
  line-height: 0;
}

.mark.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}

.music-site-link {
  padding: 6px 0 22px;
  text-align: center;
  color: var(--muted);
  font-size: 1.25rem;
}

.music-site-link p {
  margin: 0;
}

.music-site-link a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,153,85,.65);
}

.music-site-link a:hover {
  color: #fff;
  border-bottom-color: #65fff9;
}