:root {
  --bg: #edf2f7;
  --bg-soft: #f7fafc;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-muted: #f2f7fb;
  --text: #131a26;
  --muted: #647286;
  --line: #d8e3ec;
  --primary: #2f83c9;
  --primary-soft: #e6f1fb;
  --accent: #60c267;
  --shadow: 0 24px 60px rgba(25, 53, 88, 0.08);
  --shadow-soft: 0 12px 28px rgba(25, 53, 88, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 131, 201, 0.11), transparent 24%),
    radial-gradient(circle at bottom right, rgba(96, 194, 103, 0.1), transparent 22%),
    linear-gradient(180deg, #eef3f8 0%, #e7edf3 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
}

button,
input,
select {
  font: inherit;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.site-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(215, 228, 223, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup strong,
.footer-links strong {
  display: block;
  font-size: 0.98rem;
}

.brand-lockup span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.brand-mark {
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  min-height: 40px;
  padding: 0 2px 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:first-child {
  color: var(--text);
  border-bottom-color: rgba(47, 131, 201, 0.55);
}

.hero-section,
.value-section,
.metrics-section,
.explore-section,
.info-card,
.legal-banner,
.contact-section,
.site-footer {
  border: 1px solid rgba(215, 228, 223, 0.9);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 20px;
  padding: 38px;
  border-radius: var(--radius-xl);
  min-height: 540px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4f8fc7;
}

.hero-copy h1,
.section-heading h2,
.info-card h2,
.legal-banner h2,
.detail-content h3 {
  margin: 10px 0 0;
  line-height: 1.06;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.3vw, 4.4rem);
  max-width: 680px;
}

.hero-copy h1 em {
  font-style: italic;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.55;
  text-wrap: balance;
}

.hero-support {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: 0.98rem;
}

.hero-support,
.benefit-card p,
.info-card p,
.legal-banner p,
.contact-card p,
.contact-card span,
.detail-note,
.detail-meta,
.detail-extra,
.record-description,
.status-copy {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-btn,
.ghost-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  padding: 0 22px;
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.primary-btn,
.secondary-btn {
  background: linear-gradient(180deg, #3d94db, #2f83c9);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 131, 201, 0.2);
}

.ghost-btn {
  background: linear-gradient(180deg, #75d57b, #60c267);
  color: #fff;
  border: 1px solid rgba(96, 194, 103, 0.42);
}

.primary-btn:hover,
.ghost-btn:hover,
.secondary-btn:hover,
.record-card:hover {
  transform: translateY(-2px);
}

.hero-panel,
.info-card-dark {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(244, 249, 253, 0.98), rgba(239, 246, 251, 0.98)),
    var(--surface-strong);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "top top"
    "float chart"
    "map map";
  gap: 16px;
  align-content: start;
}

.hero-panel::before,
.info-card-dark::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(47, 131, 201, 0.08);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 2;
  grid-area: top;
  flex-wrap: wrap;
}

.hero-dashboard-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-dashboard-card-chart {
  grid-area: chart;
  align-self: start;
  width: 100%;
  max-width: 240px;
  justify-self: end;
  padding: 16px 18px;
}

.hero-dashboard-card-float {
  grid-area: float;
  align-self: center;
  width: 100%;
  max-width: 190px;
  padding: 14px 16px;
}

.mini-kicker {
  display: block;
  color: #77859a;
}

.hero-dashboard-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.04rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 56px;
  margin-top: 12px;
}

.chart-bars span {
  display: block;
  width: 18px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #7edc83, #2f83c9);
}

.chart-bars span:nth-child(1) {
  height: 24px;
}

.chart-bars span:nth-child(2) {
  height: 34px;
}

.chart-bars span:nth-child(3) {
  height: 48px;
}

.chart-bars span:nth-child(4) {
  height: 40px;
}

.hero-map {
  position: relative;
  grid-area: map;
  inset: auto;
  margin-top: 4px;
  height: 230px;
  min-width: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 62%, rgba(47, 131, 201, 0.08), transparent 18%),
    radial-gradient(circle at 84% 34%, rgba(96, 194, 103, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(229, 241, 251, 0.8), rgba(247, 250, 252, 0.94));
}

.hero-route {
  position: absolute;
  left: 84px;
  right: 64px;
  bottom: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 131, 201, 0.55), rgba(96, 194, 103, 0.55));
  transform: rotate(-10deg);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #2f83c9;
  box-shadow: 0 8px 18px rgba(47, 131, 201, 0.22);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.map-pin-lg {
  width: 28px;
  height: 28px;
  background: #60c267;
  box-shadow: 0 8px 18px rgba(96, 194, 103, 0.24);
}

.pin-a {
  left: 210px;
  top: 76px;
}

.pin-b {
  left: 118px;
  bottom: 68px;
}

.pin-c {
  left: 262px;
  bottom: 98px;
}

.pin-d {
  right: 144px;
  bottom: 76px;
}

.pin-e {
  right: 76px;
  top: 102px;
  background: #60c267;
}

.pin-f {
  right: 218px;
  top: 130px;
}

.hero-panel h2,
.info-card-dark h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.hero-panel p,
.trust-item p {
  color: var(--muted);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #6b6b6b;
  background: #f5f5f3;
  border: 0.5px solid #e0e0de;
  padding: 5px 13px;
  border-radius: 20px;
  white-space: nowrap;
}

.connection-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(47, 131, 201, 0.1);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: #3d79aa;
}

.connection-badge[data-tone="success"] {
  background: rgba(96, 194, 103, 0.16);
  color: #2f7c40;
}

.connection-badge[data-tone="error"] {
  background: rgba(220, 91, 91, 0.12);
  color: #b64c4c;
}

.value-section,
.metrics-section,
.explore-section,
.contact-section {
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

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

.section-heading h2,
.info-card h2,
.legal-banner h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.benefit-grid,
.metrics-grid,
.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

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

.benefit-card,
.metric-card,
.record-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 20px 18px;
  text-align: center;
}

.benefit-card strong,
.metric-card strong,
.record-title,
.contact-card strong {
  display: block;
}

.benefit-card strong {
  margin: 10px 0 8px;
  font-size: 1.06rem;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f0f8ff, #edf8ef);
  border: 1px solid var(--line);
  color: #5aa28b;
  font-size: 1.65rem;
  font-weight: 700;
}

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

.metric-card {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
}

.metric-label {
  display: block;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.metric-card strong {
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.15;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

.skeleton-bar {
  display: inline-block;
  width: 48px;
  height: 22px;
  border-radius: 4px;
  background: var(--line);
  animation: shimmer 1.4s ease-in-out infinite;
}

.explore-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select {
  min-height: 52px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 14px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.status-copy {
  margin: 16px 0 0;
}

.records-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
  margin-top: 22px;
}

.records-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.records-counter,
.record-chip,
.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
}

.records-counter,
.record-chip {
  background: var(--primary-soft);
  color: var(--primary);
}

.record-chip {
  border: 1px solid transparent;
}

.record-chip-vacante {
  background: rgba(47, 131, 201, 0.12);
  color: #256ca8;
}

.record-chip-servicio {
  background: rgba(96, 194, 103, 0.14);
  color: #2c8743;
}

.record-chip-success {
  background: rgba(96, 194, 103, 0.14);
  color: #2c8743;
}

.record-chip-muted {
  background: rgba(100, 114, 134, 0.14);
  color: #556375;
}

.record-chip-featured {
  background: rgba(19, 26, 38, 0.08);
  color: var(--text);
}

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

.record-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border: 1px solid rgba(209, 222, 233, 0.9);
  background:
    radial-gradient(circle at top right, rgba(47, 131, 201, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.record-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #5fb6ef, #2f83c9);
}

.record-card[data-type="servicio"]::before {
  background: linear-gradient(180deg, #81da88, #60c267);
}

.record-card.active {
  border-color: rgba(47, 131, 201, 0.32);
  box-shadow: 0 20px 40px rgba(47, 131, 201, 0.14);
}

.record-card.active::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #60c267, #3aa15e);
  box-shadow: 0 0 0 4px rgba(96, 194, 103, 0.12);
}

.record-card-top,
.record-card-meta,
.detail-top,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.record-card-top {
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.record-card-header-row,
.record-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.record-card-header-row {
  justify-content: space-between;
  align-items: center;
}

.record-title-wrap {
  display: grid;
  gap: 8px;
}

.record-title-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.record-overline {
  font-family: var(--font-body);
  color: #5f7390;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-title {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.record-type-badge {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}

.record-type-badge[data-type="vacante"] {
  background: #eff6ff;
  color: #1d4ed8;
  border: 0.5px solid #bfdbfe;
}

.record-type-badge[data-type="servicio"] {
  background: #f0fdf4;
  color: #15803d;
  border: 0.5px solid #bbf7d0;
}

.record-description {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.record-card-meta {
  margin-top: 16px;
  gap: 8px;
}

.record-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(237, 244, 250, 0.96);
  border: 1px solid rgba(216, 227, 236, 0.9);
  color: #5e6f84;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
}

.detail-panel {
  position: sticky;
  top: 102px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.98));
  box-shadow: var(--shadow-soft);
}

.detail-placeholder,
.detail-content {
  margin-top: 12px;
}

.detail-placeholder h3,
.detail-content h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.detail-placeholder p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.detail-meta-grid {
  margin-top: 16px;
}

.detail-meta-item {
  flex: 1 1 140px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-meta-item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.detail-meta-item strong {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pagination-button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.pagination-button.active {
  background: linear-gradient(180deg, #3d94db, #2f83c9);
  color: #fff;
  border-color: rgba(47, 131, 201, 0.5);
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.coming-soon-wrapper {
  position: relative;
  min-height: 100vh;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  backdrop-filter: blur(7px) brightness(0.5);
  -webkit-backdrop-filter: blur(7px) brightness(0.5);
  display: block;
  pointer-events: none;
}

.coming-soon-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  pointer-events: none;
  z-index: 11;
}

.coming-soon-card {
  pointer-events: all;
  position: relative;
  z-index: 12;
  background: #ffffff;
  border: 0.5px solid #eaeae8;
  border-radius: 18px;
  padding: 2.75rem 2.25rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.06);
}

.coming-soon-kicker {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9e9e9c;
  display: block;
  margin-bottom: 14px;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #0f0f0f;
  margin-bottom: 12px;
}

.coming-soon-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-fields {
  display: flex;
  gap: 8px;
}

.waitlist-fields input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 11px 14px;
  border: 0.5px solid #e0e0de;
  border-radius: 10px;
  background: #f8f8f6;
  color: #0f0f0f;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  min-width: 0;
}

.waitlist-fields input:focus {
  border-color: #0f0f0f;
  background: #ffffff;
}

.waitlist-fields input::placeholder {
  color: #c0c0be;
  font-weight: 300;
}

.waitlist-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  background: #0f0f0f;
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  width: 100%;
  letter-spacing: 0.01em;
}

.waitlist-btn:hover {
  background: #2a2a2a;
}

.waitlist-btn:active {
  transform: scale(0.99);
}

.waitlist-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.waitlist-disclaimer {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #c0c0be;
  margin-top: 6px;
  line-height: 1.5;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.35;
  pointer-events: none;
}

.scroll-hint-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  animation: scrollDot 1.4s ease-in-out infinite;
}

.scroll-hint-dot:nth-child(2) {
  animation-delay: 0.18s;
}

.scroll-hint-dot:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 0 4px;
}

.success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 0.5px solid #bbf7d0;
  color: #15803d;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-success strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #0f0f0f;
}

.waitlist-success p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #6b6b6b;
}

.waitlist-error p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 8px;
}

.waitlist-form.hidden,
.waitlist-success.hidden,
.waitlist-error.hidden {
  display: none;
}

.hidden {
  display: none;
}

.info-section {
  margin-top: 20px;
}

.info-section-split,
.info-section-columns {
  display: grid;
  gap: 18px;
}

.info-section-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

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

.info-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-item {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
}

.legal-banner {
  margin-top: 20px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(47, 131, 201, 0.06), rgba(96, 194, 103, 0.08)),
    var(--surface);
  border: 2px solid rgba(24, 40, 70, 0.22);
}

.download-cta {
  margin-top: 20px;
  background: #0f0f0f;
  padding: 3rem 1.5rem;
}

.download-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-cta p {
  font-family: var(--font-body);
  margin: 0;
  color: #a3a3a3;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 420px;
}

.download-cta p strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.download-cta-btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f0f0f;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.download-cta-btn:hover {
  background: #e5e5e5;
}

@media (prefers-color-scheme: dark) {
  .coming-soon-card {
    background: #1a1a1a;
    border-color: #2e2e2e;
    box-shadow:
      0 8px 48px rgba(0, 0, 0, 0.4),
      0 1px 4px rgba(0, 0, 0, 0.2);
  }

  .coming-soon-title {
    color: #f5f5f3;
  }

  .coming-soon-kicker {
    color: #6b6b6b;
  }

  .waitlist-fields input {
    background: #111;
    border-color: #2e2e2e;
    color: #f5f5f3;
  }

  .waitlist-fields input:focus {
    border-color: #f5f5f3;
    background: #1a1a1a;
  }

  .waitlist-btn {
    background: #f5f5f3;
    color: #0f0f0f;
  }

  .waitlist-btn:hover {
    background: #e5e5e3;
  }
}

.policy-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

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

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

.contact-card {
  padding: 22px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f0f8ff, #edf8ef);
  border: 1px solid var(--line);
  color: #2f83c9;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-flagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 10px;
  color: var(--muted);
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4d135 0 33%, #1f55b0 33% 66%, #cb333b 66% 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: start;
  margin-top: 20px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.footer-brand p,
.footer-meta span {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 28px;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .hero-section,
  .records-layout,
  .info-section-split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 30px;
  }

  .hero-panel {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid,
  .benefit-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .detail-panel {
    position: static;
  }

  .hero-dashboard-card {
    width: auto;
  }

  .hero-map {
    margin-top: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .site-header {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .site-nav::-webkit-scrollbar {
    height: 6px;
  }

  .site-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(95, 115, 144, 0.28);
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 4px 6px;
    scroll-snap-align: start;
  }

  .section-heading {
    flex-direction: column;
  }

  .hero-section {
    padding: 24px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "chart"
      "float"
      "map";
  }

  .hero-dashboard-card-chart,
  .hero-dashboard-card-float {
    max-width: none;
    justify-self: stretch;
  }

  .hero-map {
    height: 210px;
  }

  .records-counter {
    width: 100%;
    justify-content: center;
  }

  .metrics-grid,
  .benefit-grid,
  .info-section-columns,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 10px;
  }

  .hero-section,
  .value-section,
  .metrics-section,
  .explore-section,
  .info-card,
  .legal-banner,
  .contact-section,
  .site-footer {
    padding: 20px;
    border-radius: 24px;
  }

  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    width: 132px;
  }

  .footer-logo {
    width: 150px;
  }

  .hero-actions,
  .toolbar-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-trust-row,
  .download-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-cta-btn {
    width: auto;
  }

  .download-cta {
    padding: 2rem 1.25rem;
  }

  .download-cta p {
    max-width: none;
  }

  .coming-soon-card {
    padding: 2rem 1.25rem 1.75rem;
    border-radius: 20px;
    max-width: 100%;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .coming-soon-title {
    font-size: 1.75rem;
    line-height: 1.1;
    word-break: keep-all;
  }

  .coming-soon-body {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .waitlist-fields {
    flex-direction: column;
    gap: 10px;
  }

  .waitlist-fields input {
    width: 100%;
    font-size: 1rem;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .waitlist-btn {
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 12px;
    margin-top: 2px;
  }

  .coming-soon-sticky {
    align-items: flex-start;
    padding-top: clamp(8rem, 20vh, 11rem);
  }

  .scroll-hint {
    bottom: 1rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .explore-toolbar {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 8.5vw, 3.1rem);
  }

  .hero-panel-top {
    align-items: flex-start;
  }

  .connection-badge,
  .records-counter,
  .record-chip,
  .detail-badge {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero-map {
    height: 190px;
  }

  .hero-route {
    left: 48px;
    right: 36px;
    bottom: 64px;
  }

  .pin-a {
    left: 108px;
    top: 56px;
  }

  .pin-b {
    left: 40px;
    bottom: 54px;
  }

  .pin-c {
    left: 126px;
    bottom: 74px;
  }

  .pin-d {
    right: 84px;
    bottom: 60px;
  }

  .pin-e {
    right: 34px;
    top: 78px;
  }

  .pin-f {
    right: 132px;
    top: 102px;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .coming-soon-overlay {
    background: rgba(10, 10, 10, 0.82);
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(100% - 16px, 1240px);
  }

  .site-header,
  .hero-section,
  .value-section,
  .metrics-section,
  .explore-section,
  .info-card,
  .legal-banner,
  .contact-section,
  .site-footer {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.92rem, 10vw, 2.5rem);
  }

  .section-heading h2,
  .info-card h2,
  .legal-banner h2 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .record-card,
  .metric-card,
  .contact-card,
  .benefit-card,
  .detail-panel {
    padding: 16px;
  }
}
