/* ============================================================
   MAESTRUM — Landing Page Styles
   ============================================================ */

/* --- Fonts -------------------------------------------------- */

@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 55 Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 56 Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 65 Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 75 Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 95 Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'NeueHaasGrotesk';
  src: url('src/fonts/body/neue-haas-grotesk/Neue Haas Grotesk Display Pro 45 Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Orbitron';
  src: url('src/fonts/alternative/orbitron/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: 'ThatNewPixel';
  src: url('src/fonts/alternative/ttnp/woff2/ThatThatNewPixel-Square.woff2') format('woff2'),
       url('src/fonts/alternative/ttnp/woff/ThatThatNewPixel-Square.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* --- Reset & Base ------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #FE6825;
  --offwhite: #F4F3EF;
  --black: #000000;
  --gray: #5E5E5E;
  --gray-light: #EBEBEA;

  --font-body: 'NeueHaasGrotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-orbitron: 'Orbitron', sans-serif;
  --font-pixel: 'ThatNewPixel', monospace;

  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--offwhite);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }

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

/* --- Utility ----------------------------------------------- */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #e85a18;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--offwhite);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.label-pixel {
  font-family: var(--font-pixel);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.label-orange {
  color: var(--orange);
}

section {
  padding: 120px 0;
}

/* --- Navigation -------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--offwhite);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  height: 22px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.15s;
}
.nav__links a:hover {
  color: var(--black);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__login {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.15s;
}
.nav__login:hover {
  color: var(--black);
}

.nav__cta {
  padding: 10px 22px;
  font-size: 14px;
}

/* --- Hero -------------------------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.hero__particles {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: auto;
  z-index: 0;
  opacity: 0.5;
}

#creature {
  font-size: .2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#creature div {
  transform-style: preserve-3d;
  position: relative;
  width: 4em;
  height: 4em;
  margin: 3em;
  border-radius: 2em;
  will-change: transform;
  mix-blend-mode: plus-lighter;
  background: var(--orange);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--black);
}

.hero__headline em {
  font-style: italic;
  color: var(--orange);
}

.hero__sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray);
  opacity: 0.7;
}

/* --- Hero Visual (Hand Diagram) ---------------------------- */

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

.hand-diagram {
  position: relative;
  width: 380px;
  height: 480px;
}

.hand-diagram__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(254, 104, 37, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hand-diagram svg {
  width: 140px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hand-diagram > svg {
  fill: var(--orange);
}

/* Floating data points */
.hand-diagram__point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadePoint 0.6s ease forwards;
}

.hand-diagram__point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 104, 37, 0.2);
}

.hand-diagram__point-label {
  font-family: var(--font-pixel);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--orange);
  white-space: nowrap;
}

.hand-diagram__point--1 { top: 6%;  left: 18%; animation-delay: 0.3s; }
.hand-diagram__point--2 { top: 2%;  left: 37%; animation-delay: 0.5s; }
.hand-diagram__point--3 { top: 5%;  left: 55%; animation-delay: 0.7s; }
.hand-diagram__point--4 { top: 12%; left: 72%; animation-delay: 0.9s; }
.hand-diagram__point--5 { top: 22%; left: 82%; animation-delay: 1.1s; }

/* Connecting lines */
.hand-diagram__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hand-diagram__lines svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
}

/* Corner decorations */
.hero__corner {
  position: absolute;
  font-family: var(--font-pixel);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gray);
  opacity: 0.4;
}

.hero__corner--tl { top: 24px; left: 0; }
.hero__corner--br { bottom: 24px; right: 0; text-align: right; }

@keyframes fadePoint {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Value Proposition ------------------------------------- */

.value-prop {
  background: var(--black);
  color: var(--offwhite);
  padding: 120px 0;
}

.value-prop__inner {
  max-width: 800px;
}

.value-prop__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.value-prop__heading {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.value-prop__inner--centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-prop__inner--centered .value-prop__heading {
  margin: 0 auto 48px;
}

.value-prop__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 4px;
  overflow: hidden;
}

.value-prop__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Features ---------------------------------------------- */

.features {
  background: var(--offwhite);
}

.features__header {
  margin-bottom: 80px;
}

.features__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.features__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 560px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
}

.feature-card {
  background: var(--offwhite);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.35s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card__num {
  font-family: var(--font-orbitron);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 32px;
  opacity: 0.7;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--black);
}

.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.feature-card__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray);
}

/* --- Feel Section ------------------------------------------ */

.feel {
  background: var(--offwhite);
  padding: 140px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.feel__header {
  text-align: center;
  margin-bottom: 72px;
}

.feel__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.feel__left {}

.feel__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.feel__title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.feel__grid-wrapper {
  display: flex;
  justify-content: center;
  user-select: none;
}

.physics-grid {
  --pg-gap: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--pg-gap);
}

.pg-row {
  display: flex;
  gap: var(--pg-gap);
}

.pg-cell {
  --pg-size: 24px;
  width: var(--pg-size);
  height: var(--pg-size);
  background-color: var(--orange, #fffce1);
  border-radius: 50%;
  will-change: transform;
  cursor: pointer;
}

.feel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feel__item {
  border-bottom: 1px solid rgba(0,0,0,0.09);
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: default;
  transition: padding-left 0.2s ease;
}

.feel__item:hover {
  padding-left: 8px;
}

.feel__item:first-child {
  border-top: 1px solid rgba(0,0,0,0.09);
}

.feel__item-index {
  font-family: var(--font-orbitron);
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.6;
  min-width: 28px;
  padding-top: 3px;
}

.feel__item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

/* --- Compatibility ----------------------------------------- */

.compat {
  background: var(--gray-light);
  padding: 120px 0;
}

.compat__centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.compat__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.compat__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
}

.compat__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray);
  max-width: 620px;
}

.compat-card {
  background: var(--offwhite);
  border-radius: 4px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.06);
}

.compat-card__heading {
  font-size: 11px;
  font-family: var(--font-pixel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.compat-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compat-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}

.compat-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* DAW icons row */

.daw-icons {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 24px;
}

.daw-icons--centered {
  justify-content: center;
  margin-bottom: 0;
}

.daw-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.daw-icon img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}

.daw-icon span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.compat-card__note {
  font-size: 13px;
  color: var(--gray);
  opacity: 0.7;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 16px;
  margin-top: 4px;
}

/* --- Audience ---------------------------------------------- */

.audience {
  background: var(--black);
  color: var(--offwhite);
  padding: 140px 0;
}

.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience__left {}

.audience__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.audience__title {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.audience__title em {
  font-style: italic;
  color: var(--orange);
}

.audience__right {}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.audience-tag {
  background: rgba(244, 243, 239, 0.05);
  border: 1px solid rgba(244, 243, 239, 0.1);
  padding: 28px 24px;
  border-radius: 3px;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.audience-tag:hover {
  background: rgba(254, 104, 37, 0.1);
  border-color: rgba(254, 104, 37, 0.3);
}

.audience-tag__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.audience-tag__sub {
  font-size: 13px;
  color: rgba(244, 243, 239, 0.45);
  font-weight: 300;
  line-height: 1.4;
}

/* --- Social Proof ------------------------------------------ */

.proof {
  background: var(--black);
  color: var(--offwhite);
  padding: 120px 0;
}

.proof__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.proof__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.proof__quote {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--offwhite);
}

.proof__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(244, 243, 239, 0.55);
  line-height: 1.65;
  margin-bottom: 64px;
}

.proof__stats {
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.proof-stat__number {
  font-family: var(--font-orbitron);
  font-size: 40px;
  font-weight: 900;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-stat__number span {
  color: var(--orange);
}

.proof-stat__label {
  font-size: 13px;
  color: rgba(244, 243, 239, 0.45);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-pixel);
}

/* --- Waitlist CTA ------------------------------------------ */

.waitlist {
  background: var(--offwhite);
  padding: 140px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.waitlist__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.waitlist__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.waitlist__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.waitlist__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 48px;
}

.waitlist__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.waitlist__input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 3px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}

.waitlist__input::placeholder {
  color: #999;
}

.waitlist__input:focus {
  border-color: var(--orange);
}

.waitlist__submit {
  height: 54px;
  padding: 0 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.15s ease;
}

.waitlist__submit:hover {
  background: #e85a18;
  transform: translateY(-1px);
}

.waitlist__note {
  font-size: 13px;
  color: var(--gray);
  opacity: 0.65;
}

/* --- Quick Start ------------------------------------------- */

.quickstart {
  background: var(--offwhite);
  color: var(--black);
  padding: 140px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.quickstart__inner {
  max-width: 760px;
  margin: 0 auto;
}

.quickstart__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.quickstart__title {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 80px;
}

.quickstart__timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qs-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.qs-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}

.qs-step__num {
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(254, 104, 37, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qs-step__line {
  width: 1.5px;
  flex: 1;
  min-height: 56px;
  background: linear-gradient(to bottom, rgba(254, 104, 37, 0.3), rgba(254, 104, 37, 0.05));
  margin-top: 8px;
}

.qs-step__body {
  padding-bottom: 64px;
  flex: 1;
}

.qs-step:last-child .qs-step__body {
  padding-bottom: 0;
}

.qs-step__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.qs-step__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
  max-width: 560px;
}

@media (max-width: 900px) {
  .qs-step {
    gap: 24px;
  }
}

/* --- Final CTA --------------------------------------------- */

.final-cta {
  background: var(--black);
  color: var(--offwhite);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(254, 104, 37, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__overline {
  font-family: var(--font-pixel);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}

.final-cta__headline {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 48px;
}

.final-cta__headline em {
  font-style: italic;
  color: var(--orange);
}

/* --- Footer ------------------------------------------------ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(244, 243, 239, 0.08);
  padding: 52px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 18px;
  width: auto;
  filter: invert(1) brightness(0.75);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  color: rgba(244, 243, 239, 0.45);
  transition: color 0.15s;
}

.footer__links a:hover {
  color: var(--offwhite);
}

.footer__copy {
  font-size: 12px;
  color: rgba(244, 243, 239, 0.3);
}

/* --- Responsive -------------------------------------------- */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .hero__visual { order: -1; }

  .hand-diagram {
    width: 280px;
    height: 340px;
  }

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

  .feel__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .audience__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .proof__stats {
    gap: 40px;
  }

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

/* --- Modal -------------------------------------------------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-content {
  position: relative;
  background: var(--offwhite);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  padding: 40px 40px 32px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
}

.modal-close:hover {
  color: var(--black);
}
