/* ============================================
   HowMany Events — Vanilla CSS Design System
   Dark + Neon Lime
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Surfaces */
  --background: hsl(0 0% 4%);
  --foreground: hsl(60 8% 96%);
  --surface: hsl(0 0% 7%);
  --surface-elevated: hsl(0 0% 10%);
  --muted: hsl(0 0% 12%);
  --muted-foreground: hsl(0 0% 62%);
  --border: hsl(0 0% 14%);

  /* Neon lime */
  --primary: hsl(72 100% 60%);
  --primary-glow: hsl(72 100% 70%);
  --primary-foreground: hsl(0 0% 4%);

  /* Effects */
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% 0%, hsl(72 100% 60% / 0.18), transparent 70%);
  --shadow-glow: 0 0 40px -10px hsl(72 100% 60% / 0.5);
  --shadow-card: 0 8px 30px -12px hsl(0 0% 0% / 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --radius: 1rem;
  --container: 975px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.container-sm {
  max-width: 42rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-alt {
  background: hsl(0 0% 7% / 0.4);
  overflow: hidden;
}

.section-cta {
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Type ===== */
.h1 {
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
}

.h2-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.lead-sm {
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.65;
  margin-top: 1rem;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.muted {
  color: var(--muted-foreground);
}

.accent {
  color: var(--primary);
}

.glow-text {
  text-shadow: 0 0 30px hsl(72 100% 60% / 0.4);
}

.fineprint {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: hsl(0 0% 4% / 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: var(--shadow-glow);
  animation: pulseGlow 3s ease-in-out infinite;
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ===== Language Selector ===== */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.125rem;
  transition: all 0.2s var(--ease);
}

.lang-btn:hover {
  border-color: var(--primary);
  background: var(--surface-elevated);
}

.lang-btn[aria-expanded="true"] {
  border-color: var(--primary);
  background: var(--surface-elevated);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 140px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.2s var(--ease);
  z-index: 100;
  box-shadow: 0 10px 40px -10px black;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.lang-dropdown button span {
  font-size: 1.125rem;
}

.lang-dropdown button:hover {
  background: var(--muted);
  color: var(--foreground);
}

.lang-dropdown button.active {
  color: var(--primary);
  background: hsl(72 100% 60% / 0.1);
}

.nav-stores {
  display: flex;
  gap: 0.5rem;
}

.nav-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
  transition: all 0.2s var(--ease);
  box-shadow: 0 0 20px -10px var(--primary);
}

.nav-store-btn:hover {
  background: var(--primary-glow);
  transform: scale(1.08);
  box-shadow: 0 0 25px -5px var(--primary);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-glow);
  transform: scale(1.02);
  box-shadow: 0 0 30px -5px var(--primary);
}

.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.btn-small {
  font-size: 0.625rem;
  opacity: 0.8;
  font-weight: 500;
}

.btn-big {
  font-size: 1rem;
}

.arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(2px);
}

.link-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(60 8% 96% / 0.8);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.link-cta:hover {
  color: var(--primary);
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--primary);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 7rem;
  }
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-phone-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-phone-wrap {
    justify-content: flex-end;
  }
}

/* ===== Phone Frame ===== */
.phone {
  position: relative;
}

.phone-glow {
  position: absolute;
  inset: -2.5rem;
  background: radial-gradient(circle at 50% 50%, hsl(72 100% 60% / 0.35), transparent 60%);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  border-radius: 3rem;
  background: linear-gradient(180deg, hsl(0 0% 16%), hsl(0 0% 10%));
  padding: 3px;
  box-shadow: var(--shadow-card);
}

.phone-sm .phone-frame {
  transform: scale(0.85);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2.85rem;
  background: var(--background);
  overflow: hidden;
  border: 1px solid hsl(0 0% 100% / 0.05);
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: black;
  border-radius: 999px;
  z-index: 20;
}

.status-bar {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: hsl(60 8% 96% / 0.8);
  z-index: 10;
}

.phone-content {
  position: absolute;
  inset: 0;
  padding: 48px 16px 16px;
  overflow: hidden;
  font-size: 11px;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  height: 100%;
}

.card:hover {
  border-color: hsl(72 100% 60% / 0.4);
  background: var(--surface-elevated);
  transform: translateY(-4px);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(72 100% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}

.card:hover .card-icon {
  background: hsl(72 100% 60% / 0.2);
}

.card-icon-sq {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(72 100% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.2s;
}

.card:hover .card-icon-sq {
  box-shadow: var(--shadow-glow);
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.card-body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonial {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}

.testimonial:hover {
  border-color: hsl(72 100% 60% / 0.3);
  background: var(--surface-elevated);
}

.quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 500;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.quote-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.quote-author span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary-foreground);
  font-size: 0.875rem;
}

.avatar-1 {
  background: linear-gradient(135deg, hsl(72 100% 60%), hsl(72 100% 70%));
}

.avatar-2 {
  background: linear-gradient(135deg, hsl(20 100% 60%), hsl(40 100% 65%));
}

.avatar-3 {
  background: linear-gradient(135deg, hsl(330 80% 65%), hsl(280 70% 65%));
  color: white;
}

.avatar-4 {
  background: linear-gradient(135deg, hsl(0 90% 55%), hsl(15 100% 60%));
  color: white;
}

.avatar-5 {
  background: linear-gradient(135deg, hsl(45 100% 50%), hsl(55 100% 60%));
}

.avatar-6 {
  background: linear-gradient(135deg, hsl(210 100% 50%), hsl(190 100% 60%));
  color: white;
}

/* ===== How It Works ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

@media (min-width: 768px) {
  .steps {
    gap: 8rem;
  }
}

.step {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .step {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .step-reverse>.step-text {
    order: 2;
  }
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: hsl(72 100% 60% / 0.2);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-phone {
  display: flex;
  justify-content: center;
}

/* ===== Showcase ===== */
.showcase {
  display: grid;
  gap: 3rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 200px;
}

/* ===== CTA ===== */
.cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-actions {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.footer-stores {
  display: flex;
  gap: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-links a:last-child:hover {
  color: var(--primary);
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Animations ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* ============================================
   MOCKUPS — pure CSS app screens
   ============================================ */
.mock {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.mock-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.mock-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  color: var(--muted-foreground);
}

.mock-card {
  background: var(--surface-elevated);
  border-radius: 1rem;
  padding: 12px;
}

.mock-card.flex1 {
  flex: 1;
}

.mock-stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mock-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}

.mock-avatars {
  display: flex;
}

.mock-avatars>* {
  margin-left: -6px;
}

.mock-avatars>*:first-child {
  margin-left: 0;
}

.mock-av {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--surface-elevated);
}

.mock-av-more {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
}

.mock-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid hsl(0 0% 14% / 0.4);
}

.mock-list-row:last-child {
  border-bottom: 0;
}

.mock-check {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 62% / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--primary-foreground);
}

.mock-check.done {
  background: var(--primary);
  border-color: var(--primary);
}

.mock-list-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.mock-list-qty {
  font-size: 10px;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}

.mock-event {
  border-radius: 1rem;
  padding: 12px;
  border: 1px solid hsl(0 0% 14% / 0.4);
  background: var(--surface-elevated);
}

.mock-event-1 {
  background-image: linear-gradient(135deg, hsl(72 100% 60% / 0.3), hsl(72 100% 60% / 0.05));
}

.mock-event-2 {
  background-image: linear-gradient(135deg, hsl(20 100% 60% / 0.3), hsl(20 100% 60% / 0.05));
}

.mock-event-3 {
  background-image: linear-gradient(135deg, hsl(330 80% 65% / 0.3), hsl(330 80% 65% / 0.05));
}

.mock-event-4 {
  background-image: linear-gradient(135deg, hsl(210 80% 65% / 0.3), hsl(210 80% 65% / 0.05));
}

.mock-event-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.mock-event-date {
  font-size: 10px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.mock-event-count {
  font-size: 10px;
  color: hsl(60 8% 96% / 0.8);
}

.mock-add-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.mock-qty-row {
  background: var(--surface-elevated);
  border-radius: 0.75rem;
  padding: 10px;
}

.mock-qty-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px;
}

.mock-qty-bar {
  height: 6px;
  background: var(--background);
  border-radius: 999px;
  overflow: hidden;
}

.mock-qty-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
}

.mock-chat-msg {
  max-width: 75%;
  border-radius: 1rem;
  padding: 6px 10px;
  background: var(--surface-elevated);
  align-self: flex-start;
}

.mock-chat-msg.me {
  align-self: flex-end;
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-right-radius: 4px;
}

.mock-chat-msg:not(.me) {
  border-bottom-left-radius: 4px;
}

.mock-chat-name {
  font-size: 8px;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}

.mock-chat-text {
  font-size: 11px;
}

.mock-chat-input {
  border-radius: 999px;
  background: var(--surface-elevated);
  padding: 6px 12px;
  font-size: 10px;
  color: var(--muted-foreground);
}

.mock-chat-msgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.mock-cal-head {
  font-size: 8px;
  color: var(--muted-foreground);
  text-align: center;
}

.mock-cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: var(--surface-elevated);
  color: hsl(60 8% 96% / 0.7);
}

.mock-cal-day.event {
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
}

.mock-cal-next {
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  padding: 8px;
  margin-top: 4px;
}

.mock-cal-next-label {
  font-size: 9px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mock-cal-next-text {
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}

/* utility colors used inline */
.bg-prim {
  background: var(--primary);
}

.bg-orange {
  background: hsl(20 100% 65%);
}

.bg-pink {
  background: hsl(330 80% 70%);
}

.bg-blue {
  background: hsl(210 80% 65%);
}

.bg-purple {
  background: hsl(270 70% 65%);
}

.legal-sections h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}