/* ============================================================================
   Stilno — marketing landing styles
   Hand-ported from the Astro app (LandingLayout.astro globals + landing.astro /
   business.astro Tailwind utilities) into a single static stylesheet.
   Editorial "beauty atelier" look: cream canvas, deep-plum sections,
   violet/magenta accents, Playfair Display + Manrope. CSS-only motion with a
   prefers-reduced-motion off-switch. Fonts are loaded via <link> in each page.
   ========================================================================== */

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --cream: #f5efe6;
  --cream-2: #efe6d8;
  --paper: #fbf8f2;
  --ink: #1c1222;
  --ink-2: #2b1d35;
  --muted: #5a4a63;
  --plum: #1a0b26;
  --plum-2: #2a1140;
  --violet: #6d28d9;
  --violet-2: #8b5cf6;
  --magenta: #db2777;
  --rose: #f4dbe8;
  --gold: #b8894b;
  --line: rgba(28, 18, 34, 0.12);
  --line-light: rgba(245, 239, 230, 0.16);
  --ff-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", system-ui, -apple-system, sans-serif;
}

/* ── Base / reset ─────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p,
ul {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
svg {
  display: block;
}

.ff-display {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
}
.italic {
  font-style: italic;
}

/* Grain overlay for warmth/texture — sits above the page, ignores input. */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet);
}
.eyebrow--light {
  color: var(--violet-2);
}

.grad {
  background: linear-gradient(102deg, var(--violet) 0%, var(--magenta) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hair {
  height: 1px;
  width: 100%;
  background: var(--line);
}

.section-title {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  margin-top: 1rem;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--ink);
}
.section-title--tight {
  line-height: 1.25;
}
.section-title--light {
  color: var(--cream);
}
@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ── Buttons — pill CTAs ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 16px 36px -16px rgba(109, 40, 217, 0.75);
}
.btn-primary:hover {
  background: var(--violet-2);
  box-shadow: 0 20px 44px -16px rgba(109, 40, 217, 0.85);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-light);
}
.btn-ghost-light:hover {
  border-color: var(--cream);
}

/* ── Motion ───────────────────────────────────────────────────────────────── */
@keyframes stl-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  animation: stl-rise 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: var(--d, 0s);
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: stl-marquee 34s linear infinite;
}
@keyframes stl-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Ambient brand glows ──────────────────────────────────────────────────── */
.glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}
.glow--home-a {
  top: -8rem;
  right: -6rem;
  width: 26rem;
  height: 26rem;
  opacity: 0.3;
  background: radial-gradient(circle, var(--violet), transparent 70%);
}
.glow--home-b {
  top: 10rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  opacity: 0.2;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
}
.glow--biz-a {
  top: -8rem;
  left: -6rem;
  width: 26rem;
  height: 26rem;
  opacity: 0.25;
  background: radial-gradient(circle, var(--violet), transparent 70%);
}
.glow--biz-b {
  top: 6rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  opacity: 0.2;
  background: radial-gradient(circle, var(--magenta), transparent 70%);
}
.glow--salons {
  bottom: -10rem;
  left: -6rem;
  width: 30rem;
  height: 30rem;
  opacity: 0.25;
  background: radial-gradient(circle, var(--violet-2), transparent 70%);
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand-badge {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.125rem 0.625rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--violet);
}
.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav a:hover {
  color: var(--ink);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-link {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.header-link:hover {
  color: var(--ink);
}
@media (min-width: 640px) {
  .header-link {
    display: inline;
  }
}
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.hero__title {
  margin-top: 1.5rem;
  font-size: 3.1rem;
  line-height: 0.98;
  font-weight: 600;
  color: var(--ink);
}
.hero__title--biz {
  font-size: 3rem;
  line-height: 1;
}
.hero__lead {
  margin-top: 1.75rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted);
}
.hero__cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}
.hero__note--wide {
  max-width: 32rem;
}
.strong-ink {
  font-weight: 500;
  color: var(--ink);
}
.hero__card {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 24rem;
}
.hero__card-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  opacity: 0.6;
  filter: blur(40px);
  background: linear-gradient(135deg, var(--rose), transparent 60%);
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
  .hero__title {
    font-size: 4.6rem;
  }
  .hero__title--biz {
    font-size: 4.4rem;
  }
}

/* ── Appointment card (hero mock) ─────────────────────────────────────────── */
.appt-card {
  position: relative;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.5rem;
  box-shadow: 0 40px 80px -40px rgba(28, 18, 34, 0.45);
  transform: rotate(1.5deg);
}
.appt-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dot {
  display: inline-flex;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 999px;
  background: var(--violet);
}
.appt-card__title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.appt-card__sub {
  font-size: 0.875rem;
  color: var(--muted);
}
.appt-card__hair {
  margin: 1.25rem 0;
}
.appt-card__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.micro-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.appt-card__big {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
}
.appt-card__big--violet {
  color: var(--violet);
}
.ta-right {
  text-align: right;
}
.appt-card__master {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}
.appt-card__master-info {
  font-size: 0.875rem;
}
.appt-card__master-name {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.appt-card__master-role {
  color: var(--muted);
  line-height: 1.25;
}

/* ── Category marquee section ─────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  padding: 1.25rem 0;
}
.marquee__group {
  display: flex;
  align-items: center;
}
.marquee__item {
  display: flex;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: rgba(28, 18, 34, 0.8);
}
.marquee__word {
  padding-inline: 2rem;
}
.marquee__star {
  color: var(--magenta);
}

/* ── How it works / steps ─────────────────────────────────────────────────── */
.section-pad {
  padding: 6rem 0;
}
.measure-2xl {
  max-width: 42rem;
}
.steps {
  margin-top: 4rem;
  display: grid;
  column-gap: 2.5rem;
  row-gap: 3rem;
}
.step__n {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 3.75rem;
  font-weight: 600;
  color: rgba(109, 40, 217, 0.25);
}
.step__title {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.step__body {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.625;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── For clients ──────────────────────────────────────────────────────────── */
.clients {
  background: var(--paper);
  padding: 6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients__inner {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.lead-md {
  margin-top: 1.5rem;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.625;
}
.mt-9 {
  margin-top: 2.25rem;
}
.client-points {
  display: grid;
  gap: 1rem;
}
.point {
  display: flex;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 1.5rem;
}
.point__n {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--violet);
  flex-shrink: 0;
}
.point__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}
.point__body {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .clients__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* ── For salons (plum differentiator) ─────────────────────────────────────── */
.salons {
  position: relative;
  overflow: hidden;
  background: var(--plum);
  padding: 6rem 0;
  color: var(--cream);
}
.salons__inner {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: center;
}
.salons__lead {
  margin-top: 1.5rem;
  max-width: 28rem;
  line-height: 1.625;
  color: rgba(245, 239, 230, 0.7);
}
.feature-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
.feature {
  border-radius: 1rem;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  color: var(--violet-2);
  background: rgba(139, 92, 246, 0.12);
}
.feature__icon svg {
  height: 1.25rem;
  width: 1.25rem;
}
.feature__title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.feature__body {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 239, 230, 0.6);
}
.mt-10 {
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .salons__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ── Client-card differentiator mock ──────────────────────────────────────── */
.client-card-wrap {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 24rem;
}
.client-card {
  border-radius: 1.75rem;
  border: 1px solid var(--line-light);
  background: var(--plum-2);
  padding: 1.5rem;
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.7);
}
.client-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}
.client-card__name {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.client-card__meta {
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.5);
}
.client-card__divider {
  margin: 1.25rem 0;
  height: 1px;
  width: 100%;
  background: var(--line-light);
}
.chips {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  border-radius: 999px;
  border: 1px solid var(--line-light);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.8);
}
.client-card__note-label {
  margin-top: 1.5rem;
}
.client-card__note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245, 239, 230, 0.7);
}
.client-card__last {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
}
.client-card__last-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 230, 0.4);
}
.client-card__last-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
}
.client-card__ago {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--violet-2);
}

/* ── Categories / trust strip ─────────────────────────────────────────────── */
.categories {
  padding: 6rem 0;
  text-align: center;
}
.categories .section-title {
  margin-inline: auto;
  max-width: 42rem;
}
.cat-pills {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.cat-pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.cat-pill:hover {
  border-color: var(--violet);
  color: var(--violet);
}
.categories__note {
  margin-inline: auto;
  margin-top: 2.5rem;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.625;
}

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final-cta {
  padding-bottom: 6rem;
}
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--plum);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-box__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(219, 39, 119, 0.35), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(109, 40, 217, 0.5), transparent 55%);
}
.cta-box__inner {
  position: relative;
}
.cta-box .section-title {
  margin-inline: auto;
  max-width: 42rem;
}
.cta-box__lead {
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: 28rem;
  color: rgba(245, 239, 230, 0.7);
}
.cta-box__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cta-box {
    padding-inline: 4rem;
  }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  padding: 3.5rem 0;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}
.footer-brand {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.footer-desc {
  margin-top: 0.75rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(28, 18, 34, 0.8);
}
.footer-list a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-list a:hover {
  color: var(--violet);
}
.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .site-footer__grid--biz {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

/* ── Business: dashboard mock ─────────────────────────────────────────────── */
.dash-card {
  position: relative;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.5rem;
  box-shadow: 0 40px 80px -40px rgba(28, 18, 34, 0.45);
}
.dash-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-card__salon {
  font-size: 0.75rem;
  color: var(--muted);
}
.dash-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.dash-stat {
  border-radius: 1rem;
  background: var(--cream);
  padding: 1rem;
}
.dash-stat__value {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.dash-card__hair {
  margin: 1.25rem 0;
}
.dash-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dash-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dash-row__bar {
  height: 2rem;
  width: 0.25rem;
  border-radius: 999px;
}
.dash-row__time {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  width: 3rem;
}
.dash-row__name {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Business: features grid ──────────────────────────────────────────────── */
.features {
  background: var(--paper);
  padding: 6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}
.feature-card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 1.75rem;
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.75rem;
  color: var(--violet);
  background: rgba(109, 40, 217, 0.1);
}
.feature-card__icon svg {
  height: 1.375rem;
  width: 1.375rem;
}
.feature-card__title {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-card__body {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.625;
}
.feature-promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  background: var(--plum);
  padding: 1.75rem;
  color: var(--cream);
}
.feature-promo__text {
  font-family: var(--ff-display);
  letter-spacing: -0.015em;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.375;
}
.feature-promo .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Reduced motion off-switch ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    animation: none;
    opacity: 1;
  }
  .marquee__track {
    animation: none;
  }
  .btn:hover {
    transform: none;
  }
}
