/* ─── Self-hosted Fonts ───────────────────────────────────────────────── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('assets/fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2'); }

/* ─── Tokens (Notion / Apple dark) ─────────────────────────────────────── */
:root {
  --bg: #0a0a0a;
  --bg-1: #0f0f10;
  --bg-2: #141416;
  --bg-3: #1a1a1d;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.12);
  --fg: #ededed;
  --fg-1: #b6b6b8;
  --fg-2: #7a7a7d;
  --fg-3: #515155;
  --accent: #ededed;
  --accent-soft: rgba(255,255,255,0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --pad: 32px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 32px rgba(0,0,0,0.6);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Subtle dotted bg for that Apple/Notion polish */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255,255,255,0.025), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--fg);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--bg-3); border-color: var(--line-2); }
.btn--primary {
  background: #fff; color: #0a0a0a; border-color: #fff;
}
.btn--primary:hover { background: #e8e8e8; border-color: #e8e8e8; transform: translateY(-1px); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--bg-2); }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--lg { padding: 14px 24px; font-size: 14.5px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 2px 6px; font-size: 10.5px;
  border: 1px solid var(--line-2); border-radius: 5px;
  background: rgba(255,255,255,0.04);
  color: var(--fg-1);
  font-family: var(--mono);
  letter-spacing: 0;
}
.kbd--sm { padding: 1px 5px; font-size: 9.5px; }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.nav--scrolled { border-bottom-color: var(--line); background: rgba(10,10,10,0.78); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 24px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
}
.nav__mark {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: linear-gradient(180deg, #1f1f22, #141416);
  border: 1px solid var(--line-2);
  color: var(--fg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset;
}
.nav__mark--logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 22px; height: 22px;
  border-radius: 0;
}
.nav__mark--logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav__links {
  display: flex; gap: 4px;
  margin-left: auto;
  font-size: 13.5px;
}
.nav__links a {
  color: var(--fg-1);
  padding: 7px 12px;
  border-radius: 7px;
  transition: all 0.15s ease;
}
.nav__links a:hover { color: var(--fg); background: var(--bg-2); }
.nav__cta { display: flex; gap: 8px; align-items: center; }

/* ─── Layout helpers ──────────────────────────────────────────────────── */
.section {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad);
  border-bottom: 1px solid var(--line);
}
.section__head { margin-bottom: 56px; max-width: 720px; }
.section__eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--fg-1); letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: #8aff9b; box-shadow: 0 0 8px #8aff9b; }

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad) 96px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-size: 84px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 20px 0 24px;
  text-wrap: balance;
}
.hero__title-accent { font-style: italic; font-weight: 400; }
.hero__lede {
  font-size: 17px;
  color: var(--fg-1);
  max-width: 480px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero__actions { display: flex; gap: 10px; margin-bottom: 56px; }
.hero__meta {
  display: flex; gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta-num { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.hero__meta-lbl { font-size: 12.5px; color: var(--fg-2); margin-top: 2px; }

.hero__media { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.hero__card-overlay {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
}
.hero__nowplaying {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: rgba(15,15,16,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.np__cover {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: repeating-linear-gradient(45deg, #2a2a2d 0 4px, #1a1a1d 4px 8px);
  border: 1px solid var(--line-2);
}
.np__info { flex: 1; min-width: 0; }
.np__label { font-size: 10.5px; font-family: var(--mono); color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.04em; }
.np__title { font-size: 13px; color: var(--fg); margin-top: 2px; }
.np__bars { display: flex; gap: 2px; align-items: flex-end; height: 18px; }
.np__bars span {
  display: block; width: 2px; background: var(--fg);
  animation: bar 0.9s ease-in-out infinite alternate;
}
.np__bars span:nth-child(1) { height: 50%; animation-delay: 0s; }
.np__bars span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.np__bars span:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.np__bars span:nth-child(4) { height: 100%; animation-delay: 0.1s; }
.np__bars span:nth-child(5) { height: 70%; animation-delay: 0.25s; }
@keyframes bar { from { height: 20%; } to {} }

.hero__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(20,20,22,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--fg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero__chip--1 { top: 32px; left: 24px; }
.hero__chip--2 { bottom: 32px; right: 24px; }

/* ─── About ───────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.about__lede {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.015em;
}
.about__points { display: flex; flex-direction: column; }
.about__point {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.about__point:last-child { border-bottom: 1px solid var(--line); }
.about__point-k {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-2);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding-top: 1px;
}
.about__point-v { font-size: 14.5px; color: var(--fg-1); line-height: 1.55; }

/* ─── Services ────────────────────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
}
.service:hover {
  background: var(--bg-2);
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.service__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #1f1f22, #141416);
  border: 1px solid var(--line-2);
  color: var(--fg);
  margin-bottom: 24px;
}
.service__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.service__title { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 0; }
.service__price { font-family: var(--mono); font-size: 12px; color: var(--fg-2); }
.service__desc { font-size: 14px; color: var(--fg-1); margin: 0 0 20px; line-height: 1.55; }
.service__bullets { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.service__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--fg-1);
}
.service__bullets svg { color: var(--fg-2); flex-shrink: 0; }
.service__cta {
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: space-between;
  transition: all 0.15s ease;
}
.service__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ─── Music / Player ──────────────────────────────────────────────────── */
.music {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.music__list {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex; flex-direction: column;
}
.track {
  display: grid;
  grid-template-columns: 36px 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  text-align: left;
  color: var(--fg);
  transition: background 0.15s ease;
  border-bottom: 1px solid transparent;
}
.track:hover { background: var(--bg-2); }
.track--active { background: var(--bg-2); }
.track__num {
  font-family: var(--mono); font-size: 11.5px; color: var(--fg-2);
  text-align: center;
}
.track__cover {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f1f22, #0f0f10);
  border: 1px solid var(--line-2);
  color: var(--fg);
}
.track__title { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.track__sub { font-size: 12px; color: var(--fg-2); margin-top: 2px; }
.track__dur { font-family: var(--mono); font-size: 12px; color: var(--fg-2); }

.player {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column;
}
.player__header { text-align: center; padding-bottom: 24px; }
.player__cover {
  height: 160px;
  background: linear-gradient(180deg, #18181b 0%, #0f0f10 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.player__waves {
  display: flex; gap: 3px; align-items: center;
  padding: 0 24px;
  height: 100%;
}
.player__waves span {
  display: block; width: 3px;
  background: var(--fg);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}
.player__title { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.player__sub { font-size: 12.5px; color: var(--fg-2); margin-top: 4px; }

.player__progress { padding: 16px 0; }
.player__bar {
  width: 100%; height: 3px;
  background: var(--bg-3);
  border-radius: 999px; overflow: hidden;
}
.player__bar span { display: block; height: 100%; background: var(--fg); border-radius: 999px; transition: width 0.1s linear; }
.player__times {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--fg-2);
  margin-top: 8px;
}

.player__controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  position: relative;
  flex-wrap: wrap;
  padding: 16px 0 0;
}
.player__btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.player__btn:hover { background: var(--bg-3); }
.player__btn--play {
  width: 48px; height: 48px;
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}
.player__btn--play:hover { background: var(--fg-1); }
.player__spotify {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--fg-2);
  margin-left: 12px;
  padding: 6px 10px;
  border-radius: 7px;
}
.player__spotify:hover { background: var(--bg-2); color: var(--fg); }

/* ─── References ──────────────────────────────────────────────────────── */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo {
  background: var(--bg-1);
  display: flex; align-items: center; justify-content: center;
  height: 110px;
  padding: 22px;
  transition: background 0.2s ease;
}
.logo:hover { background: var(--bg-2); }
.logo img {
  max-width: 100%; max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.logo:hover img { opacity: 0.85; transform: scale(1.06); }
.logo--zoom img { max-height: 80px; }
.logo--zoom-xl img { max-height: 130px; }
.logo--zoom:hover img,
.logo--zoom-xl:hover img { transform: scale(1.10); }

/* ─── Quotes ──────────────────────────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote {
  margin: 0;
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.quote__stars { display: flex; gap: 3px; color: var(--fg); }
.quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.quote figcaption {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.quote__a { font-size: 13.5px; color: var(--fg); font-weight: 500; }
.quote__e { font-family: var(--mono); font-size: 11.5px; color: var(--fg-2); }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-align: left;
  transition: color 0.15s ease;
}
.faq__q:hover { color: var(--fg-1); }
.faq__chev { transition: transform 0.2s ease; color: var(--fg-2); }
.faq__item--open .faq__chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  font-size: 14.5px; color: var(--fg-1);
  line-height: 1.55;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 4px;
}
.faq__item--open .faq__a {
  max-height: 200px;
  padding: 0 4px 22px;
}

/* ─── Final CTA ───────────────────────────────────────────────────────── */
.cta {
  position: relative; z-index: 1;
  padding: 80px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.cta__inner {
  background: linear-gradient(180deg, #131316 0%, #0c0c0e 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% 0%, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}
.cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--fg-1); letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta__eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: #8aff9b; }
.cta__title {
  font-size: 56px; font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 16px;
  text-wrap: balance;
}
.cta__sub { font-size: 16px; color: var(--fg-1); max-width: 480px; margin: 0 auto 32px; }
.cta__row { display: inline-flex; gap: 10px; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
.foot {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 24px;
}
.foot__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot__brand { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.foot__sub { font-family: var(--mono); font-size: 11.5px; color: var(--fg-2); margin-top: 2px; font-weight: 400; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot__h { font-family: var(--mono); font-size: 11.5px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.foot__cols a { display: block; font-size: 13.5px; color: var(--fg-1); padding: 4px 0; }
.foot__cols a:hover { color: var(--fg); }
.foot__base {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px; font-family: var(--mono); font-size: 11.5px; color: var(--fg-2);
}

/* ─── Modal ───────────────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade 0.2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  width: 100%; max-width: 520px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: pop 0.22s cubic-bezier(.2,.9,.3,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.modal__title { font-size: 14.5px; font-weight: 500; }
.modal__steps { display: flex; gap: 4px; margin-left: auto; }
.modal__dot { width: 24px; height: 3px; border-radius: 2px; background: var(--bg-3); transition: background 0.2s ease; }
.modal__dot--on { background: var(--fg); }
.modal__close {
  width: 28px; height: 28px;
  border-radius: 7px; border: none;
  background: transparent; color: var(--fg-2);
  font-size: 22px; line-height: 1;
}
.modal__close:hover { background: var(--bg-2); color: var(--fg); }
.modal__body { padding: 28px 22px; min-height: 220px; }
.modal__lbl { font-family: var(--mono); font-size: 11.5px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.modal__choices { display: flex; gap: 8px; flex-wrap: wrap; }
.choice {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg-1);
  font-size: 13.5px;
  transition: all 0.15s ease;
}
.choice:hover { background: var(--bg-3); color: var(--fg); }
.choice--on { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fg);
  font-size: 14px;
  font-family: inherit;
  padding: 12px 14px;
  margin-bottom: 10px;
  transition: border-color 0.15s ease;
  outline: none;
}
.input:focus { border-color: var(--fg-2); }
.input--ta { resize: vertical; min-height: 80px; }
.modal__foot {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}
.modal__error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 95, 95, 0.08);
  border: 1px solid rgba(255, 95, 95, 0.25);
  color: #ff9c9c;
  font-size: 13px;
}
.modal__body--success { text-align: center; }
.modal__check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(138,255,155,0.1);
  color: #8aff9b;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(138,255,155,0.3);
}
.modal__success-t { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; }
.modal__success-s { font-size: 14px; color: var(--fg-1); margin-top: 6px; margin-bottom: 24px; }
.modal__summary {
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.modal__summary > div {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.modal__summary > div:last-child { border-bottom: none; }
.modal__summary span { color: var(--fg-2); font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; }
.modal__summary b { font-weight: 500; }

/* ─── CmdK ────────────────────────────────────────────────────────────── */
.cmdk {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  animation: fade 0.18s ease;
}
.cmdk__panel {
  width: 100%; max-width: 540px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}
.cmdk__input {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--fg-2);
}
.cmdk__input input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--fg);
  font-family: inherit; font-size: 14.5px;
}
.cmdk__list { padding: 6px; max-height: 300px; overflow: auto; }
.cmdk__item {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: transparent; border: none;
  color: var(--fg);
  font-size: 13.5px;
  border-radius: 8px;
  text-align: left;
  transition: background 0.12s ease;
}
.cmdk__item:hover { background: var(--bg-2); }
.cmdk__item svg:first-child { color: var(--fg-2); }
.cmdk__arrow { margin-left: auto; opacity: 0; }
.cmdk__item:hover .cmdk__arrow { opacity: 1; color: var(--fg-2); }
.cmdk__empty { padding: 20px; text-align: center; color: var(--fg-2); font-size: 13px; }

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero__grid, .about__grid, .music { grid-template-columns: 1fr; gap: 40px; }
  .services, .quotes { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
  .hero__title { font-size: 56px; }
  .section__title, .cta__title { font-size: 36px; }
  .hero__chip { display: none; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .cta__row { display: flex; flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .cta__row .btn { justify-content: center; }
  .cta__row .btn--ghost { font-size: 13px; word-break: break-all; }
}
