@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =========================================================
   YEAT × ESDEEKID — FULL CSS
   DARK / INDUSTRIAL / ACID / HUD
   ========================================================= */

:root {
  --acid: #d8ff00;
  --acid-2: #b8ff00;
  --acid-soft: rgba(216, 255, 0, 0.1);

  --black: #030303;
  --black-2: #070707;
  --black-3: #0c0c0c;

  --white: #f5f5f0;
  --white-soft: rgba(255,255,255,.62);
  --white-dim: rgba(255,255,255,.38);
  --white-faint: rgba(255,255,255,.08);

  --border: rgba(255,255,255,.1);

  --mono: "DM Mono", monospace;
  --main: "Inter", Arial, sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(216,255,0,.025),
      transparent 25%
    ),
    #030303;

  color: var(--white);
  font-family: var(--main);

  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #030303;
}

body::-webkit-scrollbar-thumb {
  background: rgba(216,255,0,.3);
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--acid);
}

::selection {
  background: var(--acid);
  color: #000;
}

a {
  color: inherit;
}

button,
select,
input {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   VIDEO BACKGROUND
   ========================================================= */

.video-bg {
  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  object-fit: cover;

  z-index: 0;

  display: block;

  background: #030303;

  filter:
    brightness(.3)
    contrast(1.2)
    saturate(.65);

  pointer-events: none;
}

.video-overlay {
  position: fixed;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(216,255,0,.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 8% 85%,
      rgba(70,0,255,.07),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.35) 40%,
      rgba(0,0,0,.94) 100%
    );
}

/* =========================================================
   NOISE
   ========================================================= */

.noise {
  position: fixed;
  inset: -50%;

  z-index: 2;

  pointer-events: none;

  opacity: .028;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  animation: noise .18s steps(2) infinite;
}

@keyframes noise {
  0% {
    transform: translate(0,0);
  }

  25% {
    transform: translate(2%,-2%);
  }

  50% {
    transform: translate(-2%,1%);
  }

  75% {
    transform: translate(1%,2%);
  }

  100% {
    transform: translate(0,0);
  }
}

/* =========================================================
   BACKGROUND GLOWS
   ========================================================= */

.bg-glow {
  position: fixed;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  filter: blur(150px);

  pointer-events: none;

  z-index: 2;

  opacity: .1;
}

.bg-glow-1 {
  top: -280px;
  right: -170px;

  background: var(--acid);
}

.bg-glow-2 {
  left: -280px;
  bottom: -320px;

  background: #5200ff;
}

/* =========================================================
   GLOBAL LAYERS
   ========================================================= */

.header,
.hero,
.section,
.product-page,
.product-section,
.footer,
.final-cta,
.sound-toggle {
  position: relative;
  z-index: 5;
}

/* =========================================================
   HEADER
   INDUSTRIAL HUD
   ========================================================= */

.header {
  position: fixed;

  top: 18px;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: transparent;

  border: 0;

  pointer-events: none;
}

.header-inner {
  position: relative;

  width: min(1500px, calc(100% - 36px));
  height: 64px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items: center;

  gap: 20px;

  pointer-events: auto;
}

/* =========================================================
   HEADER — LEFT
   ========================================================= */

.logo-wrap {
  position: relative;

  height: 52px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 0 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.055),
      rgba(0,0,0,.65)
    );

  border: 1px solid rgba(255,255,255,.1);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  overflow: hidden;
}

.logo-wrap::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 2px;
  height: 100%;

  background: var(--acid);

  box-shadow:
    0 0 18px var(--acid);
}

.logo-wrap::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 22px;
  height: 1px;

  background: var(--acid);

  box-shadow:
    0 0 12px var(--acid);
}

.logo-mark {
  width: 22px;
  height: 22px;

  display: grid;
  place-items: center;

  border: 1px solid var(--acid);

  color: var(--acid);

  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;

  transform: rotate(45deg);

  box-shadow:
    0 0 15px rgba(216,255,0,.08);
}

.logo-mark span {
  transform: rotate(-45deg);
}

.logo {
  position: relative;

  width: fit-content;

  color: #fff;

  text-decoration: none;

  font-family: var(--main);

  font-size: 18px;

  font-weight: 900;

  letter-spacing: -1.5px;

  line-height: 1;

  transition:
    color .2s ease;
}

.logo:hover {
  color: var(--acid);
}

.logo span {
  color: var(--acid);
}

.logo-id {
  margin-left: 3px;

  color: rgba(255,255,255,.22);

  font-family: var(--mono);

  font-size: 7px;

  letter-spacing: 1px;
}

/* =========================================================
   HEADER — CENTER
   ========================================================= */

.nav-shell {
  justify-self: center;

  height: 52px;

  padding: 0 7px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.045),
      rgba(0,0,0,.65)
    );

  border: 1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

.nav {
  display: flex;

  align-items: center;

  gap: 3px;
}

.nav a {
  position: relative;

  height: 38px;

  padding: 0 18px;

  display: flex;
  align-items: center;

  color: rgba(255,255,255,.38);

  text-decoration: none;

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 1.8px;

  transition:
    color .2s ease,
    background .2s ease;
}

.nav a::before {
  content: "";

  position: absolute;

  left: 8px;
  top: 8px;

  width: 3px;
  height: 3px;

  background: transparent;

  transition: .2s ease;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 18px;
  right: 18px;

  bottom: 5px;

  height: 1px;

  background: var(--acid);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform .25s ease;
}

.nav a:hover {
  color: #fff;

  background:
    rgba(255,255,255,.045);
}

.nav a:hover::before {
  background: var(--acid);

  box-shadow:
    0 0 10px var(--acid);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.active {
  color: #000;

  background: var(--acid);
}

.nav a.active::before {
  background: #000;
}

.nav a.active::after {
  display: none;
}

/* =========================================================
   HEADER — RIGHT
   ========================================================= */

.header-actions {
  display: flex;

  align-items: center;

  gap: 7px;
}

/* =========================================================
   SYSTEM STATUS
   ========================================================= */

.header-status {
  height: 52px;

  padding: 0 14px;

  display: flex;

  align-items: center;

  gap: 9px;

  background:
    rgba(5,5,5,.72);

  border: 1px solid rgba(255,255,255,.08);

  color: rgba(255,255,255,.4);

  font-family: var(--mono);

  font-size: 7px;

  letter-spacing: 1.5px;

  backdrop-filter: blur(25px);

  -webkit-backdrop-filter: blur(25px);
}

.header-status-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--acid);

  box-shadow:
    0 0 8px var(--acid),
    0 0 18px rgba(216,255,0,.5);

  animation:
    statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: .45;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   LANGUAGE
   ========================================================= */

.lang-select {
  height: 52px;

  width: 54px;

  appearance: none;

  outline: none;

  border: 1px solid rgba(255,255,255,.08);

  background:
    rgba(5,5,5,.72)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M2 3l2 2 2-2' fill='none' stroke='%23d8ff00' stroke-width='1'/%3E%3C/svg%3E")
    no-repeat
    right 9px center;

  color: #fff;

  padding-left: 11px;

  cursor: pointer;

  font-family: var(--mono);

  font-size: 7px;

  letter-spacing: 1px;

  backdrop-filter: blur(25px);

  -webkit-backdrop-filter: blur(25px);

  transition:
    border-color .2s ease,
    background .2s ease;
}

.lang-select:hover {
  border-color:
    rgba(216,255,0,.45);

  background-color:
    rgba(216,255,0,.04);
}

.lang-select option {
  background: #080808;

  color: #fff;
}

/* =========================================================
   LOGIN
   ========================================================= */

.login-btn {
  position: relative;

  height: 52px;

  min-width: 145px;

  padding: 0 15px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  overflow: hidden;

  background: var(--acid);

  color: #000;

  text-decoration: none;

  font-family: var(--mono);

  font-size: 8px;

  font-weight: 500;

  letter-spacing: 1.5px;

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.login-btn::before {
  content: "";

  position: absolute;

  top: 0;
  right: -35px;

  width: 70px;
  height: 100%;

  background:
    rgba(255,255,255,.35);

  transform: skewX(-25deg);

  transition:
    right .4s ease;
}

.login-btn::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: #000;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform .3s ease;
}

.login-btn:hover {
  transform: translateY(-3px);

  background: #fff;

  box-shadow:
    0 15px 40px rgba(216,255,0,.1);
}

.login-btn:hover::before {
  right: 120%;
}

.login-btn:hover::after {
  transform: scaleX(1);
}

.login-btn-text {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 4px;
}

.login-btn-small {
  color: rgba(0,0,0,.45);

  font-size: 6px;

  letter-spacing: 2px;
}

.login-btn-arrow {
  position: relative;

  z-index: 2;

  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(0,0,0,.25);

  font-size: 13px;

  transition:
    transform .25s ease;
}

.login-btn:hover .login-btn-arrow {
  transform:
    rotate(45deg);
}

/* =========================================================
   HEADER DECORATION
   ========================================================= */

.header-inner::before {
  content: "SYSTEM / 01";

  position: absolute;

  left: 0;
  top: -11px;

  color: rgba(255,255,255,.18);

  font-family: var(--mono);

  font-size: 6px;

  letter-spacing: 2px;
}

.header-inner::after {
  content: "ONLINE";

  position: absolute;

  right: 0;
  top: -11px;

  color: rgba(216,255,0,.45);

  font-family: var(--mono);

  font-size: 6px;

  letter-spacing: 2px;
}

/* =========================================================
   SOUND BUTTON
   ========================================================= */

.sound-toggle {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 52px;
  height: 52px;

  z-index: 500;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255,255,255,.14);

  border-radius: 50%;

  background:
    rgba(0,0,0,.68);

  color: #fff;

  cursor: pointer;

  backdrop-filter: blur(15px);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.sound-toggle:hover {
  transform: scale(1.08);

  border-color: var(--acid);

  background:
    rgba(216,255,0,.08);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.gradient-text {
  background:
    linear-gradient(
      135deg,
      #fff 0%,
      #aaa 45%,
      #fff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
  background:
    linear-gradient(
      135deg,
      var(--acid) 0%,
      #fff 48%,
      var(--acid) 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero h1,
.section-title,
.product-title,
.section-heading h2,
.final-cta h2,
.project-name {
  font-family: var(--main);

  font-weight: 900;

  text-transform: uppercase;

  text-rendering: geometricPrecision;

  transform:
    scaleX(.88);

  transform-origin:
    left center;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100vh;

  width: min(1480px, calc(100% - 50px));

  margin: 0 auto;

  display: flex;

  align-items: center;

  padding-top: 80px;
}

.hero-content {
  max-width: 1250px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 32px;

  padding: 10px 14px;

  border: 1px solid rgba(255,255,255,.13);

  background:
    rgba(255,255,255,.035);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 2px;

  backdrop-filter: blur(12px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--acid);

  box-shadow:
    0 0 18px var(--acid);
}

.hero h1 {
  max-width: 1250px;

  font-size:
    clamp(90px, 13vw, 215px);

  line-height: .7;

  letter-spacing: -12px;
}

.hero-subline {
  margin-top: 22px;

  margin-left: 8px;

  color:
    rgba(255,255,255,.25);

  font-family: var(--mono);

  font-size: 9px;

  letter-spacing: 4px;
}

.hero p {
  max-width: 500px;

  margin-top: 48px;

  color:
    rgba(255,255,255,.43);

  font-size: 14px;

  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;

  align-items: center;

  gap: 38px;

  margin-top: 35px;

  padding: 17px 22px;

  background: #fff;

  color: #000;

  text-decoration: none;

  font-family: var(--mono);

  font-size: 9px;

  letter-spacing: 1px;

  transition:
    background .25s ease,
    transform .25s ease;
}

.hero-cta::after {
  content: "↗";

  font-size: 17px;
}

.hero-cta:hover {
  background: var(--acid);

  transform:
    translateY(-4px);
}

.hero-index {
  position: absolute;

  right: 0;

  bottom: 135px;

  color:
    rgba(255,255,255,.12);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 3px;
}

/* =========================================================
   SCROLL HINT
   ========================================================= */

.scroll-hint {
  position: absolute;

  left: 50%;

  bottom: 30px;

  transform:
    translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  color:
    rgba(255,255,255,.28);

  font-family: var(--mono);

  font-size: 7px;

  letter-spacing: 3px;
}

.scroll-hint svg {
  animation:
    arrowMove 1.6s ease-in-out infinite;
}

@keyframes arrowMove {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  position: relative;

  width: min(1480px, calc(100% - 50px));

  margin: 0 auto;

  padding: 160px 0;
}

.section-label {
  margin-bottom: 12px;

  color: var(--acid);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 3px;
}

.section-title {
  margin-bottom: 65px;

  font-size:
    clamp(65px, 9vw, 125px);

  line-height: .78;

  letter-spacing: -8px;
}

/* =========================================================
   PROJECT CARD
   ========================================================= */

/* =========================================================
   PRODUCT CARD — MAIN PAGE
========================================================= */

.project-card {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.35fr 0.9fr;

  min-height: 560px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.055),
      rgba(5, 5, 5, 0.88) 70%
    );

  text-decoration: none;

  isolation: isolate;

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.project-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(216, 255, 0, 0.12),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      transparent 45%,
      rgba(0, 0, 0, 0.8)
    );

  opacity: 0.7;

  transition: opacity 0.4s ease;
}

.project-card::after {
  content: "OPEN PROJECT ↗";

  position: absolute;

  top: 25px;
  left: 25px;

  z-index: 10;

  padding: 9px 12px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(0, 0, 0, 0.55);

  color: rgba(255, 255, 255, 0.55);

  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;

  backdrop-filter: blur(12px);

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);

  border-color: rgba(216, 255, 0, 0.5);

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(216, 255, 0, 0.06);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover::after {
  color: #000;

  background: var(--acid);

  border-color: var(--acid);
}


/* =========================================================
   IMAGE
========================================================= */

.project-img-wrap {
  position: relative;

  min-height: 560px;

  overflow: hidden;

  background: #080808;
}

.project-img-wrap::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 45%,
      rgba(5, 5, 5, 0.95) 100%
    );

  pointer-events: none;
}

.project-img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    grayscale(0.45)
    contrast(1.2)
    brightness(0.72);

  transform: scale(1.01);

  transition:
    transform 0.9s cubic-bezier(.16,1,.3,1),
    filter 0.6s ease;
}

.project-card:hover .project-img {
  transform: scale(1.09);

  filter:
    grayscale(0)
    contrast(1.25)
    brightness(0.82);
}


/* =========================================================
   PRODUCT BODY
========================================================= */

.project-body {
  position: relative;

  padding: 65px 55px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.035),
      rgba(0,0,0,0.35)
    );
}

.project-body::before {
  content: "01";

  position: absolute;

  right: 25px;
  bottom: -55px;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,0.055);

  font-family: var(--main);
  font-size: 230px;
  font-weight: 900;

  line-height: 1;

  letter-spacing: -20px;

  pointer-events: none;
}

.project-number {
  position: absolute;

  top: 28px;
  right: 30px;

  color: rgba(255,255,255,0.3);

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
}

.project-name {
  position: relative;
  z-index: 2;

  margin: 0;

  font-size: clamp(48px, 5vw, 86px);

  line-height: 0.78;

  letter-spacing: -6px;

  transform: scaleX(0.9);
  transform-origin: left center;
}

.project-name .gradient-text-accent {
  display: inline-block;
}

.project-desc {
  position: relative;
  z-index: 2;

  max-width: 430px;

  margin-top: 35px;

  color: rgba(255,255,255,0.42);

  font-size: 12px;

  line-height: 1.8;
}

.project-btn {
  position: relative;
  z-index: 2;

  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  margin-top: 42px;

  padding-bottom: 9px;

  border-bottom: 1px solid rgba(216,255,0,0.4);

  color: var(--acid);

  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;

  transition:
    gap 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover .project-btn {
  gap: 32px;

  border-color: var(--acid);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .project-card {
    grid-template-columns: 1fr;

    min-height: 0;
  }

  .project-img-wrap {
    min-height: 340px;
  }

  .project-img-wrap::after {
    background:
      linear-gradient(
        180deg,
        transparent 45%,
        rgba(5,5,5,0.95) 100%
      );
  }

  .project-body {
    min-height: 390px;

    padding: 45px 30px;
  }

  .project-name {
    font-size: 14vw;

    letter-spacing: -4px;
  }

  .project-body::before {
    font-size: 150px;
  }

  .project-card::after {
    top: 18px;
    left: 18px;
  }

  .project-card:hover {
    transform: translateY(-5px);
  }
}

.eyebrow,
.status {
  color:
    rgba(255,255,255,.38);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 3px;
}

.status {
  display: flex;

  align-items: center;

  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--acid);

  box-shadow:
    0 0 14px var(--acid);
}

/* =========================================================
   PRODUCT HERO
   ========================================================= */

.product-hero {
  position: relative;

  min-height: 680px;

  display: flex;

  align-items: center;

  overflow: hidden;

  border-bottom:
    1px solid rgba(255,255,255,.1);
}

.product-hero-left {
  position: relative;

  z-index: 2;
}

.back-link {
  display: inline-block;

  margin-bottom: 60px;

  color:
    rgba(255,255,255,.42);

  text-decoration: none;

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 2px;

  transition:
    color .2s ease;
}

.back-link:hover {
  color: var(--acid);
}

.product-kicker {
  margin-bottom: 18px;

  color: var(--acid);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 4px;
}

.product-title {
  font-size:
    clamp(90px, 13vw, 215px);

  line-height: .72;

  letter-spacing: -12px;
}

.product-title span {
  display: block;

  margin-left: 75px;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.48);
}

.product-description {
  max-width: 520px;

  margin-top: 50px;

  margin-left: 80px;

  color:
    rgba(255,255,255,.43);

  font-size: 13px;

  line-height: 1.8;
}

.hero-meta {
  display: flex;

  gap: 40px;

  margin-top: 40px;

  margin-left: 80px;
}

.hero-meta div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.hero-meta span {
  color:
    rgba(255,255,255,.27);

  font-family: var(--mono);

  font-size: 7px;

  letter-spacing: 2px;
}

.hero-meta strong {
  color: #fff;

  font-family: var(--mono);

  font-size: 9px;

  font-weight: 400;
}

.hero-number {
  position: absolute;

  right: -20px;
  bottom: -70px;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.055);

  font-size: 440px;

  font-weight: 900;

  line-height: 1;

  letter-spacing: -35px;

  pointer-events: none;
}

/* =========================================================
   PRODUCT SECTIONS
   ========================================================= */

.product-section {
  position: relative;

  padding: 160px 0;

  border-bottom:
    1px solid rgba(255,255,255,.1);
}

.section-heading {
  display: grid;

  grid-template-columns:
    100px 1fr;

  gap: 30px;

  margin-bottom: 70px;
}

.section-heading > span {
  color: var(--acid);

  font-family: var(--mono);

  font-size: 9px;
}

.section-heading p {
  margin-bottom: 12px;

  color:
    rgba(255,255,255,.33);

  font-family: var(--mono);

  font-size: 8px;

  letter-spacing: 3px;
}

.section-heading h2 {
  font-size:
    clamp(55px, 8vw, 110px);

  line-height: .78;

  letter-spacing: -7px;
}

/* =========================================================
   SCREENSHOTS
   ========================================================= */

.screenshots {
  display: grid;

  grid-template-columns:
    1.4fr 1fr;

  gap: 15px;
}

.screenshot-item {
  position: relative;

  min-height: 300px;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.1);

  background: #090909;
}

.screenshot-large {
  grid-row: span 2;

  min-height: 615px;
}

.screenshot-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    grayscale(.3)
    contrast(1.1);

  transition:
    transform .7s ease,
    filter .5s ease;
}

.screenshot-item:hover img {
  transform:
    scale(1.06);

  filter:
    grayscale(0)
    contrast(1.15);
}

.image-number {
  position: absolute;

  top: 15px;
  left: 15px;

  z-index: 2;

  padding: 7px 9px;

  background: var(--acid);

  color: #000;

  font-family: var(--mono);

  font-size: 7px;
}

/* =========================================================
   FEATURES
   ========================================================= */

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 1px;

  background:
    rgba(255,255,255,.1);

  border:
    1px solid rgba(255,255,255,.1);
}

.feature-card {
  min-height: 240px;

  padding: 30px;

  background:
    rgba(5,5,5,.8);

  transition:
    background .25s ease,
    transform .25s ease;
}

.feature-card:hover {
  background:
    rgba(216,255,0,.055);

  transform:
    translateY(-4px);
}

.feature-card > span {
  color: var(--acid);

  font-family: var(--mono);

  font-size: 8px;
}

.feature-card h3 {
  margin-top: 55px;

  font-size: 15px;

  letter-spacing: -.5px;
}

.feature-card p {
  margin-top: 12px;

  color:
    rgba(255,255,255,.38);

  font-size: 11px;

  line-height: 1.7;
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 12px;
}

.price-card {
  position: relative;

  min-height: 520px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  border:
    1px solid rgba(255,255,255,.11);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.05),
      rgba(0,0,0,.58)
    );

  transition:
    transform .3s ease,
    border-color .3s ease;
}

.price-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(216,255,0,.4);
}

.price-card.featured {
  border-color:
    rgba(216,255,0,.42);

  box-shadow:
    inset 0 1px 0 rgba(216,255,0,.12),
    0 25px 80px rgba(216,255,0,.035);
}

.featured-label {
  position: absolute;

  top: 0;
  right: 0;

  padding: 8px 11px;

  background:
    var(--acid);

  color:
    #000;

  font-family:
    var(--mono);

  font-size: 7px;

  letter-spacing: 1px;
}

.price-top {
  display: flex;

  justify-content: space-between;

  color:
    rgba(255,255,255,.3);

  font-family:
    var(--mono);

  font-size: 7px;
}

.price-card h3 {
  margin-top: 65px;

  font-size: 32px;

  letter-spacing: -2px;
}

.price {
  margin-top: 8px;

  font-size: 72px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -5px;
}

.price small {
  color: var(--acid);

  font-size: 24px;

  vertical-align: top;
}

.price-card > p {
  margin-top: 28px;

  color:
    rgba(255,255,255,.4);

  font-size: 11px;

  line-height: 1.7;
}

.price-card ul {
  list-style: none;

  margin-top: 25px;
}

.price-card li {
  padding: 9px 0;

  border-bottom:
    1px solid rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.6);

  font-family:
    var(--mono);

  font-size: 8px;
}

.price-card li::before {
  content: "— ";

  color:
    var(--acid);
}

.price-btn {
  width: 100%;

  margin-top: auto;

  padding: 15px;

  border:
    1px solid rgba(255,255,255,.2);

  background:
    #fff;

  color:
    #000;

  cursor: pointer;

  font-family:
    var(--mono);

  font-size: 8px;

  letter-spacing: 1px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.price-btn:hover {
  background:
    var(--acid);

  transform:
    translateY(-2px);
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;

  padding: 180px 0;

  text-align: center;
}

.final-cta h2 {
  margin: 25px 0 0;
  font-size: clamp(70px, 11vw, 160px);
  line-height: 0.78;
  letter-spacing: -10px;
  text-align: center;
  transform: none;
}

.final-cta h2 span {
  display: block;
  margin: 0;
  padding: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.final-cta a {
  display: inline-flex;

  align-items: center;

  gap: 30px;

  margin-top: 55px;

  padding: 17px 22px;

  border:
    1px solid rgba(255,255,255,.2);

  color: #fff;

  text-decoration: none;

  font-family:
    var(--mono);

  font-size: 8px;

  letter-spacing: 2px;

  transition:
    background .25s ease,
    color .25s ease;
}

.final-cta a:hover {
  background:
    var(--acid);

  color:
    #000;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;

  width:
    min(1480px, calc(100% - 50px));

  margin: 0 auto;

  padding:
    30px 0 45px;

  display: flex;

  justify-content: space-between;

  border-top:
    1px solid rgba(255,255,255,.08);

  color:
    rgba(255,255,255,.24);

  font-family:
    var(--mono);

  font-size: 8px;

  letter-spacing: 2px;
}

.footer a {
  color: inherit;

  text-decoration: none;

  transition:
    color .2s ease;
}

.footer a:hover {
  color:
    var(--acid);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

.animate-fade {
  animation:
    fadeIn .8s ease forwards;
}

.animate-fade-up {
  opacity: 0;

  transform:
    translateY(25px);

  animation:
    fadeUp .8s ease forwards;
}

.animate-slide-left {
  opacity: 0;

  transform:
    translateX(-25px);

  animation:
    slideLeft .7s ease forwards;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

.delay-5 {
  animation-delay: .5s;
}

.delay-6 {
  animation-delay: .6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;

    transform:
      translateX(0);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .header-inner {
    grid-template-columns:
      auto
      1fr
      auto;

    gap: 10px;
  }

  .header-status {
    display: none;
  }

  .nav a {
    padding: 0 13px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .project-card {
    grid-template-columns:
      1fr;
  }

  .project-img-wrap {
    min-height: 420px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .header {
    top: 10px;
  }

  .header-inner {
    width:
      calc(100% - 20px);

    height: 58px;

    grid-template-columns:
      auto 1fr;

    gap: 6px;
  }

  .logo-wrap {
    height: 48px;

    padding:
      0 13px;

    gap: 10px;
  }

  .logo-mark {
    width: 18px;
    height: 18px;

    font-size: 7px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-id {
    display: none;
  }

  .nav-shell {
    display: none;
  }

  .header-actions {
    justify-self: end;

    gap: 5px;
  }

  .header-status {
    display: none;
  }

  .lang-select {
    height: 48px;

    width: 45px;

    padding-left: 8px;
  }

  .login-btn {
    height: 48px;

    min-width: 112px;

    padding:
      0 11px;
  }

  .login-btn-small {
    display: none;
  }

  .header-inner::before,
  .header-inner::after {
    display: none;
  }

  /* HERO */

  .hero {
    width:
      calc(100% - 30px);

    min-height:
      100svh;

    padding-top:
      80px;
  }

  .hero h1 {
    font-size:
      21vw;

    line-height:
      .75;

    letter-spacing:
      -6px;

    transform:
      scaleX(.9);
  }

  .hero-subline {
    margin-top:
      16px;

    font-size:
      7px;

    letter-spacing:
      2px;
  }

  .hero p {
    max-width:
      330px;

    margin-top:
      30px;

    font-size:
      12px;
  }

  .hero-cta {
    margin-top:
      28px;
  }

  .hero-index {
    display:
      none;
  }

  /* SECTIONS */

  .section {
    width:
      calc(100% - 30px);

    padding:
      100px 0;
  }

  .section-title {
    font-size:
      17vw;

    letter-spacing:
      -5px;
  }

  /* PROJECT */

  .project-card {
    grid-template-columns:
      1fr;
  }

  .project-img-wrap {
    min-height:
      330px;
  }

  .project-body {
    padding:
      35px;
  }

  .project-name {
    font-size:
      13vw;

    letter-spacing:
      -3px;
  }

  .project-desc {
    font-size:
      12px;
  }

  /* PRODUCT */

  .product-page {
    width:
      calc(100% - 30px);

    padding-top:
      110px;
  }

  .product-topline {
    padding-bottom:
      18px;
  }

  .product-hero {
    min-height:
      620px;
  }

  .product-title {
    font-size:
      20vw;

    line-height:
      .75;

    letter-spacing:
      -6px;
  }

  .product-title span {
    margin-left:
      25px;
  }

  .product-description {
    margin-left:
      25px;

    max-width:
      330px;

    font-size:
      12px;
  }

  .hero-meta {
    margin-left:
      25px;

    gap:
      20px;

    flex-wrap:
      wrap;
  }

  .hero-number {
    right:
      -10px;

    bottom:
      -20px;

    font-size:
      240px;

    letter-spacing:
      -20px;
  }

  /* PRODUCT SECTIONS */

  .product-section {
    padding:
      100px 0;
  }

  .section-heading {
    grid-template-columns:
      40px 1fr;

    gap:
      10px;

    margin-bottom:
      50px;
  }

  .section-heading h2 {
    font-size:
      14vw;

    letter-spacing:
      -4px;
  }

  /* SCREENSHOTS */

  .screenshots {
    grid-template-columns:
      1fr;
  }

  .screenshot-large {
    grid-row:
      auto;

    min-height:
      400px;
  }

  .screenshot-item {
    min-height:
      260px;
  }

  /* FEATURES */

  .features-grid {
    grid-template-columns:
      1fr;
  }

  .feature-card {
    min-height:
      190px;
  }

  /* PRICES */

  .pricing-grid {
    grid-template-columns:
      1fr;
  }

  .price-card {
    min-height:
      470px;
  }

  /* CTA */

  .final-cta {
    padding:
      110px 0;
  }

  .final-cta h2 {
    font-size:
      17vw;

    letter-spacing:
      -5px;
  }

  /* FOOTER */

  .footer {
    width:
      calc(100% - 30px);

    flex-direction:
      column;

    gap:
      12px;
  }

  /* SOUND */

  .sound-toggle {
    right:
      15px;

    bottom:
      15px;
  }

  /* VIDEO */

  .video-bg {
    width:
      100%;

    height:
      100%;

    object-fit:
      cover;

    filter:
      brightness(.28)
      contrast(1.1)
      saturate(.65);
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .logo-wrap {
    padding:
      0 11px;
  }

  .logo-mark {
    width:
      17px;

    height:
      17px;
  }

  .logo {
    font-size:
      15px;
  }

  .login-btn {
    min-width:
      105px;

    font-size:
      7px;
  }

  .hero h1 {
    font-size:
      22vw;

    letter-spacing:
      -5px;
  }

  .product-title {
    font-size:
      21vw;

    letter-spacing:
      -5px;
  }

  .project-name {
    font-size:
      14vw;
  }

  .hero-badge {
    font-size:
      7px;
  }

  .section-label {
    font-size:
      7px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    scroll-behavior:
      auto !important;

    transition-duration:
      .01ms !important;
  }
}