/* ============================================================
   WOENSDAG V3 — Depth-based tunnel navigation
   Dark Portal Studio — Glassmorphism + Star Field + 3D Cards
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #060608;
  --white:    #f0ede8;
  --accent:   #c8ff00;
  --accent2:  #00f5ff;
  --muted:    rgba(240,237,232,0.45);
  --border:   rgba(240,237,232,0.08);
  --glass:    rgba(6,6,8,0.55);
  --glass2:   rgba(240,237,232,0.04);
  --glow:     rgba(200,255,0,0.18);
  --glow-sm:  rgba(200,255,0,0.08);
  --font:     'Rajdhani', sans-serif;
  --serif:    'Bebas Neue', sans-serif;
  --italic:   'Italiana', serif;
  --mono:     'IBM Plex Mono', monospace;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  cursor: none;
}

/* SCAN LINE TEXTURE — subtly overlays everything */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 5;
}

body.depth-active { touch-action: none; }

@media (pointer: coarse) {
  html, body { cursor: auto; }
  #cursor, #cursor-trail { display: none; }
}

/* ============================================================
   FALLBACK — Telegram WebView и т.д.
============================================================ */
body.no-webgl {
  overflow-y: auto;
  overflow-x: hidden;
  touch-action: auto;
  overscroll-behavior: auto;
  cursor: auto;
}
body.no-webgl #cursor,
body.no-webgl #cursor-trail,
body.no-webgl #tunnel-canvas,
body.no-webgl #depth-nav,
body.no-webgl #depth-indicator,
body.no-webgl #progress-bar { display: none; }

body.no-webgl #nav {
  background: rgba(6,6,8,.95);
  border-bottom: 1px solid var(--border);
}

body.no-webgl .scene {
  position: relative;
  opacity: 1 !important;
  pointer-events: auto !important;
  display: block;
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
body.no-webgl .scene:first-of-type { padding-top: 8rem; }
body.no-webgl #preloader { display: none; }

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

/* ============================================================
   PRELOADER — v3: scanline reveal
============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: #020203;
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s;
}
#preloader::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(200,255,0,0.015) 3px, rgba(200,255,0,0.015) 4px
  );
  animation: scanReveal 2.2s ease-out forwards;
}
@keyframes scanReveal {
  from { opacity: 0; } to { opacity: 1; }
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.pre-logo {
  font-family: var(--serif); font-size: 4rem; font-weight: 400;
  letter-spacing: .2em;
  text-shadow: 0 0 60px rgba(200,255,0,0.2);
  animation: logoPulse 2.2s ease-in-out;
}
@keyframes logoPulse {
  0%   { opacity: 0; transform: scale(.96); }
  40%  { opacity: 1; transform: scale(1.02); text-shadow: 0 0 80px rgba(200,255,0,.4); }
  100% { opacity: 1; transform: scale(1); text-shadow: 0 0 60px rgba(200,255,0,.2); }
}

.pre-bar-wrap {
  width: 260px; height: 1px;
  background: rgba(255,255,255,.07); position: relative;
}
.pre-bar {
  position: absolute; top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  width: 0%;
  transition: width .04s linear;
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(200,255,0,.3);
}
.pre-pct {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .18em; color: var(--accent);
}
.pre-label {
  font-size: .65rem; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.25);
}

/* ============================================================
   CURSOR — v3: magnetic glow
============================================================ */
#cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .3s;
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(200,255,0,.5);
}
#cursor-trail {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(200,255,0,.25); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: all .08s ease;
  backdrop-filter: blur(2px);
}

/* ============================================================
   CANVAS
============================================================ */
#tunnel-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; display: block;
}

/* ============================================================
   NAV — v3: glassmorphism bar
============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  z-index: 100;
  background: rgba(6,6,8,0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(240,237,232,0.06);
  transition: background .4s;
}

.nav-logo {
  font-family: var(--serif); font-size: 1.35rem;
  font-weight: 400; letter-spacing: .08em;
  background: linear-gradient(135deg, var(--white) 0%, rgba(240,237,232,.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-depth-label {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}

.nav-right-controls {
  display: flex; align-items: center; gap: 1.2rem;
}

#sound-btn {
  background: none; border: none; cursor: none;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.35; transition: opacity .3s, transform .3s;
  padding: 0;
}
#sound-btn:hover { opacity: 1; transform: scale(1.1); }
#sound-btn svg { width: 18px; height: 18px; color: var(--white); }
#sound-btn .icon-sound-off { display: none; }
#sound-btn.muted .icon-sound-on  { display: none; }
#sound-btn.muted .icon-sound-off { display: block; }

.nav-burger {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: all .3s;
}

/* ============================================================
   DEPTH NAV — v3: glowing orbs
============================================================ */
#depth-nav {
  position: fixed; right: 2.5rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.4rem;
  z-index: 100;
}

.dn-item {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  cursor: none; transition: all .5s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.dn-item::after {
  content: attr(data-label);
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  opacity: 0; transition: opacity .3s;
}
.dn-item:hover::after { opacity: 1; }
.dn-item.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 20px rgba(200,255,0,.35), 0 0 40px rgba(200,255,0,.12);
  transform: scale(1.4);
}

/* ============================================================
   DEPTH INDICATOR — v3: HUD display
============================================================ */
#depth-indicator {
  position: fixed; left: 2.5rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .6rem;
  z-index: 100;
}

#depth-track {
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.15), transparent);
  position: relative;
}
#depth-thumb {
  position: absolute; left: -3px; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(200,255,0,.5);
  transition: top .15s ease;
}
#depth-label {
  font-family: var(--mono); font-size: .52rem;
  letter-spacing: .15em; color: rgba(255,255,255,.25);
  writing-mode: vertical-rl;
}

/* ============================================================
   SCENES
============================================================ */
.scene {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  opacity: 0; pointer-events: none;
  transition: opacity .05s linear;
}

.scene-inner {
  max-width: 1100px; width: 100%;
  padding: 0 5rem;
}

.scene-tag {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.scene-tag::before {
  content: '';
  display: inline-block; width: 20px; height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.scene-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400; line-height: .95;
  letter-spacing: .04em;
  margin-bottom: 3.5rem;
}
.scene-title em {
  font-style: normal; font-family: var(--italic);
  color: var(--accent); letter-spacing: .02em;
  text-shadow: 0 0 40px rgba(200,255,0,.3);
}

/* ============================================================
   SCENE 0 — HERO
============================================================ */
.s-hero-inner { padding-bottom: 8vh; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50%     { opacity: .3; box-shadow: none; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 400; line-height: .92;
  letter-spacing: .06em; margin-bottom: 2.5rem;
  position: relative;
}
.ht-line { display: block; }
.ht-line.italic {
  font-family: var(--italic); font-style: italic;
  color: var(--accent); letter-spacing: .02em;
  text-shadow: 0 0 60px rgba(200,255,0,.25);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 60px rgba(200,255,0,.25); }
  50%     { text-shadow: 0 0 80px rgba(200,255,0,.45), 0 0 120px rgba(200,255,0,.1); }
}

.hero-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; max-width: 360px; margin-bottom: 3rem;
}

.hero-hint {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
  animation: hintPulse 3s ease-in-out infinite;
}
.hero-hint svg { width: 14px; height: 14px; opacity: .4; }
@keyframes hintPulse {
  0%,100% { opacity: .5; } 50% { opacity: 1; }
}

/* ============================================================
   SCENE 1 — SERVICES v3: glassmorphism portal cards
============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, rgba(200,255,0,0.06) 0%, rgba(0,245,255,0.04) 100%);
  border: 1px solid rgba(200,255,0,0.1);
  border-radius: 2px;
}
.sc {
  background: rgba(6,6,8,.75);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  display: flex; flex-direction: column; gap: .8rem;
  position: relative; overflow: hidden;
  transition: background .4s, transform .35s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  transform-style: preserve-3d;
}
/* top-edge gradient glow */
.sc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,255,0,0.5), transparent);
  opacity: 0; transition: opacity .4s;
}
/* inner corner accent */
.sc::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 30px; height: 30px;
  background: radial-gradient(circle at top right, rgba(200,255,0,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.sc:hover {
  background: rgba(8,10,8,.6);
  box-shadow: 0 0 0 1px rgba(200,255,0,.12),
              0 8px 40px rgba(200,255,0,.06),
              inset 0 0 30px rgba(200,255,0,.03);
  transform: translateY(-3px);
}
.sc:hover::before,
.sc:hover::after { opacity: 1; }

.sc-n {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; color: var(--accent); display: block;
  opacity: .7;
}
.sc h3 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  letter-spacing: .05em;
  transition: color .3s;
}
.sc:hover h3 { color: rgba(200,255,0,.95); }
.sc p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   SCENE 2 — WORK v3: glow bar on hover
============================================================ */
.work-list { display: flex; flex-direction: column; gap: 0; }

.wl-item {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .35s cubic-bezier(.4,0,.2,1), background .3s;
  cursor: none; position: relative;
}
.wl-item:first-child { border-top: 1px solid var(--border); }
.wl-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px var(--accent);
}
.wl-item:hover {
  padding-left: 1.4rem;
  background: linear-gradient(90deg, rgba(200,255,0,.03) 0%, transparent 40%);
}
.wl-item:hover::before { transform: scaleY(1); }

.wl-num {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; color: var(--muted);
  flex-shrink: 0; width: 2rem;
  transition: color .3s;
}
.wl-item:hover .wl-num { color: var(--accent); }
.wl-body { flex: 1; }
.wl-body h3 {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 400; letter-spacing: .05em; margin-bottom: .25rem;
  transition: letter-spacing .4s;
}
.wl-item:hover .wl-body h3 { letter-spacing: .07em; }
.wl-body p { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.wl-tag {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid var(--border);
  padding: .3rem .8rem; border-radius: 999px;
  color: var(--muted); flex-shrink: 0;
  transition: border-color .3s, color .3s;
}
.wl-item:hover .wl-tag {
  border-color: rgba(200,255,0,.25);
  color: rgba(240,237,232,.7);
}
.wl-tag.in-dev {
  background: var(--accent); color: #000; border-color: var(--accent);
  box-shadow: 0 0 12px rgba(200,255,0,.4);
}

/* ============================================================
   SCENE 3 — PROCESS v3: connected timeline
============================================================ */
.process-list { display: flex; flex-direction: column; position: relative; }
.process-list::before {
  content: '';
  position: absolute; left: 2.5rem; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,255,0,.15), rgba(0,245,255,.1), transparent);
}

.pl-item {
  display: flex; align-items: flex-start; gap: 2.5rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left .3s;
}
.pl-item:first-child { border-top: 1px solid var(--border); }
.pl-item:hover { padding-left: .5rem; }

.pl-n {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; color: var(--accent);
  flex-shrink: 0; width: 2rem; padding-top: .3rem;
  position: relative; z-index: 1;
  text-shadow: 0 0 12px rgba(200,255,0,.4);
}
.pl-item h3 {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 400; letter-spacing: .05em; margin-bottom: .3rem;
}
.pl-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.pl-dur {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .12em; color: rgba(255,255,255,.18);
  flex-shrink: 0; white-space: nowrap; padding-top: .3rem;
  margin-left: auto;
}

/* ============================================================
   SCENE 4 — CONTACT v3: immersive layout
============================================================ */
.s-contact-inner { display: flex; flex-direction: column; gap: 3rem; }

.contact-links { display: flex; flex-direction: column; }
.contact-link {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left .35s cubic-bezier(.4,0,.2,1), background .3s;
  position: relative; overflow: hidden;
}
.contact-link:first-child { border-top: 1px solid var(--border); }
.contact-link::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(200,255,0,.05) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.contact-link:hover { padding-left: 1rem; }
.contact-link:hover::before { opacity: 1; }
.cl-label {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); width: 80px; flex-shrink: 0;
}
.cl-val {
  font-size: 1rem; flex: 1;
  transition: color .3s;
}
.contact-link:hover .cl-val { color: var(--accent); }
.contact-link svg { width: 16px; height: 16px; opacity: .25; transition: all .4s; }
.contact-link:hover svg { opacity: 1; transform: translate(5px,-5px); color: var(--accent); }

.contact-footer {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .15em; color: rgba(255,255,255,.18);
  text-transform: uppercase;
}

/* ============================================================
   PROGRESS BAR — v3: gradient beam
============================================================ */
#progress-bar {
  position: fixed; bottom: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 60%, var(--accent) 100%);
  z-index: 200; width: 0%;
  transition: width .1s ease;
  box-shadow: 0 0 6px var(--accent), 0 0 20px rgba(200,255,0,.4);
}

/* ============================================================
   TABLET  ≤ 1024px
============================================================ */
@media (max-width: 1024px) {
  .scene-inner { padding: 0 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE  ≤ 768px
============================================================ */
@media (max-width: 768px) {
  #nav { padding: 1rem 1.2rem; }
  .nav-logo { font-size: 1.1rem; }
  .nav-depth-label { display: none; }

  #depth-indicator { display: none; }
  #depth-nav { right: .8rem; gap: .9rem; }

  .scene {
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .scene-inner { padding: 0 1.2rem; max-width: 100%; }

  .s-hero-inner { padding-bottom: 2rem; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); letter-spacing: .03em; margin-bottom: 1.5rem; }
  .hero-sub { font-size: .9rem; max-width: 100%; margin-bottom: 2rem; }
  .hero-eyebrow { margin-bottom: 1.5rem; }

  .scene-title { font-size: clamp(2.2rem, 10vw, 3.5rem); margin-bottom: 1.8rem; }
  .scene-tag { margin-bottom: 1rem; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .sc { padding: 1.2rem 1rem; }
  .sc h3 { font-size: 1.3rem; }
  .sc p { font-size: .8rem; }

  .wl-item { gap: 1rem; padding: 1rem 0; }
  .wl-body h3 { font-size: 1.2rem; }
  .wl-body p { font-size: .8rem; }
  .wl-tag { font-size: .52rem; padding: .25rem .6rem; }

  .pl-item { gap: 1rem; padding: 1rem 0; }
  .pl-item h3 { font-size: 1.2rem; }
  .pl-item p { font-size: .8rem; }
  .pl-dur { display: none; }

  .s-contact-inner { gap: 1.5rem; }
  .contact-link { padding: 1rem 0; gap: 1rem; }
  .cl-label { width: 62px; font-size: .55rem; }
  .cl-val { font-size: .85rem; }
  .process-list::before { display: none; }
}

/* ============================================================
   SMALL MOBILE  ≤ 480px
============================================================ */
@media (max-width: 480px) {
  .scene { padding-top: 4.5rem; padding-bottom: 2.5rem; }
  .scene-inner { padding: 0 1rem; }

  .hero-title { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero-eyebrow { font-size: .58rem; gap: .5rem; }
  .hero-sub { font-size: .82rem; }
  .hero-hint { font-size: .55rem; }

  .scene-tag { font-size: .58rem; }
  .scene-title { font-size: clamp(2rem, 12vw, 3rem); margin-bottom: 1.2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .sc { padding: 1rem; gap: .5rem; }
  .sc h3 { font-size: 1.25rem; }
  .sc p { font-size: .78rem; }

  .wl-item { flex-wrap: wrap; gap: .5rem; padding: .9rem 0; }
  .wl-num { width: auto; }
  .wl-body h3 { font-size: 1.1rem; }
  .wl-tag { margin-top: .2rem; }

  .pl-item { gap: .8rem; }
  .pl-item h3 { font-size: 1.1rem; }

  .contact-link { flex-wrap: wrap; gap: .6rem; padding: .9rem 0; }
  .cl-val { font-size: .8rem; word-break: break-all; }
  .cl-label { width: 100%; margin-bottom: -.2rem; }
  .contact-link svg { display: none; }
  .contact-footer { font-size: .52rem; }

  #nav { padding: .9rem 1rem; }
  .nav-logo { font-size: 1rem; }
  #depth-nav { display: none; }

  .pre-logo { font-size: 2.5rem; }
  .pre-bar-wrap { width: 180px; }
}
