:root {
  --bg: #09090B;
  --bg-2: #0D0D10;
  --bg-3: #111115;
  --white: #FFFFFF;
  --lime: #C6FF00;
  --gray: #F8FAFC;
  --gray-2: #CBD5E1;
  --gradient: linear-gradient(135deg, #FFFFFF 0%, #C6FF00 100%);
  --gradient-text: linear-gradient(90deg, #FFFFFF 0%, #C6FF00 65%, #C6FF00 100%);
  --lime-line: rgba(198,255,0,0.25);
  --shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(0,0,0,0.3);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

#three-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,255,0,0.06), transparent 70%);
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.page { position: relative; z-index: 3; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--lime-line);
  background: rgba(198,255,0,0.08);
  color: var(--lime);
  font: 800 11px/1 Inter, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(198,255,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.glass:hover {
  border-color: rgba(198,255,0,0.3);
  box-shadow: var(--shadow), 0 0 40px rgba(198,255,0,0.08);
}

.glass:hover::after { opacity: 1; }

.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C6FF00, transparent);
  opacity: 0.3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 18px;
  transition: all 0.4s ease;
}

.header.scrolled { padding-top: 12px; }

.nav {
  width: min(1180px, calc(100% - 40px));
  height: 74px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 28px;
  background: rgba(13,13,16,0.72);
  backdrop-filter: blur(28px) saturate(155%);
  -webkit-backdrop-filter: blur(28px) saturate(155%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 48px rgba(0,0,0,0.32), 0 0 46px rgba(198,255,0,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  filter: drop-shadow(0 0 0 rgba(198,255,0,0));
  animation: logoPulse 4s ease-in-out infinite alternate;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--lime);
  transform: rotate(-7deg);
  box-shadow: 0 0 24px rgba(198,255,0,0.28);
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #09090B;
  top: 11px;
  left: 11px;
  box-shadow: 12px 0 0 #09090B, 0 12px 0 #09090B, 12px 12px 0 #09090B;
}

.brand-text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
}

.nav-links a { transition: color 0.25s ease; }
.nav-links a:hover { color: var(--white); }

/* Burger Menu */
.burger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger::before { width: 100%; }
.burger span { width: 70%; align-self: flex-end; }
.burger::after { width: 40%; align-self: flex-end; }

.header.nav-active .burger::before {
  transform: translateY(11px) rotate(45deg);
  background: var(--lime);
}
.header.nav-active .burger span {
  opacity: 0;
  transform: translateX(20px);
}
.header.nav-active .burger::after {
  transform: translateY(-11px) rotate(-45deg);
  width: 100%;
  background: var(--lime);
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 32px;
  font: 800 16px/1 Inter, sans-serif;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 54px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #09090B;
  box-shadow: 0 0 32px rgba(198,255,0,0.35);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 40%;
  height: 260%;
  transform: rotate(24deg);
  background: rgba(255,255,255,0.5);
  opacity: 0;
}

.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 42px rgba(198,255,0,0.5); }
.btn-primary:hover::before { animation: shimmer 0.75s ease forwards; }
.btn:active { transform: scale(0.97); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-outline:hover {
  border-color: rgba(198,255,0,0.5);
  background: rgba(198,255,0,0.05);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 136px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,255,0,0.12), transparent 70%);
  filter: blur(80px);
  animation: pulseBlob 6s ease-in-out infinite alternate;
  z-index: -1;
}

.hero-grid { display: block; position: relative; }
.hero-copy { max-width: 760px; position: relative; z-index: 1; }

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(50px, 6.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 760px;
  margin: 22px 0 28px;
}

.hero-text {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.stat {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(198,255,0,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 15px rgba(198,255,0,0.08);
}

.stat b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--white);
  text-shadow: 0 0 18px rgba(198,255,0,0.12);
}

.stat > span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.35;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: -30px;
  width: min(720px, 50vw);
  max-width: none;
  pointer-events: none;
  z-index: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(0);
}

.showcase-intro {
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 18px;
  padding-left: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white);
}

section { padding: 110px 0; position: relative; }
.section-bg { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.section-bg-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg-3)); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.section-copy { color: var(--gray); font-size: 17px; line-height: 1.6; max-width: 430px; }

.showcase {
  padding: 52px 0;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee { display: flex; gap: 22px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover { animation-play-state: paused; }

.shot {
  width: 410px;
  height: 260px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(198,255,0,0.15);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
}

.shot img { width: 100%; height: 100%; object-fit: cover; }

.shot--focus img {
  transform: translateX(var(--img-x, 0)) scale(var(--img-scale, 1));
  transform-origin: center center;
}

.comparison-board {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.comparison-side {
  min-height: 390px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.merch-side {
  background: linear-gradient(160deg, rgba(148,163,184,0.09), rgba(255,255,255,0.025));
  border-color: rgba(148,163,184,0.18);
}

.legacy-side {
  background:
    radial-gradient(circle at 78% 18%, rgba(198,255,0,0.16), transparent 34%),
    linear-gradient(160deg, rgba(198,255,0,0.08), rgba(255,255,255,0.025));
  border-color: rgba(198,255,0,0.34);
  box-shadow: inset 0 0 0 1px rgba(198,255,0,0.08), 0 0 46px rgba(198,255,0,0.05);
}

.muted-tag {
  color: var(--gray-2);
  border-color: rgba(148,163,184,0.25);
  background: rgba(148,163,184,0.08);
}

.comparison-side h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 520px;
}

.comparison-side p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 17px;
  max-width: 560px;
}

.comparison-visual {
  height: 230px;
  margin: 24px 0;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: rgba(9,9,11,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 44px rgba(0,0,0,0.22);
}

.comparison-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(9,9,11,0.52));
  pointer-events: none;
}

.comparison-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.05) brightness(1.06);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.legacy-visual {
  border-color: rgba(198,255,0,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 44px rgba(0,0,0,0.22), 0 0 34px rgba(198,255,0,0.08);
}

.legacy-visual img {
  filter: saturate(1.08) contrast(1.04);
  transform: translateX(-13%) scale(1.18);
  transform-origin: center center;
}

.comparison-side:hover .comparison-visual img {
  transform: scale(1.035);
}

.comparison-side:hover .legacy-visual img {
  transform: translateX(-13%) scale(1.22);
}

.comparison-core {
  display: grid;
  place-items: center;
  align-self: stretch;
}

.comparison-core span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  font: 900 16px/1 Inter, sans-serif;
  letter-spacing: 0.08em;
  background: rgba(9,9,11,0.92);
  border: 1px solid rgba(198,255,0,0.34);
  box-shadow: 0 0 0 10px rgba(198,255,0,0.04), 0 0 34px rgba(198,255,0,0.16);
}

.comparison-rows {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.compare-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(0, 1fr) 130px;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.compare-row::after {
  content: "";
  display: block;
}

.compare-label {
  color: var(--white);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.compare-value {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 10px 14px;
  line-height: 1.35;
  color: var(--gray);
}

.compare-value.weak {
  background: rgba(148,163,184,0.08);
  border: 1px solid rgba(148,163,184,0.14);
  color: var(--gray-2);
}

.compare-value.strong {
  background: rgba(198,255,0,0.08);
  border: 1px solid rgba(198,255,0,0.22);
  color: var(--white);
}

.compare-value.weak::before,
.compare-value.strong::before {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.compare-value.weak::before {
  content: "–";
  color: var(--gray-2);
  background: rgba(148,163,184,0.11);
}

.compare-value.strong::before {
  content: "✓";
  color: #09090B;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(198,255,0,0.28);
}
.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { list-style: none; display: flex; align-items: start; gap: 12px; color: var(--gray); line-height: 1.45; }
.check-list li::before { content: "✓"; color: var(--lime); font-weight: 900; flex: 0 0 auto; }
.muted-list li::before { color: var(--gray-2); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 32px; min-height: 330px; border-left: 1px solid rgba(198,255,0,0.35); }
.feature-num { display: block; font-family: "Space Grotesk", sans-serif; font-size: 72px; line-height: 0.9; font-weight: 700; letter-spacing: -0.09em; margin-bottom: 32px; }
.feature-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 26px; letter-spacing: -0.04em; margin-bottom: 14px; }
.feature-card p { color: var(--gray); line-height: 1.65; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 500px; }
.service-card .media { height: 255px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-body h3 { font-family: "Space Grotesk", sans-serif; font-size: 25px; letter-spacing: -0.04em; margin: 18px 0 12px; }
.service-body p { color: var(--gray); line-height: 1.6; }

.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.portfolio-card { height: 380px; border-radius: 28px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.portfolio-card:hover { transform: scale(1.03); border-color: rgba(198,255,0,0.35); box-shadow: 0 0 40px rgba(198,255,0,0.08), 0 30px 80px rgba(0,0,0,0.55); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: auto 14px 14px 14px; border-radius: 22px; padding: 18px; background: rgba(9,9,11,0.72); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.08); transform: translateY(10px); opacity: 0; transition: 0.35s var(--ease); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-overlay h3 { font-family: "Space Grotesk", sans-serif; font-size: 22px; margin-bottom: 6px; }
.portfolio-overlay p { color: var(--gray); font-size: 14px; line-height: 1.45; }

.process-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 16px; 
  max-width: 1000px; 
  margin: 0 auto; 
  justify-items: center;
}

.step-video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 10px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  width: 100%;
  max-width: 180px;
}

.step-video-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 255, 0, 0.4);
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}

.play-btn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.3s var(--ease);
}

.step-video-card:hover .play-btn svg {
  transform: scale(1.1);
}

.step-video-card.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.step-info {
  padding: 4px;
  text-align: center;
}

.step-info b {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.step-info span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--gray);
  display: block;
}
.step b { font-family: "Space Grotesk", sans-serif; font-size: 38px; letter-spacing: -0.07em; }
.step span { color: var(--gray); line-height: 1.45; }

.cta-panel { padding: 72px; text-align: center; overflow: hidden; isolation: isolate; }
.cta-panel::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(198,255,0,0.14), transparent 70%); filter: blur(70px); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; }
.cta-panel h2 { font-family: "Space Grotesk", sans-serif; font-size: clamp(42px, 6vw, 76px); line-height: 0.95; letter-spacing: -0.07em; margin: 20px auto 24px; max-width: 850px; }
.cta-panel p { color: var(--gray); line-height: 1.65; max-width: 640px; margin: 0 auto 34px; font-size: 18px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: start; }
.contact-info { padding: 38px; }
.contact-info h3 { font-family: "Space Grotesk", sans-serif; font-size: 36px; letter-spacing: -0.05em; margin: 18px 0 18px; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-item {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--gray);
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-copy { cursor: pointer; }
.contact-item:hover {
  color: var(--white);
  border-color: rgba(198,255,0,0.24);
  background: rgba(255,255,255,0.055);
}

.contact-item > span:first-child,
.contact-telegram > span:last-child { min-width: 0; }

.contact-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  opacity: 0.48;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telegram-icon {
  order: -1;
  color: #2AABEE;
  opacity: 0.72;
}

.contact-telegram {
  justify-content: flex-start;
}

.telegram-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-item:hover .contact-icon,
.contact-copy.is-copied .copy-icon { opacity: 0.92; transform: scale(1.04); }
.contact-copy.is-copied { border-color: rgba(198,255,0,0.44); color: var(--lime); }

.form { padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; color: var(--white); padding: 20px 18px 10px; transition: border-color 0.25s ease, box-shadow 0.25s ease; outline: none; }
.field textarea { min-height: 126px; resize: vertical; }
.field label { position: absolute; top: 16px; left: 18px; color: var(--gray); font-size: 14px; pointer-events: none; transform-origin: left top; transition: transform 0.2s ease, color 0.2s ease; }
.field input:focus, .field textarea:focus { border-color: rgba(198,255,0,0.5); box-shadow: 0 0 0 3px rgba(198,255,0,0.08); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-11px) scale(0.8); color: var(--lime); }
.consent { color: var(--gray-2); font-size: 12px; line-height: 1.5; margin: 16px 0 22px; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.consent-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--lime);
}
.policy-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--lime);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-status {
  min-height: 20px;
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
}
.form-status.is-error { color: #ffb4b4; }
.form-status.is-success { color: var(--lime); }

.brief-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.brief-modal.is-open { display: flex; }

.brief-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brief-modal__dialog {
  width: min(1040px, calc(100vw - 48px));
  max-height: min(900px, calc(100vh - 48px));
  padding: 32px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(198,255,0,0.08), transparent 28%),
    rgba(13,13,16,0.92);
}

.brief-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(9,9,11,0.86);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.brief-modal__title {
  max-width: 720px;
  margin: 18px 58px 26px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.brief-form {
  display: grid;
  gap: 14px;
}

.brief-section {
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.brief-section h3 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--lime);
}

.brief-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brief-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 7px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.brief-field--full { grid-column: 1 / -1; }

.brief-field input:not([type="checkbox"]):not([type="radio"]),
.brief-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: #111;
  padding: 14px;
  outline: none;
  font-weight: 400;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.brief-field textarea {
  min-height: 110px;
  resize: vertical;
}

.brief-field input:not([type="checkbox"]):not([type="radio"]):focus,
.brief-field textarea:focus {
  background: #fff;
  border-color: rgba(198,255,0,0.55);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.1);
}

.brief-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-bottom: 12px;
}

.brief-checks label,
.brief-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}

.brief-inline {
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  margin-top: 24px; /* Align with inputs if it's next to them */
}

.brief-checks input,
.brief-inline input {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--lime);
}

.brief-success {
  display: none;
  padding: 36px;
  border-radius: 24px;
  background: rgba(198,255,0,0.08);
  border: 1px solid rgba(198,255,0,0.25);
}

.brief-success.is-visible { display: block; }

.brief-success h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.brief-success p {
  margin: 0;
  max-width: 620px;
  color: var(--gray);
  line-height: 1.65;
}

body.brief-modal-open { overflow: hidden; }

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.privacy-modal.is-open { display: flex; }

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.privacy-modal__dialog {
  width: min(920px, calc(100vw - 48px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 32px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 28px;
  background: rgba(13,13,16,0.94);
}

.privacy-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(9,9,11,0.88);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal__content h2 {
  margin: 0 54px 20px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.privacy-modal__content h3 {
  margin: 22px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.privacy-modal__content p,
.privacy-modal__content li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.privacy-modal__content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.privacy-modal__content a { color: var(--lime); text-decoration: underline; }

body.privacy-modal-open { overflow: hidden; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open { display: flex; }

.video-modal__dialog {
  position: relative;
  width: min(450px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s var(--ease);
  z-index: 61;
}

.video-modal.is-open .video-modal__dialog {
  transform: scale(1);
  opacity: 1;
}

.video-modal video {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}

.video-modal .modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 62;
  transition: background 0.2s;
}

.video-modal .modal__close:hover {
  background: rgba(0,0,0,0.8);
}
body.video-modal-open { overflow: hidden; }
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 260;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 20px;
  background: rgba(7,9,12,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  backdrop-filter: blur(18px);
}
.cookie-banner__text {
  display: grid;
  gap: 6px;
  color: rgba(239,244,249,0.86);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner__text strong {
  color: var(--white);
  font-size: 16px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-banner__accept,
.cookie-banner__ghost,
.cookie-banner__link {
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-banner__accept {
  border: 1px solid rgba(198,255,0,0.68);
  background: var(--lime);
  color: #050705;
}
.cookie-banner__ghost,
.cookie-banner__link {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.cookie-banner__link {
  color: var(--lime);
}

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
details { padding: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; transition: border-color 0.25s ease; }
details[open], details:hover { border-color: rgba(198,255,0,0.26); }
summary { cursor: pointer; font-weight: 800; list-style: none; display: flex; justify-content: space-between; gap: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--lime); }
details[open] summary::after { content: "−"; }
details p { margin-top: 14px; color: var(--gray); line-height: 1.6; }

.footer { padding: 54px 0; background: var(--bg-2); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: var(--gray); font-size: 14px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.brand-line { width: 90px; height: 1px; background: var(--gradient); opacity: 0.9; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }
@keyframes pulseBlob { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.15); opacity: 1; } }
@keyframes shimmer { 0% { left: -40%; opacity: 0; } 20% { opacity: 0.8; } 100% { left: 115%; opacity: 0; } }
@keyframes logoPulse { from { filter: drop-shadow(0 0 0 rgba(198,255,0,0)); } to { filter: drop-shadow(0 0 8px rgba(198,255,0,0.48)); } }

.articles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.article-card { display: flex; flex-direction: column; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; text-decoration: none; transition: transform 0.3s var(--ease), border-color 0.3s ease; }
.article-card:hover { transform: translateY(-4px); border-color: rgba(198,255,0,0.3); }
.article-img { width: 100%; height: 220px; background-size: cover; background-position: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.article-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.article-content h3 { font-size: 20px; margin-bottom: 12px; color: var(--white); font-weight: 600; line-height: 1.3; }
.article-content p { color: var(--gray); font-size: 15px; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.article-link { color: var(--lime); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: opacity 0.2s; }
.article-card:hover .article-link { opacity: 0.8; }
.article-visual { margin: 34px 0; }
.article-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}
.article-visual figcaption {
  margin-top: 12px;
  color: rgba(231,238,245,0.62);
  font-size: 14px;
  line-height: 1.5;
}
.article-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}
.article-visual-grid .article-visual { margin: 0; }
.article-visual-grid .article-visual img { aspect-ratio: 4 / 3; }
.article-section {
  padding-top: 128px;
}
.article-container {
  max-width: 920px;
}
.article-page {
  padding: clamp(24px, 4vw, 54px);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8,11,14,0.94), rgba(4,6,8,0.9)),
    rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 110px rgba(0,0,0,0.5);
}
.article-back {
  display: inline-flex;
  align-items: center;
  color: var(--lime);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.article-page h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.04;
  margin: 0 0 28px;
  letter-spacing: 0;
}
.article-body {
  color: rgba(239,244,249,0.88);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.72;
}
.article-body p {
  margin: 0 0 20px;
}
.article-body h2 {
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  margin: 48px 0 18px;
  letter-spacing: 0;
}
.article-body h2:first-child {
  margin-top: 14px;
}
.article-point {
  position: relative;
  padding: 18px 20px 18px 52px;
  border-radius: 18px;
  background: rgba(198,255,0,0.075);
  border: 1px solid rgba(198,255,0,0.18);
}
.article-point::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 29px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(198,255,0,0.45);
}
.article-hero,
.article-source-visual {
  margin: 28px 0 40px;
}
.article-hero img,
.article-source-visual img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0,0,0,0.42);
}
.article-hero img {
  max-height: 620px;
}
.article-source-visual img {
  max-height: 560px;
}
.article-hero figcaption,
.article-source-visual figcaption {
  margin-top: 12px;
  color: rgba(231,238,245,0.62);
  font-size: 14px;
  line-height: 1.5;
}
.article-cta-inline {
  margin-top: 44px;
  text-align: center;
}

@media (max-width: 1024px) {
  .nav { padding: 0 20px; }
  .brand { min-width: auto; }
  
  .burger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
    margin: 0;
  }
  
  .nav-active .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { position: relative; top: auto; right: auto; width: min(820px, calc(100vw - 40px)); margin-top: -120px; margin-left: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-info { padding: 32px 24px; }
  .form { padding: 32px 24px; }
}

@media (max-width: 880px) {
  .cursor-glow { display: none; }
  .hero { padding-top: 126px; }
  .section-head { display: block; }
  .section-copy { margin-top: 18px; }
  .about-grid, .features-grid, .services-grid, .faq-grid, .articles-grid, .article-visual-grid { grid-template-columns: 1fr; }
  .comparison-board { grid-template-columns: 1fr; }
  .comparison-core { min-height: 54px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row::after { display: none; }
  .compare-label { color: var(--lime); }
  .process-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 14px 30px;
    margin: 0 -14px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .process-grid::-webkit-scrollbar { display: none; }
  .step-video-card {
    min-width: 180px;
    max-width: 180px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .cta-panel { padding: 48px 24px; }
  .brief-fields, .brief-checks { grid-template-columns: 1fr; }
  section { padding: 78px 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { width: calc(100% - 28px); height: 68px; padding: 0 16px; border-radius: 22px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .brand-mark::before { width: 7px; height: 7px; top: 9px; left: 9px; box-shadow: 11px 0 0 #09090B, 0 11px 0 #09090B, 11px 11px 0 #09090B; }
  .brand-text { font-size: 14px; }
  .hero h1 { font-size: 48px; line-height: 0.94; max-width: 100%; }
  .hero-actions, .footer-row { flex-direction: column; align-items: stretch; }
  .showcase-intro { font-size: 24px; margin: 6px auto 14px; }
  .btn { width: 100%; }
  .stats, .portfolio-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-visual { width: calc(100vw - 28px); margin-top: 14px; margin-left: 0; }
  .shot { width: 320px; height: 210px; }
  .portfolio-card { height: 320px; }
  .form, .contact-info, .about-card, .feature-card { padding: 24px; }
  .brief-modal { padding: 12px; }
  .brief-modal__dialog { width: calc(100vw - 24px); max-height: calc(100vh - 24px); padding: 22px; border-radius: 22px; }
  .brief-section { padding: 18px; }
  .brief-modal__title { margin-right: 0; }
  .privacy-modal { padding: 12px; }
  .privacy-modal__dialog { width: calc(100vw - 24px); max-height: calc(100vh - 24px); padding: 22px; border-radius: 22px; }
  .privacy-modal__content h2 { margin-right: 44px; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions button {
    flex: 1 1 100%;
  }
  .comparison-board { padding: 16px; gap: 14px; }
  .comparison-side { min-height: 0; padding: 20px; }
  .comparison-side h3 { font-size: 28px; }
  .comparison-visual { height: 126px; margin: 18px 0; }
  .compare-row { padding: 12px; }
  .compare-value { font-size: 14px; }
}

.no-scroll { overflow: hidden; }
