@font-face {
  font-family: "Jersey 10";
  src: url("./fonts/Jersey10-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #121314;
  --text: #e6edf7;
  --muted: #94a2b8;
  --accent: #ff4da6;
  --hover: rgba(230, 237, 247, 0.1);
  --grid-logo: url("./bz%20logo.svg");
  font-family: "Jersey 10", sans-serif;


}



* {
  box-sizing: border-box;
}

button,
input,
textarea,
select {
  font: inherit;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Jersey 10", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
}

.bg-boxes {
  --cols: 48;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280vw;
  height: 280vh;
  display: grid;
  grid-template-columns: repeat(var(--cols), 64px);
  grid-auto-rows: 32px;
  transform: translate(-50%, -50%) skewX(-48deg) skewY(14deg) scale(0.68)
    rotate(0deg) translateZ(0);
  transform-origin: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s ease;
  z-index: 1;
}

.bg-cell {
  border-right: 1px solid rgba(148, 162, 184, 0.26);
  border-top: 1px solid rgba(148, 162, 184, 0.26);
  background: transparent;
  transition: background-color 2.4s ease;
  position: relative;
  opacity: 0.72;
}

.bg-cell.hover-hot {
  transition: background-color 0.06s linear;
}

.bg-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(15, 19, 26, 0.08) 0%,
      rgba(15, 19, 26, 0.28) 36%,
      rgba(15, 19, 26, 0.7) 76%
    ),
    linear-gradient(180deg, rgba(15, 19, 26, 0.42) 0%, rgba(15, 19, 26, 0.64) 100%);
  z-index: 2;
}

.bg-logo-layer {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 280vw;
  height: 280vh;
  transform: translate(-50%, -50%) skewX(-48deg) skewY(14deg) scale(0.68)
    rotate(0deg) translateZ(0);
  transform-origin: center;
  pointer-events: none;
  z-index: 4;
}

.bg-logo {
  position: absolute;
  width: 128px;
  height: 64px;
  background-color: #ffffff;
  -webkit-mask-image: var(--grid-logo);
  mask-image: var(--grid-logo);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: translateX(18px) scaleX(1.65) scaleY(0.92);
  transform-origin: left center;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.3;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.bg-logo-glow {
  position: absolute;
  width: 1000px;
  height: 280px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 7%,
    rgba(255, 255, 255, 0.5) 18%,
    rgba(255, 255, 255, 0.09) 58%,
    rgba(255, 255, 255, 0.0025) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(-350px, -100px);
  pointer-events: none;
  opacity: 0;
  filter: blur(52px);
  mix-blend-mode: screen;
  z-index: 2;
  transition: opacity 0.35s ease;
}

body.about-active .bg-logo {
  opacity: 1;
}

body.about-active .bg-logo-glow {
  opacity: 0.9;
}

.bg-social {
  position: absolute;
  transform: translate(190px, -4px);
  z-index: 3;
}

.bg-social-links {
  position: relative;
  display: flex;
  gap: 12px;
  pointer-events: auto;
}

.bg-social-btn {
  width: 128px;
  height: 64px;
  border-radius: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.bg-social-btn:hover,
.bg-social-btn:focus-visible {
  transform: translateY(-1px);
  opacity: 1;
  outline: none;
}

.bg-social-btn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transform: scaleX(1.85) scaleY(0.9);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bg-social-btn.is-active img {
  opacity: 0.92;
}

.bg-social-btn[data-contact-key="email"] img {
  transform: translateY(0px) scaleX(1.85) scaleY(0.9);
}

.bg-social-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1000px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 7%,
    rgba(255, 255, 255, 0.5) 18%,
    rgba(255, 255, 255, 0.09) 58%,
    rgba(255, 255, 255, 0.0025) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(52px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bg-social-btn.is-active::before {
  opacity: 0.9;
}

.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 320px 1fr;
  column-gap: min(18vw, 220px);
  padding: 120px 28px 90px 150px;
  position: relative;
  z-index: 2;
}

.project-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aditional{
  color:rgba(156, 175, 209, 0.35)
}

.pod2{
  margin-top:32px;
}

.pod1 , .pod2{
  font-size: 18px;;
}

.project-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.project-btn {
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
  padding: 2px 4px;
  cursor: pointer;
  width:80%;
}

li:hover,
.project-btn:focus-visible {
  background: var(--hover);
  outline: none;
}

.project-year {
  color: var(--muted);
  font-size: 22px;
}

.center-column {
  max-width: 560px;
  align-self: center;
}

.home-view {
  position: relative;
  padding-bottom: 0;
}

.is-hidden {
  display: none;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.12;
  font-weight: 700;
}

.role {
  margin: 4px 0 0;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.15;
  font-weight: 700;
}

.role span {
  color: var(--accent);
}

.contact-links {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
}

.contact-btn:hover,
.contact-btn:focus-visible {
  color: var(--text);
  text-decoration: underline;
  outline: none;
}

.offer-btn {
  flex-basis: 100%;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline 2px;
  text-underline-offset: 5px;
  text-align: start;
}

.offer-btn:hover,
.offer-btn:focus-visible {
  color: #ffffff;
}

.reveal,
.project-output {
  margin: 10px 0 0;
  font-size: 22px;
  color: #b1bfd3;
}

.project-output {
  margin-top: 6px;
}

.reveal {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  bottom: auto;
  width: 100%;
  min-height: 0;
  line-height: 1.25;
  z-index: 3;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  white-space: pre-line;
}

.reveal-hidden {
  visibility: hidden;
}

.project-view h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.15;
}

.back-btn {
  margin-top: 24px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  padding: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.back-btn:hover,
.back-btn:focus-visible {
  background: var(--hover);
  outline: none;
}

.project-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.project-actions .back-btn {
  margin-top: 0;
}

.offer-view {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  overflow-y: auto;
  padding: 56px 24px;
  background: transparent;
}

.offer-shell {
  max-width: 980px;
  margin: 0 auto;
}

.offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-header h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 62px);
}

.offer-lead {
  margin: 16px 0 24px;
  font-size: 24px;
  color: #d2dced;
  line-height: 1.35;
}

.offer-block {
  margin-bottom: 18px;
  border: 1px solid rgba(148, 162, 184, 0.4);
  background: rgba(148, 162, 184, 0.08);
  padding: 16px 18px;
}

.offer-block h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 2.6vw, 40px);
  color: #ffffff;
}

.offer-block p {
  margin: 0 0 12px;
  font-size: 22px;
  color: #cfdbef;
  line-height: 1.35;
}

.offer-block p:last-child {
  margin-bottom: 0;
}

.offer-highlight {
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  color: #ffffff;
}

body.offer-active .layout {
  display: none;
}

body.offer-active .offer-view {
  display: block;
}

@media (max-width: 1100px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .bg-scene {
    pointer-events: none;
  }

  .layout {
    grid-template-columns: 1fr;
    row-gap: 44px;
    padding: 52px 24px;
    min-height: auto;
  }

  .center-column {
    align-self: start;
    order: 1;
  }

  .project-list {
    max-width: 500px;
  }

  .left-column {
    order: 2;
  }

  .reveal {
    position: static;
    margin-top: 12px;
    width: auto;
    text-shadow: none;
  }

  .home-view {
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  .project-btn,
  .project-year {
    font-size: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .role {
    font-size: 26px;
  }

  .contact-btn,
  .reveal,
  .project-output {
    font-size: 18px;
  }

  .offer-btn {
    font-size: 24px;
  }

  .offer-view {
    padding: 32px 16px;
  }

  .offer-lead,
  .offer-block p {
    font-size: 18px;
  }
}

.initial1{
  color:#e4347c;
}

.initial2{
  color:#564cce;
}


.left-column{
  margin-top: auto;
  margin-bottom: auto;
}
