/* ============================================
   BASE / COMPONENT STYLES
   ============================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  margin-bottom: 30px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e3440;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

header p {
  color: #4c566a;
  font-size: 0.9rem;
}

.controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 12px;
  background-color: #d8dee9;
  border: 1px solid #4c566a;
}

.combined-controls {
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.control-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.controls-label {
  font-weight: 600;
  color: #2e3440;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.controls select {
  padding: 6px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid #4c566a;
  background-color: #eceff4;
  color: #2e3440;
  cursor: pointer;
  min-width: 200px;
}

.controls select:focus {
  outline: 2px solid #5e81ac;
  outline-offset: 0;
}

.filter-pills {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter-separator {
  color: #4c566a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 4px;
  text-transform: uppercase;
}

.filter-pill {
  padding: 6px 14px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #4c566a;
  background-color: #eceff4;
  color: #2e3440;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 20px;
  position: relative;
}

/* Custom tooltips for location pills */
.filter-pill[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 6px 10px;
  background-color: #2e3440;
  color: #eceff4;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-radius: 4px;
  z-index: 1000;
  pointer-events: none;
}

/* Tooltip arrow pointing down */
.filter-pill[data-tooltip]:hover::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2px;
  border: 6px solid transparent;
  border-top-color: #2e3440;
  z-index: 1000;
  pointer-events: none;
}

.filter-pill:hover {
  background-color: #d8dee9;
  border-color: #5e81ac;
}

.filter-pill.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.filter-pill.active:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.data-count {
  margin-left: auto;
  color: #4c566a;
  font-size: 0.85rem;
  font-weight: 600;
}

.chart-container {
  margin-top: 20px;
  overflow-x: auto;
  background-color: #fdfcfb;
  border: 2px solid #1a2332;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 6px 6px 0px #1a2332;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.chart-container.fading {
  opacity: 0;
}

/* Option C: Attention ring (active) */
@keyframes attention-ring {
  0% {
    stroke-width: 2;
    stroke-opacity: 0.8;
    r: 5;
  }
  100% {
    stroke-width: 3;
    stroke-opacity: 0;
    r: 20;
  }
}

.marker-highlight-ring {
  fill: none;
  stroke: #ff0000;
  animation: attention-ring 1.5s ease-out infinite;
}

.error,
.no-data {
  padding: 20px;
  text-align: center;
  color: #bf616a;
  background-color: #eceff4;
  border: 2px solid #bf616a;
  font-weight: 600;
}

.no-data {
  color: #d08770;
  border-color: #d08770;
}

/* Custom chart tooltip */
.chart-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  background: #eceff4;
  border: 1.5px solid rgba(76, 86, 106, 0.28);
  border-radius: 12px;
  font-family:
    "DejaVu Sans Mono", "Monaco", "Consolas", "Courier New", monospace;
  font-size: 13px;
  color: #2e3440;
  box-shadow: 0 8px 28px rgba(46, 52, 64, 0.16), 0 2px 8px rgba(46, 52, 64, 0.09);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.chart-tooltip--visible {
  opacity: 1;
}

.chart-tooltip--user-plan {
  border-top: none;
}

.chart-tooltip-banner {
  padding: 14px 14px 12px;
  border-bottom: 1.5px solid rgba(76, 86, 106, 0.2);
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
}

.chart-tooltip-banner--user {
  border-top: 1.5px solid rgba(76, 86, 106, 0.28);
}

.chart-tooltip-plan {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.chart-tooltip-body {
  padding: 10px 14px;
  color: #4c566a;
  /*border-top: none;*/
}

.chart-tooltip-body > div {
  margin-bottom: 4px;
}

.chart-tooltip-body > div:last-child {
  margin-bottom: 0;
}

.chart-tooltip-user-tab {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  white-space: nowrap;
  height: 44px;
  background: #fee35b;
  border: 2px solid #4c566a;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Cabin", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #1a2332;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: inset 0 -8px 12px -4px rgba(46, 52, 64, 0.18);
  z-index: -1;
}

.chart-tooltip--visible .chart-tooltip-user-tab {
  animation: user-tab-slide 0.3s ease-out 0.15s both;
}

@keyframes user-tab-slide {
  from {
    transform: translateX(-50%) translateY(44px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.chart-tooltip-user-tab::before {
  content: "★";
  font-size: 12px;
  opacity: 0.8;
}

.chart-tooltip-user-tab::after {
  content: "★";
  font-size: 12px;
  opacity: 0.8;
}

.chart-footnote {
  font-size: 12px;
  color: #6b6b5e;
  text-align: center;
  margin-top: 24px;
  font-family:
    "DejaVu Sans Mono", "Monaco", "Consolas", "Courier New", monospace;
}

/* Observable Plot adjustments */
.chart-container svg {
  display: block;
  max-width: 100%;
  height: auto;
  font-family:
    "DejaVu Sans Mono", "Monaco", "Consolas", "Courier New", monospace;
  background-color: #fdfcfb;
}

/* Legend SVGs generated by Observable Plot */
.chart-container figure > svg {
  background-color: #fdfcfb !important;
}

/* Arrange legends side-by-side */
.chart-container figure {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: flex-start;
}

.chart-container figure > svg {
  width: 100%;
}

/* Override inline widths and add symmetric padding with separator */
.chart-container .tt-legend-swatches,
.chart-container .vendor-legend-swatches {
  width: auto !important;
}

.chart-container .tt-legend-swatches {
  padding-right: 20px;
  border-right: 2px solid #c8c2b4;
}

.chart-container .vendor-legend-swatches {
  padding-left: 20px;
}

/* Chart text styling */
.chart-container svg text {
  fill: #2e3440;
  font-family: inherit;
}

/* Legend text styling - ensure both legends have same size */
.tt-legend-swatch,
.vendor-legend-swatch,
.chart-container svg [aria-label="color-legend"] text,
.chart-container svg [aria-label="symbol-legend"] text {
  font-size: 14px;
  font-family:
    "DejaVu Sans Mono", "Monaco", "Consolas", "Courier New", monospace !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-items: center;
}

.vendor-legend-swatch-label,
.tt-legend-swatch-label {
  padding-top: 2px;
}

/* Axis tick labels */
.chart-container svg [aria-label*="tick"] text {
  font-size: 14px;
}

/* Axis labels */
.chart-container svg [aria-label*="axis label"] text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Grid lines - subtle */
.chart-container svg line[stroke="#e0e0e0"],
.chart-container svg line[stroke="currentColor"] {
  stroke: #e0dbd2;
  stroke-width: 1;
}

/* Axis lines - stronger */
.chart-container svg .domain {
  stroke: #4c566a;
  stroke-width: 2;
}

/* Legend swatch outlines */
.chart-container svg [aria-label*="legend"] circle,
.chart-container svg [aria-label*="legend"] path {
  stroke: #2e3440;
  stroke-width: 1;
  stroke-opacity: 0.4;
}

/* Data point outlines - will use vendor color but darkened via filter */
.chart-container svg circle[fill],
.chart-container svg path[fill] {
  filter: drop-shadow(0 0 0.5px rgba(46, 52, 64, 0.3));
}

/* Modal Dialog Styles */

/* Modal fade transitions - 0.5s smooth fade */
.modal-fade-enter,
.modal-fade-leave {
  transition: opacity 0.5s ease;
}

.modal-fade-enter-start,
.modal-fade-leave-end {
  opacity: 0;
}

.modal-fade-enter-end,
.modal-fade-leave-start {
  opacity: 1;
}

/* Modal content transitions - 0.5s with scale effect */
.modal-content-enter,
.modal-content-leave {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.modal-content-enter-start,
.modal-content-leave-end {
  opacity: 0;
  transform: scale(0.9);
}

.modal-content-enter-end,
.modal-content-leave-start {
  opacity: 1;
  transform: scale(1);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 35, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(3px);
}

.modal-dialog {
  background: #fff;
  border: 2px solid #1a2332;
  border-radius: 16px;
  min-width: 380px;
  max-width: 520px;
  box-shadow: 6px 6px 0px #1a2332;
  font-family: "Cabin", system-ui, sans-serif;
  overflow: hidden;
}

/* Thin accent strip replaces the coloured header band */
.modal-accent-strip {
  height: 5px;
  width: 100%;
  background: #e5e0d8;
}

.modal-success .modal-accent-strip {
  background: #72d62a;
}

.modal-error .modal-accent-strip {
  background: #f0603c;
}

.modal-header {
  padding: 24px 28px 8px;
  border-bottom: none;
  background: #fff;
}

.modal-header h3 {
  font-family: "Cabin", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #1a2332;
}

.modal-success .modal-header {
  background: #fff;
}

.modal-success .modal-header h3 {
  color: #1a2332;
}

.modal-error .modal-header {
  background: #fff;
}

.modal-error .modal-header h3 {
  color: #1a2332;
}

.modal-body {
  padding: 8px 28px 24px;
  line-height: 1.65;
}

.modal-body p {
  margin: 0;
  font-family: "Cabin", system-ui, sans-serif;
  font-size: 1rem;
  color: #56647a;
}

.modal-footer {
  padding: 0 28px 24px;
  border-top: none;
  background: #fff;
  display: flex;
  justify-content: flex-end;
}

.modal-button {
  padding: 12px 32px;
  font-family: "Cabin", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  border: 2px solid #1a2332;
  background: #fee35b;
  color: #1a2332;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 3px 3px 0px #1a2332;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

.modal-button:hover {
  background: #fee35b;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #1a2332;
}

.modal-button:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px #1a2332;
}

/* Loading Spinner Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 35, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  backdrop-filter: blur(3px);
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top: 6px solid #fee35b;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   MARKETING / LANDING PAGE STYLES
   ============================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  /* Nord palette */
  --nord0: #2e3440;
  --nord1: #3b4252;
  --nord2: #434c5e;
  --nord3: #4c566a;
  --nord4: #d8dee9;
  --nord5: #e5e9f0;
  --nord6: #eceff4;
  --nord7: #8fbcbb;
  --nord8: #88c0d0;
  --nord9: #81a1c1;
  --nord10: #5e81ac;
  --nord11: #bf616a;
  --nord12: #d08770;
  --nord13: #ebcb8b;
  --nord14: #a3be8c;
  --nord15: #b48ead;

  /* Typography */
  --font-mono:
    "JetBrains Mono", "DejaVu Sans Mono", "Monaco", "Consolas", monospace;
  --font-body: "Cabin", system-ui, -apple-system, sans-serif;

  /* Warm palette */
  --bg-page: #ffffff;
  --bg-alt: #f5f1ea;
  --text-primary: #1a2332;
  --text-secondary: #56647a;

  /* Accent */
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #dbeafe;
}

/* ---- BASE OVERRIDES ---- */
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  font-family: var(--font-body);
  font-size: 18px;
  background-color: var(--bg-page);
  color: var(--text-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: #1a2639;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 72px;
  overflow: hidden;
}

/* Grid overlay — echoes the chart grid lines */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 129, 172, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 129, 172, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Subtle aurora gradient — nods to Nord's Nordic roots */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 15% 50%,
      rgba(136, 192, 208, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(94, 129, 172, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 50% 90%,
      rgba(163, 190, 140, 0.07) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--nord6);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: normal;
  color: var(--nord8);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--nord4);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--nord3);
  border-right: 2px solid var(--nord3);
  transform: rotate(45deg);
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-6px, -6px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(6px, 6px);
  }
}

/* ============================================
   V2 SECTIONS — Marketing content
   ============================================ */
.v2-section {
  padding: 80px 24px;
}

.v2-section--light {
  background: var(--bg-page);
}

.v2-section--alt {
  background: var(--bg-alt);
}

/* App sections get tighter padding */
.v2-section--app {
  padding: 40px 24px;
}

.v2-section--app-bottom {
  padding: 40px 24px 80px;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-heading {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
  border-radius: 2px;
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.75;
  max-width: 640px;
}

/* ---- APP WRAPPER (upload + viz sections) ---- */
.app-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   INTRO + UPLOAD — Centered single-column section
   ============================================ */
.intro-section-inner {
  text-align: center;
  max-width: 680px !important;
  margin: 0 auto;
}

.intro-section-inner .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

.intro-section-inner .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.upload-card {
  background: #fff;
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 4px 40px rgba(26, 35, 57, 0.1);
  border: 1px solid #e5e0d8;
  text-align: left;
  margin-top: 8px;
}

.upload-card-heading {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.upload-card-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.upload-card-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upload-card-form input[type="file"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e0d8;
  background: var(--bg-alt);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.upload-card-form input[type="file"]:hover {
  border-color: var(--accent);
}

.upload-card-form input[type="file"]::file-selector-button {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 14px;
  transition: background 0.2s;
}

.upload-card-form input[type="file"]::file-selector-button:hover {
  background: var(--accent-dark);
}

.upload-card-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.upload-card-btn:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.upload-card-btn:disabled {
  background: #c8cdd8;
  color: #8a95a8;
  cursor: not-allowed;
}

/* ============================================
   PRIVACY & TRUST
   ============================================ */
.privacy-narrative {
  max-width: 680px;
}

.privacy-narrative p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 1.1em;
}

.privacy-narrative p:last-child {
  margin-bottom: 0;
}

.privacy-narrative a {
  color: var(--nord10);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-narrative a:hover {
  color: var(--nord9);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within visible sections */
.fade-in-section .step,
.fade-in-section .stat-card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-in-section.visible .step,
.fade-in-section.visible .stat-card {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-section.visible .step:nth-child(1),
.fade-in-section.visible .stat-card:nth-child(1) {
  transition-delay: 0s;
}

.fade-in-section.visible .step:nth-child(2),
.fade-in-section.visible .stat-card:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in-section.visible .step:nth-child(3),
.fade-in-section.visible .stat-card:nth-child(3) {
  transition-delay: 0.15s;
}

.fade-in-section.visible .step:nth-child(4),
.fade-in-section.visible .stat-card:nth-child(4) {
  transition-delay: 0.2s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px 30px;
  }

  .hero-headline {
    font-size: 2.4rem;
    letter-spacing: -0.3px;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .v2-section {
    padding: 60px 16px;
  }

  .v2-section--app,
  .v2-section--app-bottom {
    padding: 32px 16px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .section-subheading {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .control-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-pills {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
#upload-section {
  background: #fefcf8;
}

#viz-section {
  background: #f5f1e8;
}

#disclaimer-section {
  padding-bottom: 20px;
}

#disclaimer-section .privacy-narrative p {
  font-size: 0.9rem;
}

.disclaimer-poles {
  display: block;
  margin: 16px auto 0;
  width: 100%;
  max-width: 160px;
  height: auto;
  opacity: 0.8;
}

/* ============================================
   VOYCE FEEDBACK WIDGET
   ============================================ */
.voyce-bug {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 195px;
  height: 60px;
  background: #000;
  border-radius: 70px;
  text-decoration: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.voyce-bug:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.voyce-bug-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.voyce-bug-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.voyce-bug-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: normal;
  white-space: nowrap;
}

.voyce-bug-label {
  font-family: "Poppins", sans-serif;
  font-size: 12.8px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
  white-space: nowrap;
}
