﻿:root {
  --bg: #050508;
  --bg-elevated: #0c0c14;
  --bg-card: rgba(18, 16, 28, 0.85);
  --border: rgba(120, 100, 180, 0.22);
  --text: #e8e6f0;
  --text-muted: #9a94ad;
  --purple: #8b5cf6;
  --blue: #4f46e5;
  --indigo: #4f46e5;
  --cyan: #22d3ee;
  --green: #34d399;
  --amber: #fbbf24;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 50%, #6366f1 100%);
  --radius: 12px;
  --max: 1120px;
  --font: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59, 130, 246, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(34, 211, 238, 0.06), transparent);
  z-index: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 8, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 2.5rem;
  min-height: 3.5rem;
  width: 100%;
}

.logo-link {
  flex-shrink: 0;
  margin-right: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.social-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social-x:hover {
  color: var(--purple);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
}

.footer-social {
  margin-top: 0.75rem;
}

.footer-social .social-x {
  font-size: 0.875rem;
}

.nav::-webkit-scrollbar { display: none; }

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

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

.nav-cta {
  color: var(--purple) !important;
}

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  background: linear-gradient(180deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--purple);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.hero-lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.08);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.badge-data {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
}

.badge-active {
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
}

.badge-dev {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
}

.badge-future {
  color: var(--text-muted);
  border-color: var(--border);
  background: rgba(154, 148, 173, 0.06);
}

.card-dataset h3,
.card-project h3 {
  margin-top: 0;
}

.card-disclaimer {
  margin-top: 0.75rem !important;
  font-size: 0.8125rem !important;
  font-family: var(--mono);
  opacity: 0.75;
}

.project-subtitle {
  font-size: 0.8125rem !important;
  color: var(--purple) !important;
  margin-bottom: 0.5rem !important;
}

.cards-datasets,
.cards-projects {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.placeholder-panel {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.placeholder-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.placeholder-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.placeholder-panel > p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
}

.placeholder-list {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

.placeholder-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.placeholder-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
}

.about-content {
  max-width: 40rem;
  margin-inline: auto;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

.about-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--purple);
  background: rgba(139, 92, 246, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.0625rem;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.tier-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

.tier-featured {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.12);
}

.tier-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
}

.tier-audience {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.tier-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tier-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.625rem;
  top: 0.2rem;
}

.tier-note {
  font-size: 0.8125rem !important;
  color: var(--text-muted);
  opacity: 0.8;
  margin-bottom: 1.5rem !important;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text); }

.metrics-ticker {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 20, 0.92);
  padding: 0.35rem 1rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.06), inset 0 1px 0 rgba(139, 92, 246, 0.08);
}

.metrics-ticker-text {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
}

.metrics-subtitle {
  margin-bottom: 0.5rem !important;
}

.metrics-snapshot-note {
  margin-top: 0.5rem !important;
  font-family: var(--mono);
  font-size: 0.75rem !important;
  color: var(--purple) !important;
  opacity: 0.85;
}

.metrics-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--cyan);
}

.metrics-updated,
.metrics-refresh {
  color: var(--cyan);
}

.metrics-refresh-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--text-muted);
  background: rgba(5, 5, 8, 0.55);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.status-symbol {
  font-size: 0.625rem;
  line-height: 1;
  flex-shrink: 0;
}

.status-pill.status-on {
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.1);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.12);
}

.status-pill.status-on .status-symbol {
  color: var(--green);
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
  animation: status-symbol-pulse 2.2s ease-in-out infinite;
}

.status-pill.status-off {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.06);
}

.status-pill.status-off .status-symbol {
  color: var(--amber);
}

.status-pill.status-muted {
  color: var(--text-muted);
  border-color: rgba(154, 148, 173, 0.25);
  background: rgba(154, 148, 173, 0.06);
  opacity: 0.85;
}

.status-pill.status-muted .status-symbol {
  color: var(--text-muted);
}

@keyframes status-symbol-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 6px rgba(52, 211, 153, 0.5); }
  50% { opacity: 0.75; text-shadow: 0 0 14px rgba(52, 211, 153, 0.9); }
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 1100px) {
  .metrics-grid { grid-template-columns: repeat(6, 1fr); }
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(5, 5, 8, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.metric-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
}

.metric-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.metric-value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  font-family: var(--mono);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  transition: filter 0.3s;
}

.metric-value.is-animating {
  filter: brightness(1.15);
}

.metric-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin-inline: auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green) 55%, var(--amber) 75%, var(--text-muted) 100%);
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  margin-top: 2px;
  z-index: 1;
}

.timeline-done .timeline-marker {
  border-color: var(--green);
  background: rgba(52, 211, 153, 0.15);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.25);
}

.timeline-active .timeline-marker {
  border-color: var(--amber);
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

.timeline-future .timeline-marker {
  border-color: var(--text-muted);
  background: rgba(154, 148, 173, 0.1);
}

.timeline-content {
  flex: 1;
  padding: 0.25rem 0;
}

.timeline-phase {
  font-family: var(--mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.timeline-content h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.0625rem;
}

.timeline-status {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--mono);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.timeline-done .timeline-status {
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
}

.timeline-active .timeline-status {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
}

.timeline-future .timeline-status {
  color: var(--text-muted);
  border-color: var(--border);
  background: rgba(154, 148, 173, 0.06);
}

.section-cta {
  text-align: center;
  padding-bottom: 5rem;
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
}

.cta-inner > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 32rem;
  margin-inline: auto;
}

.benefits-list {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.benefits-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.75rem;
  top: 0.15rem;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 32rem;
  margin: 0 auto;
}

.contact-form input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-note {
  margin-top: 1rem !important;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.form-note a {
  color: var(--purple);
  text-decoration: none;
}

.form-note a:hover { text-decoration: underline; }

.follow-x a {
  color: var(--purple);
  text-decoration: none;
}

.follow-x a:hover { text-decoration: underline; }

.waitlist-counter {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem !important;
}

.waitlist-counter strong {
  color: var(--cyan);
  font-family: var(--mono);
  font-weight: 500;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 32rem;
  margin-inline: auto;
}

.form-feedback-success { color: var(--green); }

.form-feedback-error { color: #f87171; }

.legal-page {
  padding: 3rem 0 4rem;
  min-height: 60vh;
}

.legal-content {
  max-width: 42rem;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.legal-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.legal-section h3 {
  font-size: 0.9375rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

.legal-section p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.legal-section a {
  color: var(--purple);
  text-decoration: none;
}

.legal-section a:hover { text-decoration: underline; }

.legal-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.legal-list li { margin-bottom: 0.5rem; }

.legal-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem !important;
  opacity: 0.8;
}

.contact-email {
  font-family: var(--mono);
  font-size: 1.0625rem;
  color: var(--cyan) !important;
}

.contact-note {
  font-size: 0.875rem !important;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-elevated);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer-brand {
  justify-self: start;
}

.footer-nav {
  justify-self: center;
  align-self: center;
}

.footer-meta {
  justify-self: end;
  text-align: right;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-meta p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: right;
}

.footer-disclaimer {
  margin-top: 0.35rem !important;
  opacity: 0.7;
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-nav {
    justify-self: start;
    align-self: start;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .header-right {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .nav {
    flex: 1 1 auto;
    gap: 0.65rem 0.85rem;
    padding-bottom: 0.25rem;
    justify-content: flex-start;
  }

  .nav a { font-size: 0.8125rem; white-space: nowrap; }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-lead {
    font-size: 1rem;
    padding-inline: 0.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .cards {
    gap: 1rem;
  }

  .contact-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-inline: 0.25rem;
  }

  .contact-form input {
    flex: 1 1 auto;
    width: 100%;
  }

  .contact-form .btn {
    width: 100%;
  }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .status-strip { gap: 0.4rem; }
  .status-pill { font-size: 0.6875rem; padding: 0.35rem 0.65rem; }
  .tiers-grid { grid-template-columns: 1fr; }
  .placeholder-panel { padding: 2rem 1.25rem; }
}
