/* â”€â”€ Landing Page: Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-height) + 20px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-hint {
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: left;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 0 80px rgba(230, 148, 32, 0.45)) drop-shadow(0 0 24px rgba(230, 148, 32, 0.28));
}

/* wrapper sized to the VISUAL rotated dimensions (landscape video → portrait display) */
.hero__vid-frame {
  position: relative;
  width: 380px;
  height: 676px;
  flex-shrink: 0;
}

/* Canvas renders video with black keyed out — no mix-blend-mode needed */
.hero__fretboard-vid {
  position: absolute;
  width: 676px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: block;
  clip-path: inset(0 round 10px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 148, 32, 0.55);
  margin-bottom: 2.5rem;
  padding: 7px 16px;
  border-radius: 100px;
  border: none;
  background: rgba(230, 148, 32, 0.20);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* span both grid columns so it sits centred above the two-column layout */
  grid-column: 1 / -1;
  justify-self: center;
}

/* Soft wandering spark — one narrow bright arc on a slow orbit */
.hero__eyebrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 340deg,
    rgba(255, 220, 120, 0.18) 350deg,
    rgba(230, 148, 32, 0.45) 355deg,
    rgba(255, 220, 120, 0.18) 360deg
  );
  animation: spark-orbit 6s linear infinite;
  z-index: -2;
}

.hero__eyebrow::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 100px;
  background: #120b01;
  z-index: -1;
}

@keyframes spark-orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.hero__title-accent {
  display: inline-block;
  background: var(--brand-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--clr-text-secondary);
  max-width: 520px;
  margin: 0;
  font-weight: 400;
  line-height: 1.75;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-bounce 2.2s ease-in-out infinite;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(9px); }
}

/* â”€â”€ Landing Page: Section Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header {
  text-align: center;
  padding: 80px 48px 40px;
}

.section-header__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.section-header__title span {
  color: var(--clr-saffron);
}

/* â”€â”€ Landing Page: Feature Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* -- Landing Page: Feature Cards ----------------------------------------- */
.features {
  padding: 8px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition),
              background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-saffron-muted), var(--clr-saffron));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  border-color: rgba(230, 148, 32, 0.36);
  background: var(--clr-surface-raised);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  outline: none;
}

.feature-card:hover::after,
.feature-card:focus-visible::after {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-saffron-glow);
  border: 1px solid rgba(230, 148, 32, 0.22);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.87rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-saffron);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.feature-card:hover .feature-card__cta,
.feature-card:focus-visible .feature-card__cta {
  opacity: 1;
  transform: translateX(0);
}
/* â”€â”€ Landing Page: Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ── Feature Sections (Learn / Fluency / Creativity) ───────────────────── */
.feature-section {
  padding: 100px 0;
  position: relative;
}

.feature-section--alt {
  background: rgba(230, 148, 32, 0.025);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.feature-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.feature-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.1;
  text-align: center;
}

/* Stacked features (four bands) */
.feature-section--stack {
  padding: 80px 0 100px;
}

.feature-section__inner--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-section__heading--stack {
  margin-bottom: 48px;
}

#visual-learning {
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

.fp-band {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
  width: 100%;
  padding: 40px 0;
  border-top: none;
  position: static;
}

.fp-band:first-of-type {
  padding-top: 0;
}

.fp-band--alt {
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border-top: none;
}

.fp-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
  background: var(--brand-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.fp-band__desc {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

.fp-band__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  align-items: center;
  gap: 28px 40px;
  width: 100%;
}

/* Alternate mini-section layout: text/visual then visual/text */
.fp-band:nth-of-type(even) .fp-band__text {
  order: 2;
}

.fp-band:nth-of-type(even) .fp-band__visual {
  order: 1;
}

.fp-band__row--wave {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
}

.fp-band__text--wave {
  max-width: 40ch;
}

.fp-band__visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 28vw, 320px);
  width: 100%;
  position: relative;
  /* Keep carousel z-index and canvas layers from painting over the next band */
  isolation: isolate;
  z-index: 0;
}

.fp-band__visual--carousel {
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 12px;
}

.fp-chart {
  margin: 0;
  width: 100%;
  max-width: 720px;
  position: relative;
}

.fp-chart__canvas {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(320px, 40vw);
  border-radius: var(--radius-md);
}

.fp-chart__tooltip {
  position: absolute;
  min-width: 170px;
  max-width: 240px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(230, 148, 32, 0.4);
  background: rgba(14, 11, 8, 0.92);
  color: rgba(248, 248, 248, 0.92);
  font-size: 0.74rem;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -110%);
  transition: opacity 0.12s ease;
  z-index: 3;
}

.fp-wave__canvas {
  display: block;
  /* Width/height are set in JS to match backing-store DPR; do not min/max-height
     here or the layout box will not match the bitmap and the wave + dot stretch. */
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.fp-band__visual--wave {
  min-height: clamp(220px, 28vw, 320px);
  justify-content: flex-end;
  align-self: center;
}

.fp-band__visual--wave .fp-wave__canvas {
  width: 100%;
  max-width: 100%;
}

/* Constellation — dim background grains + soft-glow interactive nodes (no panel chrome) */
.fp-const {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: clamp(200px, 26vw, 280px);
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.fp-const__sky {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  min-height: 200px;
  max-height: min(320px, 52vw);
  overflow: visible;
}

.fp-const__grains {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fp-const__grain {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(200, 185, 160, 0.22);
  box-shadow: none;
  pointer-events: none;
}

.fp-const__grain--g1 { left: 11%; top: 19%; width: 1px; height: 1px; opacity: 0.9; }
.fp-const__grain--g2 { left: 47%; top: 11%; width: 2px; height: 2px; opacity: 0.72; }
.fp-const__grain--g3 { left: 79%; top: 26%; width: 1px; height: 1px; opacity: 0.55; }
.fp-const__grain--g4 { left: 7%; top: 56%; width: 2px; height: 2px; opacity: 0.68; }
.fp-const__grain--g5 { left: 36%; top: 41%; width: 1px; height: 1px; opacity: 0.8; }
.fp-const__grain--g6 { left: 93%; top: 17%; width: 2px; height: 2px; opacity: 0.5; }
.fp-const__grain--g7 { left: 59%; top: 71%; width: 1px; height: 1px; opacity: 0.65; }
.fp-const__grain--g8 { left: 21%; top: 86%; width: 2px; height: 2px; opacity: 0.78; }
.fp-const__grain--g9 { left: 84%; top: 49%; width: 1px; height: 1px; opacity: 0.45; }
.fp-const__grain--g10 { left: 53%; top: 33%; width: 2px; height: 2px; opacity: 0.62; }
.fp-const__grain--g11 { left: 14%; top: 74%; width: 1px; height: 1px; opacity: 0.88; }
.fp-const__grain--g12 { left: 68%; top: 83%; width: 2px; height: 2px; opacity: 0.58; }
.fp-const__grain--g13 { left: 41%; top: 16%; width: 1px; height: 1px; opacity: 0.5; }
.fp-const__grain--g14 { left: 9%; top: 31%; width: 2px; height: 2px; opacity: 0.42; }
.fp-const__grain--g15 { left: 64%; top: 54%; width: 1px; height: 1px; opacity: 0.7; }
.fp-const__grain--g16 { left: 88%; top: 72%; width: 2px; height: 2px; opacity: 0.52; }
.fp-const__grain--g17 { left: 29%; top: 47%; width: 1px; height: 1px; opacity: 0.66; }
.fp-const__grain--g18 { left: 51%; top: 64%; width: 2px; height: 2px; opacity: 0.82; }
.fp-const__grain--g19 { left: 76%; top: 39%; width: 1px; height: 1px; opacity: 0.48; }
.fp-const__grain--g20 { left: 17%; top: 9%; width: 2px; height: 2px; opacity: 0.6; }
.fp-const__grain--g21 { left: 55%; top: 22%; width: 1px; height: 1px; opacity: 0.74; }
.fp-const__grain--g22 { left: 81%; top: 91%; width: 2px; height: 2px; opacity: 0.4; }
.fp-const__grain--g23 { left: 5%; top: 79%; width: 1px; height: 1px; opacity: 0.86; }
.fp-const__grain--g24 { left: 43%; top: 93%; width: 2px; height: 2px; opacity: 0.56; }
.fp-const__grain--g25 { left: 90%; top: 30%; width: 1px; height: 1px; opacity: 0.38; }
.fp-const__grain--g26 { left: 24%; top: 27%; width: 2px; height: 2px; opacity: 0.92; }
.fp-const__grain--g27 { left: 67%; top: 12%; width: 1px; height: 1px; opacity: 0.54; }
.fp-const__grain--g28 { left: 48%; top: 78%; width: 2px; height: 2px; opacity: 0.64; }
.fp-const__grain--g29 { left: 32%; top: 59%; width: 1px; height: 1px; opacity: 0.46; }
.fp-const__grain--g30 { left: 72%; top: 61%; width: 2px; height: 2px; opacity: 0.78; }

.fp-const__nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.fp-const__nodes .fp-const__node {
  pointer-events: auto;
}

.fp-const__node {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translate(-50%, -50%);
  overflow: visible;
}

/*
 * Active node: circular glow always on. Others: glow on hover/focus only. Auto-rotate ~4.5s; glow/dot ease 1s.
 */
.fp-const__node::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle closest-side at 50% 48%,
    rgba(255, 252, 248, 1) 0%,
    rgba(255, 238, 215, 0.95) 8%,
    rgba(255, 215, 170, 0.78) 22%,
    rgba(255, 190, 120, 0.52) 40%,
    rgba(230, 148, 32, 0.28) 62%,
    rgba(230, 148, 32, 0.1) 82%,
    rgba(230, 148, 32, 0) 100%
  );
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out,
    width 1s ease-in-out,
    height 1s ease-in-out;
}

.fp-const__node:hover::before,
.fp-const__node:focus-visible::before {
  opacity: 0.38;
  transform: translate(-50%, -50%) scale(1.06);
}

.fp-const__node.is-active::before {
  opacity: 0.46;
  transform: translate(-50%, -50%) scale(1.06);
}

.fp-const__node.is-active:hover::before,
.fp-const__node.is-active:focus-visible::before {
  width: 24px;
  height: 24px;
  opacity: 0.58;
  transform: translate(-50%, -50%) scale(1.14);
}

/*
 * Ten nodes trace a double-cut electric silhouette (neck top → body clockwise).
 * s1 headstock top … s10 upper horn right; auto-rotate follows this path.
 */
.fp-const__node--s1 { left: 50%; top: 6%; }
.fp-const__node--s2 { left: 36%; top: 14%; }
.fp-const__node--s3 { left: 44%; top: 32%; }
.fp-const__node--s4 { left: 26%; top: 42%; }
.fp-const__node--s5 { left: 32%; top: 56%; }
.fp-const__node--s6 { left: 30%; top: 74%; }
.fp-const__node--s7 { left: 50%; top: 89%; }
.fp-const__node--s8 { left: 70%; top: 72%; }
.fp-const__node--s9 { left: 66%; top: 52%; }
.fp-const__node--s10 { left: 74%; top: 34%; }

.fp-const__node:focus-visible {
  outline: 2px solid var(--clr-saffron);
  outline-offset: 3px;
}

.fp-const__node-dot {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: color-mix(in srgb, var(--primary) 58%, #ffffff);
  box-shadow: none;
  opacity: 0.58;
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out,
    background 0.35s ease-in-out;
}

.fp-const__node.is-active .fp-const__node-dot {
  opacity: 0.96;
}

.fp-const__node:hover .fp-const__node-dot,
.fp-const__node:focus-visible .fp-const__node-dot {
  transform: scale(1.15);
  opacity: 0.72;
}

.fp-const__node.is-active:hover .fp-const__node-dot,
.fp-const__node.is-active:focus-visible .fp-const__node-dot {
  transform: scale(1.2);
  opacity: 1;
}

/* Two-column layout (legacy; unused by stacked features) */
.feature-section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Empty placeholder for upcoming parts */
.feature-section__placeholder {
  min-height: 240px;
}

/* ── Copy column ────────────────────────────────────────────────────────── */
.feature-section__copy-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-saffron);
  margin-bottom: 18px;
  opacity: 0.75;
}

.feature-section__copy-text {
  font-size: 0.97rem;
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.feature-section__copy-text em {
  color: var(--clr-text);
  font-style: normal;
}

.feature-section__copy-text + .feature-section__copy-eyebrow {
  margin-top: 1.75rem;
}

/* #features anchor = demo fretboard (scroll past fixed navbar) */
.dq#features {
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

/* ── Stacked card carousel ──────────────────────────────────────────────── */
/*
  Layout idea: all cards share the same width (62% of container).
  They're layered with increasing `left` offsets so each card peeks
  out to the RIGHT of the one in front.

  Container = 100% of left grid column (overflow: hidden clips the stack neatly)
  Card 0 (front):  left 0      → visible 0 – 62%
  Card 1 (mid):    left 22%    → peek strip 62 – 84%  (22% of container)
  Card 2 (back):   left 40%    → peek strip 84 – 100% (16% of container)
*/
.card-carousel {
  position: relative;
  z-index: 0;
  height: clamp(200px, 22vw, 260px);
  width: 100%;
  max-width: 560px;
  /* Clip vertical bleed from fretboard art; horizontal peek still works within width */
  overflow: hidden;
}

/* Mini-section 1 carousel sits shorter for better rhythm balance */
.fp-band:first-of-type .card-carousel {
  height: clamp(156px, 17vw, 210px);
}

.carousel-card {
  position: absolute;
  top: 0;
  width: 62%;
  height: 94%;           /* slight height reduction so back-card top edge is visible */
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: block;
  overflow: visible; /* fretboard art can extend past card sides */
  cursor: pointer;
  transition:
    left        0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top         0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity     0.45s ease,
    height      0.45s ease,
    box-shadow  0.45s ease,
    border-color 0.45s ease;
}

/* Position 0 — front / active card */
.carousel-card[data-pos="0"] {
  left: 0;
  top: 0;
  height: 100%;
  z-index: 3;
  opacity: 1;
  border-color: rgba(230, 148, 32, 0.28);
  box-shadow:
    0 0 0 1px rgba(230, 148, 32, 0.12),
    0 20px 56px rgba(0, 0, 0, 0.55);
}

/* Position 1 — mid peek */
.carousel-card[data-pos="1"] {
  left: 10%;
  top: 5px;
  height: 92%;
  z-index: 2;
  opacity: 0.82;
  border-color: rgba(230, 148, 32, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.40);
}

/* Position 2 — back peek */
.carousel-card[data-pos="2"] {
  left: 18%;
  top: 10px;
  height: 84%;
  z-index: 1;
  opacity: 0.60;
  border-color: var(--clr-border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* Hover on back cards — glow invite */
.carousel-card[data-pos="1"]:hover,
.carousel-card[data-pos="2"]:hover {
  opacity: 1;
  border-color: rgba(230, 148, 32, 0.55);
  box-shadow:
    0 0 0 1px rgba(230, 148, 32, 0.20),
    0 0 32px rgba(230, 148, 32, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.40);
}

/* Card name tag — shown at top of each carousel card */
.carousel-card__name {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 148, 32, 0.45);
  user-select: none;
  transition: color 0.45s ease;
}

.carousel-card[data-pos="0"] .carousel-card__name {
  color: rgba(230, 148, 32, 0.80);
}

/* Fretboard graphic: 80% of card height, wider than card for side bleed */
.carousel-card__media {
  position: absolute;
  left: calc(50% - 15px);
  top: 57%;
  transform: translate(-50%, -50%);
  height: 118%;
  width: 260%;
  max-height: 118%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.carousel-card__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .feature-section {
    padding: 72px 0;
  }

  .feature-section--stack {
    padding: 56px 0 72px;
  }

  .feature-section__inner {
    padding: 0 24px;
  }

  .fp-band--alt {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-section__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-section__heading {
    margin-bottom: 36px;
  }

  .feature-section__heading--stack {
    margin-bottom: 32px;
  }

  .fp-band__row,
  .fp-band__row--wave {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fp-band:nth-of-type(even) .fp-band__text,
  .fp-band:nth-of-type(even) .fp-band__visual {
    order: initial;
  }

  .fp-band__visual--wave {
    justify-content: center;
  }

  .fp-const__sky {
    max-height: min(280px, 58vw);
    min-height: 180px;
  }
}
