:root{
  --bg: #0B1F33;
  --panel: #0B1F33;
  --text: #F4F7FA;
  --ink: #1F2933;
  --muted: rgba(244,247,250,.76);
  --brand: #0057B8;
  --brand-2: #00AEEF;
  --danger: #E63946;
  --bg-light: #F4F7FA;
  --border: rgba(244,247,250,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1120px;
  --focus: 0 0 0 3px rgba(0,87,184,.35);
}

*{box-sizing:border-box}
html{color-scheme:dark}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(0,87,184,.18), transparent 60%),
    radial-gradient(700px 450px at 75% 35%, rgba(0,174,239,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), #061120 65%, #040a12);
  color:var(--text);
  line-height:1.55;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
body{overflow-x:hidden}
main{flex:1 0 auto; min-width:0}

a{color:inherit}
a:hover{color:var(--text)}
img{max-width:100%; height:auto}

.skip-link{
  position:absolute;
  top:-60px;
  left:12px;
  padding:10px 12px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  z-index:999;
}
.skip-link:focus{top:12px; outline:none; box-shadow:var(--focus)}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(11,31,51,.62);
  border-bottom:1px solid rgba(244,247,250,.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  white-space:nowrap;
}
.brand svg{width:clamp(64px, 10vw, 80px); height:clamp(48px, 7.5vw, 60px)}
.brand img{width:clamp(64px, 10vw, 80px); height:clamp(48px, 7.5vw, 60px); object-fit:contain}
.brand strong{font-size:15px; letter-spacing:.2px}
.brand span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.nav a.nav-call{
  color:var(--text);
  border:1px solid rgba(0,174,239,.35);
  background:rgba(0,174,239,.12);
  white-space:nowrap;
  margin-right:4px;
}
.nav a.nav-call:hover{
  color:var(--text);
  border-color: rgba(0,174,239,.55);
  background:rgba(0,174,239,.18);
}
.nav a[aria-current="page"]{
  color:var(--text);
  background:rgba(244,247,250,.06);
  box-shadow: inset 0 0 0 1px rgba(244,247,250,.10);
}
.nav a:focus{outline:none; box-shadow:var(--focus)}

.menu-btn{
  display:none;
  appearance:none;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(244,247,250,.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
}
.menu-btn:focus{outline:none; box-shadow:var(--focus)}

.hero{
  padding:56px 0 20px;
  position:relative;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.6;
  pointer-events:none;
  z-index:0;
}
.hero .container{position:relative; z-index:1}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:stretch;
}
.hero-grid > *{min-width:0}
.hero-card{
  background:linear-gradient(180deg, rgba(244,247,250,.06), rgba(244,247,250,.03));
  border:1px solid rgba(244,247,250,.10);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
main#contenido > section.hero > div.container > div.hero-card{background:rgba(6, 17, 32, 0.7)}
.kicker{
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 14px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,87,184,.12);
  border:1px solid rgba(0,87,184,.25);
  color:var(--text);
  letter-spacing:0;
  text-transform:none;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(28px, 4.6vw, 40px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}
.news-panel{margin:18px 0 18px}
.news-head{display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap}
.news-head h2{margin:0; font-size:18px; letter-spacing:-.01em}
.news-actions{display:flex; gap:8px; align-items:center}
.news-nav{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(244,247,250,.06);
  color:var(--text);
  font-size:18px;
  line-height:1;
}
.news-nav:focus{outline:none; box-shadow:var(--focus)}
.news-nav:hover{border-color: rgba(244,247,250,.22); background:rgba(244,247,250,.08)}
.news-tag{
  margin:0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,87,184,.28);
  background:rgba(0,87,184,.10);
  color:var(--text);
  font-size:11px;
  line-height:1;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
}
.news-tag::before{
  content:'NEWS';
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(0,87,184,.32);
  background:rgba(0,87,184,.14);
  font-weight:750;
  letter-spacing:.18em;
}
.news-panel{min-width:0; overflow:hidden}
.news-strip{
  margin-top:10px;
  display:flex;
  gap:12px;
  max-width:100%;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 2px 10px;
  scroll-snap-type:x proximity;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.news-card{
  flex:0 0 auto;
  width:clamp(240px, 34vw, 360px);
  border-radius:14px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
  padding:14px 14px;
  text-decoration:none;
  color:var(--text);
  scroll-snap-align:start;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  will-change: transform;
}
.news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  border-color: rgba(244,247,250,.18);
}
.news-card:focus{outline:none; box-shadow:var(--focus)}
.news-meta{display:flex; align-items:center; justify-content:space-between; gap:10px; margin:0 0 10px}
.news-badge{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(0,87,184,.14);
  border:1px solid rgba(0,87,184,.26);
  font-size:12px;
  line-height:1;
}
.news-time{font-size:12px; color:var(--muted); line-height:1; white-space:nowrap}
.news-title{margin:0 0 8px; font-size:14px; line-height:1.25; overflow-wrap:anywhere}
.news-desc{margin:0; font-size:13px; color:var(--muted); line-height:1.25; overflow-wrap:anywhere}
.news-skeleton{color:var(--muted); font-size:13px}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(244,247,250,.06);
  text-decoration:none;
  font-size:14px;
  color:var(--text);
}
.btn.primary{
  background:linear-gradient(135deg, rgba(0,87,184,.95), rgba(0,174,239,.9));
  border-color: rgba(0,87,184,.4);
}
.btn:focus{outline:none; box-shadow:var(--focus)}

.stat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:22px;
}
.stat{
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(11,31,51,.45);
}
.stat b{display:block; font-size:16px}
.stat small{color:var(--muted)}

.side-card{
  padding:22px;
  border-radius:var(--radius);
  border:1px solid rgba(244,247,250,.10);
  background:linear-gradient(180deg, rgba(0,174,239,.10), rgba(244,247,250,.03));
  box-shadow:var(--shadow);
}
.side-card h2{margin:0 0 10px; font-size:18px}
.side-card p{margin:0 0 16px; color:var(--muted)}
.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}

.section{
  padding:28px 0;
}
.section h2{
  margin:0 0 12px;
  font-size:clamp(20px, 3.2vw, 26px);
  letter-spacing:-.01em;
}
.section p{margin:0 0 12px; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  border-radius:var(--radius);
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.media-slot{
  border-radius:var(--radius);
  border:1px solid rgba(244,247,250,.10);
  background:
    radial-gradient(1200px 380px at 20% 18%, rgba(0,110,255,.18), rgba(0,0,0,0) 60%),
    radial-gradient(900px 320px at 80% 30%, rgba(0,200,83,.12), rgba(0,0,0,0) 60%),
    radial-gradient(900px 320px at 50% 78%, rgba(255,23,68,.10), rgba(0,0,0,0) 60%),
    rgba(11,31,51,.32);
  overflow:hidden;
  min-height:220px;
}
.media-slot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.empresa-hero-img{
  max-height:260px;
  height:auto;
  object-fit:cover;
}
.media-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.media-grid .media-slot{min-height:160px}
.media-grid--compact{
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  align-items:start;
}
.media-grid--compact > :first-child{grid-column: 1 / -1}
.media-grid--compact .media-figure{padding:4px 0}
.media-grid--compact .media-figure__img{
  width:100%;
  max-width: 440px;
  max-height: clamp(190px, 28vw, 280px);
}
.media-grid--compact > :first-child .media-figure__img{
  width: min(100%, 760px);
  max-height: clamp(220px, 40vw, 420px);
}
.media-figure{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
}
.media-figure__img{
  width: min(100%, clamp(240px, 36vw, 340px));
  height: auto;
  max-height: clamp(180px, 28vw, 240px);
  object-fit: contain;
}
details#plataforma > div.media-grid > figure.media-figure:nth-child(1) > img.media-figure__img{
  border-width:0px;
  border-style:solid;
  border-color:#000000;
  border-radius:var(--radius);
}
.media-figure__cap{
  color:var(--muted);
  font-size:13px;
  line-height:1.25;
  max-width:56ch;
}

.faq{
  border-radius:var(--radius);
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
  overflow:hidden;
}
details{
  padding:14px 16px;
  border-top:1px solid rgba(244,247,250,.10);
}
details:first-child{border-top:none}
summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  list-style:none;
  font-weight:650;
}
summary::-webkit-details-marker{display:none}
summary::marker{content:''}
summary::after{
  content:'▾';
  flex:0 0 auto;
  font-size:14px;
  color:rgba(244,247,250,.78);
  transform: rotate(0deg);
  transition: transform .18s ease, color .18s ease;
}
details[open] > summary::after{
  transform: rotate(180deg);
  color:rgba(244,247,250,.92);
}
summary:focus{outline:none; box-shadow:var(--focus); border-radius:12px}
details p{margin:10px 0 0; color:var(--muted)}

.footer{
  padding:30px 0 40px;
  border-top:1px solid rgba(244,247,250,.08);
  margin-top:26px;
  flex-shrink:0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr .85fr;
  gap:16px;
  align-items:start;
}
.footer-grid > *{min-width:0}
.footer-title{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:-.01em;
}
.fineprint{color:var(--muted); font-size:13px}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.footer-coverage{
  margin-top:12px;
  border-radius:var(--radius);
  border:1px solid rgba(244,247,250,.10);
  background:rgba(7,11,17,.34);
  padding:10px;
  overflow:hidden;
  position:relative;
}
.footer-coverage-viewport{
  width:100%;
  max-height:190px;
  overflow:hidden;
  border-radius:calc(var(--radius) - 4px);
  touch-action:pan-y;
}
.footer-coverage .spain-map{
  width:100%;
  height:auto;
  max-height:190px;
  display:block;
  transform-origin: 50% 50%;
  transform: scale(var(--footer-coverage-zoom, 1));
  transition: transform .12s ease;
}
.footer-coverage-controls{
  position:absolute;
  right:10px;
  top:10px;
  display:flex;
  gap:8px;
  z-index:2;
}
.footer-coverage-btn{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(244,247,250,.06);
  color:var(--text);
  font-size:18px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.footer-coverage-btn:focus{outline:none; box-shadow:var(--focus)}
.footer-coverage-btn:hover{border-color: rgba(244,247,250,.22); background:rgba(244,247,250,.08)}
.footer-coverage .spain-map #provinces path{cursor:default}
.footer-coverage .spain-map #provinces path[data-covered="true"]{
  fill:rgba(0,174,239,.22);
  stroke:rgba(0,174,239,.58);
  stroke-width:1.15;
  filter: drop-shadow(0 10px 18px rgba(0,174,239,.10));
}
.footer-contact-list{
  margin:0;
  font-style:normal;
  display:grid;
  gap:10px;
}
.footer-contact-item{
  display:grid;
  grid-template-columns: 128px 1fr;
  gap:10px;
  align-items:start;
  min-width:0;
}
.footer-label{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  padding-top:2px;
}
.footer-value{min-width:0; overflow-wrap:anywhere; color:var(--text)}
.footer a.footer-value{color:var(--text)}
.footer-stack{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-emergency{
  border-radius:14px;
  padding:10px 12px;
  border:1px solid rgba(230,57,70,.38);
  background:rgba(230,57,70,.12);
}
.footer-emergency .footer-label{color:rgba(244,247,250,.92)}
.footer-emergency a{color:var(--text); font-weight:900}

@media (max-width: 640px){
  .footer-contact-item{grid-template-columns: 1fr}
  .footer-label{padding-top:0}
  .donut-grid{grid-template-columns: 1fr}
}

.page-header{
  padding:34px 0 14px;
}
.page-header h1{
  margin:0 0 8px;
  font-size:clamp(24px, 4.2vw, 34px);
  letter-spacing:-.02em;
}
.page-header p{margin:0; color:var(--muted)}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.form{
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
  border-radius:var(--radius);
  padding:18px;
}
label{display:block; font-size:13px; color:var(--muted); margin-top:12px}
input, textarea, select{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  background:rgba(11,31,51,.55);
  border:1px solid rgba(244,247,250,.12);
  border-radius:14px;
  color:var(--text);
  font:inherit;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{outline:none; box-shadow:var(--focus)}

.note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}

.map-panel{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.03);
  border-radius:calc(var(--radius) + 2px);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.map-stage{padding:14px; min-width:0}
.map-aside{
  padding:14px;
  border-left:1px solid rgba(244,247,250,.10);
  background:rgba(11,31,51,.28);
}
.map-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.map-toolbar .btn{padding:10px 12px}
.map-file{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.map-file input[type="file"]{
  width:auto;
  max-width:100%;
  padding:10px 12px;
}
.map-wrap{
  position:relative;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(11,31,51,.38);
  border-radius:16px;
  padding:10px;
  overflow:hidden;
}
.chart-panel{
  border:1px solid rgba(244,247,250,.12);
  background:rgba(244,247,250,.03);
  border-radius:calc(var(--radius) + 2px);
  box-shadow:var(--shadow);
  padding:14px;
}
.chart-wrap{
  position:relative;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(7,11,17,.55);
  border-radius:16px;
  padding:10px;
  overflow:hidden;
}
.chart-wrap svg{display:block; width:100%; height:clamp(240px, 52vw, 320px)}
.chart-legend{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(244,247,250,.16);
  background:rgba(244,247,250,.05);
  color:rgba(244,247,250,.96);
  font-size:12px;
}
.chart-tooltip{
  position:absolute;
  top:0;
  left:0;
  max-width:min(320px, calc(100% - 24px), calc(100vw - 40px));
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.18);
  background:rgba(7,11,17,.94);
  color:rgba(244,247,250,.98);
  box-shadow:var(--shadow);
  opacity:0;
  transform: translate(-999px, -999px);
  transition: opacity .12s ease;
  pointer-events:none;
  z-index:6;
  white-space:pre-line;
}
.chart-tooltip[data-visible="true"]{opacity:1}

.line-chart__grid line{stroke:rgba(244,247,250,.16); stroke-width:1}
.line-chart__tick{fill:rgba(244,247,250,.92); font-size:12px}
.line-chart__path{fill:none; stroke-width:3.25}
.line-chart__vline{stroke:rgba(244,247,250,.22); stroke-width:1}
.line-chart__dot{opacity:.98}

.donut-panel{
  position:relative;
  margin-top:12px;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(244,247,250,.03);
  border-radius:calc(var(--radius) + 2px);
  box-shadow:var(--shadow);
  padding:14px;
}
.donut-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.donut-card{
  border-radius:16px;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(7,11,17,.48);
  padding:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.donut-card:focus{outline:none; box-shadow:var(--focus)}
.donut__track{
  fill:none;
  stroke:rgba(244,247,250,.14);
  stroke-width:14;
}
.donut__arc{
  fill:none;
  stroke-width:14;
  transform-origin: 60px 60px;
  transform: rotate(-90deg);
}
.donut__arc--con{stroke:#2ecc71; stroke-linecap:round}
.donut__arc--sin{stroke:#ff6b6b; stroke-linecap:butt}
.donut__arc--sin-muted{stroke:#ff6b6b; stroke-linecap:butt}
.donut__value{fill:rgba(244,247,250,.98); font-size:16px; font-weight:800}
.donut__caption{fill:rgba(244,247,250,.70); font-size:11px}
.donut-title{
  text-align:center;
  color:rgba(244,247,250,.96);
  font-size:13px;
  line-height:1.2;
}
.donut-breakdown{
  display:flex;
  flex-direction:column;
  gap:2px;
  align-items:center;
  text-align:center;
  font-size:12px;
  line-height:1.2;
}
.donut-breakdown__con{color:#2ecc71}
.donut-breakdown__sin{color:#ff6b6b}
.donut-breakdown__sin-muted{color:#ff6b6b}
.spain-map{
  width:100%;
  height:auto;
  display:block;
}
.spain-map #provinces path{
  fill:rgba(244,247,250,.08);
  stroke:rgba(244,247,250,.22);
  stroke-width:1;
  cursor:pointer;
  transition: fill .18s ease, filter .18s ease;
}
.spain-map #provinces path:hover{filter: brightness(1.08)}
.spain-map #provinces path:focus{
  outline:none;
  filter: brightness(1.12) drop-shadow(0 8px 16px rgba(0,174,239,.16));
}
.spain-map .city-heat{transform-box: fill-box; transform-origin: center}
.spain-map .city-heat--outer{
  opacity:.65;
  filter: blur(12px);
  mix-blend-mode: screen;
}
.spain-map .city-heat--inner{
  opacity:.95;
  stroke:rgba(244,247,250,.48);
  stroke-width:0.8;
  cursor:pointer;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}
.spain-map .city-heat--inner:focus{outline:none; filter: drop-shadow(0 12px 22px rgba(0,0,0,.34))}
.map-tooltip{
  position:absolute;
  top:0;
  left:0;
  left:0;
  max-width:min(280px, calc(100% - 24px), calc(100vw - 40px));
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(7,11,17,.92);
  color:var(--text);
  box-shadow:var(--shadow);
  opacity:0;
  transform: translate(-999px, -999px);
  transition: opacity .12s ease;
  pointer-events:none;
  z-index:5;
}
.map-tooltip[data-visible="true"]{opacity:1}
.map-info{
  margin-top:10px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
  border-radius:16px;
  padding:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:baseline;
  justify-content:space-between;
}
.map-info b{font-size:15px}
.map-info span{color:var(--muted); font-size:13px}
.legend{
  margin-top:12px;
  border:1px solid rgba(244,247,250,.10);
  border-radius:16px;
  background:rgba(244,247,250,.04);
  padding:12px;
}
.legend-bar{
  height:12px;
  border-radius:999px;
  background:
    linear-gradient(
      90deg,
      rgba(0,110,255,.80) 0%,
      rgba(0,110,255,.80) 20%,
      rgba(0,200,83,.80) 40%,
      rgba(255,235,59,.85) 60%,
      rgba(255,152,0,.85) 80%,
      rgba(255,23,68,.85) 100%
    );
  border:1px solid rgba(244,247,250,.10);
}
.legend-row{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:12px;
  margin-top:8px;
  gap:12px;
}

.calc{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:12px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.03);
  border-radius:calc(var(--radius) + 2px);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.calc-items{
  padding:14px;
}
.calc-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(11,31,51,.38);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.calc-row + .calc-row{margin-top:10px}
.calc-row.is-changed{
  transform: translateY(-1px);
  border-color: rgba(0,174,239,.35);
  background:rgba(0,174,239,.10);
}
.calc-left{min-width:0}
.calc-left--icon{
  display:flex;
  align-items:center;
  gap:12px;
}
.calc-thumb{
  width:44px;
  height:44px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.calc-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}
.calc-text{min-width:0}
.calc-title{
  font-size:16px;
  font-weight:750;
  letter-spacing:-.01em;
}
.calc-sub{
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}
.calc-price{
  font-size:16px;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(244,247,250,.06);
  border:1px solid rgba(244,247,250,.12);
  white-space:nowrap;
}

.qty{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:16px;
  background:rgba(244,247,250,.06);
  border:1px solid rgba(244,247,250,.12);
}
.qty-btn{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(244,247,250,.06);
  color:var(--text);
  font-size:18px;
  line-height:1;
}
.qty-btn:focus{outline:none; box-shadow:var(--focus)}
.qty-input{
  width:56px;
  margin:0;
  padding:8px 10px;
  background:rgba(11,31,51,.30);
  border:1px solid rgba(244,247,250,.12);
  border-radius:12px;
  text-align:center;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{appearance:none; margin:0}
.qty-input[type=number]{appearance:textfield}

.calc-summary{
  padding:16px 16px;
  background:linear-gradient(180deg, rgba(11,31,51,.70), rgba(11,31,51,.45));
  border-left:1px solid rgba(244,247,250,.10);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.calc-total-label{
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  font-size:12px;
}
.calc-total-value{
  font-size:34px;
  font-weight:900;
  letter-spacing:-.03em;
  margin-top:6px;
}
.calc-total-sub{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}
.calc-mini{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
}
.calc-summary-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.calc-poster{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
}
.calc-cta{
  width:100%;
  justify-content:center;
}
.calc-summary.is-pulse{
  animation: calcPulse .55s ease;
}
@keyframes calcPulse{
  0%{transform: translateY(0)}
  35%{transform: translateY(-1px)}
  100%{transform: translateY(0)}
}
.calc-footnote{
  color:var(--muted);
  font-size:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
}

.frame-scrub__panel{position:relative}
.frame-scrub__sticky{
  position:sticky;
  top:86px;
  border-radius:0;
  border:0;
  background:transparent;
  box-shadow:none;
  overflow:hidden;
  aspect-ratio: 16 / 9;
}
.frame-scrub__canvas,
.frame-scrub__fallback{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}
.frame-scrub__canvas{background:transparent}
.frame-scrub__fallback{object-fit:contain; object-position:center; opacity:1}

html[data-reveal="on"] [data-reveal]{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
html[data-reveal="on"] [data-reveal].is-visible{
  opacity:1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{transition:none}
  .calc-summary.is-pulse{animation:none}
  .calc-row{transition:none}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .cards{grid-template-columns: 1fr; }
  .stat-grid{grid-template-columns: 1fr; }
  .footer-grid{grid-template-columns: 1fr; }
  .two-col{grid-template-columns: 1fr; }
  .calc{grid-template-columns: 1fr; }
  .calc-summary{border-left:none; border-top:1px solid rgba(244,247,250,.10)}
  .calc-thumb{width:38px; height:38px}
  .map-panel{grid-template-columns: 1fr; }
  .map-aside{border-left:none; border-top:1px solid rgba(244,247,250,.10)}
  .donut-grid{grid-template-columns: 1fr 1fr}
  .media-slot{min-height:180px}
  .media-grid{grid-template-columns: 1fr}
  .menu-btn{display:inline-flex; margin-right:4px}
  .nav{
    display:none;
    position:absolute;
    left:6px;
    right:6px;
    top:calc(100% + 10px);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(244,247,250,.10);
    background:rgba(11,31,51,.92);
    box-shadow:var(--shadow);
  }
  .nav[data-open="true"]{display:flex}
  .nav a{padding:10px 12px}
}

@media (max-width: 420px){
  .donut-grid{grid-template-columns: 1fr}
  .brand{white-space:normal}
  .brand strong{font-size:14px}
  .news-tag{white-space:normal; line-height:1.2}
  textarea{min-height:96px}
}

@media (max-width: 395px){
  .calc-items{padding:12px}
  .calc-row{
    padding:12px;
    gap:10px;
    flex-wrap:wrap;
  }
  .calc-left{width:100%}
  .calc-left--icon{gap:10px}
  .calc-right{
    width:100%;
    display:flex;
    justify-content:flex-start;
  }
  .calc-title{font-size:15px}
  .calc-sub{font-size:12px}
  .calc-price{font-size:14px; padding:7px 9px}
  .calc-thumb{width:36px; height:36px}
  .qty{padding:7px 9px; gap:7px}
  .qty-btn{width:30px; height:30px; border-radius:10px; font-size:16px}
  .qty-input{width:50px; padding:7px 8px; border-radius:10px}
}

body[data-cookie-modal-open="true"]{overflow:hidden}
body[data-offer-open="true"]{overflow:hidden}
body[data-cookie-modal-open="true"] .wa-float,
body[data-offer-open="true"] .wa-float{
  opacity:0;
  pointer-events:none;
}
body[data-cookie-banner-visible="true"] .wa-float{bottom:92px}
.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(37,211,102,.55);
  background:rgba(37,211,102,.95);
  color:#061120;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  z-index:61;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.42);
}
.wa-float:focus{
  outline:none;
  box-shadow: var(--focus), 0 22px 48px rgba(0,0,0,.42);
}
.wa-float svg{fill:#061120}
@media (max-width: 420px){
  .wa-float{right:16px; bottom:16px; width:46px; height:46px}
}
.offer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:70;
  opacity:0;
  transition: opacity .16s ease;
}
.offer-backdrop[data-visible="true"]{opacity:1}
.offer-modal{
  position:fixed;
  left:16px;
  right:16px;
  bottom:84px;
  z-index:71;
  max-width:560px;
  margin:0 auto;
  border-radius:16px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(7,11,17,.94);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform: translateY(10px);
  opacity:0;
  transition: opacity .16s ease, transform .16s ease;
}
.offer-modal[data-visible="true"]{
  opacity:1;
  transform: translateY(0);
}
.offer-modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px 0;
}
.offer-modal__title{
  margin:0;
  font-size:14px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(244,247,250,.78);
}
.offer-close{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(244,247,250,.06);
  color:var(--text);
  font-size:18px;
  line-height:1;
}
.offer-close:focus{outline:none; box-shadow:var(--focus)}
.offer-close:hover{border-color: rgba(244,247,250,.22); background:rgba(244,247,250,.08)}
.offer-modal__body{padding:12px}
.offer-modal__img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.10);
  background:rgba(244,247,250,.04);
}
.offer-modal__text{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
}
@media (max-width: 420px){
  .offer-modal{left:12px; right:12px; bottom:76px}
  .offer-modal__text{font-size:13px}
}
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:60;
  pointer-events:none;
  opacity:0;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}
.cookie-banner[data-visible="true"]{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.cookie-banner__inner{
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(7,11,17,.92);
  box-shadow:var(--shadow);
}
.cookie-banner__text{
  color:rgba(244,247,250,.86);
  font-size:13px;
  line-height:1.35;
}
.cookie-banner__text a{color:rgba(244,247,250,.92); text-decoration:underline}
.cookie-banner__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
}
.cookie-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:70;
  opacity:0;
  pointer-events:none;
  transition: opacity .16s ease;
}
.cookie-backdrop[data-open="true"]{
  opacity:1;
  pointer-events:auto;
}
.cookie-dialog{
  position:fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:min(640px, calc(100vw - 32px));
  z-index:71;
  border-radius:18px;
  border:1px solid rgba(244,247,250,.16);
  background:rgba(11,31,51,.92);
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition: opacity .16s ease;
}
.cookie-dialog[data-open="true"]{
  opacity:1;
  pointer-events:auto;
}
.cookie-dialog__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(244,247,250,.10);
}
.cookie-dialog__title{font-weight:800; color:rgba(244,247,250,.96)}
.cookie-dialog__close{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(244,247,250,.14);
  background:rgba(7,11,17,.55);
  color:rgba(244,247,250,.92);
  font:inherit;
  cursor:pointer;
}
.cookie-dialog__close:focus{outline:none; box-shadow:var(--focus)}
.cookie-dialog__body{padding:14px}
.cookie-options{display:flex; flex-direction:column; gap:10px}
.cookie-option{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(244,247,250,.12);
  background:rgba(7,11,17,.45);
  color:rgba(244,247,250,.88);
  font-size:13px;
}
.cookie-option input{margin-top:2px}
.cookie-dialog__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
  padding:12px 14px 14px;
  border-top:1px solid rgba(244,247,250,.10);
}
@media (max-width: 980px){
  .cookie-banner__inner{flex-direction:column; align-items:stretch}
  .cookie-banner__actions{justify-content:flex-start}
}
