:root {
  --ink: #172033;
  --muted: #5d697c;
  --soft: #f7f8fb;
  --paper: #ffffff;
  --line: #e7ebf2;
  --yellow: #ffcf33;
  --orange: #ff7a24;
  --blue: #1f8cff;
  --green: #24b47e;
  --pink: #ff6f91;
  --shadow: 0 22px 70px rgba(23, 32, 51, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 207, 51, 0.24), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(31, 140, 255, 0.16), transparent 25rem),
    linear-gradient(180deg, #fffdf4 0%, #ffffff 31rem);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 235, 242, 0.85);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand img {
  width: 78px;
}

.brand span {
  white-space: nowrap;
}

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

.nav-links a {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #f2f6ff;
  color: var(--ink);
}

.nav-links .nav-cta {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 122, 36, 0.2);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.2rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #a04400;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #201204;
  box-shadow: 0 16px 32px rgba(255, 122, 36, 0.26);
}

.button-secondary,
.button-card {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button-card {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 2rem -1rem -1.2rem 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(36, 180, 126, 0.18), rgba(31, 140, 255, 0.16));
  transform: rotate(3deg);
}

.portal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.portal-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: #172033;
}

.portal-topbar span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--yellow);
}

.portal-topbar span:nth-child(2) {
  background: var(--pink);
}

.portal-topbar span:nth-child(3) {
  background: var(--green);
}

.portal-content {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.portal-header-row,
.download-item,
.license-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.portal-header-row small,
.download-item small {
  display: block;
  color: var(--muted);
}

.status-pill {
  border-radius: 999px;
  background: rgba(36, 180, 126, 0.12);
  color: #067349;
  padding: 0.35rem 0.65rem;
  font-weight: 900;
  font-size: 0.8rem;
}

.download-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: #fbfcff;
}

.download-item.featured {
  background: #fff8df;
  border-color: #ffe49a;
}

.download-item button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0.45rem 0.65rem;
  font-weight: 900;
}

.music-icon {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}

.music-icon.blue {
  background: var(--blue);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.download-grid div {
  border-radius: var(--radius);
  background: #f3f7fb;
  padding: 0.8rem;
  text-align: center;
}

.download-grid strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.download-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.license-strip {
  border-radius: var(--radius);
  background: #eaf7f1;
  padding: 0.8rem;
  color: #086744;
}

.proof-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.06);
}

.proof-band div {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.proof-band strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 1.7rem;
}

.section-heading p:not(.eyebrow),
.license-copy p,
.conversion-band p,
.seo-section p {
  color: var(--muted);
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.section-heading.compact {
  max-width: 700px;
}

.benefit-grid,
.pricing-grid,
.seo-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-grid article,
.price-card,
.seo-columns article,
.theme-row article,
.steps li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.benefit-grid article,
.seo-columns article {
  padding: 1.25rem;
}

.icon {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: #fff2ba;
  padding: 0.4rem 0.6rem;
  color: #8a4d00;
  font-weight: 900;
  font-size: 0.8rem;
}

.offers-section {
  padding-top: 3.5rem;
}

.offer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offer-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0.65rem 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.offer-tabs button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem;
}

.price-card.is-hidden {
  display: none;
}

.price-card.is-featured {
  border-color: #ffd66d;
  background: linear-gradient(180deg, #fff8de 0%, #ffffff 54%);
  box-shadow: 0 18px 48px rgba(255, 122, 36, 0.13);
}

.price-label {
  align-self: flex-start;
  border-radius: 999px;
  background: #f0f5ff;
  padding: 0.35rem 0.6rem;
  color: #195ba7;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
}

.price-card p {
  color: var(--muted);
}

.price {
  margin: 0.5rem 0 0.9rem;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
}

.price-card .button {
  margin-top: auto;
}

.themes-section {
  padding-top: 3rem;
}

.theme-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.theme-row article {
  min-height: 210px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.95)),
    linear-gradient(135deg, rgba(255, 207, 51, 0.35), rgba(31, 140, 255, 0.16));
}

.theme-row span {
  display: inline-flex;
  margin-bottom: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.license-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.license-copy {
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.license-copy .eyebrow {
  color: var(--yellow);
}

.license-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.license-list {
  display: grid;
  gap: 0.85rem;
}

.license-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.1rem;
}

.license-list strong {
  display: block;
  font-size: 1.1rem;
}

.license-list span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 1.2rem;
}

.steps span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 950;
}

.conversion-band {
  width: min(1160px, calc(100% - 32px));
  margin: 1.5rem auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 207, 51, 0.9), rgba(255, 122, 36, 0.9)),
    #ffcf33;
  padding: 2rem;
  box-shadow: 0 22px 54px rgba(255, 122, 36, 0.2);
}

.conversion-band .eyebrow,
.conversion-band p {
  color: #3c2200;
}

.conversion-band h2 {
  max-width: 760px;
  color: #231302;
}

.conversion-band .button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.seo-section {
  padding-bottom: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 2rem;
  background: #111827;
  color: #fff;
}

.footer-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, auto);
  gap: 2rem;
}

.footer-brand img {
  width: 58px;
}

.footer-shell p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.footer-shell nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.sticky-cta.is-visible {
  display: flex;
}

.sticky-cta span {
  color: var(--ink);
  font-weight: 900;
}

.sticky-cta a {
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0.58rem 0.82rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .section-heading.split,
  .license-section,
  .conversion-band,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .proof-band,
  .pricing-grid,
  .theme-row,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid,
  .seo-columns {
    grid-template-columns: 1fr;
  }

  .footer-shell nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 60px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 68px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .conversion-band {
    align-items: stretch;
  }

  .hero-actions .button,
  .conversion-band .button {
    width: 100%;
  }

  .proof-band,
  .pricing-grid,
  .theme-row,
  .steps {
    grid-template-columns: 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    justify-content: space-between;
  }

  .sticky-cta span {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
