/* =========================================================
   SALTO SAMPLER — landing page styles
   Palette sourced from src/theme/colors.ts
   Typography: Nunito Sans (body), JetBrains Mono (specs)
   Design: minimalist grid, generous whitespace, muji/TE vibe
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:          #FFFFFF;
  --ink:         #0F172A;
  --ink-soft:    #334155;
  --blue:        #8CB9FF;
  --orange:      #FFB36C;
  --grey:        #E8ECF3;
  --plate:       #F6F8FB;
  --slate-light: #CBD5E1;
  --slate-400:   #94A3B8;
  --slate-500:   #64748B;

  --font-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1160px;
  --gutter: 24px;
  --section-y: 96px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: #1e293b; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--primary:active { transform: translateY(0); }

/* ---------- Section title / lede ---------- */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-lede {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 56px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.nav.is-scrolled {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border-bottom-color: transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 15px;
}
.nav__mark { width: 28px; height: 28px; display: block; }
.nav__name { font-weight: 900; letter-spacing: 0.04em; }
.nav__dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
}
.nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.nav__dot--blue { background: var(--blue); }
.nav__dot--orange { background: var(--orange); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-500);
}
.nav__lang-link {
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav__lang-link:hover { color: var(--ink); background: var(--plate); }
.nav__lang-link.is-active { color: var(--ink); font-weight: 600; }
.nav__lang-sep { opacity: 0.4; }

/* ---------- HERO ---------- */
.hero {
  padding: 72px 0 var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(60px);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(60px);
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  margin: 0 0 20px;
}
.hero__title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero__lede {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero__mock {
  position: relative;
  min-height: 320px;
}
.hero__mock-img {
  width: 100%;
  height: auto;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.18));
}

/* ---------- SIGNUP form ---------- */
.signup { max-width: 480px; }
.signup__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.signup__row {
  display: flex;
  gap: 8px;
  background: var(--plate);
  padding: 6px;
  border-radius: var(--r-md);
  border: 1px solid var(--grey);
}
.signup__row:focus-within {
  border-color: var(--ink);
  background: #fff;
}
.signup--inline input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.signup--inline input[type="email"]::placeholder { color: var(--slate-400); }
.signup--inline .btn { padding: 10px 18px; }
.signup__note {
  margin: 10px 2px 0;
  font-size: 13px;
  color: var(--slate-500);
}
.signup__success {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: var(--plate);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
}
.signup.is-submitting .btn { opacity: 0.6; pointer-events: none; }

/* Beta form (hero) — multi-field layout */
.signup--beta { max-width: 520px; }
.signup--beta .signup__label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.field__req {
  color: var(--orange);
  font-weight: 700;
}
.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--slate-light);
  background: #fff;
  border-radius: var(--r-sm);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: var(--slate-400); }
.field input:hover { border-color: var(--slate-400); }
.field input:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(140, 185, 255, 0.25);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn--full { width: 100%; margin-top: 8px; }
.signup__note a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 2px; }
.signup__note a:hover { text-decoration-color: var(--orange); }
.signup__note--light { color: rgba(255,255,255,0.55) !important; }
.signup__note--light a { color: rgba(255,255,255,0.85); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 2px; }
.signup__note--light a:hover { color: #fff; text-decoration-color: var(--orange); }

/* ---------- Consent checkbox ---------- */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-500);
  cursor: pointer;
  user-select: none;
}
.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--slate-light);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.consent input[type="checkbox"]:hover { border-color: var(--slate-400); }
.consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(140, 185, 255, 0.3);
  border-color: var(--blue);
}
.consent input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
}
.consent span { flex: 1; }
.consent a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 2px;
}
.consent a:hover { text-decoration-color: var(--orange); }
.consent input[type="checkbox"]:invalid:required {
  /* no styling — let browser handle default invalid state on submit */
}

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- SPECS STRIP ---------- */
.specs {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.specs__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.specs__item em {
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  margin-right: 4px;
}
.specs__sep { color: var(--slate-400); }

/* ---------- THREE TOOLS ---------- */
.three { padding: var(--section-y) 0; }
.three__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--plate);
  border: 1px solid var(--grey);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  background: var(--ink);
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__media img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.card__media--accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  color: #fff;
  padding: 20px;
}
.card__wave { width: 80%; height: auto; }
.card__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- FLIP section ---------- */
.flip {
  padding: var(--section-y) 0;
  background: var(--plate);
  text-align: center;
}
.flip .container { max-width: 960px; }
.flip__brand {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.flip__logo {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.flip__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin: 0 0 12px;
  font-weight: 600;
}
.flip .section-title,
.flip .section-lede { margin-left: auto; margin-right: auto; }
.flip .section-lede { margin-bottom: 56px; }

.flip__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.flip__step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--grey);
}
.flip__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.flip__step h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.flip__step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- PHILOSOPHY ---------- */
.philosophy { padding: var(--section-y) 0; }
.philosophy__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin: 0 0 20px;
  font-weight: 600;
}
.philosophy__quote {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 28px;
  color: var(--ink);
  quotes: "\201C""\201D";
}
.philosophy__body {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- MAKER NOTE (dark) ---------- */
.maker {
  padding: 88px 0 104px;
  background: var(--ink);
  color: #fff;
}
.maker__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.maker__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 2 / 3;
  background: #000;
}
.maker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.maker__text { text-align: left; }
.maker__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin: 0 0 18px;
  font-weight: 600;
}
.maker__body {
  font-size: 17px;
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0 0 20px;
}
.maker__sign {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #94A3B8;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.maker__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.maker__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #E2E8F0;
}
.maker__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}
.maker__tag-dot--blue { background: var(--blue); box-shadow: 0 0 10px rgba(140, 185, 255, 0.55); }
.maker__tag-dot--orange { background: var(--orange); box-shadow: 0 0 10px rgba(255, 179, 108, 0.55); }

@media (max-width: 760px) {
  .maker { padding: 64px 0 80px; }
  .maker__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    text-align: center;
  }
  .maker__photo {
    max-width: 260px;
    margin: 0 auto;
  }
  .maker__text { text-align: center; }
  .maker__tags { justify-content: center; }
}
@media (max-width: 560px) {
  .maker__body { font-size: 16px; }
}

/* ---------- FAQ ---------- */
.faq { padding: var(--section-y) 0; background: var(--plate); }
.faq .container { max-width: 780px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--grey);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.15s ease;
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--slate-400);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { content: "−"; color: var(--orange); }
.faq__item p {
  margin: 12px 0 2px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- FOOTER SIGNUP ---------- */
.signup-bottom {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.signup-bottom .section-title { color: #fff; }
.signup-bottom .section-lede { color: rgba(255, 255, 255, 0.7); margin-left: auto; margin-right: auto; }
.signup--inline { max-width: 480px; margin: 0 auto; }
.signup-bottom .signup__row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.signup-bottom .signup__row:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}
.signup-bottom input[type="email"] { color: #fff; }
.signup-bottom input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.5); }
.signup-bottom .btn--primary {
  background: var(--orange);
  color: var(--ink);
}
.signup-bottom .btn--primary:hover { background: #ffc28a; }
.signup-bottom .signup__success {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-left-color: var(--orange);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0 60px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__logo {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.footer__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: #fff; }
.footer__legal {
  width: 100%;
  margin: 16px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__legal-line {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.footer__legal-company {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}
.footer__legal-company strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

/* ---------- Legal pages (privacy, etc.) ---------- */
.legal { padding: 72px 0 96px; background: #fff; }
.legal .container { max-width: 760px; }
.legal__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 600;
}
.legal__title {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.legal__updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate-500);
  margin: 0 0 40px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 3px;
}
.legal a:hover { text-decoration-color: var(--orange); }
.legal__company-block {
  background: var(--plate);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin: 12px 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal__company-block strong { color: var(--ink); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  :root { --section-y: 64px; }

  .hero { padding: 48px 0 var(--section-y); }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__mock { order: -1; min-height: 0; }
  .hero__mock-img { max-width: 380px; margin: 0 auto; }

  .three__grid { grid-template-columns: 1fr; }
  .flip__steps { grid-template-columns: 1fr; }

  .specs__row { font-size: 13px; gap: 10px; }
  .specs__sep { display: none; }
  .specs__item {
    padding: 4px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
  }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }

  .hero__title { font-size: 44px; }
  .signup__row { flex-wrap: wrap; }
  .signup__row .btn { width: 100%; }

  .footer__inner { flex-direction: column; }
}

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

/* ---------- A TASTE (interactive MACRO demo — mirrors app UI) ---------- */
.taste {
  padding: var(--section-y) 0;
  background: #fff;
}
.taste__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.taste__copy {
  max-width: 480px;
}
.taste__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.taste__title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--ink);
}
.taste__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.taste__lede strong { color: var(--ink); font-weight: 700; }

.taste__play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.taste__play:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #1e293b; }
.taste__play:active { transform: translateY(0); }
.taste__play.is-playing {
  background: var(--orange);
  color: var(--ink);
}
.taste__play-icon {
  width: 10px;
  height: 12px;
  display: inline-block;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.taste__play.is-playing .taste__play-icon {
  width: 10px;
  height: 12px;
  background: transparent;
  clip-path: none;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.taste__play-hint {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
}

.taste__macros {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.taste__macro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.taste__macro-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.taste__macro-label { color: var(--ink); font-weight: 500; }
.taste__macro-label em {
  font-style: normal;
  color: var(--blue);
  margin-right: 8px;
  font-weight: 700;
}
.taste__macro--b .taste__macro-label em { color: var(--orange); }
.taste__macro-value {
  color: var(--slate-500);
  font-weight: 400;
}

/* Slider — matches app: thin track, colored circular thumb */
.taste__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--grey);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.taste__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: transform 0.1s ease;
}
.taste__slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.taste__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
  cursor: pointer;
}
.taste__macro--b .taste__slider::-webkit-slider-thumb { background: var(--orange); }
.taste__macro--b .taste__slider::-moz-range-thumb { background: var(--orange); }

/* Stage (phone-panel look) */
.taste__stage {
  background: var(--plate);
  border: 1px solid var(--grey);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  max-width: 440px;
  margin: 0 auto;
}
.taste__stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 16px;
  padding: 0 4px;
}
.taste__stage-title {
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.taste__stage-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 179, 108, 0.18);
}
.taste__stage-ver {
  display: inline-block;
  font-size: 10px;
  color: var(--slate-400);
  margin-left: 8px;
  letter-spacing: 0.08em;
}
.taste__stage-mode { color: var(--slate-500); font-weight: 500; }

.taste__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  aspect-ratio: 1 / 1;
}
.taste__pad {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--grey);
  border-radius: var(--r-md);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.taste__pad-num {
  position: absolute;
  top: 6px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  font-weight: 500;
}
.taste__pad-dot {
  position: absolute;
  top: 9px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--slate-light);
  opacity: 0.7;
}

/* Hit states — kick=orange glow, snare=blue glow, hat=subtle grey */
.taste__pad.is-hit-kick {
  background: #FFF2E4;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 179, 108, 0.35), 0 6px 18px rgba(255, 179, 108, 0.28);
  transform: scale(0.98);
}
.taste__pad.is-hit-snare {
  background: #EEF5FF;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(140, 185, 255, 0.35), 0 6px 18px rgba(140, 185, 255, 0.3);
  transform: scale(0.98);
}
.taste__pad.is-hit-hat {
  background: #F0F3F9;
  border-color: var(--slate-light);
  box-shadow: 0 0 0 1px rgba(203, 213, 225, 0.45);
}
.taste__pad.is-hit-kick .taste__pad-num,
.taste__pad.is-hit-snare .taste__pad-num { color: var(--ink); }

/* Mode pills — decorative, matches app bottom strip */
.taste__modes {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 2px;
}
.taste__mode {
  flex: 1;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 4px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--grey);
}
.taste__mode--song  { color: #F87171; }
.taste__mode--fx    { color: var(--blue); }
.taste__mode--slice { color: var(--orange); }
.taste__mode--seq   { color: var(--orange); }
.taste__mode--synth { color: #10B981; }
.taste__mode--mix   { color: #A78BFA; }

.taste__mode--active.taste__mode--seq {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(255, 179, 108, 0.3);
}

@media (max-width: 900px) {
  .taste__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .taste__title { font-size: 36px; }
  .taste__copy { order: 1; max-width: 100%; }
  .taste__stage { order: 2; }
}

@media (max-width: 560px) {
  .taste__title { font-size: 30px; }
  .taste__stage { padding: 16px; }
  .taste__grid { gap: 7px; }
  .taste__pad-num { font-size: 9px; top: 4px; left: 6px; }
  .taste__mode { font-size: 10px; padding: 5px 2px; }
}
