/* ==========================================================================
   OptiClearex — Sistema de diseño "Cosmic"
   Estética: violeta/azul cósmico, aurora, glassmorphism, glow neón.
   ========================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --bg: #060514;
  --bg-2: #0b0a22;
  --surface: #12112e;
  --surface-2: #181640;
  --border: rgba(140, 130, 255, 0.18);
  --border-strong: rgba(140, 130, 255, 0.4);

  --text: #e7e6fb;
  --text-dim: #a9a6cf;
  --text-mute: #76739c;

  --accent: #7c5cff;       /* violeta */
  --accent-2: #22d3ee;     /* cian */
  --accent-3: #b14bff;     /* magenta-violeta */
  --accent-pink: #ff5cf0;

  --aurora: linear-gradient(120deg, #7c5cff 0%, #22d3ee 100%);
  --aurora-2: linear-gradient(120deg, #b14bff 0%, #5c8bff 50%, #22d3ee 100%);
  --aurora-text: linear-gradient(100deg, #c6b8ff 0%, #7c5cff 35%, #22d3ee 100%);

  --glow: 0 0 40px rgba(124, 92, 255, 0.45);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.4);
  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.7);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* --- Fondo cósmico (capas fijas) ----------------------------------------- */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(124, 92, 255, 0.25), transparent 60%),
    radial-gradient(1000px 700px at 90% 0%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(900px 900px at 80% 100%, rgba(177, 75, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.cosmos .aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: drift 22s ease-in-out infinite alternate;
}
.cosmos .aurora.a1 { width: 540px; height: 540px; top: -120px; left: -80px;
  background: radial-gradient(circle, #7c5cff, transparent 70%); }
.cosmos .aurora.a2 { width: 460px; height: 460px; top: 30%; right: -120px;
  background: radial-gradient(circle, #22d3ee, transparent 70%); animation-delay: -6s; }
.cosmos .aurora.a3 { width: 600px; height: 600px; bottom: -160px; left: 30%;
  background: radial-gradient(circle, #b14bff, transparent 70%); animation-delay: -12s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(40px,-30px,0) scale(1.15); }
}

#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .cosmos .aurora { animation: none; }
  html { scroll-behavior: auto; }
}

/* --- Utilidades ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 255, 0.08);
  backdrop-filter: blur(6px);
}
.kicker::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0; font-weight: 700; letter-spacing: -0.01em; }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-top: 1rem;
  max-width: 18ch;
}
.section-lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 60ch;
  margin-top: 1rem;
}
.center { text-align: center; }
.center .section-title, .center .section-lead { margin-inline: auto; }

.gradient-text {
  background: var(--aurora-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Botones -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--aurora);
  color: #08071a;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(124,92,255,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent-2); box-shadow: var(--glow-cyan); }
.btn-block { width: 100%; }

/* --- Navbar --------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 24, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand .brand-mark { filter: drop-shadow(0 0 8px rgba(124,92,255,0.7)); flex: none; }
.brand b { background: var(--aurora-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; color: var(--text-dim); transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--aurora); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(10, 9, 30, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .nav-links.open { max-height: 320px; padding-block: 1rem; }
  .nav-links a { padding: 0.7rem 0; width: 100%; }
  .nav .nav-cta .btn-ghost { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(3rem, 7vw, 5.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-top: 1.4rem;
}
.hero p.lead { color: var(--text-dim); font-size: clamp(1.05rem, 2.2vw, 1.25rem); margin-top: 1.4rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; color: var(--text-mute); font-size: 0.9rem; }
.stars-row { color: #ffd166; letter-spacing: 2px; }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-orb {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(124,92,255,0.55), transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(34,211,238,0.45), transparent 60%);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  box-shadow: inset 0 0 80px rgba(124,92,255,0.35), 0 0 80px rgba(124,92,255,0.3);
  animation: float 7s ease-in-out infinite;
}
.hero-orb::before {
  content: ""; position: absolute; inset: 14px; border-radius: 50%;
  border: 1px dashed rgba(140,130,255,0.3);
  animation: spin 30s linear infinite;
}
.hero-orb img { width: 62%; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)); }

@keyframes float { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
}

/* --- Glass card ----------------------------------------------------------- */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 70px -20px rgba(124,92,255,0.5); }
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--aurora-2);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.glass:hover::after { opacity: 0.6; }

/* --- Stats ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat { padding: 1.8rem 1.4rem; text-align: center; border-radius: var(--radius); }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; background: var(--aurora-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--text-dim); font-size: 0.92rem; margin-top: 0.4rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* --- Grids genéricas ------------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* --- Feature / steps card ------------------------------------------------- */
.feature { padding: 2rem 1.8rem; }
.feature .icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(124,92,255,0.12);
  border: 1px solid var(--border-strong);
  color: var(--accent-2);
  margin-bottom: 1.3rem;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.feature p { color: var(--text-dim); font-size: 0.98rem; margin: 0; }
.feature .step-num {
  font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.2em;
  color: var(--accent); text-transform: uppercase;
}

/* --- Food cards (alimentos) ---------------------------------------------- */
.food-card { display: flex; flex-direction: column; }
.food-card .media { aspect-ratio: 16/11; overflow: hidden; }
.food-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.food-card:hover .media img { transform: scale(1.06); }
.food-card .body { padding: 1.6rem 1.6rem 1.9rem; }
.food-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.food-card .intro { color: var(--text-dim); font-size: 0.96rem; margin: 0 0 1.1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.78rem; padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.3); color: var(--accent-2);
}
.bullets { margin-top: 1.1rem; display: grid; gap: 0.7rem; }
.bullets li { position: relative; padding-left: 1.6rem; color: var(--text-dim); font-size: 0.93rem; }
.bullets li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--accent);
}

/* --- Split (presentación producto) --------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { display: grid; place-items: center; }
.split-media .frame {
  position: relative; padding: 2rem; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 40%, rgba(124,92,255,0.25), transparent 70%);
}
.split-media img { filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); max-height: 460px; width: auto; margin-inline: auto; }
.split h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.split p { color: var(--text-dim); margin-top: 1.1rem; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* --- Ingredientes (porcentaje) ------------------------------------------- */
.ingredient { padding: 1.8rem; }
.ingredient .top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.ingredient h3 { font-size: 1.2rem; }
.ingredient .dose { font-family: var(--font-head); color: var(--accent-2); font-weight: 600; }
.ingredient p { color: var(--text-dim); font-size: 0.95rem; margin: 0.8rem 0 0; }
.bar { height: 7px; border-radius: 99px; background: rgba(255,255,255,0.08); margin-top: 1.2rem; overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 99px; background: var(--aurora); box-shadow: var(--glow); }

/* --- Testimonios ---------------------------------------------------------- */
.review { padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.review .quote { color: var(--text); font-size: 1.02rem; line-height: 1.7; margin: 0; }
.review .who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.review .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  background: var(--aurora); color: #08071a;
}
.review .who b { display: block; font-family: var(--font-head); }
.review .who span { color: var(--text-mute); font-size: 0.85rem; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq-item { padding: 0; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--text);
  padding: 1.3rem 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform 0.3s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent-2); border-radius: 2px; }
.faq-q .plus::before { top: 11px; left: 2px; right: 2px; height: 2px; }
.faq-q .plus::after { left: 11px; top: 2px; bottom: 2px; width: 2px; transition: transform 0.3s; }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { color: var(--text-dim); padding: 0 1.6rem 1.4rem; margin: 0; }

/* --- Formulario / CTA ----------------------------------------------------- */
.cta-form { max-width: 640px; margin-inline: auto; padding: clamp(1.8rem, 4vw, 3rem); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-field label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.45rem; font-family: var(--font-head); }
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-mute); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,92,255,0.25); }
.u-form-control-hidden { display: none; }
.u-form-send-message { display: none; margin-top: 1rem; font-size: 0.92rem; }
.u-form-send-success { color: var(--accent-2); }
.u-form-send-error { color: #ff6b8b; }

/* --- Disclaimer box ------------------------------------------------------- */
.disclaimer {
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  background: rgba(255,255,255,0.02);
}
.disclaimer h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.disclaimer p { color: var(--text-mute); font-size: 0.83rem; line-height: 1.6; margin: 0; }

/* --- Banda CTA ------------------------------------------------------------ */
.cta-band { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem); border-radius: var(--radius-lg); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--text-dim); margin: 1rem auto 0; max-width: 50ch; }
.cta-band .hero-actions { justify-content: center; }

/* --- Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); margin-top: 2rem; background: rgba(6,5,18,0.6); backdrop-filter: blur(10px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer h5 { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 1.2rem; }
.footer p, .footer a { color: var(--text-dim); font-size: 0.94rem; }
.footer .links a { display: block; padding: 0.35rem 0; transition: color 0.2s; }
.footer .links a:hover { color: var(--accent-2); }
.footer .contact-line { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer .contact-line svg { flex: none; margin-top: 3px; color: var(--accent); }
.footer .brand { margin-bottom: 1.1rem; }
.footer .legal { border-top: 1px solid var(--border); padding-block: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; color: var(--text-mute); font-size: 0.85rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer .about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Legal / contenido de texto largo ------------------------------------ */
.page-hero { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--text-dim); margin: 1rem auto 0; max-width: 60ch; }
.prose { max-width: 820px; margin-inline: auto; }
.prose .glass { padding: clamp(1.8rem, 4vw, 3rem); }
.prose h2 { font-size: 1.45rem; margin: 2rem 0 0.8rem; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.4rem 0 0.5rem; color: var(--accent-2); }
.prose p, .prose li { color: var(--text-dim); margin: 0.6rem 0; }
.prose ul { padding-left: 1.3rem; list-style: disc; }
.prose ul li { margin: 0.35rem 0; }
.prose a { color: var(--accent-2); text-decoration: underline; }
.prose strong { color: var(--text); }
.updated { color: var(--text-mute); font-size: 0.85rem; margin-bottom: 1.5rem; }

/* --- Info cards (contacto) ------------------------------------------------ */
.info-card { padding: 1.8rem; text-align: center; }
.info-card .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 1rem; background: rgba(124,92,255,0.12); border: 1px solid var(--border-strong); color: var(--accent-2); }
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.info-card p, .info-card a { color: var(--text-dim); font-size: 0.95rem; }
.info-card a:hover { color: var(--accent-2); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: var(--gap); filter: grayscale(0.2) contrast(1.05); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

/* --- Reveal animation ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* --- Misc ----------------------------------------------------------------- */
.adlabel { text-align: center; color: var(--text-mute); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; padding-top: 0.8rem; }
.mt-grid { margin-top: clamp(2rem, 5vw, 3.5rem); }
