:root {
  --ink: #372b2b;
  --blood: #a70b0b;
  --oxblood: #850a0a;
  --sun: #f5d547;
  --mist: #8aa2a9;
  --white: #fffaf2;
  --black: #130d0d;
  --glass: rgb(255 250 242 / 0.1);
  --glass-strong: rgb(55 43 43 / 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

::selection {
  color: var(--ink);
  background: var(--sun);
}

.font-display {
  font-family: "Space Grotesk", sans-serif;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  display: grid;
}

.w-full {
  width: 100%;
}

.max-w-7xl {
  max-width: 80rem;
}

.min-h-screen {
  min-height: 100vh;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.px-5 {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-animate="about-logo"].reveal-ready {
  transform: translateX(-28px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translate(0);
  will-change: auto;
}

.logo-float {
  animation: logo-float 3.4s ease-in-out infinite alternate;
}

@keyframes logo-float {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-10px) rotate(1.4deg);
  }
}

.glass-surface,
.site-nav,
.availability {
  border: 1px solid rgb(255 250 242 / 0.18);
  background: linear-gradient(135deg, rgb(255 250 242 / 0.16), rgb(255 250 242 / 0.05));
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.22), inset 0 1px 0 rgb(255 255 255 / 0.12);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-nav {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1120px, calc(100vw - 28px));
  min-height: 62px;
  padding: 10px 12px 10px 16px;
  background: rgb(19 13 13 / 0.42);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 44px;
  overflow: hidden;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.brand-logo-frame,
.footer-brand-logo-frame,
.about-logo-picture,
.brand-logo,
.footer-brand-logo,
.about-logo-image {
  display: block;
}

.brand-logo-frame,
.footer-brand-logo-frame {
  overflow: hidden;
}

.about-logo-picture {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.brand-logo,
.footer-brand-logo {
  object-fit: cover;
  object-position: center;
}

.brand-logo-frame,
.brand-logo {
  width: 150px;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 250 242 / 0.8);
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgb(255 250 242 / 0.12);
  outline: none;
  transform: translateY(-1px);
}

.availability {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border-color: rgb(245 213 71 / 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgb(167 11 11 / 0.38);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.availability .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgb(245 213 71 / 0.16);
}

.availability-short {
  display: none;
}

.availability:hover,
.availability:focus-visible {
  background: rgb(167 11 11 / 0.52);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(245 213 71 / 0.22);
  border-radius: 6px;
  color: var(--sun);
  background: rgb(255 250 242 / 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgb(245 213 71 / 0.38);
  background: rgb(245 213 71 / 0.13);
  outline: none;
  transform: translateY(-1px);
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: rgb(19 13 13 / 0.84);
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu a {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: rgb(255 250 242 / 0.78);
  font-size: 0.85rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.mobile-menu .mobile-status {
  grid-column: 1 / -1;
  gap: 10px;
  color: var(--sun);
  background: rgb(167 11 11 / 0.24);
}

.mobile-menu .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgb(245 213 71 / 0.14);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--white);
  background: rgb(255 250 242 / 0.12);
  outline: none;
}

.site-nav.is-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.reviews-section,
.about-section,
.workflow-section,
.pricing-section,
.software-section,
.contact-section,
.reference-hero {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.hero-video,
.hero-tint,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-tint {
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.68), rgb(0 0 0 / 0.28) 42%, rgb(0 0 0 / 0.74)),
    radial-gradient(circle at 50% 48%, rgb(0 0 0 / 0.08), rgb(0 0 0 / 0.44) 72%);
  pointer-events: none;
}

.hero-noise {
  z-index: 2;
  opacity: 0.18;
  background-image: repeating-linear-gradient(0deg, rgb(255 255 255 / 0.07) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 1120px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 128px 20px 86px;
}

.hero-copy-block {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
  min-width: 0;
  text-align: center;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title {
  width: 100%;
  max-width: min(900px, 92vw);
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.06;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-title .line {
  display: block;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgb(255 250 242 / 0.78);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 18px 42px rgb(245 213 71 / 0.18);
}

.secondary-button {
  color: var(--white);
}

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

.primary-button:hover,
.primary-button:focus-visible {
  background: #ffe875;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgb(255 250 242 / 0.34);
  background: rgb(255 250 242 / 0.13);
}

.hero-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  min-height: 56px;
  margin-top: 26px;
  padding: 0 18px;
  border-radius: 8px;
  color: rgb(255 250 242 / 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-panel strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-panel span {
  color: var(--sun);
  text-transform: uppercase;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #181414;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgb(255 250 242 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 250 242 / 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  pointer-events: none;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 34px;
  padding: 86px 20px;
}

.reviews-heading {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.reviews-heading .section-label {
  margin-bottom: 16px;
  background: rgb(255 250 242 / 0.08);
}

.reviews-title {
  margin: 0;
  color: rgb(255 250 242 / 0.96);
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 0.98;
}

.reviews-heading p:last-child {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgb(255 250 242 / 0.48);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.7;
}

.reviews-carousel {
  display: grid;
  gap: 18px;
  padding: 0;
  border-radius: 8px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-stage {
  position: relative;
  min-height: 318px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 318px;
  align-content: start;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgb(255 250 242 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(167 11 11 / 0.13), transparent 44%),
    rgb(19 13 13 / 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.review-slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-meta {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.review-person {
  margin: 0;
  color: var(--sun);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.review-date {
  margin: 0;
  color: rgb(255 250 242 / 0.42);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.review-stars {
  flex: 0 0 auto;
  color: var(--sun);
  font-size: 2.15rem;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 22px rgb(245 213 71 / 0.26);
}

.review-quote {
  max-width: 900px;
  margin: 0;
  color: rgb(255 250 242 / 0.92);
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.24;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.review-dots button {
  border: 1px solid rgb(255 250 242 / 0.14);
  color: var(--sun);
  background: rgb(255 250 242 / 0.06);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
}

.review-dots button:hover,
.review-dots button:focus-visible,
.review-dots button.is-active {
  border-color: rgb(245 213 71 / 0.38);
  background: rgb(245 213 71 / 0.18);
  outline: none;
}

.review-dots button.is-active {
  width: 26px;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(to bottom, #181414 0%, var(--ink) 30%, var(--ink) 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 250 242 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 250 242 / 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  gap: 48px;
  padding: 96px 20px;
}

.about-logo-wrap {
  display: grid;
  justify-items: center;
}

.about-logo {
  position: relative;
  display: grid;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-color: rgb(245 213 71 / 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 46%, rgb(245 213 71 / 0.18), transparent 32%),
    rgb(19 13 13 / 0.34);
  box-shadow:
    0 0 0 1px rgb(255 250 242 / 0.07),
    0 0 54px rgb(167 11 11 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.about-logo-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.about-content {
  display: grid;
  max-width: 560px;
  gap: 20px;
}

.about-content .section-label {
  margin-bottom: 6px;
  background: rgb(255 250 242 / 0.08);
}

.about-title {
  margin: 0;
  color: rgb(255 250 242 / 0.95);
  font-size: 2.9rem;
  line-height: 1.05;
}

.about-subtitle {
  margin: 0;
  color: rgb(255 250 242 / 0.88);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.about-copy {
  max-width: 520px;
  margin: 0;
  color: rgb(255 250 242 / 0.62);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.85;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 56px;
  margin-top: 18px;
}

.stat-item {
  display: grid;
  gap: 8px;
}

.stat-item strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.1rem);
  line-height: 0.95;
}

.stat-item span {
  color: rgb(255 250 242 / 0.54);
  font-size: 0.92rem;
  font-weight: 900;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.workflow-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 44px;
  padding: 96px 20px;
}

.workflow-header {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.workflow-title {
  margin: 0;
  color: rgb(255 250 242 / 0.96);
  font-size: clamp(2.7rem, 8vw, 5.5rem);
  line-height: 0.96;
}

.workflow-intro {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgb(255 250 242 / 0.46);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.workflow-card {
  position: relative;
  display: flex;
  height: 100%;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.12), rgb(255 250 242 / 0.04)),
    rgb(19 13 13 / 0.32);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.workflow-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), transparent);
  opacity: 0.24;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.workflow-card:hover {
  border-color: rgb(245 213 71 / 0.36);
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.16), rgb(167 11 11 / 0.12)),
    rgb(19 13 13 / 0.38);
  box-shadow: 0 26px 70px rgb(0 0 0 / 0.28), 0 0 34px rgb(245 213 71 / 0.08);
  transform: translateY(-6px);
}

.workflow-card:hover::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.workflow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.workflow-step {
  color: rgb(255 250 242 / 0.42);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.workflow-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(245 213 71 / 0.2);
  border-radius: 8px;
  color: var(--sun);
  background: rgb(167 11 11 / 0.22);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.workflow-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.workflow-card:hover .workflow-icon {
  color: var(--white);
  background: rgb(245 213 71 / 0.22);
  transform: translateY(-2px) scale(1.04);
}

.workflow-card h3 {
  margin: 0;
  color: var(--sun);
  font-size: clamp(1.42rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.15;
}

.workflow-card p {
  margin: 14px 0 0;
  color: rgb(255 250 242 / 0.42);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(to bottom, var(--ink), #342929);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 250 242 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 250 242 / 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
  pointer-events: none;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 34px;
  padding: 96px 20px;
}

.pricing-header {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto 8px;
  text-align: center;
}

.pricing-header .section-label {
  margin: 0 0 16px;
  color: var(--sun);
  background: rgb(255 250 242 / 0.08);
}

.pricing-title {
  margin: 0;
  color: rgb(255 250 242 / 0.96);
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 0.96;
}

.pricing-header p,
.bundle-header p,
.pricing-note span {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgb(255 250 242 / 0.52);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(860px, 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(245 213 71 / 0.1), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.22);
}

.pricing-note strong {
  flex: 0 0 auto;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note span {
  margin: 0;
  font-size: 0.9rem;
  text-align: right;
}

.rate-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rate-card,
.bundle-card,
.pricing-cta {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.11), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.28);
}

.rate-card,
.bundle-card {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  padding: 22px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.rate-card {
  gap: 18px;
  min-height: 330px;
}

.rate-card::after,
.bundle-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), transparent);
  opacity: 0.24;
  transform: scaleX(0.38);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.rate-card:hover,
.bundle-card:hover {
  border-color: rgb(245 213 71 / 0.34);
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.15), rgb(167 11 11 / 0.11)),
    rgb(19 13 13 / 0.34);
  box-shadow: 0 26px 70px rgb(0 0 0 / 0.24);
  transform: translateY(-5px);
}

.rate-card:hover::after,
.bundle-card:hover::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.rate-card-top {
  display: grid;
  gap: 12px;
}

.rate-card-top span,
.bundle-tag {
  width: fit-content;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rate-card-top strong {
  display: grid;
  gap: 5px;
  color: var(--sun);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 0.94;
}

.rate-card-top small {
  color: rgb(255 250 242 / 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rate-card p,
.bundle-card p {
  margin: 0;
  color: rgb(255 250 242 / 0.48);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.65;
}

.rate-card .rate-summary {
  color: rgb(255 250 242 / 0.78);
}

.rate-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rate-card li {
  position: relative;
  padding-left: 18px;
  color: rgb(255 250 242 / 0.66);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.rate-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sun);
}

.bundle-header {
  display: grid;
  justify-items: center;
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
}

.bundle-header h3 {
  margin: 0;
  color: var(--sun);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1;
}

.bundle-card {
  gap: 16px;
  min-height: 300px;
}

.bundle-featured {
  border-color: rgb(245 213 71 / 0.36);
  background:
    linear-gradient(145deg, rgb(245 213 71 / 0.12), rgb(167 11 11 / 0.16)),
    rgb(19 13 13 / 0.34);
}

.bundle-card h4 {
  margin: 0;
  color: var(--sun);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.bundle-meta {
  color: rgb(255 250 242 / 0.72);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.5;
}

.bundle-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
}

.bundle-price span {
  color: var(--sun);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.65rem, 5vw, 3.55rem);
  font-weight: 700;
  line-height: 0.9;
}

.bundle-price s {
  color: rgb(255 250 242 / 0.44);
  font-size: 0.9rem;
  font-weight: 900;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
}

.pricing-cta p {
  margin: 0;
  color: rgb(255 250 242 / 0.78);
  font-size: 1rem;
  font-weight: 900;
}

.pricing-cta .primary-button {
  flex: 0 0 auto;
}

.terms-panel {
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.1), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.28);
}

.terms-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 112px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.terms-panel summary::-webkit-details-marker {
  display: none;
}

.terms-panel summary:hover .terms-toggle,
.terms-panel summary:focus-visible .terms-toggle {
  border-color: rgb(245 213 71 / 0.42);
  background: rgb(245 213 71 / 0.13);
}

.terms-panel summary:focus-visible {
  outline: 2px solid rgb(245 213 71 / 0.62);
  outline-offset: -4px;
}

.terms-summary-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.terms-label {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.terms-summary-copy strong {
  color: rgb(255 250 242 / 0.94);
  font-size: clamp(1.42rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.12;
}

.terms-summary-copy span:last-child {
  max-width: 680px;
  color: rgb(255 250 242 / 0.5);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.65;
}

.terms-toggle {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(245 213 71 / 0.22);
  border-radius: 8px;
  background: rgb(167 11 11 / 0.24);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.terms-toggle::before,
.terms-toggle::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--sun);
  transition: transform 180ms ease;
}

.terms-toggle::after {
  transform: rotate(90deg);
}

.terms-panel[open] .terms-toggle {
  transform: rotate(180deg);
}

.terms-panel[open] .terms-toggle::after {
  transform: rotate(0deg);
}

.terms-content {
  padding: 0 22px 24px;
  border-top: 1px solid rgb(255 250 242 / 0.12);
  animation: terms-reveal 220ms ease both;
}

.terms-list {
  counter-reset: terms;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}

.terms-list li {
  counter-increment: terms;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 14px;
  padding: 17px 0;
  border-top: 1px solid rgb(255 250 242 / 0.08);
}

.terms-list li:nth-child(-n + 2) {
  border-top: 0;
}

.terms-list li::before {
  content: counter(terms, decimal-leading-zero);
  color: rgb(255 250 242 / 0.26);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
}

.terms-list h4 {
  margin: 0;
  color: var(--sun);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.22;
}

.terms-list p {
  grid-column: 2;
  margin: 0;
  color: rgb(255 250 242 / 0.48);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.62;
}

.terms-note {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgb(245 213 71 / 0.14);
  border-radius: 8px;
  color: rgb(255 250 242 / 0.66);
  background: rgb(245 213 71 / 0.06);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

@keyframes terms-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.devex-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(245 213 71 / 0.09), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.3);
}

.devex-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.devex-label {
  margin: 0;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.devex-copy h3 {
  margin: 0;
  color: rgb(255 250 242 / 0.96);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.devex-copy p:last-child {
  margin: 0;
  color: rgb(255 250 242 / 0.5);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.65;
}

.devex-copy strong {
  color: rgb(255 250 242 / 0.9);
}

.devex-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 12px;
}

.devex-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.devex-field > span:first-child {
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.devex-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgb(255 250 242 / 0.14);
  border-radius: 8px;
  color: rgb(255 250 242 / 0.5);
  background: rgb(255 250 242 / 0.055);
  transition: border-color 180ms ease, background 180ms ease;
}

.devex-input-wrap:focus-within {
  border-color: rgb(245 213 71 / 0.48);
  background: rgb(255 250 242 / 0.08);
}

.devex-input-wrap input {
  width: 100%;
  min-width: 0;
  appearance: textfield;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
}

.devex-input-wrap input::-webkit-outer-spin-button,
.devex-input-wrap input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.devex-rate {
  display: grid;
  min-width: 92px;
  min-height: 58px;
  place-items: center;
  padding: 9px 12px;
  border: 1px solid rgb(245 213 71 / 0.2);
  border-radius: 8px;
  background: rgb(167 11 11 / 0.2);
}

.devex-rate span,
.devex-rate strong {
  line-height: 1;
}

.devex-rate span {
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
}

.devex-rate strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.devex-result {
  grid-column: 2;
  display: grid;
  gap: 12px;
  margin: -6px 0 0;
  color: rgb(255 250 242 / 0.64);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.devex-result p {
  margin: 0;
}

.devex-tax-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.devex-tax-breakdown div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgb(245 213 71 / 0.16);
  border-radius: 8px;
  background: rgb(255 250 242 / 0.045);
  text-align: left;
}

.devex-tax-breakdown dt,
.devex-tax-breakdown dd {
  margin: 0;
}

.devex-tax-breakdown dt {
  color: rgb(255 250 242 / 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.devex-tax-breakdown dd {
  margin-top: 5px;
  color: var(--sun);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.software-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.software-inner {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 44px;
  padding: 96px 20px;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-title {
  margin: 0;
  color: var(--sun);
  font-size: clamp(2.55rem, 7vw, 4.9rem);
  line-height: 1;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.software-card {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: 230px auto 1fr;
  gap: 18px;
  align-content: stretch;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.1), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.26);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.software-card:hover {
  border-color: rgb(245 213 71 / 0.34);
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.13), rgb(167 11 11 / 0.1)),
    rgb(19 13 13 / 0.3);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.24);
  transform: translateY(-5px);
}

.software-art {
  display: grid;
  width: 100%;
  height: 230px;
  place-items: center;
  border-radius: 6px;
  background: transparent;
}

.software-logo {
  display: block;
  width: min(250px, 92%);
  max-height: 224px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgb(0 0 0 / 0.36));
  transition: transform 220ms ease, filter 220ms ease;
}

.software-card:hover .software-logo {
  filter: drop-shadow(0 28px 38px rgb(0 0 0 / 0.42));
  transform: translateY(-4px) scale(1.055);
}

.software-logo-musescore {
  width: min(236px, 90%);
  border-radius: 28px;
}

.software-logo-fl {
  width: min(230px, 88%);
}

.software-logo-reaper {
  width: min(226px, 86%);
  border-radius: 6px;
}

.software-card h3 {
  margin: 0;
  color: var(--sun);
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
}

.software-card p {
  margin: 0;
  color: rgb(255 250 242 / 0.4);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.software-card strong {
  color: rgb(255 250 242 / 0.9);
  font-weight: 900;
}

.contact-section {
  color: var(--white);
  background: #342929;
}

.contact-inner {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 60px;
  padding: 74px 20px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 310px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}

.footer-brand h2 {
  margin: 0;
  line-height: 0;
}

.footer-brand-logo {
  width: 176px;
  height: 54px;
}

.footer-brand-logo-frame {
  width: 176px;
  height: 54px;
}

.contact-copy p,
.contact-copy a,
.footer-links a {
  color: rgb(255 250 242 / 0.48);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.contact-copy p {
  margin: 0;
}

.contact-copy a,
.footer-links a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-copy a:hover,
.contact-copy a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sun);
  outline: none;
  transform: translateX(2px);
}

.footer-link-groups {
  display: grid;
  justify-self: end;
  width: min(420px, 100%);
  min-width: min(420px, 100%);
  justify-items: start;
}

.footer-links {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 8px 24px;
}

.footer-links a {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  border-radius: 6px;
}

.footer-rule {
  height: 1px;
  background: rgb(255 250 242 / 0.12);
}

.footer-wordmark {
  margin: 0;
  color: rgb(255 250 242 / 0.18);
  font-size: clamp(4.4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  white-space: nowrap;
}

.reference-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #130d0d 0%, var(--ink) 48%, #342929 100%);
}

.reference-main {
  min-height: 100vh;
}

.reference-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.reference-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 250 242 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 250 242 / 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, black, transparent 74%);
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 74%);
  pointer-events: none;
}

.reference-shell {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 34px;
  padding: 148px 20px 86px;
}

.reference-copy {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.reference-copy .section-label {
  margin-bottom: 16px;
  background: rgb(255 250 242 / 0.08);
}

.reference-copy h1 {
  margin: 0;
  color: rgb(255 250 242 / 0.96);
  font-size: clamp(2.8rem, 8vw, 5.7rem);
  line-height: 0.96;
}

.reference-copy p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgb(255 250 242 / 0.58);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.soundcloud-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 242 / 0.1), rgb(255 250 242 / 0.035)),
    rgb(19 13 13 / 0.3);
}

.soundcloud-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.soundcloud-card-top span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.soundcloud-card-top h2 {
  margin: 6px 0 0;
  color: rgb(255 250 242 / 0.94);
  font-size: clamp(1.6rem, 4vw, 2.65rem);
  line-height: 1.05;
}

.soundcloud-track-list {
  display: grid;
  gap: 16px;
}

.soundcloud-frame-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(245 213 71 / 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(167 11 11 / 0.14), transparent 44%),
    rgb(19 13 13 / 0.38);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.soundcloud-frame-wrap:hover {
  border-color: rgb(245 213 71 / 0.34);
  background:
    linear-gradient(135deg, rgb(167 11 11 / 0.2), transparent 44%),
    rgb(19 13 13 / 0.46);
  transform: translateY(-2px);
}

.soundcloud-track-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px 12px;
}

.soundcloud-track-heading span {
  flex: 0 0 auto;
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.soundcloud-track-heading strong {
  min-width: 0;
  color: rgb(255 250 242 / 0.88);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
}

.soundcloud-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: 0;
  color-scheme: dark;
}

.soundcloud-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 14px 14px;
  color: rgb(255 250 242 / 0.48);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.soundcloud-credit a {
  min-width: 0;
  color: rgb(255 250 242 / 0.62);
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.soundcloud-credit a:hover,
.soundcloud-credit a:focus-visible {
  color: var(--sun);
  outline: none;
}

@media (min-width: 640px) {
  .sm\:px-8 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    max-width: min(760px, 90vw);
    font-size: clamp(4rem, 6.2vw, 5.6rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 620px;
    margin-top: 30px;
    font-size: 1.08rem;
  }

  .about-title {
    font-size: 4.2rem;
  }

  .about-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .workflow-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .reviews-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .pricing-inner,
  .reference-shell,
  .software-inner,
  .contact-inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    max-width: min(900px, 88vw);
    font-size: clamp(4.8rem, 5.8vw, 6.05rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 32px;
  }

  .lg\:px-10 {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .about-inner {
    grid-template-columns: 390px 560px;
    justify-content: center;
    gap: 82px;
    padding: 128px 40px;
  }

  .workflow-inner {
    padding: 128px 40px;
  }

  .reviews-inner {
    padding: 104px 40px;
  }

  .pricing-inner {
    padding: 128px 40px;
  }

  .reference-shell {
    padding: 154px 40px 104px;
  }

  .software-inner {
    padding: 128px 40px;
  }

  .contact-inner {
    padding: 76px 40px 48px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle,
  .mobile-menu {
    display: grid;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .rate-card,
  .bundle-card {
    min-height: auto;
  }

  .terms-list {
    grid-template-columns: 1fr;
  }

  .terms-list li:nth-child(-n + 2) {
    border-top: 1px solid rgb(255 250 242 / 0.08);
  }

  .terms-list li:first-child {
    border-top: 0;
  }

  .devex-calculator {
    grid-template-columns: 1fr;
  }

  .devex-result {
    grid-column: 1;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-link-groups {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-nav {
    top: 12px;
    left: 50%;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100vw - 20px);
    min-height: 56px;
    padding: 8px 8px 8px 12px;
    transform: translateX(-50%);
  }

  .brand {
    height: 38px;
  }

  .brand-logo-frame,
  .brand-logo {
    width: 130px;
    height: 38px;
  }

  .availability {
    display: none;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
    right: 0;
    left: 0;
  }

  .mobile-menu a {
    justify-content: flex-start;
    padding: 0 12px;
  }

  .availability-full {
    display: none;
  }

  .availability-short {
    display: inline;
  }

  .hero-content {
    width: 100vw;
    max-width: 100vw;
    justify-items: center;
    align-items: center;
    min-height: max(100svh, 720px);
    padding: 104px 20px 54px;
  }

  .hero-copy-block {
    gap: 18px;
    justify-items: center;
    width: min(350px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    overflow: visible;
    text-align: center;
  }

  .hero-title {
    max-width: 320px;
    font-size: clamp(2.22rem, 10vw, 3.05rem);
    line-height: 1.02;
  }

  .hero-copy {
    width: 100%;
    max-width: 300px;
    margin-top: 0;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-kicker {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 0 13px;
    font-size: 0.7rem;
    line-height: 1.25;
    white-space: normal;
  }

  .primary-button,
  .secondary-button {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    padding: 0 12px;
  }

  .hero-actions {
    max-width: 260px;
    margin-top: 10px;
  }

  .hero-panel {
    flex-direction: column;
    gap: 4px;
    width: min(350px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    min-height: 78px;
    margin-top: 6px;
  }

  .hero-title .line.reveal-ready,
  [data-animate="hero-copy"].reveal-ready,
  [data-animate="hero-actions"].reveal-ready,
  [data-animate="hero-panel"].reveal-ready {
    transform: none;
  }

  .reviews-inner {
    gap: 30px;
    padding: 76px 20px;
  }

  .reviews-heading {
    justify-items: start;
    text-align: left;
  }

  .reviews-title {
    font-size: 2.55rem;
  }

  .reviews-carousel {
    padding: 12px;
  }

  .review-slide {
    min-height: 0;
    padding: 18px;
  }

  .review-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-quote {
    font-size: 1.28rem;
  }

  .review-stars {
    font-size: 1.85rem;
    letter-spacing: 2px;
  }

  .review-controls {
    justify-content: center;
  }

  .about-inner {
    width: min(390px, 100%);
    margin-right: 0;
    margin-left: 0;
    gap: 38px;
    padding: 80px 20px;
  }

  .about-logo {
    width: min(270px, 76vw);
  }

  .about-title {
    font-size: 2.55rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workflow-inner {
    gap: 34px;
    padding: 80px 20px;
  }

  .workflow-header {
    justify-items: start;
    text-align: left;
  }

  .workflow-title {
    font-size: 2.7rem;
  }

  .workflow-intro {
    font-size: 0.94rem;
  }

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

  .workflow-card {
    min-height: 260px;
    padding: 20px;
  }

  .workflow-card-top {
    margin-bottom: 24px;
  }

  .workflow-icon {
    width: 64px;
    height: 64px;
  }

  .workflow-icon svg {
    width: 38px;
    height: 38px;
  }

  .pricing-inner {
    gap: 30px;
    padding: 80px 20px;
  }

  .reference-shell {
    gap: 30px;
    padding: 110px 20px 76px;
  }

  .reference-copy {
    justify-items: start;
    text-align: left;
  }

  .reference-copy h1 {
    font-size: 2.55rem;
  }

  .soundcloud-card {
    padding: 16px;
  }

  .soundcloud-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .soundcloud-track-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .soundcloud-track-heading strong {
    text-align: left;
  }

  .pricing-header,
  .bundle-header {
    justify-items: start;
    text-align: left;
  }

  .pricing-title {
    font-size: 2.52rem;
  }

  .pricing-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .pricing-note span {
    text-align: left;
  }

  .rate-card,
  .bundle-card {
    padding: 20px;
  }

  .bundle-price {
    flex-wrap: wrap;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta .primary-button {
    width: 100%;
  }

  .terms-panel summary {
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
  }

  .terms-toggle {
    width: 42px;
    height: 42px;
  }

  .terms-content {
    padding: 0 18px 20px;
  }

  .terms-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
  }

  .terms-list p {
    font-size: 0.86rem;
  }

  .terms-note {
    text-align: left;
  }

  .devex-calculator {
    padding: 18px;
  }

  .devex-fields {
    grid-template-columns: 1fr;
  }

  .devex-rate {
    min-height: 48px;
  }

  .devex-result {
    margin-top: 0;
    text-align: left;
  }

  .devex-tax-breakdown {
    grid-template-columns: 1fr;
  }

  .software-inner {
    gap: 34px;
    padding: 80px 20px;
  }

  .section-heading {
    justify-items: start;
    text-align: left;
  }

  .section-title {
    font-size: 2.55rem;
  }

  .software-card {
    justify-items: center;
    padding: 20px;
    text-align: center;
  }

  .software-art {
    height: clamp(150px, 52vw, 210px);
    aspect-ratio: auto;
    overflow: hidden;
  }

  .software-logo {
    width: min(190px, 72%);
    max-height: min(188px, 82%);
  }

  .software-logo-musescore {
    width: min(188px, 72%);
  }

  .software-logo-fl {
    width: min(176px, 68%);
  }

  .software-logo-reaper {
    width: min(172px, 66%);
  }

  .software-card p {
    max-width: 30rem;
  }

  .contact-inner {
    gap: 34px;
    padding: 64px 20px 38px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-copy {
    gap: 18px;
  }

  .footer-link-groups {
    min-width: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links a {
    min-height: 34px;
  }

  .footer-wordmark {
    font-size: clamp(3.1rem, 18vw, 4.6rem);
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.88rem;
  }

  .about-title {
    font-size: 2.28rem;
  }

  .workflow-title {
    font-size: 2.34rem;
  }

  .reviews-title {
    font-size: 2.28rem;
  }

  .pricing-title {
    font-size: 2.24rem;
  }

  .reference-copy h1 {
    font-size: 2.28rem;
  }

  .section-title {
    font-size: 2.26rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready,
  .hero-title .line.reveal-ready,
  [data-animate="about-logo"].reveal-ready {
    opacity: 1;
    transform: none;
  }
}
