@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Roboto:wght@400;500;600;700&display=swap');

:root {
  --primary: #1e3a5f;
  --primary-900: #0f2139;
  --accent: #c2410c;
  --accent-soft: #f6e6d8;
  --gold: #b7791f;
  --earth: #8b5a2b;
  --rock: #4a5568;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-dark: #0b1424;
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 40px rgba(17, 24, 39, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Heebo', 'Roboto', 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  color: var(--primary);
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section.narrow {
  padding: 72px 0;
}

.section-header {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--earth);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-900) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(30, 58, 95, 0.25);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-900);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--earth);
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(194, 65, 12, 0.1);
  color: var(--accent);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 28px;
}

.grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 55%), linear-gradient(145deg, var(--accent), var(--primary));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #e5e7eb;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: #fff;
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.92) 0%, rgba(30, 58, 95, 0.92) 60%, rgba(194, 65, 12, 0.65) 100%);
  z-index: 1;
}

.hero img,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero .headline {
  font-size: 3rem;
  max-width: 820px;
}

.hero .subhead {
  max-width: 700px;
  font-size: 1.15rem;
  color: #e0e7ff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
  color: var(--primary);
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-card {
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.06) 0%, rgba(255, 255, 255, 1) 70%);
  border: 1px solid rgba(30, 58, 95, 0.12);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
}

.category-card .image-wrap {
  position: relative;
  height: 280px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.1) 0%, rgba(12, 18, 32, 0.8) 100%);
  color: #fff;
  display: grid;
  align-items: end;
  padding: 22px;
}

.category-card h3 {
  color: #fff;
  margin-bottom: 6px;
}

.category-card ul {
  padding-left: 18px;
  color: #e5e7eb;
  margin: 8px 0 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.spec-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
}

.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.spec-table tr:nth-child(even) td {
  background: #f6f7fb;
}

.spec-table tr:hover td {
  background: #eef2ff;
}

.timeline {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 24px;
}

.timeline-item {
  position: relative;
  padding-left: 10px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--accent);
}

.insight {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
}

.document-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.doc-card,
.application-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.doc-card h4,
.application-card h4 {
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--rock);
  font-weight: 600;
}

.quote-panel {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(12, 23, 40, 0.95));
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.quote-panel h3 {
  color: #fff;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cta-panel {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cta-panel .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-soft {
  padding: 8px 12px;
  background: rgba(183, 121, 31, 0.12);
  border-radius: 10px;
  color: var(--earth);
  font-weight: 700;
}

.list-check {
  display: grid;
  gap: 10px;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.list-check .marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.data-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.data-card strong {
  font-size: 1.4rem;
  color: var(--primary);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.accordion-header {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
}

.accordion-content {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.accordion-item.active .accordion-content {
  display: block;
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.breadcrumb {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 18px 0 8px;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.showcase {
  background: #0f172a;
  color: #e2e8f0;
  padding: 70px 0;
}

.showcase h2 {
  color: #fff;
}

.panel-highlight {
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.1), rgba(30, 58, 95, 0.08));
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: var(--radius);
  padding: 20px;
}

.footer {
  background: #0a1220;
  color: #e2e8f0;
  padding: 64px 0 32px;
  margin-top: 40px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer a {
  color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.table-wrapper {
  overflow-x: auto;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(30, 58, 95, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 12px;
  color: var(--earth);
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-card img {
  border-radius: 0;
}

.media-card .content {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(194, 65, 12, 0.08));
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

/* ======================================
   Elevated layout components for Volcan
   ====================================== */

.material-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 140px 0 110px;
  background: radial-gradient(circle at 20% 20%, rgba(194, 65, 12, 0.2), transparent 32%), linear-gradient(135deg, #0b1629 0%, #132544 50%, #1e3a5f 100%);
}

.material-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.2), rgba(5, 10, 18, 0.85));
  z-index: 1;
}

.material-hero .texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: contrast(110%) saturate(105%);
}

.material-hero .container {
  position: relative;
  z-index: 2;
}

.material-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.material-hero .headline {
  color: #fff;
  font-size: 3rem;
}

.material-hero .subhead {
  color: #e2e8f0;
  max-width: 720px;
  font-size: 1.05rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.hero-panel .badge {
  background: rgba(194, 65, 12, 0.12);
  color: #fbbf24;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.metric-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  color: #e2e8f0;
}

.metric-chip strong {
  color: #fff;
  display: block;
  font-size: 1.2rem;
}

.material-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.material-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: #e2e8f0;
}

.material-card h4 {
  color: #fff;
  margin-bottom: 6px;
}

.pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

.application-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.application-card-wide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
}

.application-card-wide .tag {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.capability-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
}

.capability-card .label {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.spec-callout {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.spec-callout h3 {
  color: #fff;
}

.spec-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-pill {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
}

.selector-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: start;
}

.selector-form {
  display: grid;
  gap: 12px;
}

.selector-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.selector-results {
  display: grid;
  gap: 12px;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-sm);
}

.result-card h4 {
  margin-bottom: 6px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compare-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.compare-results {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.compare-table th {
  background: var(--primary);
  color: #fff;
}

.compare-table tr:nth-child(even) td {
  background: #f8fafc;
}

.particle-lab {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.particle-lab h3 {
  color: #fff;
}

.particle-visual {
  height: 160px;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.35), rgba(30, 58, 95, 0.2) 55%, rgba(10, 18, 32, 0.95));
  margin: 12px 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.particle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sample-tracker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.tracker-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tracker-status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
}

.tracker-status.pending {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}

.tracker-status.shipped {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.logistics-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.logistics-band .pill {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--rock);
}

.doc-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.doc-downloads .card {
  background: #fff;
}
