/* ═══════════════════════════════════════════════════════════
   InterBienStar — index.css (Landing page styles)
═══════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(66px + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 6vw, 6rem);
  padding-inline: var(--pad);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-content {
  animation: fadeup 0.9s var(--ease) both;
}

@keyframes fadeup {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: none; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  background: rgba(56,189,248,0.07);
  border: 1px solid rgba(56,189,248,0.18);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 2px;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border-md);
}

/* Hero visual */
.hero-visual {
  animation: fadeup 0.9s var(--ease) 0.15s both;
  position: relative;
  width: 420px;
  flex-shrink: 0;
}

.hero-orb-wrap { position: relative; width: 420px; height: 420px; }

.hero-orb {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.12) 0%, transparent 70%);
  animation: orb-breathe 4s ease-in-out infinite;
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.hero-fiber-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* SVG animations */
.fs { animation: fsway 5s ease-in-out infinite; }
.fs.fs2 { animation-delay: -2s; animation-duration: 7s; }
.fs.fs3 { animation-delay: -4s; animation-duration: 6s; }
@keyframes fsway {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.spin-ring { animation: spin 20s linear infinite; transform-origin: 210px 210px; }
.r2 { animation-direction: reverse; animation-duration: 14s; }
@keyframes spin { to { transform: rotate(360deg); } }

.speed-badge {
  position: absolute;
  top: 28px; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.speed-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.speed-unit {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.05em;
}
.speed-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-3);
  margin-top: 2px;
}

.promo-badge {
  position: absolute;
  bottom: 40px; right: -8px;
  background: linear-gradient(135deg, #064e3b, #065f46);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  font-size: 0.82rem;
  line-height: 1.3;
}
.promo-badge strong { color: #86efac; font-size: 1rem; }

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits { background: var(--bg-card); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-dark), var(--cyan));
  opacity: 0;
  transition: opacity var(--t);
}
.benefit-card:hover { border-color: var(--border-md); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.benefit-card:hover::after { opacity: 1; }

.benefit-icon {
  width: 48px; height: 48px;
  padding: 10px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-md);
  color: var(--cyan);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; flex: 1; }

.benefit-stat {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  width: fit-content;
  letter-spacing: 0.04em;
}

/* ── PLANS ───────────────────────────────────────────────── */
.plans { background: var(--bg); }

.promo-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(4,120,87,0.15), rgba(6,78,59,0.1));
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.promo-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: var(--radius-sm);
  color: var(--green);
}
.promo-banner strong { color: #86efac; }

.promo-badge-inline {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #86efac;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  white-space: nowrap;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
}

.plan-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.plan-card.plan-featured {
  background: linear-gradient(160deg, #0c1e3a, #0a1628);
  border-color: rgba(14,165,233,0.4);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.15), 0 8px 32px rgba(14,165,233,0.12);
  transform: scale(1.02);
}
.plan-card.plan-featured:hover { transform: scale(1.02) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan-deep);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-speed {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-mbps {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan-unit {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.plan-desc { font-size: 0.825rem; color: var(--text-2); line-height: 1.65; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-block: 0.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 0.8rem;
  color: var(--text-2);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-2);
}
.plan-features li span { color: var(--green); font-weight: 700; }
.plan-features li strong { color: var(--text); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.7em 1em;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(56,189,248,0.35);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.btn-plan:hover {
  background: rgba(56,189,248,0.1);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.plans-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 1.5rem;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--bg-card); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-body {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.astat { display: flex; flex-direction: column; }
.astat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.astat span {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 3px;
}

.values-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color var(--t), transform var(--t);
}
.value-card:hover { border-color: var(--border-md); transform: translateX(4px); }

.value-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  padding: 10px;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.value-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }

/* ── COVERAGE ────────────────────────────────────────────── */
.coverage { background: var(--bg); }

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.coverage-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-placeholder { width: 100%; }
.map-placeholder svg { width: 100%; height: auto; }

.coverage-list h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 0.75rem;
  transition: border-color var(--t);
}
.coverage-item:hover { border-color: var(--border-md); }

.cov-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.cov-dot.active    { background: var(--green); box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: livepulse 2s ease-out infinite; }
.cov-dot.expanding { background: var(--amber); animation: none; }

.coverage-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.coverage-item p { font-size: 0.8rem; color: var(--text-2); }

.cov-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.cov-badge-soon {
  background: rgba(251,191,36,0.1);
  color: var(--amber);
  border-color: rgba(251,191,36,0.25);
}

.cov-cta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.cov-cta p { font-size: 0.875rem; color: var(--text-2); margin-bottom: 1rem; line-height: 1.65; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--bg-card); }

.cta-block {
  position: relative;
  background: linear-gradient(140deg, #0a1a32, #061428);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: orb-breathe 5s ease-in-out infinite;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-2);
}
.cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--t), transform var(--t);
}
a.contact-item:hover { border-color: var(--border-md); transform: translateX(3px); }

.ci-icon {
  width: 42px; height: 42px;
  padding: 9px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.ci-blue { background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); color: var(--cyan); }
.ci-green { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); color: #25d366; }

.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.ci-val { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }

.contact-pending {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--border-md);
  border-radius: var(--radius-md);
}
.pending-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.pending-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pending-slot {
  font-size: 0.78rem;
  color: var(--text-3);
  background: var(--bg-surface2);
  border: 1px dashed var(--border-md);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-note {
  font-size: 0.74rem;
  color: var(--text-3);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ── RESPONSIVE LANDING ──────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.plan-featured { transform: none; }
  .plan-card.plan-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-block { padding: 2.5rem 1.5rem; }
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-badge-inline { margin: 0 auto; }
  .hero-trust { gap: 0.75rem; }
  .trust-sep { display: none; }
}

/* ── COORDINATES FIELD ───────────────────────────────────── */
.label-optional {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-full);
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.coords-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.coords-input-wrap input {
  flex: 1;
  background: var(--bg-surface2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}

.coords-input-wrap input:focus {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
  outline: none;
}

.coords-input-wrap input::placeholder { color: var(--text-3); }

.btn-gps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.9rem;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  flex-shrink: 0;
}

.btn-gps:hover { background: rgba(14,165,233,0.18); border-color: var(--cyan); }
.btn-gps.loading { opacity: 0.6; cursor: not-allowed; pointer-events: none; }
.btn-gps.success { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); color: var(--green); }

.coords-hint {
  margin-top: 0.65rem;
  background: rgba(14,165,233,0.04);
  border: 1px solid rgba(14,165,233,0.12);
  border-left: 2px solid var(--cyan-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}

.coords-hint-header {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 0.65rem;
  color: var(--cyan);
}

.coords-hint-header strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.coords-steps {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0.65rem;
}
.coords-steps strong { color: var(--text); font-weight: 600; }

.coords-example {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  background: rgba(14,165,233,0.1);
  color: var(--cyan);
  padding: 1px 6px;
  border-radius: 3px;
}

.coords-why {
  font-size: 0.74rem;
  color: var(--text-3);
  font-style: italic;
  margin: 0;
}

/* ── REVEAL VARIANTS (directional) ───────────────────────── */
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-up    { transform: translateY(22px); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible { transform: none; }

.reveal[style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 640px) {
  .coords-input-wrap { flex-direction: column; }
  .btn-gps { justify-content: center; padding: 0.7rem; }
}