/* ==========================================================================
   Tokenizer Web Landing Page - Ollama Design System
   Source spec: Web/DESIGN-ollama.md
   ========================================================================== */

:root {
  /* Colors */
  --primary: #000000;
  --on-primary: #ffffff;
  --ink: #000000;
  --ink-deep: #090909;
  --charcoal: #525252;
  --body: #737373;
  --mute: #a3a3a3;
  --canvas: #ffffff;
  --surface-soft: #fafafa;
  --surface-card: #ffffff;
  --hairline: #e5e5e5;
  --hairline-strong: #d4d4d4;
  --on-dark: #ffffff;
  --on-dark-mute: rgba(255, 255, 255, 0.7);
  --surface-dark: #171717;
  --surface-dark-card: #1f1f1f;
  --focus-ring: rgba(59, 130, 246, 0.5);
  --link: #000000;
  --link-mute: #737373;

  /* Terminal Semantic Colors */
  --terminal-red: #ff5f56;
  --terminal-yellow: #ffbd2e;
  --terminal-green: #27c93f;

  /* Typography */
  --font-display: "SF Pro Rounded", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;

  /* Border Radius */
  --rounded-none: 0px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-full: 9999px;

  /* Spacing */
  --spacing-xxs: 2px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-xxl: 32px;
  --spacing-section: 88px;

  /* Layout Containers */
  --max-content: 740px;
  --max-wide: 960px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--canvas);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover {
  opacity: 0.8;
}

a.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Container */
.container {
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-wide {
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Navigation */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  height: 60px;
  width: 100%;
}

.nav-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo {
  width: 30px;
  height: 30px;
  border-radius: var(--rounded-sm);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links .nav-install-link {
  padding: 4px 12px;
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--rounded-full);
  font-size: 13px;
  color: var(--ink);
  transition: all 0.15s ease;
}

.nav-links .nav-install-link:hover {
  background-color: var(--ink);
  color: var(--canvas) !important;
  border-color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--rounded-full);
  padding: 8px 20px;
  height: 36px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background-color: var(--ink-deep);
  opacity: 1;
}

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

.btn-secondary {
  background-color: var(--canvas);
  color: var(--ink);
  border-color: var(--hairline-strong);
}

.btn-secondary:hover {
  background-color: var(--surface-soft);
  opacity: 1;
}

.btn-on-dark {
  background-color: var(--canvas);
  color: var(--ink);
}

.btn-on-dark:hover {
  background-color: var(--surface-soft);
  opacity: 1;
}

.btn-lg {
  height: 44px;
  padding: 10px 24px;
  font-size: 15px;
}

/* Section Rhythm */
.section {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.section-hero {
  padding-top: 64px;
  padding-bottom: 56px;
  text-align: center;
}

/* Hero Elements */
.hero-icon-wrapper {
  margin-bottom: 24px;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: var(--body);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  padding: 4px 12px;
  border-radius: var(--rounded-full);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-install-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--body);
  flex-wrap: wrap;
}

.notice-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--surface-soft);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: var(--rounded-full);
  border: 1px solid var(--hairline-strong);
}

/* Install Snippet Pill */
.install-snippet {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-full);
  padding: 10px 20px;
  max-width: 580px;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  box-sizing: border-box;
}

.install-snippet code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--body);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-sm);
  transition: color 0.15s ease;
}

.copy-btn:hover {
  color: var(--ink);
}

/* Terminal & Preview Cards */
.preview-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  margin-top: 16px;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
}

.traffic-dots {
  display: flex;
  gap: 6px;
}

.traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--rounded-full);
}

.dot-red { background-color: var(--terminal-red); }
.dot-yellow { background-color: var(--terminal-yellow); }
.dot-green { background-color: var(--terminal-green); }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mute);
  margin-left: 6px;
}

.preview-media {
  width: 100%;
  display: block;
}

/* Section Headers */
.section-header {
  margin-bottom: 36px;
  text-align: left;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--body);
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--body);
  line-height: 1.5;
  max-width: 600px;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grids */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.feature-check {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

.feature-item-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.feature-item-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.45;
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.provider-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.15s ease;
}

.provider-card:hover {
  border-color: var(--hairline-strong);
}

.provider-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.provider-desc {
  font-size: 12px;
  color: var(--body);
  line-height: 1.4;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.pricing-card {
  background-color: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-xxl);
  display: flex;
  flex-direction: column;
}

.pricing-card-dark {
  background-color: var(--surface-dark);
  color: var(--on-dark);
  border-color: var(--surface-dark);
}

.pricing-card-dark h3,
.pricing-card-dark .price-amount,
.pricing-card-dark .price-period,
.pricing-card-dark .pricing-features-title {
  color: var(--on-dark);
}

.pricing-card-dark .pricing-desc,
.pricing-card-dark .pricing-bullet {
  color: var(--on-dark-mute);
}

.pricing-card-dark .pricing-bullet .bullet-icon {
  color: var(--on-dark);
}

.pricing-tier {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--body);
  min-height: 42px;
  margin-bottom: 20px;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 36px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.price-period {
  font-size: 14px;
  color: var(--body);
}

.pricing-action {
  width: 100%;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background-color: var(--hairline);
  margin-bottom: 20px;
}

.pricing-card-dark .pricing-divider {
  background-color: rgba(255, 255, 255, 0.12);
}

.pricing-features-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 12px;
}

.pricing-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.4;
}

.bullet-icon {
  color: var(--ink);
  font-weight: 600;
}

/* Privacy Guarantee Strip */
.privacy-strip {
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 32px;
}

.privacy-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.privacy-icon {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
}

.privacy-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.privacy-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.privacy-item p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.45;
}

/* Terminal Mockup */
.terminal-block {
  background-color: var(--surface-dark);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  color: var(--on-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 20px;
}

.terminal-block .terminal-header {
  background-color: #222222;
  border-bottom: 1px solid #333333;
}

.terminal-block .terminal-title {
  color: #888888;
}

.terminal-content {
  padding: 16px;
  line-height: 1.6;
  overflow-x: auto;
}

.terminal-content pre {
  font-family: inherit;
  color: #dddddd;
}

.term-cmd { color: #ffffff; font-weight: 500; }
.term-comment { color: #888888; }
.term-green { color: #4ade80; }
.term-blue { color: #60a5fa; }
.term-yellow { color: #fbbf24; }

/* Installation Guide & Gatekeeper */
.section-install {
  background-color: var(--canvas);
}

.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.install-card {
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.install-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 3px 10px;
  border-radius: var(--rounded-full);
  margin-bottom: 14px;
  width: fit-content;
}

.install-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.install-card-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 20px;
}

.install-card-action {
  margin-top: auto;
}

.install-drag-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--canvas);
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--rounded-md);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  margin-top: auto;
}

.drag-item {
  font-weight: 600;
}

.drag-arrow {
  color: var(--body);
}

.drag-dest {
  color: var(--charcoal);
}

/* Step 3 Gatekeeper Callout Card */
.gatekeeper-callout-card {
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: var(--rounded-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gatekeeper-header {
  margin-bottom: 24px;
}

.gatekeeper-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.gatekeeper-badge {
  background-color: var(--ink);
  color: var(--canvas);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--rounded-full);
}

.gatekeeper-chip {
  background-color: rgba(255, 189, 46, 0.15);
  color: #92400e;
  border: 1px solid rgba(255, 189, 46, 0.4);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--rounded-full);
}

.gatekeeper-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.gatekeeper-subtitle {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.55;
}

.gatekeeper-subtitle em {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
  background-color: var(--surface-soft);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--hairline);
}

.gatekeeper-methods-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-bottom: 24px;
}

.gatekeeper-method-box {
  background-color: var(--surface-soft);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--rounded-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.method-number {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--body);
}

.method-recommended {
  font-size: 11px;
  font-weight: 600;
  color: #166534;
  background-color: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--rounded-full);
}

.method-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.method-steps {
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.6;
}

.method-steps li {
  margin-bottom: 6px;
}

.method-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: 12px;
}

.code-copy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-dark);
  border-radius: var(--rounded-md);
  padding: 10px 14px;
  gap: 12px;
  margin-top: auto;
}

.code-copy-wrapper code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #4ade80;
  white-space: nowrap;
  overflow-x: auto;
  user-select: all;
}

.btn-copy-code {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: var(--rounded-sm);
  padding: 4px 10px;
  font-size: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.btn-copy-code:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-copy-code.copied {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.method-note {
  font-size: 12px;
  color: var(--body);
  margin-top: 8px;
}

.gatekeeper-guarantee {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--rounded-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #166534;
}

.guarantee-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* FAQ Wall */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-row {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}

/* CTA Band */
.cta-banner {
  background-color: var(--surface-dark);
  border-radius: var(--rounded-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--on-dark);
}

.cta-banner h2 {
  color: var(--on-dark);
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--on-dark-mute);
  font-size: 16px;
  margin-bottom: 24px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer-section {
  border-top: 1px solid var(--hairline);
  padding: 40px 20px;
  margin-top: var(--spacing-section);
  background-color: var(--canvas);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--body);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--body);
}

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

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 850px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .install-grid {
    grid-template-columns: 1fr;
  }

  .gatekeeper-methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }

  .gatekeeper-callout-card {
    padding: 24px 18px;
  }

  .code-copy-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-copy-code {
    align-self: flex-end;
  }

  .install-snippet {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--rounded-lg);
    gap: 8px;
  }

  .install-snippet code {
    white-space: normal;
    word-break: break-all;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
