:root {
  --y:       #2B63D9;
  --y-light: #E8F0FD;
  --ink:     #0D0D0D;
  --mid:     #3A3A3A;
  --faint:   #F0F2F8;
  --white:   #F7F7F4;
  --border:  2px solid #0D0D0D;
  --sh:      4px 4px 0 #0D0D0D;
  --sh-lg:   7px 7px 0 #0D0D0D;
  --font-h:  'Unbounded', sans-serif;
  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--white); }
body { font-family: 'Onest', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero entrance — стаггер */
.hero-eyebrow { animation: fadeUp .55s .05s ease both; }
.hero-h1      { animation: fadeUp .6s  .15s ease both; }
.hero-sub     { animation: fadeUp .55s .25s ease both; }
.hero-desc    { animation: fadeUp .55s .35s ease both; }
.hero-cta-row { animation: fadeUp .55s .45s ease both; }
.hero-right   { animation: fadeIn .7s  .3s  ease both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: .05s; }
.rv2 { transition-delay: .12s; }
.rv3 { transition-delay: .19s; }
.rv4 { transition-delay: .26s; }
.rv5 { transition-delay: .33s; }
.rv6 { transition-delay: .40s; }

/* ── NAV — floating pill (liquid glass) ───────────────── */
.nav {
  position: fixed; top: calc(env(safe-area-inset-top) + 14px); left: 50%; z-index: 200;
  transform: translateX(-50%) translateY(calc(-100% - 32px));
  display: flex; align-items: center; gap: 32px;
  padding: 0 10px 0 28px; height: 56px;
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  backdrop-filter: blur(28px) saturate(1.8);
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 100px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.9);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1), gap .35s ease;
}
.nav.nav-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.nav.scrolled { box-shadow: 0 6px 28px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.9); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 30px; width: auto; filter: none; }
.nav-logo-text {
  font-family: var(--font-h); font-size: 12px; font-weight: 900;
  color: var(--ink); letter-spacing: .3px; display: none;
}

/* Links wrapper — slides out on collapse */
.nav-links-wrap {
  display: flex; overflow: hidden;
  max-width: 500px; opacity: 1;
  transition: max-width .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: rgba(0,0,0,.5);
  text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

/* CTA button */
.nav-pill-cta {
  font-family: var(--font-h); font-size: 10px; font-weight: 900;
  letter-spacing: .5px; color: var(--ink); background: var(--y);
  border-radius: 100px; padding: 10px 22px; cursor: pointer;
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  max-width: 200px; overflow: hidden;
  transition: opacity .15s, max-width .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
}
.nav-pill-cta:hover { opacity: .85; }

/* ── NAV COLLAPSED (scrolled past hero) ───────────────── */
.nav.nav-collapsed { gap: 16px; }
.nav.nav-collapsed .nav-links-wrap { max-width: 0; opacity: 0; pointer-events: none; }

/* Burger — hidden (no burger menu) */
.nav-burger { display: none; }

/* ── LANDING SCREEN (fullscreen first view) ───────────── */
.landing-screen {
  height: 100svh;
  max-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1fr 400px;
  align-items: center;
  padding: 0 48px 0 0;
  position: relative;
}
/* Dot grid covers entire hero — including area behind pill card */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(43,99,217,.14) 2px, transparent 2px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.hero-left {
  padding: 56px 48px 56px 56px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; height: 100%;
  position: relative; z-index: 1;
}
.hero-right { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 2px; color: var(--mid);
  border: var(--border); padding: 7px 14px;
  width: fit-content; margin-bottom: 32px;
  background: var(--faint);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; border: 1.5px solid var(--ink);
  animation: blink 1s step-end infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 900; line-height: .9; letter-spacing: -3px;
  color: var(--ink); margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  background: var(--y); padding: 10px 14px 8px;
  display: inline-block; color: #fff; line-height: 1;
}
.hero-sub {
  font-family: var(--font-h); font-size: 10px; font-weight: 400;
  letter-spacing: 4px; color: #888; margin-bottom: 24px;
}
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--mid); max-width: 480px; margin-bottom: 40px;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-h); font-size: 11px; font-weight: 900;
  letter-spacing: .3px; border: var(--border); padding: 14px 26px;
  cursor: pointer; box-shadow: var(--sh);
  transition: transform .12s, box-shadow .12s; white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-lg); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-black { background: var(--ink); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn-ghost:hover { box-shadow: var(--sh); }
.btn-y { background: var(--y); color: var(--white); }
.btn-start { font-size: 13px; padding: 16px 48px; letter-spacing: 1.5px; }

/* ── HERO RIGHT — pill card ───────────────────────────── */
.hero-right {
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 36px 32px;
  border-radius: 28px;
  border: var(--border);
  box-shadow: var(--sh-lg);
  align-self: center;
}
.hero-right-label {
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,.3);
  margin-bottom: 32px;
}
.stat-block {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.stat-block:last-of-type { border-bottom: none; }
.stat-label { font-family: var(--font-h); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 6px; }
.stat-row { display: flex; align-items: flex-end; gap: 4px; }
.stat-val { font-family: var(--font-h); font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-val.accent { color: var(--y); }
.stat-unit { font-family: var(--font-h); font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.stat-badge {
  font-family: var(--font-h); font-size: 7px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--white); background: var(--y); padding: 4px 9px;
  border: 1.5px solid rgba(255,255,255,.2); height: fit-content;
}
.hero-sticker {
  margin-top: auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sticker-inner {
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 1.5px; color: rgba(255,255,255,.5); line-height: 2;
}
.sticker-inner span { color: var(--y); }
.speed-track { height: 3px; background: rgba(255,255,255,.1); margin-top: 10px; position: relative; overflow: hidden; }
.speed-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--y); transition: width .6s cubic-bezier(.4,0,.2,1); }

/* ── MARQUEE — pill everywhere ────────────────────────── */
.marquee {
  background: var(--ink); color: var(--y);
  border: var(--border); border-radius: 100px;
  margin: 0 40px 28px;
  padding: 13px 0; overflow: hidden;
  flex-shrink: 0;
}
.marquee-inner { display: inline-flex; animation: marquee-scroll 28s linear infinite; will-change: transform; }
.marquee-inner span {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; padding: 0 20px; white-space: nowrap;
}
.mx { color: rgba(43,99,217,.5); }
@keyframes marquee-scroll { from{transform:translate3d(0,0,0)} to{transform:translate3d(-50%,0,0)} }

/* ── SECTION SHELL ────────────────────────────────────── */
.sec { padding: 96px 56px; }
.sec-white { background: var(--white); }
.sec-faint { background: var(--faint); }
.sec-dark { background: var(--ink); }
.max { max-width: 1200px; margin: 0 auto; }
.sec-head { margin-bottom: 56px; }
.sec-num {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; color: #aaa; margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 56px); font-weight: 900;
  line-height: .92; letter-spacing: -2px; color: var(--ink);
}
.sec-title.inv { color: var(--white); }
.sec-title em { font-style: normal; color: var(--y); }
.sec-title mark { background: var(--y); color: var(--ink); padding: 0 6px; font-style: normal; }

/* ── FEATURES ─────────────────────────────────────────── */
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  border: var(--border); box-shadow: var(--sh-lg);
}
.feat-hero {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}
.feat-hero-text {
  padding: 48px; border-right: var(--border);
  background: var(--ink);
}
.feat-hero-num {
  font-family: var(--font-h); font-size: 80px; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,.06); letter-spacing: -3px;
  margin-bottom: 24px;
}
.feat-hero-title {
  font-family: var(--font-h); font-size: 22px; font-weight: 900;
  color: var(--white); margin-bottom: 12px; letter-spacing: -.5px;
}
.feat-hero-title span { color: var(--y); }
.feat-hero-body { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.feat-hero-tag {
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 2px; color: var(--white); background: var(--y);
  display: inline-block; padding: 4px 12px;
}
.feat-hero-visual {
  padding: 48px; background: var(--faint);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.tls-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--white); border: var(--border);
  font-family: var(--font-h);
}
.tls-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--ink); }
.tls-dot.green { background: #22C55E; }
.tls-dot.yellow { background: var(--y); }
.tls-dot.red { background: #ef4444; }
.tls-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; color: var(--mid); }
.tls-val { font-size: 9px; font-weight: 700; color: var(--ink); margin-left: auto; }
.conn-flow { display: flex; align-items: center; }
.conn-node {
  border: 2px solid #000; padding: 12px 16px; background: #fff; flex: 1; text-align: center;
}
.conn-node-label { font-family: var(--font-h); font-size: 8px; font-weight: 700; letter-spacing: 1px; color: #888; margin-bottom: 4px; }
.conn-node-ico { display: flex; align-items: center; justify-content: center; color: var(--ink); }
.conn-wire {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 8px; flex: 1; position: relative;
}
.conn-wire-line { width: 100%; height: 2px; background: var(--y); position: relative; }
.conn-wire-label {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-h); font-size: 7px; font-weight: 700;
  letter-spacing: 1px; color: var(--y); background: var(--faint);
  padding: 0 4px; white-space: nowrap;
}
.conn-checks { display: flex; gap: 8px; }
.conn-check {
  flex: 1; border: 2px solid #000; padding: 10px 8px; text-align: center; background: #fff;
}
.conn-check-ico { font-family: var(--font-h); font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.conn-check-label { font-family: var(--font-h); font-size: 6px; font-weight: 700; letter-spacing: 1px; color: #888; }
.conn-status {
  border: 2px solid #000; padding: 10px 16px; background: var(--y);
  display: flex; align-items: center; gap: 10px;
}
.conn-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; border: 1.5px solid #000; animation: blink 1s step-end infinite; flex-shrink: 0; }
.conn-status-text { font-family: var(--font-h); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; color: #fff; }

.feat-item {
  padding: 36px 40px; border-right: var(--border); border-bottom: var(--border);
  transition: background .15s;
}
.feat-item:nth-child(even) { border-right: none; }
.feat-item:nth-last-child(-n+2) { border-bottom: none; }
.feat-item:hover { background: var(--faint); }
.feat-item-num { font-family: var(--font-h); font-size: 11px; font-weight: 900; color: #ccc; letter-spacing: 1px; margin-bottom: 16px; }
.feat-item-title { font-family: var(--font-h); font-size: 16px; font-weight: 900; color: var(--ink); margin-bottom: 8px; letter-spacing: -.3px; }
.feat-item-body { font-size: 13px; line-height: 1.7; color: var(--mid); }
.feat-item-tag { font-family: var(--font-h); font-size: 7px; font-weight: 700; letter-spacing: 1.5px; color: #999; margin-top: 16px; display: block; }

/* ── SERVERS ──────────────────────────────────────────── */
.servers-grid { display: grid; grid-template-columns: repeat(3,1fr); border: var(--border); box-shadow: var(--sh-lg); }
.server-card { padding: 36px 32px; border-right: var(--border); }
.server-card:last-child { border-right: none; }
.server-flag { line-height: 0; border: var(--border); display: inline-block; flex-shrink: 0; }
.server-name { font-family: var(--font-h); font-size: 15px; font-weight: 900; color: var(--ink); letter-spacing: -.3px; }
.server-city { font-size: 11px; color: #888; margin-top: 2px; }
.server-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.uptime-bar { height: 3px; background: #e8e8e8; margin-bottom: 20px; position: relative; overflow: hidden; }
.uptime-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--y); }
.srv-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 11px; color: #888; }
.srv-row:last-child { border-bottom: none; }
.srv-val { font-family: var(--font-h); font-size: 12px; font-weight: 900; color: #22C55E; }
.srv-val.dark { color: var(--ink); }
.online-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 1.5px; margin-bottom: 16px; color: var(--ink);
}
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; border: 1.5px solid var(--ink); animation: blink 1s step-end infinite; }

/* ── PRICING ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); border: var(--border); box-shadow: var(--sh-lg); }
.plan { padding: 44px 32px; border-right: var(--border); position: relative; }
.plan:last-child { border-right: none; }
.plan-featured { background: var(--y); color: var(--white); }
.plan-ribbon {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-h); font-size: 7px; font-weight: 900;
  letter-spacing: 1.5px; background: var(--white); color: var(--y);
  padding: 6px 14px;
}
.plan-featured .plan-ribbon { background: var(--ink); color: var(--white); }
.plan-period {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; color: #888; margin-bottom: 24px;
}
.plan-featured .plan-period { color: rgba(255,255,255,.6); }
.plan-price { font-family: var(--font-h); font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.plan-currency { font-size: 18px; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-alt { font-size: 11px; color: #999; margin-bottom: 28px; }
.plan-featured .plan-alt { color: rgba(255,255,255,.5); }
.plan-items { list-style: none; margin-bottom: 28px; }
.plan-items li {
  font-size: 13px; padding: 9px 0;
  border-bottom: 1.5px solid rgba(0,0,0,.07); color: var(--mid);
  display: flex; gap: 9px; align-items: center;
}
.plan-featured .plan-items li { color: rgba(255,255,255,.9); border-bottom-color: rgba(255,255,255,.15); }
.plan-items li:last-child { border-bottom: none; }
.plan-items li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border: var(--border);
  flex-shrink: 0; background: var(--ink); color: #fff;
  font-family: var(--font-h); font-size: 9px; font-weight: 900;
  border-radius: 2px;
}
.plan-featured .plan-items li::before { background: var(--white); color: var(--y); border-color: rgba(255,255,255,.4); }
.plan-btn {
  width: 100%; justify-content: center; display: flex;
  font-family: var(--font-h); font-size: 10px; font-weight: 900;
  letter-spacing: .5px; border: var(--border); padding: 12px 16px;
  cursor: pointer; box-shadow: var(--sh); transition: transform .12s, box-shadow .12s;
  text-decoration: none; background: var(--ink); color: var(--white);
}
.plan-featured .plan-btn { background: var(--white); color: var(--y); }
.plan-btn:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-lg); }
.plan-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.pricing-note {
  text-align: center; margin-top: 28px;
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  letter-spacing: 1.5px; color: #aaa;
}

/* ── TG CHECK SECTION ─────────────────────────────────── */
.tg-fix-section {
  background: var(--ink); padding: 0 56px;
}
.tg-fix-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 460px;
  min-height: 520px;
}
.tg-left {
  padding: 80px 64px 80px 0;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; justify-content: center;
}
.tg-num { font-family: var(--font-h); font-size: 9px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.2); margin-bottom: 12px; }
.tg-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 52px); font-weight: 900;
  line-height: .9; letter-spacing: -2px;
  color: var(--white); margin-bottom: 24px;
}
.tg-title em { font-style: normal; color: var(--y); }
.tg-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.4); margin-bottom: 32px; }
.tg-checks { display: flex; flex-direction: column; gap: 10px; }
.tg-check { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(255,255,255,.4); }
.tg-ck {
  width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #7EB3FF;
}
.tg-right { padding: 80px 0 80px 64px; display: flex; align-items: center; }
.tg-widget {
  width: 100%; background: var(--white);
  border: var(--border); box-shadow: var(--sh-lg);
}
.tg-whead {
  background: var(--y); border-bottom: var(--border);
  padding: 12px 20px;
  font-family: var(--font-h); font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--white);
}
.tg-wbody { padding: 24px; }
.tg-wdesc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.tg-hint { font-size: 10px; color: #aaa; text-align: center; margin-top: 10px; }
.tg-spinner {
  width: 40px; height: 40px; border: 2px solid #f0f0f0;
  border-top-color: var(--ink); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 20px auto;
}
@keyframes spin { to{transform:rotate(360deg)} }
.tg-result-icon { font-size: 28px; text-align: center; margin-bottom: 10px; }
.tg-result-title { font-family: var(--font-h); font-size: 12px; font-weight: 900; text-align: center; margin-bottom: 16px; }

/* ── HOW TO / STEPS ───────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: var(--border); box-shadow: var(--sh-lg); }
.step { padding: 40px 32px; border-right: var(--border); display: flex; flex-direction: column; gap: 0; }
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-h); font-size: 56px; font-weight: 900;
  color: rgba(0,0,0,.06); line-height: 1; letter-spacing: -3px;
  margin-bottom: 20px;
}
.step-title { font-family: var(--font-h); font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 12px; letter-spacing: -.3px; }
.step-body { font-size: 13px; line-height: 1.7; color: #888; flex: 1; }

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  padding: 120px 56px; text-align: center;
  background: var(--y); border-top: var(--border); border-bottom: var(--border);
}
.cta-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 7vw, 88px); font-weight: 900;
  line-height: .9; letter-spacing: -3px;
  color: var(--white); margin-bottom: 24px;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 40px; font-weight: 300; }

/* ── CONTACTS ─────────────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; border: var(--border); box-shadow: var(--sh-lg); }
.contact-card { padding: 44px; border-right: var(--border); }
.contact-card:last-child { border-right: none; }
.contact-label { font-family: var(--font-h); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: #aaa; margin-bottom: 8px; }
.contact-val { font-family: var(--font-h); font-size: 16px; font-weight: 900; color: var(--ink); text-decoration: none; display: block; margin-bottom: 6px; }
.contact-val:hover { color: var(--y); }
.contact-hint { font-size: 12px; color: #aaa; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--ink); }
.footer-main {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 64px; padding: 56px 56px 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { flex: 0 0 260px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-h); font-size: 13px; font-weight: 900; color: var(--y); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; transition: border-color .15s, color .15s;
}
.footer-social:hover { border-color: var(--y); color: var(--y); }
.footer-nav { flex: 1; display: flex; gap: 48px; justify-content: flex-end; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title {
  font-family: var(--font-h); font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,.2); margin-bottom: 4px;
}
.footer-col a { font-size: 12px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--y); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  padding: 18px 56px;
}
.footer-copy { font-family: var(--font-h); font-size: 8px; letter-spacing: 1.5px; color: rgba(255,255,255,.15); }

/* ── CHANGELOG MINI-NAV ──────────────────────────────── */
.cl-mini-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: var(--border);
  text-decoration: none;
}
.cl-mini-logo { font-family: var(--font-h); font-size: 13px; font-weight: 900; color: var(--ink); }
.cl-mini-back { font-family: var(--font-h); font-size: 8px; font-weight: 700; letter-spacing: 1.5px; color: #aaa; }

/* ── CHANGELOG PAGE ──────────────────────────────────── */
.cl-page {
  padding: calc(env(safe-area-inset-top, 0px) + 140px) 24px 80px;
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .cl-page { padding-top: calc(env(safe-area-inset-top, 0px) + 70px); }
  .cl-header { margin-top: 50px; }
  #view-article { padding-top: 80px !important; }
}

#view-list    { display: block; padding-top: 24px; }
#view-article { display: none; padding-top: 80px; }

.cl-header { margin-bottom: 56px; }
.cl-header h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.0;
  color: var(--ink); letter-spacing: -.025em;
  margin-bottom: 14px;
}
.cl-header p { color: rgba(0,0,0,.5); font-size: .95rem; max-width: 500px; }

.cl-list { display: flex; flex-direction: column; }
.cl-item {
  display: flex; gap: 48px;
  padding: 40px 0; border-bottom: 2px solid #eee;
  text-decoration: none; transition: opacity .15s;
}
.cl-item:last-child { border-bottom: none; }
.cl-item:hover { opacity: .65; }
.cl-meta { width: 180px; flex-shrink: 0; }
.cl-version-line, .art-version-line { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.cl-version { font-family: var(--font-h); font-size: 1.05rem; font-weight: 900; color: var(--y); margin-bottom: 6px; }
.cl-version-line .cl-version, .art-version-line .art-version { margin-bottom: 0; }
.cl-latest {
  display: inline-flex; align-items: center; min-height: 22px;
  padding: 3px 9px; border: 1px solid #2B63D9; border-radius: 100px;
  background: rgba(43,99,217,.08); color: #2B63D9;
  font-family: var(--font-h); font-size: .55rem; font-weight: 900;
  letter-spacing: .08em; line-height: 1; text-transform: uppercase;
}
.cl-date { font-size: .78rem; color: rgba(0,0,0,.4); margin-bottom: 14px; }
.cl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cl-tag {
  display: inline-block;
  background: #f0f0f0; border: 1px solid #ddd;
  color: rgba(0,0,0,.5); border-radius: 100px;
  padding: 3px 10px; font-size: .62rem; font-weight: 600;
  letter-spacing: .08em;
}
.cl-body { flex: 1; }
.cl-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 900; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.cl-preview { font-size: .88rem; color: rgba(0,0,0,.55); line-height: 1.7; margin: 0; }
.cl-arrow { color: var(--y); margin-top: 12px; font-family: var(--font-h); font-weight: 700; font-size: .68rem; letter-spacing: .08em; }
.cl-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  color: rgba(0,0,0,.4); margin-bottom: 48px; transition: color .2s;
  text-decoration: none;
}
.cl-back:hover { color: var(--ink); }
.art-version { font-family: var(--font-h); font-size: .8rem; font-weight: 900; color: var(--y); letter-spacing: .1em; margin-bottom: 8px; }
.art-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: var(--ink); margin-bottom: 16px;
}
.art-meta {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 32px; margin-bottom: 8px;
  border-bottom: 3px solid var(--ink); flex-wrap: wrap;
}
.art-date { font-size: .8rem; color: rgba(0,0,0,.4); }
.art-img { width: 100%; border-radius: 16px; margin-bottom: 32px; display: block; }
.art-sections { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.art-section { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1.5px solid #f0f0f0; }
.art-section:last-child { border-bottom: none; }
.art-section-num {
  font-family: var(--font-h); font-size: .72rem; font-weight: 900;
  color: var(--white); background: var(--ink);
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; letter-spacing: .04em;
}
.art-section-content { flex: 1; }
.art-section-title { font-family: var(--font-h); font-size: .82rem; font-weight: 900; color: var(--ink); margin-bottom: 10px; line-height: 1.3; letter-spacing: -.01em; }
.art-section-body { font-size: .9rem; color: rgba(0,0,0,.58); line-height: 1.8; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  /* Mobile nav — liquid glass */
  .nav {
    left: auto;
    right: 16px;
    top: calc(env(safe-area-inset-top) + 14px);
    transform: translateY(calc(-100% - 32px));
    padding: 0 10px 0 20px; height: 54px; gap: 10px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    justify-content: space-between;
    transition: max-width .5s cubic-bezier(.4,0,.2,1), opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  }
  .nav.nav-visible { transform: translateY(0); }
  .nav.nav-collapsed { max-width: 130px; gap: 0; }
  .nav-links-wrap { display: none; }
  .nav-logo-img { display: none; }
  .nav-logo-text { display: block; font-size: 13px; color: var(--ink); }
  .nav-pill-cta { padding: 9px 18px; font-size: 9px; flex-shrink: 0; overflow: hidden; }
  .nav.nav-collapsed .nav-pill-cta { max-width: 0; padding: 0; margin: 0; opacity: 0; pointer-events: none; transition: none; }

  /* Mobile marquee — smaller pill margins */
  .marquee { margin: 0 14px 14px; }

  .hero { grid-template-columns: 1fr; padding: 0; align-items: stretch; }
  .hero-right { display: none; }
  .hero-left { padding: 40px 20px 36px; height: auto; }
  .hero-h1 { font-size: clamp(36px, 11vw, 56px); }

  .sec { padding: 64px 20px; }
  .features-layout { grid-template-columns: 1fr; }
  .feat-hero { grid-template-columns: 1fr; }
  .feat-hero-visual { display: none; }
  .feat-item { border-right: none; }
  .feat-item:nth-last-child(-n+2) { border-bottom: var(--border); }
  .feat-item:last-child { border-bottom: none; }

  .servers-grid { grid-template-columns: 1fr; }
  .server-card { border-right: none; border-bottom: var(--border); }
  .server-card:last-child { border-bottom: none; }

  .pricing-carousel-wrap { overflow: hidden; border: var(--border); box-shadow: var(--sh-lg); }
  .pricing-grid {
    display: flex; gap: 0; will-change: transform;
    cursor: grab; user-select: none; -webkit-user-select: none;
    border: none !important; box-shadow: none !important;
  }
  .pricing-grid.dragging { cursor: grabbing; }
  .plan {
    flex: 0 0 100%; min-width: 0;
    border-right: none !important; border-bottom: none !important;
  }
  .plan:nth-last-child(2) { border-bottom: none !important; }

  .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ddd; border: 1.5px solid var(--ink);
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .carousel-dot.active { background: var(--ink); transform: scale(1.25); }

  .tg-fix-section { padding: 0 20px; }
  .tg-fix-inner { grid-template-columns: 1fr; min-height: auto; }
  .tg-left { padding: 56px 0 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .tg-right { padding: 40px 0 56px; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: var(--border); }
  .step:nth-child(odd) { border-right: var(--border); }
  .step:last-child { border-right: none; border-bottom: none; }
  .step:nth-last-child(2) { border-bottom: none; }

  .contacts-grid { grid-template-columns: 1fr; }
  .contact-card { border-right: none; border-bottom: var(--border); }
  .contact-card:last-child { border-bottom: none; }

  .footer-main { flex-direction: column; align-items: center; gap: 36px; padding: 36px 20px 24px; }
  .footer-brand { flex: none; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-nav { justify-content: center; gap: 32px; flex-wrap: wrap; }
  .footer-col { align-items: center; }
  .footer-bottom { padding: 14px 20px; flex-direction: column; gap: 6px; align-items: center; text-align: center; }

  .cta { padding: 80px 20px; }

  .cl-page { padding: 0 20px 60px; }
  #view-list { padding-top: 16px; }
  .cl-item { flex-direction: column; gap: 16px; }
  .cl-meta { width: 100%; }
  .art-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; }
  .step:nth-child(odd) { border-right: none; }
  .step:nth-last-child(2) { border-bottom: var(--border); }
}

/* ── LEGAL PAGES (offer, privacy, refund) ────────────── */
.legal-page {
  max-width: 800px; margin: 0 auto;
  padding: 60px 40px 80px;
}
.legal-hero { margin-bottom: 56px; border-bottom: var(--border); padding-bottom: 40px; }
.legal-tag {
  font-family: var(--font-h); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; color: #aaa; margin-bottom: 16px;
}
.legal-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: .95; letter-spacing: -2px;
  color: var(--ink); margin-bottom: 16px;
}
.legal-title mark { background: var(--y); color: var(--ink); padding: 0 8px; }
.legal-meta { font-size: 12px; color: #aaa; }

.legal-body { display: flex; flex-direction: column; gap: 0; }
.legal-block {
  padding: 32px 0; border-bottom: 1.5px solid #f0f0f0;
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: var(--font-h); font-size: .85rem; font-weight: 900;
  letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 16px;
}
.legal-block h3 {
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  color: #666; letter-spacing: .03em;
  margin: 20px 0 10px;
}
.legal-block p { font-size: .9rem; line-height: 1.8; color: var(--mid); margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-block li {
  font-size: .88rem; line-height: 1.6; color: var(--mid);
  padding-left: 20px; position: relative;
}
.legal-block li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--y); font-weight: 700;
}
.legal-block a { color: var(--y); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

.legal-table {
  border: var(--border); margin: 16px 0;
}
.legal-table-row {
  display: grid; grid-template-columns: 1fr 1fr 2fr;
  border-bottom: 1.5px solid #f0f0f0;
  font-size: .82rem; color: var(--mid);
}
.legal-table-row:last-child { border-bottom: none; }
.legal-table-row span { padding: 12px 16px; border-right: 1.5px solid #f0f0f0; }
.legal-table-row span:last-child { border-right: none; }
.legal-table-head {
  background: var(--faint);
}
.legal-table-head span {
  font-family: var(--font-h); font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; color: var(--ink);
}

.legal-highlight {
  border: var(--border); padding: 24px 28px;
  background: var(--y-light); margin-bottom: 0;
  overflow: hidden;
}
.legal-highlight ul { display: flex; flex-direction: column; gap: 8px; }
.legal-highlight li { font-size: .9rem; line-height: 1.6; color: var(--mid); }
.legal-block ol {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  counter-reset: legal-ol;
}
.legal-block ol li { padding-left: 28px; position: relative; font-size: .88rem; line-height: 1.6; color: var(--mid); }
.legal-block ol li::before {
  content: counter(legal-ol) '.'; counter-increment: legal-ol;
  position: absolute; left: 0;
  color: var(--y); font-weight: 700; font-family: var(--font-h); font-size: .8rem;
}

.legal-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; border-top: var(--border);
  max-width: 800px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
}
.legal-footer-copy {
  font-family: var(--font-h); font-size: 9px; letter-spacing: 1.5px;
  color: var(--mid);
}
.legal-footer-links { display: flex; gap: 16px; align-items: center; font-size: 12px; }
.legal-footer-links a { color: #888; text-decoration: none; }
.legal-footer-links a:hover { color: var(--ink); }
.legal-footer-links span { color: #ccc; }

@media (max-width: 600px) {
  .legal-page { padding: calc(env(safe-area-inset-top, 0px) + 104px) 20px 60px; }
  .legal-footer { padding: 16px 20px; flex-direction: column; align-items: center; text-align: center; }
  .legal-table-row { grid-template-columns: 1fr 1fr; }
  .legal-table-row span:nth-child(3) { grid-column: 1 / -1; border-right: none; border-top: 1.5px solid #f0f0f0; }
  .legal-hero { margin-bottom: 40px; padding-bottom: 32px; }
  .legal-title {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1;
    letter-spacing: -.6px;
    overflow-wrap: anywhere;
  }
  .legal-title mark {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}

/* ══════════════════════════════════════════════════════════
   CHANGELOG ARTICLE REDESIGN — больше воздуха, акцент-синий
   ══════════════════════════════════════════════════════════ */
.cl-page #view-article { animation: fadeIn .35s ease both; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

#view-article .art-version-line {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  left: 14px;
  z-index: 200;
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
}
#view-article .art-version {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  background: var(--y);
  color: #fff;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #view-article .art-version { height: 44px; font-size: 10px; }
}
#view-article .art-title {
  font-family: var(--font-h); font-size: clamp(28px, 6vw, 42px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1px;
  color: var(--ink); margin-bottom: 14px; max-width: 680px;
}
#view-article .art-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1.5px solid rgba(0,0,0,.06);
}
#view-article .art-date {
  font-size: .82rem; color: rgba(0,0,0,.55);
}
#view-article .cl-tag {
  background: var(--faint);
  border: 1px solid rgba(0,0,0,.1);
  color: rgba(0,0,0,.6);
  padding: 3px 10px; border-radius: 999px;
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  letter-spacing: .05em;
}
#view-article .art-img {
  width: 100%; border-radius: 18px;
  margin-bottom: 32px; display: block;
  border: 1.5px solid rgba(0,0,0,.08);
}
#view-article .art-sections {
  display: flex; flex-direction: column;
  gap: 14px; max-width: 100%;
}
#view-article .art-section {
  display: flex; gap: 18px;
  padding: 22px;
  border: none;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
#view-article .art-section-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--y); color: #fff;
  border-radius: 10px;
  font-family: var(--font-h); font-size: .78rem; font-weight: 900;
  letter-spacing: -.02em;
}
#view-article .art-section-title {
  font-family: var(--font-h); font-size: 1rem;
  font-weight: 900; color: var(--ink); margin-bottom: 8px;
  line-height: 1.3; letter-spacing: -.02em;
}
#view-article .art-section-body {
  font-size: .92rem; color: rgba(0,0,0,.7);
  line-height: 1.7;
}

/* «Назад к списку» внутри article — кнопка-pill */
#view-article .cl-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--faint);
  border: 1.5px solid rgba(0,0,0,.1);
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
#view-article .cl-back:hover { background: var(--y-light, #E8F0FD); }

/* List items — оживлённые карточки */
.cl-list { gap: 12px; }
.cl-item {
  border: 1.5px solid rgba(0,0,0,.06) !important;
  border-bottom: 1.5px solid rgba(0,0,0,.06) !important;
  border-radius: 16px;
  padding: 22px 24px;
  background: #fff;
  display: flex; gap: 24px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.cl-item:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-color: var(--y) !important;
}

@media (max-width: 600px) {
  .cl-item { flex-direction: column; gap: 14px; padding: 18px 20px; }
  .cl-meta { width: 100%; }
  #view-article .art-section { padding: 18px 16px; gap: 14px; }
  #view-article .art-section-num { width: 30px; height: 30px; font-size: .7rem; }
}

/* System dark theme for standalone legal and changelog pages. */
@media (prefers-color-scheme: dark) {
  :root {
    --y: #6EB8FF;
    --y-light: rgba(110,184,255,.12);
    --ink: #EDEDF0;
    --mid: #9E9EA8;
    --faint: #262629;
    --white: #131316;
    --border: 1px solid #35353C;
    --sh: 4px 4px 0 rgba(0,0,0,.5);
    --sh-lg: 7px 7px 0 rgba(0,0,0,.55);
    color-scheme: dark;
  }

  html, body { background: #131316; color: #EDEDF0; }
  html body .cp-pill-nav {
    background: rgba(38,38,41,.82) !important;
    border-color: #44444D !important;
    box-shadow: 0 6px 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06) !important;
    color: #EDEDF0 !important;
  }
  html body .cp-pill-nav .cp-pill-path { color: #6EB8FF !important; }

  .legal-title mark { color: #0D0D12; }
  .legal-block { border-bottom-color: #35353C; }
  .legal-block h3, .legal-meta, .legal-tag { color: #9E9EA8; }
  .legal-table-row, .legal-table-row span { border-color: #35353C; }
  .legal-highlight { background: rgba(110,184,255,.1); }
  .legal-footer { border-top-color: #35353C; }
  .legal-footer-links a, .legal-footer-copy { color: #9E9EA8; }
  .legal-footer-links span { color: #505059; }

  .cl-header p, .cl-date, .cl-preview, .cl-back, .art-date,
  .art-section-body, #view-article .art-date,
  #view-article .art-section-body { color: #9E9EA8; }
  .cl-tag, #view-article .cl-tag {
    background: #262629;
    border-color: #44444D;
    color: #9E9EA8;
  }
  .cl-latest, #view-article .cl-latest {
    background: rgba(110,184,255,.12);
    border-color: #6EB8FF;
    color: #6EB8FF;
  }
  .cl-item, #view-article .art-section {
    background: #1E1E22;
    border-color: #35353C !important;
    box-shadow: none;
  }
  .cl-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.28); }
  #view-article .art-meta { border-bottom-color: #35353C; }
  #view-article .cl-back { background: #262629; border-color: #44444D; }
  .footer { background: #1E1E22; border-top: 1px solid #35353C; }
}
