/* index.css - Zinc-Themed Design System for TextBetter Landing Page */

/* Design Tokens (HSL Zinc Color Palette) */
:root {
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 240 5.9% 10%;
  
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-sm: 0.375rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.dark {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 240 5.9% 10%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 240 4.9% 83.9%;
}

/* Base Styles & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Global Containers */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-4xl {
  max-width: 56rem; /* 896px */
}

/* Helpers */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }

/* Links */
.link-underlined {
  color: hsl(var(--foreground));
  text-decoration: none;
  border-bottom: 1px solid hsl(var(--border));
  transition: border-color 0.2s;
  font-weight: 500;
}

.link-underlined:hover {
  border-bottom-color: hsl(var(--foreground));
}

/* Header & Navigation */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsla(var(--background) / 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-spark {
  color: hsl(var(--foreground));
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-spark {
  transform: rotate(45deg);
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  padding: 0 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--border));
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-icon:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--border));
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted) / 0.5);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e; /* Green dot representing online/active status */
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions-group {
    width: auto;
  }
}

.hero-features-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.brief-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.brief-item svg {
  color: hsl(var(--foreground));
}

/* Chrome Simulator Mock */
.hero-simulator {
  width: 100%;
  display: flex;
  justify-content: center;
}

.simulator-card {
  width: 100%;
  max-width: 34rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  background-color: hsl(var(--card));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sim-header {
  background-color: hsl(var(--muted) / 0.5);
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sim-dots {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}

.sim-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #eab308; }
.dot-green { background-color: #22c55e; }

.sim-address-bar {
  flex-grow: 1;
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
  user-select: none;
}

.sim-body {
  padding: 1.25rem;
  min-height: 12rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sim-textarea {
  width: 100%;
  flex-grow: 1;
  min-height: 8rem;
  border: none;
  background: transparent;
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 0.9rem;
  resize: none;
  outline: none;
  line-height: 1.5;
}

.sim-instruction-overlay {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: var(--shadow);
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

/* Floating Action Bar (Simulator Popup) */
.floating-action-bar {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 30;
  width: 14rem;
  animation: scale-up 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scale-up {
  from { transform: translateX(-50%) scale(0.95); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}

.floating-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  padding: 0.15rem 0.35rem;
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: 0.25rem;
}

.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.action-btn {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.15s;
}

.action-btn:hover {
  background-color: hsl(var(--accent));
}

/* Simulator Output Card */
.output-preview-card {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background-color: hsl(var(--card));
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  z-index: 20;
  animation: slide-up 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-up {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.output-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.output-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
}

.spinner-icon {
  width: 8px;
  height: 8px;
  border: 1.5px solid hsl(var(--muted-foreground));
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.output-card-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-text-action {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.3rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background-color 0.15s;
}

.btn-text-action:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--accent));
}

.output-card-body {
  font-size: 0.8rem;
  color: hsl(var(--foreground));
  min-height: 2rem;
  line-height: 1.4;
  white-space: pre-wrap;
}

.output-card-body.loading {
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

/* Simulator Footer Chips */
.sim-footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted) / 0.3);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .sim-footer {
    flex-direction: row;
    align-items: center;
  }
}

.chip-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.sim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.sim-chip {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}

.sim-chip:hover {
  background-color: hsl(var(--accent));
  border-color: hsl(var(--foreground) / 0.15);
}

/* Features Section */
.features-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted) / 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  background-color: hsl(var(--card));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: hsl(var(--foreground) / 0.15);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid hsl(var(--border));
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.feature-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Timeline & Installation Section */
.setup-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid hsl(var(--border));
}

.setup-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
}

.setup-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background-color: hsl(var(--border));
}

.setup-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.step-content {
  flex-grow: 1;
  padding-top: 0.25rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.code-block {
  background-color: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.8rem;
  color: hsl(var(--foreground));
  overflow-x: auto;
  white-space: nowrap;
}

/* FAQ Section */
.faq-section {
  padding-top: 5rem;
  padding-bottom: 6rem;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--muted) / 0.1);
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--card));
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: hsl(var(--foreground) / 0.15);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-chevron {
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron,
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Footer Section */
.footer-section {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-credits {
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground) / 0.8);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.bullet {
  color: hsl(var(--border));
}

/* Scrollbar customizations */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--border));
  border-radius: var(--radius);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

/* Document & Policy Page Layout */
.policy-page {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.policy-header {
  margin-bottom: 3rem;
  text-align: left;
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.policy-subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.policy-body {
  max-width: 48rem; /* ~768px */
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: hsl(var(--foreground) / 0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.policy-section ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.policy-section li {
  font-size: 0.95rem;
  color: hsl(var(--foreground) / 0.85);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* Callout Box */
.policy-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: hsl(var(--muted) / 0.4);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.policy-callout-icon {
  color: hsl(var(--foreground));
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.policy-callout-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: hsl(var(--foreground) / 0.8);
}

