:root {
  --neon: #00ff88;
  --neon2: #00ddff;
  --bg: #080c10;
  --surface: #0d1117;
  --surface2: #131920;
  --text: #e0e8f0;
  --muted: #5a7080;
  --line: rgba(0, 255, 136, 0.22);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Barlow, sans-serif;
  transition: 0.3s;
}
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.glow-orb {
  position: fixed;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.09), transparent 70%);
  pointer-events: none;
}
.container {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  margin: auto;
  padding: 30px 20px 60px;
}
.theme-toggle {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface2);
  color: var(--neon);
  font-size: 1.1rem;
  cursor: pointer;
}
header {
  text-align: center;
  margin-bottom: 30px;
}
.avatar-hex {
  width: 122px;
  height: 122px;
  margin: 0 auto 18px;
  padding: 3px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(135deg, var(--neon), var(--neon2));
}
.avatar-hex div,
.avatar-hex img {
  width: 100%;
  height: 100%;
  clip-path: inherit;
}
.avatar-hex img {
  object-fit: cover;
}
h1 {
  font:
    400 3.15rem/0.86 "Bebas Neue",
    sans-serif;
  letter-spacing: 4px;
}
h1 em {
  color: var(--neon);
  font-style: normal;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.45);
}
.tagline {
  margin-top: 10px;
  color: var(--muted);
  font:
    400 0.73rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 28px;
}
.tags span {
  padding: 5px 11px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  background: rgba(0, 255, 136, 0.08);
  color: var(--neon);
  font:
    400 0.66rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stats > div {
  position: relative;
  overflow: hidden;
  padding: 14px 6px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  background: var(--surface);
  text-align: center;
}
.stats > div:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--neon2));
}
.stats strong {
  display: block;
  color: var(--neon);
  font:
    400 2rem "Bebas Neue",
    sans-serif;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.38);
}
.stats span {
  display: block;
  color: var(--muted);
  font:
    400 0.57rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 60px;
  margin-bottom: 8px;
  padding: 14px 18px;
  border: 0;
  text-decoration: none;
  font:
    600 0.82rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  transition: 0.25s;
}
.btn:hover {
  transform: scale(1.01);
}
.btn i {
  width: 32px;
  text-align: center;
  font-style: normal;
  font-size: 1.08rem;
}
.btn-neon {
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  color: #080c10;
  font-weight: 700;
}
.btn-outline {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 255, 136, 0.05);
}
section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 14px;
  color: var(--neon);
  font:
    400 1.15rem "Bebas Neue",
    sans-serif;
  letter-spacing: 4px;
}
section h2:after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.4), transparent);
}
.plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 16px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.plan:hover {
  border-color: var(--neon);
}
.plan strong {
  display: block;
  font:
    600 0.85rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.plan span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}
.plan b {
  color: var(--neon);
  font-size: 0.78rem;
}
.map-wrap {
  height: 180px;
  border: 1px solid rgba(0, 255, 136, 0.15);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.85) hue-rotate(140deg) saturate(0.8);
}
.map-addr {
  padding: 11px 14px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-top: 0;
  background: var(--surface);
  color: var(--muted);
  font:
    400 0.7rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.2px;
}
.route {
  display: block;
  padding: 11px;
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--neon);
  text-align: center;
  text-decoration: none;
  font:
    0.65rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
footer {
  margin-top: 40px;
  color: var(--muted);
  text-align: center;
  font:
    0.6rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.whatsapp {
  position: fixed;
  z-index: 15;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
body.light {
  --neon: #006f40;
  --neon2: #006f85;
  --bg: #f1f7f5;
  --surface: #fff;
  --surface2: #dce9e5;
  --text: #0d1d18;
  --muted: #465c54;
  --line: rgba(0, 100, 57, 0.35);
}
body.light .btn-neon {
  color: #fff;
}
body.light h1 em,
body.light .stats strong {
  text-shadow: none;
}
body.light .map-wrap iframe {
  filter: grayscale(0.2);
}
.schedule {
  width: min(520px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.schedule::backdrop {
  background: rgba(3, 10, 8, 0.82);
  backdrop-filter: blur(7px);
}
.close {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface2);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
}
.dialog-label {
  color: var(--neon);
  font:
    0.62rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 2px;
}
.schedule h2 {
  margin: 6px 0;
  color: var(--text);
  font:
    400 2.1rem "Bebas Neue",
    sans-serif;
  letter-spacing: 2px;
}
.dialog-copy {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}
.schedule form {
  display: grid;
  gap: 14px;
}
.schedule label {
  display: grid;
  gap: 6px;
  color: var(--neon);
  font:
    600 0.65rem "Barlow Condensed",
    sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.schedule input,
.schedule select,
.schedule textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--surface2);
  color: var(--text);
  font:
    400 0.85rem Barlow,
    sans-serif;
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submit {
  margin-top: 5px;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .theme-toggle {
    top: 12px;
    right: 12px;
  }
  .schedule {
    padding: 34px 20px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .plan {
    gap: 12px;
  }
  .plan b {
    white-space: nowrap;
  }
}

/* The neon hue becomes a deep emerald in light mode so labels stay legible. */
body.light {
  --neon: #00683d;
  --neon2: #006f86;
  --bg: #f4f8f6;
  --surface: #fff;
  --surface2: #e4eeea;
  --text: #10221c;
  --muted: #405b52;
  --line: rgba(0, 93, 55, 0.34);
}
body.light .grid-bg {
  background-image: linear-gradient(rgba(0, 104, 61, 0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 104, 61, 0.075) 1px, transparent 1px);
}
body.light h1 em,
body.light .stats strong {
  text-shadow: none;
}
body.light .tags span {
  border-color: rgba(0, 104, 61, 0.32);
  background: rgba(0, 104, 61, 0.1);
}
body.light .stats > div,
body.light .plan,
body.light .map-addr {
  border-color: rgba(0, 93, 55, 0.22);
}
body.light .btn-neon {
  background: linear-gradient(135deg, #23c878, #43c7de);
  color: #071b13;
}
body.light .theme-toggle {
  box-shadow: 0 8px 24px rgba(12, 53, 37, 0.12);
}

/* Interactive plans and showcase-safe floating controls. */
.plan {
  width: 100%;
  font: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  text-align: left;
  appearance: none;
}
.plan > div {
  min-width: 0;
  text-align: left;
}
.plan b {
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}
.whatsapp {
  bottom: 88px;
}
.schedule {
  overflow-y: auto;
}
.close {
  z-index: 5;
  touch-action: manipulation;
}
@media (max-width: 700px) {
  .whatsapp {
    bottom: 98px;
  }
}
.whatsapp svg {
  width: 29px;
  fill: #fff;
}
.dialog-copy {
  padding: 12px 14px;
  border-left: 3px solid var(--neon);
  background: color-mix(in srgb, var(--neon) 10%, var(--surface));
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}
.dialog-copy strong {
  color: var(--neon);
}
