/* ============================================================
   PC TECH — layout.css
   Nav · Hero (the CRT) · Trust · Services · Shop · FAQ · Contact · Footer
   ============================================================ */

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue-500), var(--red-600));
  z-index: 300;
  transition: width 0.1s linear;
}

/* ============================================================
   NAV — transparent over the hero, solid white once scrolled
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(11, 15, 26, 0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* --- brand lockup --- */
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; flex: none; }
.brand__mark { width: 40px; height: 40px; border-radius: 11px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.brand__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.24rem;
  letter-spacing: -0.035em;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.brand__name em { font-style: normal; color: var(--red-500); }
.brand__sub {
  font-size: 0.645rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav.is-stuck .brand__name { color: var(--ink); }
.nav.is-stuck .brand__name em { color: var(--red-600); }
.nav.is-stuck .brand__sub { color: var(--ink-mute); }

/* --- links --- */
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 9px 12px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--on-dark-soft);
  transition: color 0.2s, background-color 0.2s;
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.nav.is-stuck .nav__links a { color: var(--ink-soft); }
.nav.is-stuck .nav__links a:hover { color: var(--blue-700); background: var(--blue-50); }

/* --- right-hand actions --- */
.nav__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-pill);
  padding: 3px;
  transition: border-color 0.3s var(--ease);
}
.nav.is-stuck .lang { border-color: var(--line-2); }
.lang__btn {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  color: var(--on-dark-mute);
  border: none;
  background: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav.is-stuck .lang__btn { color: var(--ink-mute); }
.lang__btn.is-active { background: var(--red-600); color: #fff; }
.nav.is-stuck .lang__btn.is-active { background: var(--red-600); color: #fff; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--on-dark-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav.is-stuck .nav__burger { border-color: var(--line-2); }
.nav__burger span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.is-stuck .nav__burger span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    padding: 14px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a, .nav.is-stuck .nav__links a {
    color: var(--ink);
    padding: 13px 14px;
    border-radius: var(--r-sm);
    font-size: 1rem;
  }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  /* flat colour underneath the gradient: if the gradient ever fails to
     paint, the hero stays dark and its white text stays readable */
  background-color: #0A1B3D;
  background-image: linear-gradient(163deg, #0B1E44 0%, #0C2149 42%, #07132F 100%);
  color: var(--on-dark);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(38px, 6vw, 74px));
  padding-bottom: clamp(70px, 9vw, 120px);
}

/* --- background layers --- */
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
/* bench light behind the monitor */
.hero__glow--blue {
  width: 46vw; height: 46vw;
  min-width: 380px; min-height: 380px;
  right: -6vw; top: 4%;
  background: radial-gradient(circle, rgba(59,130,246,0.42), transparent 68%);
}
/* a whisper of red so the accent belongs in the field */
.hero__glow--red {
  width: 34vw; height: 34vw;
  min-width: 280px; min-height: 280px;
  left: -8vw; bottom: -12%;
  background: radial-gradient(circle, rgba(216,30,44,0.30), transparent 68%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,176,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,176,255,0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 85% 62% at 50% 38%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 62% at 50% 38%, #000 35%, transparent 78%);
}

/* circuit traces */
.hero__circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero__circuit .trace { fill: none; stroke: rgba(127,176,255,0.30); stroke-width: 1.2; }
.hero__circuit .pad { fill: rgba(127,176,255,0.38); }
.hero__circuit .pulse {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 26 660;
  filter: drop-shadow(0 0 5px currentColor);
  animation: trace-run 7s linear infinite;
}
.hero__circuit .pulse--b { stroke: #7FB0FF; color: #7FB0FF; }
.hero__circuit .pulse--r { stroke: #FF5A66; color: #FF5A66; animation-duration: 9s; animation-delay: -3s; }
@keyframes trace-run { from { stroke-dashoffset: 686; } to { stroke-dashoffset: 0; } }

/* --- hero content --- */
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.hero__title { color: #fff; margin-bottom: 22px; }
.hero__title .line { display: block; }
/* red underline swoosh under the accent line */
.hero__title .hl {
  position: relative;
  color: #fff;
  background: linear-gradient(100deg, var(--red-500), #FF7A85);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead { color: var(--on-dark-soft); margin-bottom: 32px; max-width: 52ch; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 24px;
  border-top: 1px solid var(--on-dark-line);
}
.hero__meta li { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; color: var(--on-dark-soft); }
.hero__meta .i { color: var(--blue-300); }
.hero__meta a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   THE CRT — hero centrepiece, rebuilt from his logo
   ============================================================ */
.crt-stage { perspective: 1300px; display: flex; justify-content: center; }

.crt {
  width: min(100%, 470px);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

/* --- the case --- */
.crt__case {
  position: relative;
  background: linear-gradient(168deg, #FBFCFE 0%, #DDE7F5 55%, #BCCBE2 100%);
  border-radius: 26px 26px 16px 16px;
  padding: 20px 20px 0;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.9),
    inset 0 -3px 10px rgba(10,27,61,0.16),
    0 40px 70px -30px rgba(0,0,0,0.75),
    0 0 0 1px rgba(10,27,61,0.14);
}

/* --- glass --- */
.crt__bezel {
  position: relative;
  background: #05101F;
  border-radius: 18px;
  padding: 13px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.07),
    inset 0 5px 16px rgba(0,0,0,0.85);
}

.crt__screen {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 130% 105% at 50% 45%, #0C2C52 0%, #061529 58%, #030B18 100%);
  box-shadow: inset 0 0 46px rgba(0,0,0,0.85), inset 0 0 90px rgba(11,45,90,0.5);
}

/* live terminal text */
.crt__text {
  position: absolute;
  inset: 0;
  padding: clamp(14px, 3.4%, 24px);
  font-family: var(--mono);
  font-size: clamp(0.66rem, 1.95vw, 0.95rem);
  line-height: 1.66;
  color: #A6D2FF;
  text-shadow: 0 0 7px rgba(120,180,255,0.75), 0 0 22px rgba(60,130,255,0.35);
  white-space: pre-wrap;
  overflow: hidden;
}
.crt__text .ok { color: #6EE7A8; text-shadow: 0 0 8px rgba(110,231,168,0.7); }
.crt__text .hot { color: #FF6B76; text-shadow: 0 0 8px rgba(255,107,118,0.7); }
.crt__text .dim { color: #5C86C4; text-shadow: none; }
.crt__text .em { color: #FFFFFF; text-shadow: 0 0 10px rgba(200,225,255,0.9); }

.crt__cursor {
  display: inline-block;
  width: 0.62em;
  height: 1.02em;
  vertical-align: text-bottom;
  background: #A6D2FF;
  box-shadow: 0 0 9px rgba(120,180,255,0.9);
  animation: crt-blink 1.05s steps(1) infinite;
}
@keyframes crt-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* scanlines + curvature + glare, stacked over the text */
.crt__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.24) 0px, rgba(0,0,0,0.24) 1px,
    transparent 1px, transparent 3px
  );
  mix-blend-mode: multiply;
}
.crt__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 118% 112% at 50% 50%, transparent 52%, rgba(0,0,0,0.62) 100%);
}
.crt__glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(128deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 26%, transparent 47%);
}
/* the slow phosphor sweep */
.crt__sweep {
  position: absolute;
  left: 0; right: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(150,200,255,0.055), transparent);
  animation: crt-sweep 7.5s linear infinite;
}
@keyframes crt-sweep { from { top: -34%; } to { top: 100%; } }

/* --- brand plate below the glass --- */
.crt__plate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 6px 15px;
}
.crt__wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: #43536D;
}
.crt__wordmark em { font-style: normal; color: var(--red-600); }
.crt__led {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 9px 1px rgba(230,57,70,0.9);
  animation: led-pulse 2.6s var(--ease) infinite;
}
@keyframes led-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* --- stand --- */
.crt__neck {
  width: 92px; height: 20px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #C6D4E8, #A9BAD3);
  box-shadow: inset 0 -2px 6px rgba(10,27,61,0.2);
}
.crt__base {
  width: 208px; height: 13px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(to bottom, #D6E1F1, #97A9C4);
  box-shadow: 0 22px 34px -16px rgba(0,0,0,0.8);
}

/* --- the leaning keyboard, straight from his logo --- */
.crt__keyboard {
  position: relative;
  width: 73%;
  margin: -15px auto 0;
  padding: 11px 14px;
  border-radius: 8px;
  background: linear-gradient(168deg, #F2F6FC, #B9C8DF);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 22px 36px -18px rgba(0,0,0,0.85),
    0 0 0 1px rgba(10,27,61,0.16);
  transform: rotate(-3.4deg);
  display: grid;
  gap: 5px;
}
.crt__keyboard span {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #9EB0CB, #7E93B3);
}
.crt__keyboard span:nth-child(2) { width: 88%; }
.crt__keyboard span:nth-child(3) { width: 62%; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: clamp(34px, 4.6vw, 54px);
}
.trust__item { text-align: center; }
.trust__num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  letter-spacing: -0.045em;
  color: var(--blue-700);
  line-height: 1;
}
.trust__label {
  display: block;
  margin-top: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mute);
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}
.svc {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--red-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { transform: scaleX(1); }

.svc__ico {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 18px;
  transition: background-color 0.3s, color 0.3s;
}
.svc__ico .i { width: 25px; height: 25px; }
.svc:hover .svc__ico { background: var(--blue-600); color: #fff; }
.svc h3 { margin-bottom: 9px; }
.svc p { font-size: 0.945rem; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   THE SHOP
   ============================================================ */
.shop__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}
.shop__photos {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  aspect-ratio: 1 / 0.94;
}
.shop__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow);
  position: relative;
}
.shop__photo:first-child { grid-row: span 2; }
.shop__photo img { width: 100%; height: 100%; object-fit: cover; }
/* graceful state before the real photos are dropped in */
.shop__photo--empty {
  display: grid;
  place-items: center;
  border: 2px dashed var(--line-2);
  box-shadow: none;
  color: var(--ink-mute);
  font-size: 0.8rem;
  text-align: center;
  padding: 14px;
}

.shop__points { display: grid; gap: 16px; margin-top: 28px; }
.shop__point { display: flex; gap: 14px; align-items: flex-start; }
.shop__point .i { color: var(--red-600); margin-top: 4px; width: 1.25em; height: 1.25em; }
.shop__point strong { display: block; font-family: var(--display); font-weight: 700; margin-bottom: 2px; }
.shop__point span { font-size: 0.94rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.045rem;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: 0;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--blue-600); }
.faq__sign { flex: none; width: 26px; height: 26px; position: relative; }
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red-600);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__sign::after { transform: translateY(-50%) rotate(90deg); }
.faq__item.is-open .faq__sign::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 0.97rem; max-width: 68ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 3.6vw, 44px);
  align-items: start;
}

.info { display: grid; gap: 14px; }
.info__row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 19px 21px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.info__ico {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-50);
  color: var(--blue-600);
}
.info__ico .i { width: 20px; height: 20px; }
.info__row strong {
  display: block;
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 3px;
}
.info__row a, .info__row span { font-size: 1.02rem; font-weight: 500; }
.info__row a:hover { color: var(--red-600); }

/* hours table */
.hours { margin-top: 4px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 4px;
  font-size: 0.94rem;
  border-bottom: 1px dashed var(--line);
}
.hours__row:last-child { border-bottom: none; }
.hours__row.is-today {
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 8px;
  padding-inline: 10px;
  border-bottom-color: transparent;
}
.hours__row.is-closed span:last-child { color: var(--ink-mute); }

.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
  background: var(--paper-3);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-950);
  color: var(--on-dark-soft);
  padding-block: clamp(44px, 5vw, 66px) 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--on-dark-line);
}
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--on-dark-mute); }
.footer__blurb { margin-top: 16px; font-size: 0.93rem; max-width: 40ch; }
.footer h4 {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.footer__list { display: grid; gap: 9px; font-size: 0.93rem; }
.footer__list a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 0.83rem;
  color: var(--on-dark-mute);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta, .hero__meta { justify-content: center; }
  .crt { width: min(100%, 400px); }
  .shop__grid, .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .shop__photos { aspect-ratio: 1 / 0.8; }
}

@media (max-width: 420px) {
  .brand__sub { display: none; }
  .crt__keyboard { width: 92%; }
}
