/* =========================================================
   Індустріальне Місто — Retail Systems Ukraine
   Design system
   ========================================================= */
:root {
  --navy: #17265c;
  --navy-deep: #0d1638;
  --ink: #0f1733;
  --text: #2b3150;
  --muted: #646b85;
  --paper: #f7f6f1;
  --paper-2: #efede5;
  --white: #ffffff;
  --line: rgba(15, 23, 51, .12);
  --line-light: rgba(255, 255, 255, .16);
  --accent: #c8983c;
  --accent-soft: #f3e6c8;
  --ok: #2f7a5b;

  --f-head: "Raleway", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 22px;
  --shadow: 0 24px 60px -30px rgba(13, 22, 56, .35);
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 16px/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
[data-icon] { display: inline-flex; align-items: center; justify-content: center; }
[data-icon] > svg { width: 18px; height: 18px; }
.link-arrow [data-icon] { width: auto !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); margin: 0; letter-spacing: -.01em; }
h1 { font-weight: 300; font-size: clamp(40px, 5.6vw, 78px); line-height: 1.06; }
h2 { font-weight: 300; font-size: clamp(32px, 4vw, 56px); line-height: 1.1; }
h3 { font-weight: 500; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.3; }
h4 { font-weight: 600; font-size: 17px; line-height: 1.35; }
p { margin: 0 0 1em; }
.lead { font-family: var(--f-head); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--white { background: var(--white); }
.section--sand { background: var(--paper-2); }
.section--dark { background: var(--navy-deep); color: rgba(255,255,255,.78); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.7); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 12px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.section--dark .eyebrow, .hero .eyebrow { color: var(--accent-soft); }

.section-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px 80px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .lead { margin: 0; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; } }

/* Draft markers: content to be confirmed */
.tbd {
  background: linear-gradient(transparent 62%, rgba(200,152,60,.28) 62%);
  cursor: help;
}
.draft-note {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 12px; color: #8a6420; background: var(--accent-soft);
  border-radius: 99px; padding: 4px 12px; margin-top: 14px;
}
body.hide-tbd .tbd { background: none; }
body.hide-tbd .draft-note { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: var(--r-sm);
  font: 500 15px/1 var(--f-body); border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); }
.btn--accent { background: var(--accent); color: var(--navy-deep); }
.btn--accent:hover { background: #d9ab52; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--navy); }
.btn--glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.22); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--navy); border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.section--dark .link-arrow { color: var(--accent-soft); }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,.75);
  font: 500 11px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase;
  text-align: center; padding: 10px var(--gutter);
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,241,.86); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -24px rgba(13,22,56,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand-sub { font: 500 10.5px/1.3 var(--f-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-left: 1px solid var(--line); padding-left: 14px; max-width: 150px; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a { font: 500 14px/1 var(--f-body); color: var(--ink); position: relative; padding: 8px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--accent); transition: right .3s var(--ease); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; gap: 10px; font: 600 13px/1 var(--f-body); }
.lang a { color: var(--muted); }
.lang a.is-active { color: var(--navy); }
.header-cta { min-height: 42px; padding: 0 18px; font-size: 14px; }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm); background: transparent; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: transform .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

.nav a { white-space: nowrap; }
@media (max-width: 1400px) { .brand-sub { display: none; } }
@media (max-width: 1180px) { .header-cta { display: none; } }
@media (max-width: 980px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 118px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 40px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
    overflow-y: auto;
  }
  .nav a { font: 300 28px/1.2 var(--f-head); padding: 18px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .header-inner { height: 72px; }
  .brand img { height: 28px; }
}
@media (max-width: 520px) { .topbar { font-size: 9.5px; letter-spacing: .08em; } }

/* ---------- Hero slider ---------- */
.hero { position: relative; min-height: min(92vh, 860px); color: #fff; overflow: hidden; background: var(--navy-deep); }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s linear; }
.hero-slide.is-active .hero-bg { transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,16,42,.9) 0%, rgba(10,16,42,.64) 48%, rgba(10,16,42,.12) 100%),
              linear-gradient(0deg, rgba(10,16,42,.7) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(110px, 14vh, 150px); padding-top: 120px; }
.hero-content > * { max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--accent-soft); }
.hero .lead { color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-controls { position: absolute; z-index: 3; left: 0; right: 0; bottom: 36px; }
.hero-controls .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero-dots { display: flex; gap: 10px; }
.hero-dots button { width: 44px; height: 3px; border: 0; background: rgba(255,255,255,.3); padding: 0; position: relative; overflow: hidden; }
.hero-dots button::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero-dots button.is-active::after { animation: dot 7s linear forwards; }
@keyframes dot { to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 10px; }
.hero-arrows button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; display: grid; place-items: center; transition: background .2s; }
.hero-arrows button:hover { background: rgba(255,255,255,.14); }
.hero-arrows svg { width: 18px; height: 18px; }
.hero-badge {
  position: absolute; z-index: 3; right: var(--gutter); top: 40px;
  display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--r);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px);
  font-size: 13px; line-height: 1.35;
}
.hero-badge b { display: block; font-weight: 600; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(200,152,60,.7); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(200,152,60,0); } 100% { box-shadow: 0 0 0 0 rgba(200,152,60,0); } }
@media (max-width: 700px) { .hero-badge { display: none; } .hero-arrows { display: none; } }

/* Page hero (inner pages) */
.page-hero { position: relative; color: #fff; background: var(--navy-deep); overflow: hidden; }
.page-hero .hero-bg { transform: none; opacity: .55; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,42,.9), rgba(10,16,42,.35)); }
.page-hero .container { position: relative; z-index: 2; padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(64px, 8vw, 110px); }
.page-hero h1 { color: #fff; max-width: 900px; margin-bottom: 22px; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 640px; margin: 0; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.page-hero--park .big-name { font: 200 clamp(56px, 11vw, 170px)/.9 var(--f-head); color: #fff; letter-spacing: -.03em; margin-bottom: 8px; }
.page-hero--park .big-sub { font: 500 13px/1 var(--f-body); letter-spacing: .3em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 36px; }

/* ---------- Trusted strip ---------- */
.trusted { border-bottom: 1px solid var(--line); background: var(--white); }
.trusted .container { display: flex; align-items: center; gap: 40px; padding-top: 30px; padding-bottom: 30px; }
.trusted-label { font-size: 13px; color: var(--muted); white-space: nowrap; }
.marquee { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner { display: flex; align-items: center; gap: 12px; white-space: nowrap; color: var(--ink); opacity: .72; transition: opacity .2s; }
.partner:hover { opacity: 1; }
.partner-mark { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font: 700 12px/1 var(--f-head); color: var(--navy); }
.partner-name { font: 600 15px/1.2 var(--f-head); }
.partner-name small { display: block; font: 400 11.5px/1.3 var(--f-body); color: var(--muted); }
@media (max-width: 700px) { .trusted .container { flex-direction: column; align-items: flex-start; gap: 16px; } .marquee { width: 100%; } }

/* ---------- Feature grid (advantages) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .35s var(--ease); position: relative; }
.feature:hover { background: var(--white); }
.feature-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--navy); margin-bottom: 30px; transition: background .3s, color .3s; }
.feature:hover .feature-icon { background: var(--navy); color: #fff; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 14px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }
.feature-num { position: absolute; top: 28px; right: 30px; font: 300 14px/1 var(--f-head); color: var(--muted); }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ---------- Services cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: var(--r);
  padding: 34px 30px; display: flex; flex-direction: column; min-height: 290px;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.service:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); transform: translateY(-4px); }
.service .feature-icon { background: rgba(255,255,255,.08); color: var(--accent-soft); margin-bottom: auto; }
.service h3 { margin: 34px 0 12px; }
.service p { margin: 0; font-size: 15px; color: rgba(255,255,255,.66); }
.section--white .service, .section--sand .service { border-color: var(--line); background: var(--white); }
.section--white .service p, .section--sand .service p { color: var(--muted); }
.section--white .service .feature-icon, .section--sand .service .feature-icon { background: var(--paper-2); color: var(--navy); }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } .service { min-height: 0; } }
.section-foot { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- Park card (big) ---------- */
.park-card {
  display: grid; grid-template-columns: 1.15fr .85fr; background: var(--white);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
.park-card-media { position: relative; min-height: 440px; overflow: hidden; }
.park-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.park-card:hover .park-card-media img { transform: scale(1.04); }
.park-tag { position: absolute; top: 20px; left: 20px; z-index: 2; background: var(--accent); color: var(--navy-deep); font: 600 12px/1 var(--f-body); letter-spacing: .08em; text-transform: uppercase; padding: 9px 14px; border-radius: 99px; }
.park-card-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; }
.park-card-body h3 { font: 300 clamp(30px, 3vw, 42px)/1.1 var(--f-head); margin-bottom: 8px; }
.park-card-body h3 small { display: block; font: 600 12px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.park-meta { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 14px; }
.park-meta li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.park-meta svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.park-card-body .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) { .park-card { grid-template-columns: 1fr; } .park-card-media { min-height: 280px; } }

.soon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.soon { border: 1px dashed rgba(15,23,51,.25); border-radius: var(--r); padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.soon b { font: 300 22px/1.2 var(--f-head); color: var(--ink); }
.soon span { font: 600 11px/1 var(--f-body); letter-spacing: .14em; color: var(--accent); text-transform: uppercase; }
@media (max-width: 600px) { .soon-grid { grid-template-columns: 1fr; } }

/* ---------- Map ---------- */
.map-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #e9e7df; }
.map { height: clamp(420px, 60vh, 620px); width: 100%; z-index: 1; }
.map-toggle { position: absolute; z-index: 5; top: 16px; right: 16px; display: flex; background: var(--white); border-radius: 99px; padding: 4px; box-shadow: 0 6px 20px -8px rgba(0,0,0,.3); }
.map-toggle button { border: 0; background: transparent; padding: 8px 14px; border-radius: 99px; font-size: 13px; font-weight: 500; color: var(--muted); }
.map-toggle button.is-active { background: var(--navy); color: #fff; }
.map-legend { position: absolute; z-index: 5; left: 16px; bottom: 16px; background: rgba(255,255,255,.95); border-radius: var(--r); padding: 14px 16px; font-size: 12.5px; box-shadow: 0 6px 20px -8px rgba(0,0,0,.3); display: grid; gap: 7px; }
.map-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.leaflet-container { font-family: var(--f-body) !important; }
.park-pin { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 4px solid #fff; box-shadow: 0 0 0 0 rgba(200,152,60,.8); animation: pulse 2s infinite; }
.city-pin { width: 12px; height: 12px; border-radius: 50%; background: var(--navy); border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.map-label { background: var(--navy-deep); color: #fff; border: 0; border-radius: 6px; padding: 6px 10px; font-weight: 500; box-shadow: none; }
.map-label::before { display: none; }
.map-label--park { background: var(--accent); color: var(--navy-deep); font-weight: 600; }
.dist-label { background: #fff; color: var(--navy); border: 1px solid var(--line); font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 99px; box-shadow: 0 2px 8px -2px rgba(0,0,0,.2); }
.dist-label::before { display: none; }

.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.dist-list { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.dist-list li { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 15px; cursor: default; transition: color .2s; }
.dist-list li > span { transition: transform .25s var(--ease); }
.dist-list li:hover { color: var(--navy); }
.dist-list li:hover > span { transform: translateX(8px); }
.dist-list b { font: 500 16px/1.4 var(--f-head); color: var(--ink); white-space: nowrap; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 34px 24px 6px 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat-label { font: 600 11.5px/1.3 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; min-height: 30px; }
.stat-value { font: 200 clamp(44px, 5vw, 72px)/1 var(--f-head); color: var(--ink); white-space: nowrap; }
.stat-value small { font-size: .36em; font-weight: 400; margin-left: 6px; color: var(--muted); }
.section--dark .stats, .section--dark .stat + .stat { border-color: var(--line-light); }
.section--dark .stat-value { color: #fff; }
.section--dark .stat-label, .section--dark .stat-value small { color: rgba(255,255,255,.6); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; padding-left: 0; } .stat { border-top: 1px solid var(--line); } }
@media (max-width: 420px) { .stats { grid-template-columns: 1fr; } .stat + .stat { border-left: 0; padding-left: 0; } }

/* ---------- Split / about blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .caption { position: absolute; left: 16px; bottom: 16px; background: rgba(13,22,56,.82); color: #fff; font-size: 13px; padding: 10px 14px; border-radius: var(--r-sm); backdrop-filter: blur(6px); }
.split h2 { margin-bottom: 26px; }
.split .lead { margin-bottom: 30px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split-media { order: 0; } }

.checklist { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317265c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/11px no-repeat; }
.section--dark .checklist li::before { background-color: rgba(255,255,255,.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3e6c8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); }

/* Projects (portfolio) */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.project-media { aspect-ratio: 16/9; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.project:hover .project-media img { transform: scale(1.05); }
.project-body { padding: 26px 28px 30px; display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; align-items: end; }
.project-body h3 { margin-bottom: 4px; }
.project-body p { margin: 0; color: var(--muted); font-size: 14.5px; }
.project-area { font: 200 38px/1 var(--f-head); color: var(--navy); text-align: right; white-space: nowrap; }
.project-area small { display: block; font: 500 11px/1.2 var(--f-body); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
@media (max-width: 760px) { .projects { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--navy); color: #fff; padding: clamp(40px, 6vw, 84px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: url("../img/park-fields.jpg") center/cover; opacity: .16; }
.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,.75); margin: 0; max-width: 620px; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; } .cta-actions { align-items: flex-start; } }

/* ---------- Timeline / roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.roadmap--5 { grid-template-columns: repeat(5, 1fr); }
.roadmap::before { content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 1px; background: var(--line-light); }
.phase { padding-right: 28px; position: relative; }
.phase-dot { width: 47px; height: 47px; border-radius: 50%; border: 1px solid var(--line-light); background: var(--navy-deep); display: grid; place-items: center; font: 500 14px/1 var(--f-head); color: var(--accent-soft); margin-bottom: 28px; position: relative; transition: background .3s, color .3s; }
.phase:hover .phase-dot, .phase.is-current .phase-dot { background: var(--accent); color: var(--navy-deep); border-color: var(--accent); }
.phase-time { font: 600 12px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.phase h3 { margin-bottom: 16px; }
.phase ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,.66); }
.phase li { padding-left: 16px; position: relative; }
.phase li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 1px; background: var(--accent); }
@media (max-width: 960px) {
  .roadmap { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .roadmap::before { display: none; }
}
@media (max-width: 600px) { .roadmap { grid-template-columns: 1fr; } }

/* ---------- Masterplan ---------- */
.masterplan { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: stretch; }
.plan-svg-wrap { background: #e8e5da; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); position: relative; }
.plan-svg-wrap svg { width: 100%; height: auto; display: block; }
.plan-zone { cursor: pointer; transition: opacity .25s, filter .25s; }
.plan-zone rect, .plan-zone path, .plan-zone polygon { transition: fill .25s; }
.masterplan.has-focus .plan-zone { opacity: .35; }
.masterplan.has-focus .plan-zone.is-focus { opacity: 1; }
.plan-list { display: grid; gap: 10px; align-content: start; }
.plan-item { display: grid; grid-template-columns: 16px 1fr auto; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); cursor: pointer; transition: border-color .2s, transform .25s var(--ease); text-align: left; width: 100%; color: var(--text); }
.plan-item:hover, .plan-item.is-focus { border-color: var(--navy); transform: translateX(4px); }
.plan-item i { width: 14px; height: 14px; border-radius: 4px; }
.plan-item b { display: block; font: 500 16px/1.3 var(--f-head); color: var(--ink); }
.plan-item span { font-size: 13px; color: var(--muted); }
.plan-item em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; }
@media (max-width: 960px) { .masterplan { grid-template-columns: 1fr; } }

/* ---------- Sectors (industry tiles) ---------- */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector { position: relative; border-radius: var(--r); padding: 28px 24px; min-height: 250px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: color .35s; }
.sector::before { content: ""; position: absolute; inset: 0; background: var(--navy); transform: translateY(101%); transition: transform .45s var(--ease); }
.sector > * { position: relative; }
.sector:hover { color: rgba(255,255,255,.75); }
.sector:hover h3 { color: #fff; }
.sector:hover::before { transform: none; }
.sector:hover .feature-icon { background: rgba(255,255,255,.1); color: var(--accent-soft); }
.sector p { margin: 10px 0 0; font-size: 14.5px; }
.sector .feature-icon { margin-bottom: 20px; }
@media (max-width: 960px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors { grid-template-columns: 1fr; } .sector { min-height: 0; } }

/* ---------- Incentives table ---------- */
.incentives { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.incentive { background: var(--white); padding: 34px 32px; display: grid; grid-template-columns: auto 1fr; gap: 22px; }
.incentive-num { font: 200 46px/1 var(--f-head); color: var(--accent); min-width: 72px; }
.incentive h4 { margin-bottom: 8px; }
.incentive p { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 760px) { .incentives { grid-template-columns: 1fr; } .incentive { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Accordion (FAQ) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 26px 0; font: 400 clamp(18px, 1.7vw, 22px)/1.35 var(--f-head); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 200 30px/1 var(--f-head); color: var(--navy); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 26px; max-width: 820px; color: var(--muted); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; display: flex; gap: 10px; align-items: center; }
.news-date span { background: var(--paper-2); color: var(--navy); border-radius: 99px; padding: 3px 10px; font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.news-body h3 { font-size: 20px; margin-bottom: 12px; }
.news-body p { color: var(--muted); font-size: 15px; }
.news-body .link-arrow { margin-top: auto; align-self: flex-start; }
@media (max-width: 960px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 88px); }
.contact-cards { display: grid; gap: 14px; margin-top: 36px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); }
.contact-card .feature-icon { margin: 0; width: 46px; height: 46px; flex-shrink: 0; }
.contact-card small { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card a, .contact-card b { font: 500 17px/1.4 var(--f-head); color: var(--ink); }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 48px); }
.form h3 { font: 300 32px/1.15 var(--f-head); margin-bottom: 8px; }
.form > p { color: var(--muted); margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: 400 15px/1.4 var(--f-body); color: var(--ink);
  background: var(--paper); border: 1px solid transparent; border-radius: var(--r-sm); padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { cursor: pointer; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; padding: 0; }
.chips span { display: inline-block; padding: 9px 14px; border-radius: 99px; border: 1px solid var(--line); font-size: 14px; transition: all .2s; }
.chips input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }
.chips input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.form-foot small { color: var(--muted); max-width: 340px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--r-sm); background: #e5f1eb; color: var(--ok); margin-top: 18px; font-size: 15px; }
.form.is-sent .form-success { display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Team / partners cards ---------- */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.person-mark { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font: 400 22px/1 var(--f-head); margin-bottom: 24px; }
.person h3 { margin-bottom: 4px; }
.person .role { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.person p { color: var(--muted); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .people { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .people { grid-template-columns: 1fr; } }

/* Requisites table */
.reqs { width: 100%; border-collapse: collapse; font-size: 15px; }
.reqs th, .reqs td { text-align: left; padding: 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.reqs th { font-weight: 500; color: var(--muted); width: 42%; padding-right: 20px; }
.reqs td { color: var(--ink); }

/* Gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery a { border-radius: var(--r); overflow: hidden; position: relative; }
.gallery a:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .ph { width: 100%; height: 100%; display: grid; place-items: center; background: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 10px, #e6e3d8 10px, #e6e3d8 20px); color: var(--muted); font-size: 13px; text-align: center; padding: 20px; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 140px 140px; } .gallery a:first-child { grid-column: span 2; grid-row: auto; } }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,12,30,.92); display: none; place-items: center; padding: 24px; }
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 88vh; border-radius: var(--r); }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.66); padding: clamp(64px, 8vw, 100px) 0 30px; font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-light); }
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 26px; }
.footer-contact { display: grid; gap: 14px; }
.footer-contact small { display: block; font-size: 12px; color: rgba(255,255,255,.45); }
.footer-contact a { color: #fff; font: 400 18px/1.3 var(--f-head); }
.site-footer h4 { color: #fff; font: 600 12px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer ul a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; color: #fff; transition: background .2s; }
.socials a:hover { background: rgba(255,255,255,.1); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.42); flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* Draft toggle */
.draft-toggle { position: fixed; z-index: 60; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 99px; padding: 8px 14px 8px 10px; font-size: 12.5px; box-shadow: 0 10px 30px -12px rgba(0,0,0,.3); color: var(--ink); }
.draft-toggle i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
body.hide-tbd .draft-toggle i { background: #b9bccb; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: #fff; padding: 10px 14px; border-radius: 6px; }
.skip:focus { left: 8px; }

/* Grid children must be allowed to shrink on narrow screens */
.services-grid > *, .two-col > *, .split > *, .contact-grid > *, .location-grid > *, .section-head > *, .form-grid > *, .masterplan > * { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
@media (max-width: 600px) {
  .btn { white-space: normal; text-align: center; line-height: 1.3; padding-top: 12px; padding-bottom: 12px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
.services-grid--compact { grid-template-columns: 1fr 1fr; gap: 12px; }
.services-grid--compact .service { min-height: 0; padding: 22px 20px; }
.services-grid--compact .service h3 { margin: 18px 0 0; font-size: 18px; overflow-wrap: anywhere; }

/* ---------- Parks network ---------- */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 13px; height: 13px; transition: transform .25s; }
.nav-drop:hover .nav-caret, .nav-drop:focus-within .nav-caret { transform: rotate(180deg); }
.drop-panel {
  position: absolute; top: calc(100% + 18px); left: -22px; min-width: 300px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s, transform .2s, visibility .2s;
}
.drop-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-drop:hover .drop-panel, .nav-drop:focus-within .drop-panel { opacity: 1; visibility: visible; transform: none; }
.drop-panel a { display: block; padding: 12px 14px; border-radius: var(--r-sm); }
.drop-panel a::after { display: none; }
.drop-panel a:hover { background: var(--paper); }
.drop-panel b { display: block; font: 500 15px/1.3 var(--f-head); color: var(--ink); }
.drop-panel span { font-size: 12.5px; color: var(--muted); font-weight: 400; }
.drop-panel .drop-soon b { color: var(--accent); }
@media (max-width: 980px) {
  .nav-drop { display: block; }
  .nav-caret { display: none; }
  .drop-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; min-width: 0; padding: 4px 0 12px 14px; border-bottom: 1px solid var(--line); }
  .drop-panel a { font: 400 15px/1.3 var(--f-body); padding: 8px 0; border: 0; }
  .nav-drop > a { width: 100%; }
}

.parks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.parks-grid > * { min-width: 0; }
.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pcard-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.pcard-kind { font: 600 11.5px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pcard h3 { font: 300 clamp(26px, 2.4vw, 32px)/1.15 var(--f-head); margin-bottom: 18px; }
.pcard-meta { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; font-size: 14.5px; color: var(--text); }
.pcard-meta li { display: flex; gap: 10px; align-items: flex-start; }
.pcard-meta [data-icon] { color: var(--navy); margin-top: 2px; flex-shrink: 0; }
.pcard .link-arrow { margin-top: auto; align-self: flex-start; }
.pcard--soon { border: 1px dashed rgba(15,23,51,.25); background: transparent; padding: 26px; justify-content: space-between; gap: 40px; min-height: 420px; }
.pcard--soon:hover { transform: none; box-shadow: none; border-color: var(--navy); }
.pcard--soon h3 { margin-bottom: 12px; }
.pcard--soon p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.pcard-soon-top { display: flex; justify-content: space-between; align-items: center; }
.soon-label { font: 600 11px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--navy); background: var(--paper-2); border-radius: 99px; padding: 8px 12px; }
.soon-icon { width: 54px; height: 54px; border-radius: 50%; border: 1px dashed rgba(15,23,51,.3); color: var(--muted); }
.soon-icon svg { width: 22px; height: 22px; }
@media (max-width: 960px) { .parks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .parks-grid { grid-template-columns: 1fr; } .pcard--soon { min-height: 0; } }

.pin-soon { width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px dashed var(--muted); }
.map--ukraine { height: clamp(420px, 58vh, 600px); }
.network-list { display: grid; gap: 10px; margin-top: 30px; }
.network-item { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); transition: border-color .2s, transform .25s var(--ease); }
.network-item:hover { border-color: var(--navy); transform: translateX(4px); }
.network-item i { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.network-item.is-soon i { background: transparent; border: 2px dashed var(--muted); }
.network-item b { display: block; font: 500 16px/1.3 var(--f-head); color: var(--ink); }
.network-item span { font-size: 13px; color: var(--muted); }
.network-item em { font-style: normal; font-size: 12px; font-weight: 600; color: var(--navy); }
.form-success.is-error { background: var(--accent-soft); color: #8a6420; }
.btn:disabled { opacity: .6; cursor: progress; }
