/* ============================================================
   Salt Landing Page Styles
   ============================================================ */

/* ── Force dark theme regardless of system preference ── */
@media (prefers-color-scheme: light) {
  :root {
    --color-bg:         #1a1a1a;
    --color-surface:    #242424;
    --color-surface-2:  #2e2e2e;
    --color-text:       #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.55);
    --color-border:     rgba(255, 255, 255, 0.08);
    --shadow-card:      0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .lp-header {
    background: rgba(26, 26, 26, 0.85) !important;
  }
}

/* ================================================================
   GATE — Intro overlay
   ================================================================ */
#lp-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.lp-gate__inner {
  text-align: center;
  user-select: none;
}

.lp-gate__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
}

.lp-gate__headline {
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(36px);
}

.lp-gate__sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
}

body:not(.gate-done) {
  overflow: hidden;
}

/* ================================================================
   CONTAINER
   ================================================================ */
.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ================================================================
   BADGE PILL
   ================================================================ */
.lp-badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ================================================================
   HEADER
   ================================================================ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background 300ms ease, border-color 300ms ease;
}

.lp-header--scrolled {
  background: rgba(15, 15, 15, 0.96);
  border-bottom-color: rgba(201, 168, 76, 0.18);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.lp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo__img {
  height: 28px;
  width: auto;
  display: block;
}

.lp-logo:hover { text-decoration: none; }

/* ================================================================
   NAV LINKS
   ================================================================ */
.lp-nav__links {
  display: none;
  gap: var(--space-lg);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .lp-nav__links { display: flex; }
}

.lp-nav__links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.lp-nav__links a:hover {
  color: var(--color-text);
}

/* ================================================================
   HERO
   ================================================================ */
.lp-hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  align-items: flex-start;
}

.lp-hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

@media (min-width: 900px) {
  .lp-hero {
    min-height: 680px;
    align-items: center;
    padding: 80px 0 80px;
  }

  .lp-hero__inner {
    display: grid;
    grid-template-columns: 45fr 55fr;
    align-items: center;
    gap: 64px;
  }
}

.lp-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.lp-hero__badge {
  margin-bottom: var(--space-sm);
}

.lp-hero__headline {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.lp-hero__sub {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: var(--line-height-base);
}

.lp-hero__cta {
  align-self: flex-start;
  font-size: var(--font-size-lg);
  padding: 14px 36px;
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.lp-section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* ================================================================
   MOCKUP
   ================================================================ */
.lp-hero__mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-xl);
}

@media (min-width: 900px) {
  .lp-hero__mockup {
    padding-top: 0;
    justify-content: flex-start;
    overflow: visible;
  }
}

.salt-mockup-wrapper {
  position: relative;
  width: min(268px, 84vw);
}

@media (min-width: 900px) {
  .salt-mockup-wrapper {
    width: 520px;
    height: 560px;
    overflow: visible;
  }
}

.salt-mockup-glow {
  position: absolute;
  inset: -48px;
  border-radius: 52px;
  background: radial-gradient(ellipse at 56% 50%, rgba(201, 168, 76, 0.30) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: mockupGlow 6s ease-in-out infinite alternate;
}

@keyframes mockupGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

.salt-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #0e0e0e;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.20),
    0 20px 56px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(201, 168, 76, 0.07);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s ease;
}

@media (min-width: 900px) {
  .salt-phone {
    position: absolute;
    width: auto;
  }
}

.salt-phone--primary {
  z-index: 3;
  transform: perspective(1000px) rotateX(3deg);
}

@media (min-width: 900px) {
  .salt-phone--primary {
    width: 240px;
    left: 16px;
    top: 48px;
    transform: perspective(1200px) rotateY(16deg) rotateX(3deg);
  }
}

.salt-phone--secondary {
  display: none;
}

@media (min-width: 900px) {
  .salt-phone--secondary {
    display: flex;
    width: 210px;
    z-index: 2;
    right: 0;
    top: 8px;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    opacity: 0.75;
  }
}

/* ── Phone chrome ── */
.salt-phone-notch-bar {
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e0e0e;
  flex-shrink: 0;
}

.salt-phone-notch {
  width: 58px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.salt-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 14px 3px;
  flex-shrink: 0;
}

.salt-sb-time {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.02em;
}

.salt-sb-icons {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.salt-app-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 5px;
  flex-shrink: 0;
}

.salt-app-hdr-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}

.salt-app-hdr-fab {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #C9A84C;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.salt-jobs-date {
  padding: 0 14px 7px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.salt-jobs-scroll {
  overflow: hidden;
  padding: 0 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.salt-jcard {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 9px 11px;
  flex-shrink: 0;
}

.salt-jcard--active {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.28);
}

.salt-jcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.salt-badge {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
}

.salt-badge--progress {
  background: rgba(201, 168, 76, 0.14);
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.30);
}

.salt-badge--scheduled {
  background: rgba(92, 155, 224, 0.12);
  color: #6aaff5;
  border: 1px solid rgba(92, 155, 224, 0.25);
}

.salt-badge--done {
  background: rgba(76, 175, 130, 0.12);
  color: #5cc896;
  border: 1px solid rgba(76, 175, 130, 0.25);
}

.salt-jcard-price {
  font-size: 12px;
  font-weight: 700;
  color: #C9A84C;
}

.salt-jcard-customer {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2px;
}

.salt-jcard-vehicle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1px;
}

.salt-jcard-service {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.32);
}

.salt-bnav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 4px 14px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  margin-top: auto;
}

.salt-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.32);
}

.salt-bnav-item i { font-size: 18px; }
.salt-bnav-item--active { color: #C9A84C; }

.salt-cust-back {
  padding: 5px 14px;
  font-size: 12px;
  color: #C9A84C;
  flex-shrink: 0;
}

.salt-cust-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 8px;
  flex-shrink: 0;
}

.salt-cust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #8B6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.salt-cust-info-block { flex: 1; min-width: 0; }

.salt-cust-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.salt-cust-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
}

.salt-vehicle-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 11px 8px;
  padding: 6px 10px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.salt-vehicle-tag i { font-size: 13px; color: #C9A84C; }

.salt-cust-stats {
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 7px;
  flex-shrink: 0;
}

.salt-cust-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: #C9A84C;
  text-align: center;
}

.salt-cust-stat-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
  margin-top: 2px;
}

.salt-cust-jobs-hdr {
  padding: 0 14px 5px;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
}

.salt-mini-job {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.salt-mj-date {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.32);
  min-width: 30px;
}

.salt-mj-svc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
  padding: 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.salt-mj-amt {
  font-size: 10px;
  font-weight: 600;
  color: #C9A84C;
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.lp-stats {
  padding: 96px 0;
  background: var(--color-bg);
}

.lp-stats .lp-badge-pill {
  display: block;
  width: fit-content;
  margin: 0 auto var(--space-lg);
}

.lp-stats__title {
  margin-bottom: var(--space-xl);
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .lp-stats__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-stats__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.lp-stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.lp-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.lp-stat-card__number {
  font-size: 64px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-stat-card__label {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
}

.lp-stat-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-base);
}

/* ================================================================
   FEATURES BENTO GRID
   ================================================================ */
.lp-features {
  padding: 96px 0;
  background: #111111;
}

.lp-features .lp-badge-pill {
  display: block;
  width: fit-content;
  margin: 0 auto var(--space-md);
}

.lp-features__sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  margin-top: calc(-1 * var(--space-lg));
  margin-bottom: var(--space-xl);
}

.lp-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .lp-bento-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-bento-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.lp-feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 32px;
  border-radius: var(--radius-md);
  transition:
    transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.lp-feature-card--wide {
  border-color: rgba(201, 168, 76, 0.20);
}

@media (min-width: 900px) {
  .lp-feature-card--wide { grid-column: 1; }
}


.lp-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.lp-feature-card h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
}

.lp-feature-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-base);
}

.lp-feature-card__icon {
  font-size: 32px;
  color: var(--color-accent);
}

/* ================================================================
   WHO IT'S FOR
   ================================================================ */
.lp-who {
  padding: 96px 0;
  background: #0e0e0e;
}

.lp-who .lp-badge-pill {
  display: block;
  width: fit-content;
  margin: 0 auto var(--space-md);
}

.lp-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .lp-who__grid { grid-template-columns: 1fr 1fr; }
}

.lp-who-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 40px;
  border-radius: var(--radius-lg);
  border-color: rgba(201, 168, 76, 0.15);
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.lp-who-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.20);
}

.lp-who-card > i {
  font-size: 44px;
  color: var(--color-accent);
}

.lp-who-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.lp-who-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-who-card__list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.lp-who-card__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 8px;
  top: 6px;
}

/* ================================================================
   TESTIMONIAL
   ================================================================ */
.lp-testimonial {
  padding: 96px 0;
  background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
}

.lp-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lp-quote__mark {
  font-size: 80px;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-md);
  display: block;
}

.lp-quote blockquote {
  margin: 0 0 var(--space-lg);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.lp-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.lp-quote figcaption strong {
  color: var(--color-accent);
  font-size: var(--font-size-base);
}

.lp-quote figcaption .text-muted {
  font-size: var(--font-size-sm);
}

/* ================================================================
   BOTTOM CTA
   ================================================================ */
.lp-cta {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.lp-cta__inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-cta__inner p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

.lp-cta__btn {
  font-size: var(--font-size-lg);
  padding: 14px 40px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.lp-footer {
  padding: var(--space-xl) 0 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  position: relative;
}

.lp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 80%);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.35) 25%,
    rgba(201, 168, 76, 0.35) 75%,
    transparent
  );
}

.lp-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 640px) {
  .lp-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.lp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.lp-footer__links {
  display: flex;
  gap: var(--space-lg);
}

.lp-footer__links a {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

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

.lp-footer__tagline {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(201, 168, 76, 0.28);
  padding: 48px var(--space-md) 24px;
}

/* ================================================================
   WINNSS ATTRIBUTION
   ================================================================ */
.lp-footer__winnss {
  display: flex;
  justify-content: center;
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-md);
}

.lp-winnss-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e8c96a;
  transition: color var(--transition-fast);
  font-size: var(--font-size-sm);
}

.lp-winnss-link:hover {
  color: #f5d98a;
  text-decoration: none;
}

.lp-winnss-logo {
  height: 22px;
  width: auto;
  position: relative;
  top: -1px;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(-5deg) brightness(1.05);
  transition: filter var(--transition-fast);
}

.lp-winnss-link:hover .lp-winnss-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(-5deg) brightness(1.25);
}

.lp-winnss-label {
  font-size: var(--font-size-xs, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .salt-mockup-glow,
  .salt-phone { animation: none !important; }
}