*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

:root {
  --ink: #0a0606;
  --ink2: #100808;
  --ink3: #160a0a;
  --line: #2a1414;
  --line2: #3d1a1a;
  --white: #f8f0f0;
  --dim: #8a7070;
  --muted: #4a2a2a;
  --pop: #e0170f;
  --pop2: #ff4038;
  --pop-glow: rgba(224, 23, 15, 0.4);
  --pop-dim: rgba(224, 23, 15, 0.1);
  --pink: #ff7055;
  --pink-dim: rgba(255, 112, 85, 0.1);
  --cyan: #ff9f38;
  --cyan-dim: rgba(255, 159, 56, 0.08);
  --amber: #ffcc38;
  --container-max: 1240px;
  --container-gutter: clamp(20px, 4.2vw, 52px);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
  box-sizing: border-box;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#cur,
#cur2 {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
#cur {
  width: 8px;
  height: 8px;
  background: var(--pop2);
  transition:
    width 0.15s,
    height 0.15s,
    background 0.2s;
}
#cur2 {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224, 23, 15, 0.5);
  transition: all 0.18s ease-out;
}
body:has(a:hover) #cur,
body:has(button:hover) #cur {
  width: 4px;
  height: 4px;
  background: var(--pink);
}
body:has(a:hover) #cur2,
body:has(button:hover) #cur2 {
  width: 52px;
  height: 52px;
  border-color: var(--pink);
}

/* ─── GRAIN ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition:
    background 0.4s,
    border 0.4s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.stuck {
  background: rgba(10, 6, 6, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pop2);
  box-shadow: 0 0 10px var(--pop2);
  animation: pip 2.4s ease-in-out infinite;
}
@keyframes pip {
  0%,
  100% {
    box-shadow: 0 0 6px var(--pop2);
  }
  50% {
    box-shadow:
      0 0 18px var(--pop),
      0 0 36px var(--pop-glow);
  }
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pop);
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--pop);
}
.nav-cta:hover {
  background: transparent;
  color: var(--pop2);
  box-shadow: 0 0 20px var(--pop-glow);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* animated bg lines */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hline {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  left: 0;
  right: 0;
  animation: hpulse 4s ease-in-out infinite;
}
.hline:nth-child(1) {
  top: 22%;
  animation-delay: 0s;
}
.hline:nth-child(2) {
  top: 50%;
  animation-delay: 1.2s;
}
.hline:nth-child(3) {
  top: 77%;
  animation-delay: 2.4s;
}
@keyframes hpulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(224, 23, 15, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* left */
.hero-left {
  position: relative;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--line2);
  margin-bottom: 28px;
  animation: up 0.6s 0.1s both;
}
.h-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pip 2s infinite;
}
.h-badge-txt {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
}

.h-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.88;
  letter-spacing: -1px;
  font-weight: 900;
  animation: up 0.6s 0.25s both;
}
.h-title .outline {
  -webkit-text-stroke: 1.5px rgba(224, 23, 15, 0.5);
  color: transparent;
  display: block;
}
.h-title .solid {
  color: var(--white);
  display: block;
}
.h-title .accent {
  color: var(--pop2);
}

.h-desc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dim);
  max-width: 400px;
  margin: 28px 0 44px;
  animation: up 0.6s 0.4s both;
  font-weight: 300;
}
.h-desc strong {
  color: var(--white);
  font-weight: 500;
}

.h-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: up 0.6s 0.55s both;
}
.btn-a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--pop);
  color: var(--white);
  padding: 14px 28px;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--pop);
}
.btn-a:hover {
  background: transparent;
  color: var(--pop2);
  box-shadow: 0 0 28px var(--pop-glow);
}
.btn-b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dim);
  padding: 14px 28px;
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--line2);
}
.btn-b:hover {
  color: var(--white);
  border-color: var(--dim);
}

/* lang badge */
.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  animation: up 0.6s 0.7s both;
}
.flag {
  font-size: 16px;
}
.lang-txt {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.lang-txt span {
  color: var(--cyan);
}

/* hero stats strip */
.h-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  animation: up 0.6s 0.85s both;
}
.h-stat {
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-right: none;
  position: relative;
}
.h-stat:last-child {
  border-right: 1px solid var(--line);
}
.h-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pop);
}
.h-stat:nth-child(2)::before {
  background: var(--pink);
}
.h-stat:nth-child(3)::before {
  background: var(--cyan);
}
.hs-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.hs-n sup {
  font-size: 16px;
  color: var(--pop2);
}
.hs-l {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PHONE MOCKUPS ─── */
.hero-phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: -20px;
  padding-right: 20px;
  animation: up 0.7s 0.3s both;
}

.phone {
  width: 160px;
  background: var(--ink3);
  border: 1.5px solid var(--line2);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}
a.phone {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.phone:focus-visible {
  outline: 2px solid var(--pop2);
  outline-offset: 4px;
  border-radius: 28px;
}
.phone.main {
  width: 190px;
  z-index: 3;
  margin: 0 -18px;
  transform: translateY(-20px);
}
.phone.side {
  opacity: 0.65;
  transform: scale(0.92);
}
.phone.side-r {
  transform: scale(0.88) translateY(10px);
  opacity: 0.45;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 24px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  aspect-ratio: 9/18;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone screen content fills */
.ps1 {
  background: linear-gradient(180deg, #1a0808 0%, #0a0606 40%, #1a0a08 100%);
}
.ps2 {
  background: linear-gradient(180deg, #1a0c08 0%, #0a0606 50%, #180808 100%);
}
.ps3 {
  background: linear-gradient(180deg, #180808 0%, #0a0606 50%, #1a0c08 100%);
}

.ps1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 60%,
    rgba(224, 23, 15, 0.28),
    transparent
  );
}
.ps2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 60%,
    rgba(255, 112, 85, 0.22),
    transparent
  );
}
.ps3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 60%,
    rgba(255, 64, 56, 0.2),
    transparent
  );
}

/* Hero phone mockups: real Short thumbnails (inline background-image) */
.phone-screen.hero-phone-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.phone-screen.hero-phone-bg.ps1::before,
.phone-screen.hero-phone-bg.ps2::before,
.phone-screen.hero-phone-bg.ps3::before {
  background: linear-gradient(
    to top,
    rgba(10, 6, 6, 0.92) 0%,
    rgba(10, 6, 6, 0.25) 42%,
    transparent 78%
  );
  z-index: 0;
}
.phone-screen.hero-phone-bg .phone-play,
.phone-screen.hero-phone-bg .short-icons,
.phone-screen.hero-phone-bg .phone-label {
  position: absolute;
  z-index: 1;
}
.phone-screen.hero-phone-bg .phone-label {
  bottom: 0;
  left: 0;
  right: 0;
}
.phone-screen.hero-phone-bg .short-icons {
  right: 10px;
  bottom: 60px;
}
.phone-screen.hero-phone-bg .phone-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.phone-screen.hero-phone-bg .phone-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.phone-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 16px;
  background: linear-gradient(to top, rgba(10, 6, 6, 0.96), transparent);
}
.ph-tag {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pop2);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ph-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.ph-views {
  font-size: 10px;
  color: var(--dim);
  margin-top: 3px;
  font-family: 'Inconsolata', monospace;
}

/* yt short ui chrome */
.phone-chrome {
  position: absolute;
  right: 8px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--white);
  font-size: 16px;
}
.pc-icon span {
  font-size: 9px;
  color: var(--dim);
  font-family: 'Inconsolata', monospace;
}

.phone-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}
.phone-progress-bar {
  height: 100%;
  background: var(--pop2);
  animation: prog 4s linear infinite;
}
.phone.main .phone-progress-bar {
  animation-duration: 6s;
}
@keyframes prog {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* play overlay on phone */
.phone-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124, 58, 255, 0.5);
  border: 1px solid rgba(124, 58, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  backdrop-filter: blur(4px);
}
.phone.main .phone-play {
  width: 50px;
  height: 50px;
  font-size: 17px;
}

/* ─── TICKER ─── */
.ticker {
  overflow: hidden;
  background: var(--pop);
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-t {
  display: inline-flex;
  animation: tick 22s linear infinite;
}
.ti {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(8, 8, 16, 0.8);
  padding: 0 32px;
  font-weight: 700;
}
.ti-s {
  color: rgba(8, 8, 16, 0.35);
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTIONS COMMON ─── */
.sec {
  padding: 100px 0;
}
.sl {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pop2);
  display: block;
  margin-bottom: 10px;
}
.st {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -1px;
}
.st .gh {
  -webkit-text-stroke: 1px var(--line2);
  color: transparent;
}
.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.see-all {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.see-all::after {
  content: '→';
  transition: transform 0.3s;
}
.see-all:hover {
  color: var(--pop2);
}
.see-all:hover::after {
  transform: translateX(4px);
}

/* ─── SHORTS SHOWCASE ─── */
.shorts-bg {
  background: var(--ink2);
}

/* Vertical shorts grid - real YouTube short proportions */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.short-card {
  position: relative;
  cursor: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink3);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s;
}
.short-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--line2);
}
a.short-card {
  text-decoration: none;
  color: inherit;
}
.short-thumb-inner.yt-bg {
  background-size: cover;
  background-position: center;
}
.short-thumb-inner.yt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 6, 0.88) 0%,
    rgba(10, 6, 6, 0.12) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.short-thumb-inner.yt-bg .short-prog,
.short-thumb-inner.yt-bg .short-content,
.short-thumb-inner.yt-bg .short-icons {
  position: relative;
  z-index: 1;
}
.short-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
}
.short-thumb-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}
.short-card:hover .short-thumb-inner {
  transform: scale(1.04);
}

.sc1 {
  background: linear-gradient(180deg, #0f0820 0%, #0a0812 50%, #18080f 100%);
}
.sc2 {
  background: linear-gradient(180deg, #1a0c08 0%, #0a0606 50%, #1a0808 100%);
}
.sc3 {
  background: linear-gradient(180deg, #180808 0%, #0a0606 50%, #1a0c08 100%);
}
.sc4 {
  background: linear-gradient(180deg, #1a0808 0%, #0a0606 50%, #1a0c08 100%);
}

.sc1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 70%,
    rgba(224, 23, 15, 0.32),
    transparent
  );
}
.sc2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 70%,
    rgba(255, 112, 85, 0.25),
    transparent
  );
}
.sc3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 70%,
    rgba(255, 64, 56, 0.28),
    transparent
  );
}
.sc4::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 70%,
    rgba(255, 204, 56, 0.18),
    transparent
  );
}

/* simulated short content */
.short-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.short-prog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.12);
}
.short-prog-fill {
  height: 100%;
  transition: width 0.3s;
}
.sc1f {
  background: var(--pop2);
  width: 65%;
}
.sc2f {
  background: var(--cyan);
  width: 38%;
}
.sc3f {
  background: var(--pink);
  width: 80%;
}
.sc4f {
  background: var(--amber);
  width: 22%;
}

/* caption bar simulation */
.short-cap {
  background: rgba(10, 6, 6, 0.75);
  backdrop-filter: blur(6px);
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.cap-word {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.cap-word .hi {
  color: var(--pop2);
}
.cap-word .hi2 {
  color: var(--cyan);
}
.cap-word .hi3 {
  color: var(--pink);
}

.short-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.short-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
  margin-right: 8px;
}
.short-views {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  color: var(--dim);
}

/* yt icons strip */
.short-icons {
  position: absolute;
  right: 10px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.si {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.si span {
  font-size: 9px;
  color: var(--dim);
  font-family: 'Inconsolata', monospace;
}

.short-info {
  padding: 14px 14px 16px;
}
.short-info .sh-tag {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pop2);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.short-info .sh-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.short-info .sh-meta {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 10px;
}

/* featured short - wide with embed */
.featured-short {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--ink3);
  border: 1px solid var(--line2);
  padding: 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.featured-short::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pop), var(--pink));
}

.feat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pop);
  color: var(--white);
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.feat-phone {
  width: 180px;
  flex-shrink: 0;
}
.feat-phone .phone-screen {
  aspect-ratio: 9/16;
}

.feat-label {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--pop2);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.feat-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--dim);
  margin-bottom: 24px;
}
.feat-desc strong {
  color: var(--white);
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ftag {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pop2);
  background: var(--pop-dim);
  padding: 4px 10px;
  border: 1px solid rgba(224, 23, 15, 0.2);
}

/* real embed wrapper - vertical 9:16 */
.embed-wrap {
  width: 180px;
  flex-shrink: 0;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border: 1.5px solid var(--line2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
/* Featured YouTube: link opens Short in a new tab (no inline iframe) */
.embed-wrap-yt .embed-yt-link {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.embed-wrap-yt .embed-yt-link:focus-visible {
  outline: 2px solid var(--pop2);
  outline-offset: 3px;
  border-radius: 14px;
}
.embed-wrap-yt .embed-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.embed-wrap-yt .embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(224, 23, 15, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  pointer-events: none;
  transition:
    transform 0.25s,
    background 0.25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.embed-wrap-yt .embed-yt-link:hover .embed-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(224, 23, 15, 0.75);
}

/* ─── SERVICES ─── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
}
.srv {
  padding: 40px 36px;
  border: 1px solid var(--line);
  margin: -1px -1px 0 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.srv:hover {
  background: rgba(224, 23, 15, 0.03);
}
.srv::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pop);
  transition: width 0.4s;
}
.srv:hover::after {
  width: 100%;
}
.srv-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  line-height: 1;
  margin-bottom: 18px;
  transition: -webkit-text-stroke-color 0.3s;
}
.srv:hover .srv-n {
  -webkit-text-stroke-color: var(--pop2);
}
.srv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.srv-body {
  font-size: 13px;
  line-height: 2;
  color: var(--dim);
}
.srv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.chip {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pop2);
  background: var(--pop-dim);
  padding: 3px 8px;
  border: 1px solid rgba(224, 23, 15, 0.18);
}

/* ─── ABOUT ─── */
.about-sec {
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-vis {
  position: relative;
}
.about-card-box {
  aspect-ratio: 4/5;
  background: var(--ink3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.acb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    rgba(224, 23, 15, 0.1),
    transparent
  );
}
.acb-avatar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px 100px;
  pointer-events: none;
}
.acb-avatar img {
  width: min(58%, 220px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--line2);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(224, 23, 15, 0.15);
}
.acb-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 6, 6, 0.97), transparent);
}
.acb-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
}
.acb-role {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--pop2);
  text-transform: uppercase;
  margin-top: 4px;
}
.ac-tl,
.ac-br {
  position: absolute;
  width: 24px;
  height: 24px;
}
.ac-tl {
  top: -4px;
  left: -4px;
  border-top: 2px solid var(--pop);
  border-left: 2px solid var(--pop);
}
.ac-br {
  bottom: -4px;
  right: -4px;
  border-bottom: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
}
.ac-badge {
  position: absolute;
  top: 20px;
  right: -14px;
  background: var(--pop);
  padding: 16px 18px;
  text-align: center;
}
.acbadge-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.acbadge-l {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.8;
}

.about-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.about-title .acc {
  color: var(--pop2);
}
.about-bio {
  font-size: 13px;
  line-height: 2.1;
  color: var(--dim);
  margin: 22px 0 32px;
}
.about-bio strong {
  color: var(--white);
  font-weight: 500;
}
.about-bio a {
  color: var(--pop2);
  text-decoration: underline;
  text-decoration-color: rgba(224, 23, 15, 0.45);
  text-underline-offset: 3px;
}
.about-bio a:hover {
  color: var(--pop);
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 12px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.tool:hover {
  color: var(--white);
  border-color: var(--line2);
  background: rgba(255, 255, 255, 0.02);
}

/* lang strip */
.lang-strip {
  display: flex;
  gap: 0;
  margin-top: 24px;
}
.ls-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-right: none;
}
.ls-item:last-child {
  border-right: 1px solid var(--line);
}
.ls-flag {
  font-size: 18px;
}
.ls-lang {
  font-size: 13px;
  font-weight: 500;
}
.ls-lvl {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: 1px;
}

/* ─── AMV SECTION ─── */
.amv-sec {
  padding: 80px 0;
  background: var(--ink2);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.amv-sec::before {
  content: 'AMV';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 240px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
}

.amv-header {
  margin-bottom: 12px;
}
.amv-sub {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 40px;
}
.amv-sub a {
  color: var(--pop2);
  text-decoration: underline;
  text-decoration-color: rgba(224, 23, 15, 0.45);
  text-underline-offset: 3px;
}
.amv-sub a:hover {
  color: var(--pop);
}

.amv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.amv-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--ink3);
  transition: opacity 0.3s;
}
a.amv-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.amv-card:hover {
  opacity: 1 !important;
}
.amv-grid:hover .amv-card {
  opacity: 0.5;
}
.amv-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.amv-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}
.amv-inner.yt-bg-amv {
  background-size: cover;
  background-position: center;
}
.amv-card:hover .amv-inner {
  transform: scale(1.04);
}

.av1 {
  background: linear-gradient(135deg, #200808 0%, #0a0606 50%, #1a0808 100%);
}
.av2 {
  background: linear-gradient(135deg, #1a0c08 0%, #0a0606 50%, #200808 100%);
}
.av3 {
  background: linear-gradient(135deg, #180808 0%, #0a0606 50%, #200a08 100%);
}

.av1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(224, 23, 15, 0.22),
    transparent
  );
}
.av2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 112, 85, 0.2),
    transparent
  );
}
.av3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(255, 64, 56, 0.18),
    transparent
  );
}

.amv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 6, 0.92) 0%,
    rgba(10, 6, 6, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.amv-tag {
  font-family: 'Inconsolata', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.amv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.amv-meta {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  color: var(--muted);
}

.amv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224, 23, 15, 0.45);
  border: 1px solid rgba(255, 64, 56, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.amv-card:hover .amv-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.amv-note {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.amv-note-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.amv-note-text {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.8;
}
.amv-note-text strong {
  color: var(--white);
}

/* ─── CONTACT ─── */
.contact-sec {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(124, 58, 255, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contact-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 16px 0 44px;
}
.contact-big .gh {
  -webkit-text-stroke: 1.5px rgba(124, 58, 255, 0.35);
  color: transparent;
  display: block;
}
.contact-sub {
  font-size: 13px;
  color: var(--dim);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 2;
}
.contact-sub strong {
  color: var(--muted);
  font-weight: 500;
}
.contact-email {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}
.contact-email::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pop2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.contact-email:hover {
  color: var(--pop2);
}
.contact-email:hover::after {
  transform: scaleX(1);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 52px;
}
.soc {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  padding: 10px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.3s;
}
.soc:hover {
  color: var(--pop2);
  border-color: var(--pop);
  background: var(--pop-dim);
}
.soc-static {
  cursor: default;
  pointer-events: none;
}
.soc-static:hover {
  color: var(--dim);
  border-color: var(--line);
  background: transparent;
}

/* ─── FOOTER ─── */
footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.ft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--muted);
}
.ft-r {
  font-family: 'Inconsolata', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}
.ft-r span {
  color: var(--pop2);
}

/* ─── REVEAL ─── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.rev.in {
  opacity: 1;
  transform: translateY(0);
}
.rev.d1 {
  transition-delay: 0.1s;
}
.rev.d2 {
  transition-delay: 0.2s;
}
.rev.d3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-phones {
    justify-content: center;
    padding-right: 0;
    margin-top: 40px;
  }
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-short {
    grid-template-columns: 1fr;
  }
  .embed-wrap,
  .feat-phone {
    width: 160px;
    margin: 0 auto;
  }
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .amv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  nav {
    padding: 18px 0;
  }
  .nav-links {
    display: none;
  }
  .shorts-grid {
    grid-template-columns: 1fr;
  }
  .h-stats {
    flex-wrap: wrap;
  }
  .hero-phones {
    display: none;
  }
  .amv-grid {
    grid-template-columns: 1fr;
  }
  .ft-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
