/* ── Someone Song — Shared Components ── */

/* ── Page shells ── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: var(--z-base);
}

.page-scroll {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: var(--z-base);
}

.page-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-40) var(--sp-32);
}

/* ── Orbs (Disabled entirely for visual stability and comfort) ── */
.orbs {
  display: none !important;
}

.orb {
  display: none !important;
}

/* ── Solid surfaces (Vestibular-friendly, crisp cards instead of glassmorphism) ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.glass-strong {
  background: var(--glass-hi);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
}

.glass-rose {
  background: var(--rose-dim);
  border: 1px solid var(--rose-mid);
  border-radius: var(--radius);
  box-shadow: 0 0 20px var(--rose-dim), inset 0 1px 0 var(--tint-04);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-28);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: var(--fs-base);
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

/* Solid, not a gradient pill. A flat brand fill reads as a considered UI
   control; the gradient-and-glow version read as a template. */
.btn-primary {
  background: var(--action);
  color: var(--action-fg);
  font-weight: 600;
}

.btn-primary:hover { background: var(--action-hover); }

.btn-secondary {
  background: var(--glass);
  color: var(--t1);
  border: 1px solid var(--border-hi);
}

.btn-secondary:hover {
  background: var(--glass-hi);
  border-color: var(--rose-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--t2);
}

.btn-ghost:hover {
  color: var(--t1);
  background: var(--glass);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  filter: none !important;
}

.btn-lg   { font-size: var(--fs-16); padding: var(--sp-16) var(--sp-44); }
.btn-md   { font-size: var(--fs-15); padding: var(--sp-14) var(--sp-32); }
.btn-sm   { font-size: var(--fs-13); padding: var(--sp-8) var(--sp-18); }
.btn-xl   { font-size: var(--fs-17); padding: var(--sp-18) var(--sp-56); }
.btn-full { width: 100%; justify-content: center; }

/* ── Inputs ── */
.inp {
  width: 100%;
  background: var(--tint-02);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  color: var(--t1);
  font-family: var(--fb);
  font-size: var(--fs-15);
  padding: var(--sp-12) var(--sp-16);
  outline: none;
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
}

.inp::placeholder { color: var(--t3); }

.inp:focus {
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 3px var(--rose-dim);
}

textarea.inp {
  resize: vertical;
  min-height: 5rem;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: var(--r-2);
  background: var(--border-hi);
  outline: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose);
  cursor: pointer;
  box-shadow: 0 0 10px var(--rose-mid);
  transition: transform var(--dur-fast);
}

input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.25); }

input[type=datetime-local].inp { color-scheme: dark; }

.inp[readonly] { opacity: 0.5; cursor: not-allowed; }

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-12);
  border-radius: var(--r-full);
  font-size: var(--fs-12);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-rose    { background: var(--rose-dim);  border: 1px solid var(--rose-mid);              color: var(--rose);  }
.tag-mauve   { background: var(--mauve-dim); border: 1px solid var(--mauve-mid);             color: var(--mauve); }
.tag-gold    { background: var(--gold-dim);  border: 1px solid var(--gold-mid);  color: var(--gold);  }
.tag-neutral { background: var(--glass);     border: 1px solid var(--border);                color: var(--t3);    }
.tag-sm      { font-size: var(--fs-11); }

/* ── Pills ── */
.pill-group { display: flex; flex-wrap: wrap; gap: var(--sp-8); }

.pill {
  padding: var(--sp-6) var(--sp-18);
  border-radius: var(--r-full);
  font-size: var(--fs-13);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--t2);
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
  -webkit-user-select: none;
  user-select: none;
}

.pill:hover { border-color: var(--rose-mid); color: var(--t1); }
.pill.sel { background: var(--rose-dim); border-color: var(--rose); color: var(--rose); }

/* ── Occasion cards ── */
.occ-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  cursor: pointer;
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base) ease;
  -webkit-user-select: none;
  user-select: none;
}

.occ-card:hover {
  transform: translateY(-4px);
  background: var(--glass-hi);
  border-color: var(--rose-mid);
  box-shadow: 0 0 32px var(--rose-dim);
}

.occ-card.sel {
  background: var(--rose-dim) !important;
  border-color: var(--rose) !important;
  box-shadow: 0 0 40px var(--rose-dim) !important;
}

/* ── Waveform ── */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  overflow: hidden;
}

.wf-bar {
  width: 3px;
  border-radius: var(--r-4); /* capsule roundness */
  background: var(--tint-06); /* elegant dark slate rest color */
  transform-origin: center;
  transition: background-color var(--dur-base), opacity var(--dur-slow), transform var(--dur-slow);
}

.wf-bar.played {
  background: var(--rose); /* beautiful dynamic rose pink progress highlight */
}

.wf-bar.playing { animation: wfAnim 1.2s ease-in-out infinite; }
.wf-bar.paused  { opacity: 0.3; transform: scaleY(0.25); }

/* ── Progress bar ── */
.prog-track {
  height: 3px;
  background: var(--border-hi);
  border-radius: var(--r-2);
  cursor: pointer;
  position: relative;
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
  border-radius: var(--r-2);
  transition: width var(--dur-slower) linear;
  pointer-events: none;
}

/* ── Lyric lines (see _player.css for player-page specifics) ── */

/* ── Gen progress bar ── */
.gen-bar-track {
  height: 3px;
  background: var(--border-hi);
  border-radius: var(--r-2);
  overflow: hidden;
}

.gen-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
  border-radius: var(--r-2);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Shimmer skeleton ── */
.shimmer {
  background: linear-gradient(90deg, var(--glass) 25%, var(--glass-hi) 50%, var(--glass) 75%);
  background-size: 200% 100%;
  animation: shimAnim 1.6s infinite;
}

/* ── Ring progress ── */
.ring-track { fill: none; stroke: var(--border-hi); }

.ring-fill {
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Song card ── */
.song-card {
  padding: var(--sp-18) var(--sp-20);
  cursor: pointer;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast), opacity var(--dur-fast);
}

.song-card:hover {
  transform: translateY(-2px);
  background: var(--glass-hi);
}

/* ── Lyrics card ── */
.lyrics-card {
  background: var(--grad-surface);
  border: 1px solid var(--rose-mid);
  border-radius: var(--r-20);
  box-shadow: 0 0 80px var(--rose-dim), 0 24px 60px var(--scrim-03);
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
  margin: 0 var(--sp-40);
}

/* ── Toggle ── */
.toggle {
  width: 44px;
  height: 24px;
  border-radius: var(--r-12);
  background: var(--border-hi);
  cursor: pointer;
  transition: background var(--dur-base);
  position: relative;
  flex-shrink: 0;
  border: none;
}

.toggle.on { background: var(--rose); }

.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: left var(--dur-base);
  box-shadow: 0 1px 4px var(--scrim-02);
}

.toggle.on::after { left: 22px; }

/* ── Upload zone ── */
.upload-zone {
  padding: var(--sp-14) var(--sp-18);
  border-radius: var(--r-14);
  border: 1px dashed var(--border-hi);
  background: var(--glass);
  transition: border-color var(--dur-base), background var(--dur-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--sp-14);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--rose-mid);
  background: var(--tint-02);
}

.upload-zone input[type=file] { display: none; }

/* ── Card option ── */
.card-opt {
  flex: 1;
  padding: var(--sp-14) var(--sp-12);
  border-radius: var(--r-14);
  cursor: pointer;
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--border);
}

.card-opt:hover { border-color: var(--rose-mid); }
.card-opt.sel   { background: var(--rose-dim); border-color: var(--rose); }

.card-opt-label {
  font-size: var(--fs-13);
  font-weight: 500;
  color: var(--t1);
  margin-bottom: var(--sp-4);
}

.card-opt.sel .card-opt-label { color: var(--rose); }

.card-opt-desc {
  font-size: var(--fs-11);
  color: var(--t3);
  line-height: 1.4;
}

/* ── Expandable complaint card ── */
.complaint-card {
  padding: var(--sp-18) var(--sp-20);
  border-radius: var(--r-16);
  cursor: pointer;
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
  border: 1px solid var(--border);
  background: var(--glass);
}

.complaint-card.open {
  border-color: var(--rose);
  background: var(--rose-dim);
}

.complaint-card-body { display: none; margin-top: var(--sp-14); }
.complaint-card.open .complaint-card-body { display: block; }

.complaint-toggle {
  font-size: var(--fs-18);
  color: var(--t3);
  transition: transform var(--dur-base);
  line-height: 1;
}

.complaint-card.open .complaint-toggle {
  transform: rotate(45deg);
  color: var(--rose);
}

/* ── Page enter animation ── */
.enter { animation: fadeIn 0.22s ease; }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-18) var(--sp-40);
  position: relative;
  z-index: var(--z-raised);
  flex-shrink: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  min-width: 0;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

/* ── Avatar ── */
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-dim);
  border: 1px solid var(--rose-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: var(--fs-16);
  color: var(--rose);
  font-weight: 400;
  flex-shrink: 0;
}

/* ── Social button ── */
.social-btn {
  flex: 1;
  padding: var(--sp-10);
  border-radius: var(--r-12);
  background: var(--tint-04);
  border: 1px solid var(--border-hi);
  color: var(--t1);
  cursor: pointer;
  font-size: var(--fs-13);
  font-family: var(--fb);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
}

.social-btn:hover { background: var(--tint-05); }

/* ── Pricing card ── */
.pcard {
  padding: var(--sp-36) var(--sp-32);
  border-radius: var(--r-24);
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pcard.featured {
  background: var(--surface-hi);
  border-color: var(--border-brand);
}

/* ── Testimonial ── */




/* ── Play button ── */
.play-btn {
  border-radius: 50%;
  background: var(--action);
  color: var(--action-fg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--action-hover);
  transform: scale(1.06);
}

/* ── Dashboard nav ── */
.dash-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Always span the full width, even when a page centers its children
     (e.g. the confirmation page uses align-items: center). */
  align-self: stretch;
  width: 100%;
  /* Full-bleed background/border, but inner content aligns to the same
     centered 1200px column as the page content below. */
  padding: 0 max(40px, calc((100% - 1200px) / 2));
  height: 4.5rem; /* Uniform with landing page (72px height) */
  flex-shrink: 0;
  background: var(--bg); /* Same solid deep obsidian as home page wrapper */
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky); /* Uniform with landing page z-index */
}

/* Breathing room between the sticky nav and flow-page content so the page
   title isn't tucked directly under the nav. Dashboard pages are unaffected
   (their nav lives in .dash-wrap, and .dash-content-inner has its own padding). */
.page > .dash-nav,
.page-scroll > .dash-nav {
  margin-bottom: var(--sp-28);
}

.dash-nav-link {
  padding: var(--sp-8) var(--sp-16);
  border-radius: var(--r-full);
  font-size: var(--fs-14); /* Uniform with landing page (14px) */
  cursor: pointer;
  border: none;
  font-family: var(--fb);
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
  background: transparent;
  color: var(--t2);
}

.dash-nav-link:hover {
  color: var(--t1);
  background: var(--glass-hi); /* Uniform smooth block hover */
}

.dash-nav-link.active {
  background: var(--rose-dim);
  color: var(--rose);
}

/* ── Version card ── */
.version-card {
  padding: var(--sp-24) var(--sp-28);
  border-radius: var(--r-20);
  border: 1px solid var(--border);
  background: var(--glass);
  transition: background-color var(--dur-base), border-color var(--dur-base), color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base), opacity var(--dur-base);
}

.version-card.current {
  border-color: var(--rose);
  background: var(--rose-dim);
}

.version-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: var(--fs-16);
  background: var(--glass-hi);
  color: var(--t2);
  border: 1px solid var(--border-hi);
}

.version-card.current .version-badge {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

/* ── Toast notifications ────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
  pointer-events: none;
  max-width: 360px;
}

.toast {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  padding: var(--sp-12) var(--sp-14);
  background: var(--glass-hi);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--scrim-04);
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-base) ease, transform var(--dur-base) ease;
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--hiding {
  opacity: 0;
  transform: translateY(6px);
}

/* Left accent stripe */
.toast::before {
  content: '';
  width: 3px;
  min-height: 20px;
  align-self: stretch;
  border-radius: var(--r-full);
  flex-shrink: 0;
  background: var(--toast-accent, var(--border-hi));
}

.toast--success { --toast-accent: var(--ok); }
.toast--error   { --toast-accent: var(--rose); }
.toast--warning { --toast-accent: var(--warn); }
.toast--info    { --toast-accent: var(--info); }

.toast-msg {
  flex: 1;
  font-size: 13.5px;
  color: var(--t1);
  line-height: 1.4;
  font-family: var(--fb);
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--t2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity var(--dur-fast);
  line-height: 1;
}

.toast-close:hover { opacity: 1; }

@media (max-width: 480px) {
  #toast-container {
    bottom: 80px; /* clear bottom nav on mobile */
    right: 12px;
    left: 12px;
    max-width: 100%;
  }
}


/* ── Site footer ──
 * Moved here from pages/_landing.css: partials/_footer.html is included by
 * base.html on every page, so these are shared component styles. Leaving
 * them in the landing sheet meant every page had to load the landing CSS
 * just to render its footer.
 */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: var(--sp-60) var(--sp-40) var(--sp-32);
  position: relative;
  z-index: var(--z-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-60);
  margin-bottom: var(--sp-56);
}

.footer-brand .logo-mark { margin-bottom: var(--sp-12); }

.footer-tagline {
  color: var(--t3);
  font-size: var(--fs-14);
  max-width: 280px;
  line-height: 1.75;
  margin-top: var(--sp-10);
}

.footer-social   { display: flex; gap: var(--sp-12); margin-top: var(--sp-20); }

.footer-social a { font-size: var(--fs-12); color: var(--t3); }

.footer-col-title {
  font-size: var(--fs-11);
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-16);
}

.footer-links { display: flex; flex-direction: column; gap: var(--sp-10); }

.footer-links .nav-link {
  font-size: var(--fs-14);
  color: var(--t3);
}

.footer-links .nav-link { padding: 0; text-align: left; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-16);
}

.footer-copy              { font-size: var(--fs-12); color: var(--t3); }

.footer-powered           { display: flex; align-items: center; gap: var(--sp-8); }

.footer-powered > span    { color: var(--t3); font-size: var(--fs-12); }

.footer-links a,
.footer-links span,
.footer-links .nav-link {
  font-size: var(--fs-14);
  color: var(--t3);
}

/* ── Dashboard nav (shared) ──
 * Moved here from pages/_dashboard.css. partials/_nav.html is included by
 * the gift, player, occasion, song-form, confirmation, checkout, refine and
 * lyrics pages too — none of which load the dashboard stylesheet. Leaving
 * these there meant the menu toggle, tab row and end-cap rendered unstyled
 * on every one of those pages.
 */
.dash-nav-tabs  { display: flex; gap: var(--sp-2); }

.dash-nav-end   { display: flex; align-items: center; gap: var(--sp-12); }

.dash-menu-toggle { display: none; }

.dash-nav-back { gap: var(--sp-6); }

/* ── .container (shared) ──
 * Moved from pages/_landing.css: partials/_footer.html uses it and base.html
 * renders that footer on every page, so it cannot live in a page stylesheet. */
.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── App footer (shared) ──
 * Moved from pages/_dashboard.css: partials/_app_footer.html is included by 9
 * templates, only two of which load the dashboard stylesheet. */
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  flex-wrap: wrap;
  margin-top: var(--sp-48);
  padding: 22px max(48px, calc((100% - 1200px) / 2)) 24px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-13);
  color: var(--t3);
}

.app-footer-links { display: flex; gap: var(--sp-18); }

.app-footer-links a { color: var(--t3); text-decoration: none; }

.app-footer-links a:hover { color: var(--rose); }

/* ── Shared classes reclaimed from page stylesheets ──
 * Each of these is used by templates that do not load the sheet it used
 * to live in, so after the per-page CSS split they rendered unstyled.
 * They belong here because more than one page depends on them.
 */

/* from pages/_contact.css */
.cf-turnstile { min-height: 65px; }

/* from pages/_form.css */
.label--rose    { color: var(--rose); margin-bottom: var(--sp-20); }

.label--rose-sm { color: var(--rose); margin-bottom: var(--sp-8);  }

.form-label {
  font-size: var(--fs-13);
  color: var(--t2);
  display: block;
  margin-bottom: var(--sp-6);
}

.upload-info   { flex: 1; min-width: 0; }

/* from pages/_legal.css */
.legal-back-link {
  color: var(--t3);
  font-size: var(--fs-13);
  text-decoration: none;
}

.legal-back-link:hover { color: var(--t2); }

/* from pages/_dashboard.css */
.ver-title   { margin-bottom: var(--sp-6); }

.ver-subtitle { color: var(--t2); font-size: var(--fs-14); }

.tag-xs         { font-size: var(--fs-10); }

/* from pages/_auth.css */
.error-msg {
  background: oklch(0.63 0.22 var(--hue-brand) / 0.12);
  border: 1px solid var(--rose-mid);
  border-radius: var(--r-10);
  padding: var(--sp-10) var(--sp-14);
  font-size: var(--fs-13);
  color: var(--rose);
}

/* from pages/_landing.css */
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-14); }
