/* App reset and shared primitives. Marketing layouts are intentionally not loaded. */
:root { --destructive: 0 72% 45%; --destructive-foreground: 0 0% 100%; --accent-orange: 35 65% 40%; --shadow-lg: 0 10px 28px #0001; --shadow-xl: 0 20px 50px #0002; }
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Utility Classes
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-right-lg {
  text-align: left;
}

@media (min-width: 1024px) {
  .text-right-lg {
    text-align: right;
  }
}

.w-full {
  width: 100%;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.8;
  /* transform: scale(1.01); */
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary));
  transform: scale(1.02);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-secondary-inverted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-secondary-inverted:hover {
  opacity: 0.9;
}

/* ========================================
   Badges
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-green {
  background-color: hsl(142, 76%, 90%);
  color: hsl(142, 76%, 36%);
}

.dark .badge-green {
  background-color: hsl(142, 76%, 20%);
  color: hsl(142, 76%, 70%);
}

.badge-dark {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

/* Optional analytics and advertising choice */
.privacy-choice-banner {
  position: fixed;
  z-index: 10000;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
  padding: 1rem 1.125rem;
  color: hsl(var(--foreground));
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  box-shadow: 0 18px 60px hsl(0 0% 0% / 0.28);
}

.privacy-choice-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.privacy-choice-copy p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
  line-height: 1.5;
}

.privacy-choice-copy a {
  display: inline-block;
  margin-top: 0.35rem;
  color: inherit;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-choice-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.625rem;
}

.privacy-choice-actions button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
}

.privacy-choice-secondary {
  color: hsl(var(--foreground));
  background: transparent;
  border: 1px solid hsl(var(--border));
}

.privacy-choice-primary {
  color: hsl(var(--background));
  background: hsl(var(--foreground));
  border: 1px solid hsl(var(--foreground));
}

.privacy-choice-actions button:focus-visible {
  outline: 3px solid hsl(var(--ring) / 0.45);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .privacy-choice-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.875rem;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .privacy-choice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
