/* ============================= */
/* ESTACIONES METEOROLÓGICAS DAVIS */
/* ============================= */

.stations-page {
  background: #f8fafc;
  color: #0f172a;
}

.stations-container {
  max-width: 1180px;
}

/* ============================= */
/* SHARED SYMBOLS */
/* ============================= */

.compare-vue-symbol {
  width: 11px;
  height: 11px;
  min-width: 11px;
  min-height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.10),
    0 0 18px rgba(34, 197, 94, 0.22);
}

.pro-symbol-mini {
  position: relative;
  width: 27px;
  height: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro-symbol-mini::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 1.5px;
  background: rgba(37, 99, 235, 0.45);
  transform: translateY(-50%);
}

.pro-symbol-mini span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563eb;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 6px rgba(37, 99, 235, 0.10),
    0 0 16px rgba(37, 99, 235, 0.20);
}

/* ============================= */
/* HERO */
/* ============================= */

.stations-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  background:
    radial-gradient(circle at 16% 18%, rgba(34, 197, 94, 0.12), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(37, 99, 235, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.stations-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.stations-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.68fr);
  gap: 72px;
  align-items: center;
}

.stations-hero-content {
  max-width: 820px;
}

.stations-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stations-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, #22c55e 0%, #22c55e 45%, #2563eb 55%, #2563eb 100%);
  box-shadow: 0 0 0 5px rgba(15, 23, 42, 0.07);
}

.stations-hero h1 {
  max-width: 1050px;
  margin: 0 0 26px;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 780;
  color: #0f172a;
}

.stations-hero-content p {
  max-width: 720px;
  margin: 0;
  color: #475569;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.stations-hero-panel {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.82));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.stations-hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(34, 197, 94, 0.22),
      transparent 42%,
      rgba(37, 99, 235, 0.22)
    );
}

.station-mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.station-mini-card + .station-mini-card {
  margin-top: 14px;
}

.station-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.station-mini-card.vue:hover {
  border-color: rgba(34, 197, 94, 0.25);
}

.station-mini-card.pro:hover {
  border-color: rgba(37, 99, 235, 0.25);
}

.station-symbol {
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.station-mini-card strong {
  display: block;
  color: #111827;
  font-size: 1rem;
  font-weight: 850;
}

.station-mini-card span {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 600;
}

/* ============================= */
/* COMPARE */
/* ============================= */

.stations-compare {
  padding: 96px 0;
}

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

.compare-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.compare-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.compare-vue::before {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.20), transparent 65%);
}

.compare-pro::before {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.20), transparent 65%);
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 74px rgba(15, 23, 42, 0.10);
}

.compare-vue:hover {
  border-color: rgba(34, 197, 94, 0.24);
}

.compare-pro:hover {
  border-color: rgba(37, 99, 235, 0.24);
}

.compare-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-badge.vue {
  color: #15803d;
  background: rgba(34, 197, 94, 0.11);
}

.compare-badge.pro {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.11);
}

.compare-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 780;
  color: #0f172a;
}

.compare-card p {
  margin: 0 0 28px;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 92%;
}

.compare-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 15px;
  color: #334155;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.5;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.compare-vue li::before {
  background: #22c55e;
}

.compare-pro li::before {
  background: #2563eb;
}

.compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.compare-btn.vue {
  color: #ffffff;
  background: #16a34a;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.20);
}

.compare-btn.vue:hover {
  color: #ffffff;
  background: #15803d;
  transform: translateY(-2px);
}

.compare-btn.pro {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
}

.compare-btn.pro:hover {
  color: #ffffff;
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* ============================= */
/* VARIABLES */
/* ============================= */

.stations-variables {
  padding: 0 0 96px;
}

.variables-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.variables-header {
  max-width: 560px;
}

.variables-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff7a00;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.variables-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.variables-header p {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
}

.variables-panel {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.variables-head,
.variable-row {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.variables-head {
  padding: 22px 26px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 850;
}

.variable-row {
  padding: 20px 26px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.variable-row:last-child {
  border-bottom: none;
}

.variable-name {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.vue-col {
  color: #16a34a;
}

.pro-col {
  color: #2563eb;
}

.measure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.measure.yes.vue {
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
}

.measure.yes.pro,
.measure.expandable {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
}

.measure.no {
  color: #64748b;
  background: rgba(148, 163, 184, 0.12);
}

/* ============================= */
/* DECISION */
/* ============================= */

.stations-decision {
  padding: 0 0 96px;
}

.decision-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: #ffffff;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.22);
}

.decision-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff9a3d;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decision-panel h2 {
  max-width: 680px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.decision-panel p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}

.decision-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  color: #111827;
  background: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.decision-btn:hover {
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
}

/* Centrado visual general de la landing */
.stations-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* Variables: más balance visual */
.variables-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

/* Decisión: que el panel use el mismo ancho visual */
.decision-panel {
  width: 100%;
}

.stations-decision .stations-container {
  max-width: 1180px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .stations-hero {
    padding: 76px 0 82px;
  }

  .stations-hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .stations-hero-panel {
    max-width: 560px;
  }

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

  .variables-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .decision-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .stations-hero {
    padding: 58px 0 68px;
  }

  .stations-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .stations-compare {
    padding: 70px 0;
  }

  .compare-card {
    padding: 26px;
    border-radius: 24px;
  }

  .stations-variables {
    padding: 0 0 70px;
  }

  .variables-head {
    display: none;
  }

  .variable-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .variable-row > div:nth-child(2)::before {
    content: "Vantage Vue";
    display: block;
    margin-bottom: 6px;
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .variable-row > div:nth-child(3)::before {
    content: "Vantage Pro2";
    display: block;
    margin-bottom: 6px;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .decision-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .decision-btn {
    width: 100%;
  }
}