:root {
  --bg-980: #04060f;
  --bg-940: #07111d;
  --bg-900: #0a1726;
  --bg-860: #0f2235;
  --panel: rgba(8, 18, 30, 0.72);
  --panel-strong: rgba(9, 24, 40, 0.9);
  --text-main: #eefcf7;
  --text-soft: #b7d9cc;
  --text-dim: #7ca69b;
  --glow-green: #54ff8f;
  --glow-cyan: #40e4ff;
  --glow-lime: #c4ff45;
  --glow-pink: #ff56d8;
  --line: rgba(84, 255, 143, 0.18);
  --line-strong: rgba(64, 228, 255, 0.45);
  --shadow-soft: 0 0 0 1px rgba(84, 255, 143, 0.07), 0 20px 60px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 0 0 1px rgba(64, 228, 255, 0.08), 0 0 26px rgba(64, 228, 255, 0.13), 0 26px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 22px rgba(84, 255, 143, 0.28), 0 0 46px rgba(64, 228, 255, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Varela Round", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top right, rgba(255, 86, 216, 0.16), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(84, 255, 143, 0.2), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(64, 228, 255, 0.18), transparent 20%),
    linear-gradient(135deg, var(--bg-980) 0%, var(--bg-940) 48%, #050911 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(64, 228, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 255, 143, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  opacity: 0.35;
  z-index: -2;
}

body::after {
  background:
    radial-gradient(circle at 50% -10%, rgba(84, 255, 143, 0.22), transparent 36%),
    radial-gradient(circle at 100% 20%, rgba(64, 228, 255, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 86, 216, 0.12), transparent 26%);
  filter: blur(10px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7, 16, 29, 0.9), rgba(10, 28, 39, 0.74));
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  backdrop-filter: blur(18px);
}

.brand,
h1,
h2,
h3 {
  font-family: "Miriam Libre", sans-serif;
  font-weight: 700;
}

.brand {
  color: var(--glow-lime);
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 16px rgba(196, 255, 69, 0.35);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(64, 228, 255, 0.1);
  border-color: rgba(64, 228, 255, 0.3);
  color: var(--text-main);
  box-shadow: 0 0 18px rgba(64, 228, 255, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(8, 20, 33, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(84, 255, 143, 0.14);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--glow-lime);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  padding: 90px 0 34px;
}

.hero-grid,
.article-grid,
.compact-grid,
.city-card-grid,
.city-preview-grid,
.footer-grid,
.info-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.medical-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-card-grid,
.city-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.hero-copy,
.hero-panel,
.page-hero .narrow,
.card,
.city-card,
.city-preview,
.info-block,
.notice-box,
.faq-item,
.site-footer,
.info-box {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 24, 36, 0.92), rgba(7, 14, 24, 0.85));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.hero-copy::before,
.hero-panel::before,
.page-hero .narrow::before,
.card::before,
.city-card::before,
.city-preview::before,
.info-block::before,
.notice-box::before,
.faq-item::before,
.site-footer::before,
.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(84, 255, 143, 0.4), rgba(64, 228, 255, 0.16), rgba(255, 86, 216, 0.24));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.page-hero .narrow,
.card,
.city-card,
.city-preview,
.info-block,
.notice-box,
.info-box {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.hero-copy {
  overflow: hidden;
}

.hero-copy::after,
.page-hero .narrow::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(84, 255, 143, 0.28), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 16px;
  color: #f5fffc;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-shadow: 0 0 26px rgba(64, 228, 255, 0.16);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.hero-panel h2,
.section-head h2,
.city-card h2,
.city-preview h3,
.card h3,
.info-block h2,
.notice-box h2,
.info-box h3,
.section-title {
  margin: 0 0 12px;
  color: var(--glow-cyan);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  letter-spacing: 0.015em;
  text-shadow: 0 0 18px rgba(64, 228, 255, 0.18);
}

.lead,
p,
li,
summary,
.info-item {
  line-height: 1.78;
  font-size: 1rem;
}

.lead,
.hero-copy p,
.hero-panel li,
.card p,
.city-preview p,
.city-card p,
.info-block p,
.faq-item p,
.notice-box p,
.site-footer p,
.info-box p,
.info-item {
  color: var(--text-soft);
}

.section {
  padding: 20px 0 36px;
}

.section-soft {
  padding-top: 10px;
}

.section-head {
  margin-bottom: 18px;
}

.eyebrow,
.panel-kicker,
.city-label,
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(196, 255, 69, 0.34);
  background: rgba(196, 255, 69, 0.08);
  color: var(--glow-lime);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: inset 0 0 16px rgba(196, 255, 69, 0.06), 0 0 14px rgba(196, 255, 69, 0.12);
}

.button-row,
.mini-points,
.footer-links,
.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(84, 255, 143, 0.35);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.source-link:hover,
.text-link:hover,
.info-box:hover,
.card:hover,
.city-card:hover,
.city-preview:hover,
.info-block:hover {
  transform: translateY(-3px);
}

.button-solid,
.source-link {
  background: linear-gradient(135deg, rgba(84, 255, 143, 0.18), rgba(64, 228, 255, 0.26));
  color: #f3fffb;
  box-shadow: 0 0 18px rgba(84, 255, 143, 0.24), inset 0 0 18px rgba(64, 228, 255, 0.08);
}

.button-solid:hover,
.source-link:hover {
  border-color: rgba(64, 228, 255, 0.55);
  box-shadow: 0 0 24px rgba(64, 228, 255, 0.28), 0 0 42px rgba(84, 255, 143, 0.18);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--glow-lime);
  box-shadow: inset 0 0 18px rgba(196, 255, 69, 0.04);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.text-link,
.footer-links a {
  color: var(--glow-cyan);
  font-weight: 700;
}

.mini-points span,
.panel-list li,
.feature-list li {
  position: relative;
  padding-right: 18px;
}

.mini-points span::before,
.panel-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glow-green);
  box-shadow: 0 0 12px rgba(84, 255, 143, 0.6);
}

.panel-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.city-card,
.city-preview,
.card,
.info-block,
.info-box {
  min-height: 100%;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: var(--radius-md);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  color: var(--glow-lime);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 12px 0 0;
}

.notice-box {
  text-align: center;
}

.site-footer {
  margin: 34px auto 24px;
  padding: 26px 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(6, 14, 25, 0.98), rgba(10, 30, 46, 0.88));
}

.footer-grid {
  padding: 0 24px;
}

.footer-title {
  margin: 0 0 10px;
  color: var(--glow-lime);
  font-family: "Secular One", sans-serif;
  font-size: 1.3rem;
}

.footer-links {
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 240ms ease;
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-info {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(84, 255, 143, 0.08), rgba(64, 228, 255, 0.06));
  border: 1px solid rgba(84, 255, 143, 0.15);
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 22px rgba(84, 255, 143, 0.04);
}

.info-item strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--glow-lime);
  font-weight: 700;
}

.section-alt {
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 12px 0;
  background: linear-gradient(90deg, transparent, rgba(64, 228, 255, 0.08), transparent);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.info-box {
  padding: 22px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.info-box:hover,
.card:hover,
.city-card:hover,
.city-preview:hover,
.info-block:hover {
  box-shadow: 0 0 0 1px rgba(84, 255, 143, 0.16), 0 0 28px rgba(64, 228, 255, 0.16), 0 30px 80px rgba(0, 0, 0, 0.52);
}

.info-box h3 {
  font-size: 1.15rem;
}

strong {
  color: var(--text-main);
}

::selection {
  background: rgba(84, 255, 143, 0.28);
  color: #ffffff;
}

.seo-context {
  padding: 36px 0 64px;
}

.seo-context-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 34px);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.seo-context-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.seo-context-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.8;
}

.seo-context-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .article-grid,
  .medical-grid,
  .city-card-grid,
  .city-preview-grid,
  .compact-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-wrap {
    position: relative;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: rgba(7, 16, 29, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .hero,
  .page-hero {
    padding-top: 74px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero .narrow,
  .card,
  .city-card,
  .city-preview,
  .info-block,
  .notice-box,
  .faq-item,
  .info-box {
    padding: 24px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body::before {
    background-size: 42px 42px;
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .site-nav a,
  .button,
  .source-link,
  .text-link,
  .info-box,
  .card,
  .city-card,
  .city-preview,
  .info-block {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
