/* =========================================================
   Beatery — design tokens
   Swap values here when rebranding or tweaking the look.
   ========================================================= */
:root {
  --accent-lime: #C8FF00;
  --accent-violet: #7C3AED;
  --bg-deep: #121220;
  --text-white: #FFFFFF;

  --bg-elevated: #1a1a2e;
  --bg-soft: #18182a;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-faint: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.08);
  --lime-glow: rgba(200, 255, 0, 0.18);
  --violet-glow: rgba(124, 58, 237, 0.28);

  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --radius: 18px;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Ambient stage */
.stage {
  position: relative;
  isolation: isolate;
}

.stage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 12% -10%, var(--violet-glow), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 15%, var(--lime-glow), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(124, 58, 237, 0.12), transparent 60%),
    var(--bg-deep);
}

.stage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(18, 18, 32, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand span {
  color: var(--accent-lime);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text-white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-lime);
  color: #101018 !important;
  font-weight: 600;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- BPM rail (unique home motif) ---------- */
.bpm-rail {
  position: fixed;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

.bpm-rail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}

.bpm-tick {
  width: 2px;
  height: 10px;
  background: var(--line);
  border-radius: 2px;
  transition: background 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}

.bpm-tick.is-hot {
  height: 18px;
  background: var(--accent-lime);
  box-shadow: 0 0 12px var(--lime-glow);
}

.bpm-tick.is-mid {
  background: var(--accent-violet);
}

.bpm-value {
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-lime);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-lime {
  background: var(--accent-lime);
  color: #101018;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text-white);
}

.btn-ghost:hover {
  border-color: var(--accent-violet);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem 0 3rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 0 4px var(--lime-glow);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.85); opacity: 0.7; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-lime);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 28ch;
  margin-bottom: 1.5rem;
}

.hero-copy {
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.tempo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tempo-chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.tempo-chip strong {
  color: var(--accent-lime);
  font-weight: 500;
}

/* Phone stack */
.phone-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.wave-ring {
  position: absolute;
  width: min(100%, 420px);
  height: min(100%, 420px);
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 0, 0.15);
  animation: spin-slow 28s linear infinite;
}

.wave-ring--2 {
  width: min(88%, 360px);
  height: min(88%, 360px);
  border-color: rgba(124, 58, 237, 0.25);
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.phone {
  position: relative;
  width: min(58%, 230px);
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #0a0a12;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(200, 255, 0, 0.08);
  transition: transform 0.35s ease;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone--back {
  position: absolute;
  width: min(50%, 198px);
  transform: translate(-42%, 8%) rotate(-10deg);
  opacity: 0.55;
  z-index: 1;
  filter: saturate(0.85);
}

.phone--mid {
  position: absolute;
  width: min(52%, 208px);
  transform: translate(40%, 4%) rotate(9deg);
  opacity: 0.7;
  z-index: 2;
}

.phone--front {
  z-index: 3;
}

.phone-stage:hover .phone--front {
  transform: translateY(-6px);
}

.eq-float {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(18, 18, 32, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.eq-float span {
  width: 4px;
  border-radius: 3px;
  background: var(--accent-lime);
  animation: eq 1.1s ease-in-out infinite;
}

.eq-float span:nth-child(1) { height: 35%; animation-delay: 0s; }
.eq-float span:nth-child(2) { height: 70%; animation-delay: 0.12s; background: var(--accent-violet); }
.eq-float span:nth-child(3) { height: 50%; animation-delay: 0.24s; }
.eq-float span:nth-child(4) { height: 90%; animation-delay: 0.08s; background: var(--accent-violet); }
.eq-float span:nth-child(5) { height: 40%; animation-delay: 0.2s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

/* Marquee strip */
.marquee {
  margin: 1.5rem 0 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.12), transparent 40%, rgba(200, 255, 0, 0.08));
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.95rem 0;
  animation: marquee 32s linear infinite;
}

.marquee__track span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee__track span b {
  color: var(--accent-lime);
  font-weight: 500;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-head p {
  max-width: 36ch;
  color: var(--text-muted);
  text-align: right;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.65rem;
}

/* Feature ribbon — not cards */
.feature-ribbon {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 88px 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.feature-row:hover {
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.04), transparent 55%);
}

.feature-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-lime);
}

.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.feature-row p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.45rem;
  color: var(--accent-violet);
}

/* Modes split */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mode-panel {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(124, 58, 237, 0.16), transparent 45%),
    var(--bg-soft);
  overflow: hidden;
  min-height: 280px;
}

.mode-panel--lime {
  background:
    linear-gradient(160deg, rgba(200, 255, 0, 0.1), transparent 45%),
    var(--bg-soft);
}

.mode-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0.7rem 0 0.8rem;
}

.mode-panel p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.mode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mode-list li {
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-muted);
}

.mode-svg {
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 160px;
  opacity: 0.55;
  pointer-events: none;
}

/* Screenshots rail */
.shots-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shots-rail::-webkit-scrollbar {
  height: 6px;
}

.shots-rail::-webkit-scrollbar-thumb {
  background: var(--accent-violet);
  border-radius: 999px;
}

.shot {
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a12;
  aspect-ratio: 9 / 19.5;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-caption {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
}

/* Europe route */
.europe-route {
  display: grid;
  gap: 1rem;
}

.route-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.route-item:hover {
  border-color: rgba(200, 255, 0, 0.35);
  transform: translateX(4px);
}

.route-city {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

.route-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.route-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.route-bpm {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-violet);
  white-space: nowrap;
}

/* Flow steps */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-lime));
  opacity: 0.35;
}

.flow-step {
  position: relative;
  padding-top: 0.25rem;
}

.flow-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-lime);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.flow-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Quote / manifesto */
.manifesto {
  margin: 1rem 0;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.2), transparent 50%),
    linear-gradient(315deg, rgba(200, 255, 0, 0.08), transparent 40%),
    var(--bg-elevated);
  text-align: center;
}

.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin: 0 auto 1.25rem;
}

.manifesto small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 8px);
  background: var(--accent-lime);
  color: #101018;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.cta-band p {
  opacity: 0.8;
  max-width: 42ch;
}

.cta-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.cta-meta .btn {
  background: #101018;
  color: var(--text-white);
  width: 100%;
  max-width: 280px;
}

.store-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  text-align: right;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.footer-brand span {
  color: var(--accent-lime);
}

.footer-grid p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
}

.footer-grid a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--accent-lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ---------- Legal / Contacts pages ---------- */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 52ch;
}

.legal {
  padding: 0 0 4rem;
}

.legal-panel {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.legal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.7rem;
  color: var(--accent-lime);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.legal-panel ul {
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}

.legal-panel li {
  list-style: disc;
  margin-bottom: 0.45rem;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

/* Contacts */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.14), transparent 50%), var(--bg-soft);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.contact-line {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  color: var(--accent-lime);
  margin-top: 0.15rem;
}

.contact-line strong {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.2rem;
}

.contact-line a,
.contact-line span {
  color: var(--text-white);
  word-break: break-word;
}

.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 32, 0.8);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-violet);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .bpm-rail {
    display: none;
  }

  .hero-grid,
  .modes,
  .contact-grid,
  .cta-band,
  .footer-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head p {
    text-align: left;
  }

  .flow {
    grid-template-columns: 1fr 1fr;
  }

  .flow::before {
    display: none;
  }

  .feature-row {
    grid-template-columns: 56px 1fr;
  }

  .feature-row p {
    grid-column: 2;
  }

  .route-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .cta-meta {
    align-items: stretch;
  }

  .store-note {
    text-align: left;
  }

  .phone-stage {
    min-height: 460px;
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(18, 18, 32, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .manifesto,
  .cta-band,
  .legal-panel,
  .contact-card,
  .contact-form {
    padding: 1.35rem;
  }

  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }
}
