@import url("./styles.css");

:root {
  --panel-white: rgba(255, 255, 255, 0.98);
  --panel-gray: rgba(243, 245, 248, 0.98);
  --panel-card: rgba(255, 255, 255, 0.9);
  --panel-text: #17263b;
  --panel-muted: #5f6f85;
  --panel-line: rgba(23, 38, 59, 0.1);
  --section-lavender: rgba(166, 114, 255, 0.16);
  --section-violet: rgba(123, 77, 224, 0.1);
  --section-divider: rgba(123, 77, 224, 0.14);
}

.page-shell > .section {
  isolation: isolate;
  padding: 56px 0;
  color: var(--panel-text);
}

.page-shell > .section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    radial-gradient(circle at top left, var(--section-lavender), transparent 30%),
    radial-gradient(circle at 84% 18%, var(--section-violet), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 244, 255, 0.95) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--section-divider);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(123, 77, 224, 0.08),
    0 18px 42px rgba(90, 54, 168, 0.06);
  z-index: -1;
}

.page-shell > .section:nth-of-type(odd)::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(166, 114, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(123, 77, 224, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 255, 0.96) 100%);
}

.page-shell > .section:nth-of-type(even)::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(166, 114, 255, 0.14), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(123, 77, 224, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(252, 248, 255, 0.96) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.page-shell > .section:nth-of-type(odd) .eyebrow,
.page-shell > .section:nth-of-type(odd) .pricing-card__name,
.page-shell > .section:nth-of-type(odd) .step-number {
  color: #7b4de0;
}

.page-shell > .section:nth-of-type(odd) .card,
.page-shell > .section:nth-of-type(odd) .pricing-card,
.page-shell > .section:nth-of-type(odd) .waitlist-form,
.page-shell > .section:nth-of-type(odd) .faq-item {
  border-color: rgba(123, 77, 224, 0.1);
}

.page-shell > .section h2,
.page-shell > .section h3,
.page-shell > .section summary,
.page-shell > .section strong {
  color: var(--panel-text);
}

.page-shell > .section p,
.page-shell > .section li,
.page-shell > .section .product-shot__label,
.page-shell > .section .video-placeholder__label,
.page-shell > .section .testimonial-card span {
  color: var(--panel-muted);
}

.page-shell > .section p,
.hero p {
  font-size: 1.04rem;
}

.page-shell > .section .eyebrow,
.page-shell > .section .pricing-card__name,
.page-shell > .section .step-number {
  color: #d6941a;
}

.page-shell > .section .card,
.page-shell > .section .pricing-card,
.page-shell > .section .progress-panel,
.page-shell > .section .waitlist-form,
.page-shell > .section .faq-item,
.page-shell > .section .testimonial-card {
  border-color: var(--panel-line);
  background: var(--panel-card);
  backdrop-filter: none;
  box-shadow: 0 16px 36px rgba(17, 28, 42, 0.08);
}

.page-shell > .section .product-shot,
.page-shell > .section .video-placeholder {
  border-color: var(--panel-line);
  background:
    linear-gradient(135deg, rgba(122, 182, 255, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(17, 28, 42, 0.08);
}

.page-shell > .section .waitlist-form input {
  color: var(--panel-text);
  border-color: var(--panel-line);
  background: rgba(255, 255, 255, 0.98);
}

.page-shell > .section .waitlist-form input::placeholder {
  color: #8a97ab;
}

.page-shell > .section .button--secondary,
.page-shell > .section .button--ghost {
  color: var(--panel-text);
  border-color: var(--panel-line);
  background: rgba(23, 38, 59, 0.04);
}

.page-shell > .section .pricing-card--featured h3,
.page-shell > .section .pricing-card--featured p,
.page-shell > .section .pricing-card--featured li {
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-guitar-bg-v2.png") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 10, 120, 0.72) 0%,
    rgba(88, 28, 155, 0.6) 40%,
    rgba(45, 20, 160, 0.7) 100%
  );
  z-index: -1;
}

.hero .hero__content {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 32px;
}

.hero .hero__copy {
  width: min(100%, 920px);
  text-align: center;
}

.hero .hero__copy h1 {
  max-width: none;
}

.hero .hero__description {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.18rem;
  color: #ffffff;
}

.hero .hero__actions {
  justify-content: center;
}

.hero .hero__visuals {
  justify-items: center;
}

.hero .hero__visual-frame {
  margin-left: auto;
  margin-right: auto;
}

.nav-wrap .brand {
  flex: 0 0 auto;
}

.nav-wrap .brand__logo {
  display: block;
  width: auto;
  height: 52px;
}

.hero .nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
}

.hero .nav {
  margin-left: 0;
  justify-self: center;
}

.hero .nav a {
  color: #ffffff;
  font-weight: 700;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.why-layout__image {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.why-layout__frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.why-layout__image img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(4% 0 4% 0);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.22));
  margin: -4% 0;
}

.why-layout__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(123, 77, 224, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #4d348f;
  box-shadow: 0 18px 34px rgba(50, 31, 90, 0.16);
  backdrop-filter: blur(12px);
}

.why-layout__float span:last-child {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.why-layout__float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(123, 77, 224, 0.1);
  color: #7b4de0;
  flex-shrink: 0;
}

.why-layout__float-icon svg {
  width: 20px;
  height: 20px;
}

.why-layout__float--guitar {
  top: 9%;
  left: -18px;
}

.why-layout__float--notes {
  right: -22px;
  bottom: 12%;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.why-card__title h3 {
  margin: 0;
}

#why-fretrepz .why-card__title h3 {
  color: #5a36a8;
}

#key-benefits .why-card__title h3 {
  color: #5a36a8;
}

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(123, 77, 224, 0.1);
  color: #7b4de0;
  box-shadow: inset 0 0 0 1px rgba(123, 77, 224, 0.12);
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
}

#why-fretrepz .eyebrow {
  color: #7b4de0;
}

#why-fretrepz .section-heading > p:not(.eyebrow) {
  font-size: 1.18rem;
  line-height: 1.75;
}

#product-overview .video-wrap {
  margin-bottom: 56px;
}

#key-features .section-heading {
  margin-bottom: 0;
}

#key-features > .section-heading > p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.75;
}

.progress-stack {
  display: grid;
  gap: 48px;
}

.progress-panel--reverse .product-shot {
  order: -1;
}

#key-features::before {
  background:
    radial-gradient(circle at top left, rgba(166, 114, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(123, 77, 224, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 242, 255, 0.96) 100%);
}

#key-features h2,
#key-features h3,
#key-features strong {
  color: #2f2350;
}

#key-features p {
  color: #675b86;
}

#key-features .eyebrow {
  color: #7b4de0;
}

#key-features .progress-panel__content .eyebrow {
  font-size: 0.88rem;
}

#key-features .progress-panel__content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

#key-features .progress-panel__content > .section-heading > p:not(.eyebrow) {
  font-size: 0.92rem;
  line-height: 1.7;
}

#key-features .progress-list p {
  font-size: 1rem;
  line-height: 1.65;
}

#key-features .progress-panel {
  padding: 40px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

#key-features .progress-panel + .progress-panel {
  border-top: none;
}

#key-features .progress-bullet {
  background: #8b5cf6;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
}

#key-features .product-shot {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

#key-features .product-shot__img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  border: 1px solid rgba(123, 77, 224, 0.14);
  box-shadow: 0 18px 36px rgba(90, 54, 168, 0.12);
}

#key-features .progress-panel--detail {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: 24px;
}

#key-features .progress-panel--detail.progress-panel--reverse {
  grid-template-columns: minmax(0, 1.26fr) minmax(340px, 0.74fr);
}

#key-features .progress-panel--reverse .progress-panel__content {
  grid-column: 2;
  grid-row: 1;
}

#key-features .progress-panel--reverse .product-shot {
  grid-column: 1;
  grid-row: 1;
}

#key-features .product-shot--detail {
  align-self: start;
  align-items: stretch;
  justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: 0;
}

#key-features .progress-panel--reverse .product-shot--detail {
  width: 90%;
  margin-left: 0;
  margin-right: auto;
}

#key-features .product-shot--detail .product-shot__img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: fill;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 40px rgba(90, 54, 168, 0.18));
}

#key-features .product-shot__label {
  color: rgba(47, 35, 80, 0.55);
}

#key-benefits::before {
  background:
    radial-gradient(circle at top left, rgba(166, 114, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(123, 77, 224, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 255, 0.96) 100%);
}

#key-benefits .eyebrow {
  color: #7b4de0;
}

#faq .eyebrow {
  color: #7b4de0;
}

#key-benefits .section-heading > p:not(.eyebrow) {
  font-size: 1.22rem;
  line-height: 1.75;
}

#key-benefits .card {
  border-color: rgba(123, 77, 224, 0.1);
}

#product-overview::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(142, 92, 235, 0.24), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(108, 70, 210, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(242, 232, 255, 0.98) 0%, rgba(232, 219, 252, 0.96) 100%);
}

#pricing::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(142, 92, 235, 0.24), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(108, 70, 210, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(242, 232, 255, 0.98) 0%, rgba(232, 219, 252, 0.96) 100%);
}

#product-overview h2,
#product-overview h3,
#product-overview summary,
#product-overview strong {
  color: #2f2350;
}

#product-overview p,
#product-overview .video-placeholder__label {
  color: #675b86;
}

#product-overview .eyebrow,
#product-overview .step-number {
  color: #7b4de0;
}

#product-overview .section-heading > p:not(.eyebrow) {
  font-size: 1.12rem;
  line-height: 1.75;
}

#product-overview .card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(123, 77, 224, 0.16);
  box-shadow: 0 18px 38px rgba(90, 54, 168, 0.12);
}

#product-overview .video-placeholder {
  background:
    linear-gradient(135deg, rgba(142, 92, 235, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.8);
  border-color: rgba(123, 77, 224, 0.16);
  box-shadow: 0 18px 38px rgba(90, 54, 168, 0.12);
}

#pricing .pricing-grid {
  grid-template-columns: minmax(0, 760px);
  max-width: 760px;
  margin: 0 auto;
}

#pricing .pricing-card--solo {
  background:
    linear-gradient(180deg, rgba(123, 77, 224, 0.12), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.98);
}

#pricing .pricing-badge {
  background: rgba(123, 77, 224, 0.12);
  color: #5c39b7;
}

#pricing .pricing-price-row h3,
#pricing .pricing-price-row h3 span {
  color: #7b4de0;
}

#pricing .pricing-price-note,
#pricing .pricing-card__summary {
  color: #675b86;
}

#pricing .pricing-feature-list li {
  color: #4d5f78;
}

#pricing .pricing-feature-list li::before {
  background: #8b5cf6;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.12);
}

#pricing .pricing-meta__item {
  border-color: rgba(123, 77, 224, 0.12);
  background: rgba(123, 77, 224, 0.06);
}

#pricing .pricing-meta__item span {
  color: #7b4de0;
}

#pricing .pricing-meta__item strong {
  color: #2f2350;
}

.page-shell > .testimonials {
  position: relative;
  isolation: isolate;
  padding: 72px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -18%, rgba(171, 109, 255, 0.28), transparent 40%),
    radial-gradient(circle at 16% 28%, rgba(118, 62, 214, 0.2), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(145, 86, 240, 0.18), transparent 30%),
    linear-gradient(90deg, #2b125d 0%, #4a2191 14%, #4b2293 86%, #2c145f 100%),
    linear-gradient(180deg, #51259d 0%, #34176d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.page-shell > .testimonials::before {
  display: none;
}

.page-shell > .testimonials .section-heading {
  width: min(calc(100% - 32px), 720px);
  margin: 0 auto 32px;
}

.page-shell > .testimonials h2,
.page-shell > .testimonials h3 {
  color: #fbf7ff;
}

.page-shell > .testimonials p {
  color: #fbf7ff;
}

.page-shell > .testimonials .section-heading .eyebrow {
  color: #ffffff;
}

.page-shell > .testimonials .section-heading > p:not(.eyebrow) {
  color: #d5c3f7;
}

.page-shell > .testimonials .testimonials-marquee {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.page-shell > .testimonials .testimonials-track {
  gap: 16px;
}

.page-shell > .testimonials .testimonial-card {
  width: min(330px, calc(100vw - 72px));
  min-height: 392px;
  flex-shrink: 0;
  padding: 0;
  border-color: rgba(229, 210, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(98, 58, 171, 0.72), rgba(74, 38, 137, 0.82)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(20, 8, 54, 0.16);
}

.page-shell > .testimonials .testimonial-card__media {
  --media-tint-a: rgba(125, 77, 224, 0.36);
  --media-tint-b: rgba(36, 20, 76, 0.7);
  --art-filter: none;
  position: relative;
  min-height: 214px;
  background:
    linear-gradient(140deg, var(--media-tint-a) 0%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(120deg, #5c33b8 0%, var(--media-tint-b) 100%);
}

.page-shell > .testimonials .testimonial-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'%3E%3Crect width='400' height='280' fill='%23341a73'/%3E%3Ccircle cx='92' cy='74' r='56' fill='%23ffffff' fill-opacity='.08'/%3E%3Ccircle cx='334' cy='56' r='44' fill='%23ffffff' fill-opacity='.08'/%3E%3Ccircle cx='312' cy='212' r='76' fill='%230f0927' fill-opacity='.18'/%3E%3Cellipse cx='212' cy='252' rx='120' ry='18' fill='%230f0927' fill-opacity='.34'/%3E%3Ccircle cx='252' cy='92' r='29' fill='%23e7bc94'/%3E%3Cpath d='M225 81c5-21 24-34 46-34 23 0 42 15 46 38-10 4-18 12-25 22-24-7-49-8-75-2 1-9 4-16 8-24Z' fill='%2323182f'/%3E%3Cpath d='M216 132c12-19 34-30 57-30 19 0 36 7 49 21l-10 93h-93l-10-77Z' fill='%23272f4c'/%3E%3Cellipse cx='169' cy='171' rx='50' ry='39' fill='%23b77638'/%3E%3Crect x='159' y='156' width='96' height='13' rx='6.5' transform='rotate(-20 159 156)' fill='%23cc8a4b'/%3E%3Ccircle cx='140' cy='186' r='4' fill='%23f4d377'/%3E%3Ccircle cx='154' cy='179' r='4' fill='%23f4d377'/%3E%3Ccircle cx='166' cy='172' r='4' fill='%23f4d377'/%3E%3Cpath d='M213 142c-26 8-47 21-60 40-10 14-15 28-16 40 18-7 38-7 58 1 13-19 21-47 18-81Z' fill='%231c1834'/%3E%3Cpath d='M254 140c18 9 35 25 49 48 7 12 12 24 15 37 17-8 33-9 50-4-5-20-15-39-29-55-17-19-36-31-57-35-15-1-24 2-28 9Z' fill='%231c1834'/%3E%3Cpath d='M241 114c-11 8-17 19-19 33 13 1 29-1 46-6-4-14-11-24-21-32h-6Z' fill='%23413134' fill-opacity='.52'/%3E%3C/svg%3E") center / cover no-repeat;
  filter: var(--art-filter);
  transform: scale(1.02);
}

.page-shell > .testimonials .testimonial-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 20, 0.02) 0%, rgba(8, 5, 20, 0.12) 52%, rgba(8, 5, 20, 0.72) 100%);
}

.page-shell > .testimonials .testimonial-card__media--alex {
  --media-tint-a: rgba(255, 184, 77, 0.22);
  --media-tint-b: rgba(41, 18, 84, 0.74);
  --art-filter: saturate(1.02);
}

.page-shell > .testimonials .testimonial-card__media--david {
  --media-tint-a: rgba(80, 160, 255, 0.18);
  --media-tint-b: rgba(30, 16, 70, 0.5);
}

.page-shell > .testimonials .testimonial-card__media--david::before {
  background: url("assets/david-d.png") center 20% / cover no-repeat;
  filter: none;
}

.page-shell > .testimonials .testimonial-card__media--chili {
  --media-tint-a: rgba(140, 80, 90, 0.18);
  --media-tint-b: rgba(30, 16, 70, 0.5);
}

.page-shell > .testimonials .testimonial-card__media--chili::before {
  background: url("assets/chili-n.png") center 45% / cover no-repeat;
  filter: none;
}

.page-shell > .testimonials .testimonial-card__media--katherine {
  --media-tint-a: rgba(200, 160, 80, 0.18);
  --media-tint-b: rgba(30, 16, 70, 0.5);
}

.page-shell > .testimonials .testimonial-card__media--katherine::before {
  background: url("assets/katherine-m.png") center 30% / cover no-repeat;
  filter: none;
}

.page-shell > .testimonials .testimonial-card__media--darren {
  --media-tint-a: rgba(180, 200, 80, 0.18);
  --media-tint-b: rgba(30, 16, 70, 0.5);
}

.page-shell > .testimonials .testimonial-card__media--darren::before {
  background: url("assets/darren-d.png") center 40% / cover no-repeat;
  filter: none;
}

.page-shell > .testimonials .testimonial-card__media--jordan {
  --media-tint-a: rgba(91, 174, 255, 0.22);
  --media-tint-b: rgba(30, 16, 70, 0.74);
  --art-filter: hue-rotate(12deg) saturate(1.08);
}

.page-shell > .testimonials .testimonial-card__media--chris {
  --media-tint-a: rgba(124, 229, 196, 0.2);
  --media-tint-b: rgba(28, 18, 68, 0.74);
  --art-filter: hue-rotate(-14deg) saturate(1.05);
}

.page-shell > .testimonials .testimonial-card__media--sam {
  --media-tint-a: rgba(255, 152, 160, 0.22);
  --media-tint-b: rgba(38, 18, 79, 0.74);
  --art-filter: hue-rotate(24deg) saturate(1.04);
}

.page-shell > .testimonials .testimonial-card__overlay {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.page-shell > .testimonials .testimonial-card__overlay .testimonial-card__rating {
  color: #ffcf72;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.page-shell > .testimonials .testimonial-card__name {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.page-shell > .testimonials .testimonial-card__body {
  display: grid;
  gap: 12px;
  padding: 20px 22px 22px;
}

.page-shell > .testimonials .testimonial-card p {
  color: #f8f4ff;
}

.page-shell > .testimonials .testimonial-card__body span {
  color: #d9c5ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.page-shell > .footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-left: 24px;
  padding-right: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.page-shell > .footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 114, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(48, 24, 107, 0.98) 0%, rgba(31, 15, 72, 0.98) 100%);
  border-top: 1px solid rgba(229, 210, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  z-index: -1;
}

.page-shell > .footer p,
.page-shell > .footer .footer__links a {
  color: #d5c3f7;
}

.page-shell > .footer .footer__brand {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-shell > .footer .footer__meta {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.page-shell > .footer .footer__links {
  gap: 26px;
  justify-content: center;
}

.page-shell > .footer .footer__links a {
  font-size: 1.08rem;
  font-weight: 600;
}

.page-shell > .footer .footer__contact {
  margin: 0;
  font-size: 0.98rem;
  color: #d5c3f7;
  text-align: center;
}

.page-shell > .footer .footer__legal {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #d5c3f7;
  text-align: center;
}

.page-shell > .footer .footer__legal a {
  color: #d5c3f7;
  text-decoration: none;
}

.page-shell > .footer .footer__legal a:hover,
.page-shell > .footer .footer__legal a:focus-visible {
  color: #fbf7ff;
}

.page-shell > .footer .footer__tagline {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fbf7ff;
}

.page-shell > .footer .brand__logo {
  display: block;
  width: auto;
  height: 92px;
  filter: drop-shadow(0 8px 22px rgba(5, 2, 18, 0.5));
}

.page-shell > .footer .footer__links a:hover,
.page-shell > .footer .footer__links a:focus-visible {
  color: #fbf7ff;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-layout__float {
    padding: 10px 14px;
  }

  .why-layout__float span:last-child {
    font-size: 0.82rem;
  }

  .why-layout__float--guitar {
    left: 8px;
  }

  .why-layout__float--notes {
    right: 8px;
    bottom: 8%;
  }

  .progress-panel--reverse .product-shot {
    order: initial;
  }

  #key-features .progress-panel--detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #key-features .product-shot--detail {
    width: 100%;
    margin-left: 0;
  }

}

@media (max-width: 720px) {
  .page-shell > .section {
    padding: 40px 0;
  }

  .nav-wrap .brand__logo {
    height: 40px;
  }

  .page-shell > .footer .brand__logo {
    height: 80px;
  }

  .why-layout__float {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin: 12px 0 0;
  }

  .why-layout__float--notes {
    margin-left: auto;
  }

  .page-shell > .testimonials .testimonial-card {
    min-height: 360px;
  }

  .page-shell > .testimonials .testimonial-card__media {
    min-height: 192px;
  }
}
