/* =====================================================================
   YG Global Yazılım — VORTEX visual language (PHP port)
   Palette/type/motion from vortex-reference; accent = YG red.
   ===================================================================== */

@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --vx-bg: #0a0a0a;
  --vx-bg-footer: #050505;
  --vx-text: #f5f0e8;
  --vx-accent: #e11d2e;
  --vx-accent-hover: #c91828;
  --vx-border: rgba(255, 255, 255, 0.1);
  --vx-overlay: rgba(10, 10, 10, 0.7);
  --font-heading: "Syne", sans-serif;
  --font-display: "Clash Display", "Syne", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --vx-max: 80rem;
  --ease-vx: cubic-bezier(0.77, 0, 0.175, 1);
}

.theme-yg {
  --bg: var(--vx-bg);
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --surface: rgba(255, 255, 255, 0.02);
  --surface-2: rgba(255, 255, 255, 0.04);
  --line: var(--vx-border);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: var(--vx-text);
  --muted: rgba(245, 240, 232, 0.6);
  --accent: var(--vx-accent);
  --accent-2: var(--vx-accent);
  --accent-soft: rgba(225, 29, 46, 0.12);
  --grad: var(--vx-accent);
  --ff: var(--font-body);
  --fd: var(--font-heading);
  --maxw: var(--vx-max);
  --radius: 8px;
}

html {
  background: var(--vx-bg);
  color: var(--vx-text);
  scroll-behavior: auto;
}

body.theme-yg {
  font-family: var(--font-body);
  background: var(--vx-bg);
  color: var(--vx-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}

@media (pointer: fine) {
  body.theme-yg:not(.is-app):not(.is-panel):not(.is-auth):not(.reduce-motion) * {
    cursor: none !important;
  }
}

::selection {
  background: var(--vx-accent);
  color: var(--vx-bg);
}

.theme-yg .bg-glow,
.theme-yg .top-bar { display: none !important; }

.theme-yg h1,
.theme-yg h2,
.theme-yg h3,
.theme-yg h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--vx-text);
}

.theme-yg .container {
  width: 100%;
  max-width: var(--vx-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .theme-yg .container { padding-left: 2rem; padding-right: 2rem; }
}

.theme-yg .section { padding: 6rem 0; }
@media (min-width: 768px) {
  .theme-yg .section { padding: 6rem 0; }
}

.theme-yg .section-alt {
  background: transparent;
  border: 0;
}

.theme-yg .section-head { max-width: 40rem; margin: 0 0 3rem; }
.theme-yg .section-head h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  margin: 0.5rem 0 0;
  line-height: 1.1;
}
.theme-yg .section-head p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.section-kicker,
.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vx-accent);
  margin-bottom: 0.5rem;
}

/* ---- Buttons: VORTEX hero-cta ---- */
.theme-yg .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.3s ease, transform 0.2s ease;
  box-shadow: none;
}
.theme-yg .btn-sm { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
.theme-yg .btn-lg { padding: 1rem 2rem; font-size: 0.875rem; }
.theme-yg .btn:not(.btn-sm):not(.btn-lg) { padding: 1rem 2rem; font-size: 0.875rem; }

.theme-yg .btn-primary,
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--vx-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.hero-cta::before,
.theme-yg .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-vx);
  z-index: -1;
}
.hero-cta:hover,
.theme-yg .btn-primary:hover {
  color: var(--vx-bg);
  border-color: var(--vx-accent);
  background: transparent;
  transform: none;
  box-shadow: none;
}
.hero-cta:hover::before,
.theme-yg .btn-primary:hover::before { transform: scaleX(1); }
.hero-cta:active,
.theme-yg .btn-primary:active { transform: scale(0.96); }

.hero-cta-arrow {
  display: inline-block;
  transform: translateX(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(0); opacity: 1; }

.theme-yg .btn-ghost,
.theme-yg .btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--vx-text);
}
.theme-yg .btn-ghost:hover,
.theme-yg .btn-outline:hover {
  border-color: var(--vx-accent);
  color: var(--vx-accent);
  background: transparent;
}

.theme-yg .btn-block { width: 100%; }

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--vx-bg);
  animation: vxPreloaderOut 0.45s ease 2.6s forwards;
  pointer-events: none;
}
@keyframes vxPreloaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.preloader-counter {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--vx-text);
  line-height: 1;
}
.preloader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  border-radius: 1px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--vx-accent);
  width: 0%;
  border-radius: 1px;
}

/* ---- Custom cursor ---- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 232, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  opacity: 0;
}
.custom-cursor.is-on { opacity: 1; }
@media (pointer: fine) {
  body.theme-yg:not(.is-app):not(.is-panel):not(.is-auth):not(.reduce-motion) .custom-cursor { display: flex; }
}
.custom-cursor-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--vx-text);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.custom-cursor.link-hover {
  width: 40px;
  height: 40px;
  border-color: var(--vx-accent);
}
.custom-cursor.project-hover {
  width: 50px;
  height: 50px;
  background: rgba(225, 29, 46, 0.3);
  border-color: var(--vx-accent);
}
.custom-cursor.project-hover .custom-cursor-label { opacity: 1; }
.custom-cursor.text-hover {
  width: 60px;
  height: 60px;
  background: var(--vx-accent);
  border-color: var(--vx-accent);
}
.custom-cursor.text-hover .custom-cursor-label { opacity: 1; }

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled,
.nav-scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--vx-max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  height: auto;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .nav-inner { padding-left: 2rem; padding-right: 2rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--vx-text);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { height: 36px; width: auto; max-width: 200px; object-fit: contain; }
.brand-word { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.08em; }
.brand-word--softy { letter-spacing: 0.06em; }
.brand-dot { color: var(--vx-accent); }
.brand-lockup { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand-mark-img { width: 32px; height: 32px; display: block; flex-shrink: 0; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-cta-desk { display: none; }
.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-cta-desk { display: inline-flex; }
  .hamburger { display: none; }
}
@media (min-width: 1280px) {
  .nav-desktop { gap: 1.75rem; }
}

.nav-link {
  position: relative;
  color: var(--vx-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--vx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.lang-switch {
  display: none;
}
.lang-switch a { color: rgba(245, 240, 232, 0.4); padding: 0.2rem; }
.lang-switch a.on,
.lang-switch a:hover { color: var(--vx-accent); }

.lang-dd {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  height: 36px;
  padding: 0 0.45rem 0 0.4rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--vx-text);
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-dd-btn:hover,
.lang-dd:hover .lang-dd-btn,
.lang-dd:focus-within .lang-dd-btn,
.lang-dd.is-open .lang-dd-btn {
  border-color: var(--vx-accent);
  background: rgba(225, 29, 46, 0.12);
}
.lang-flag {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.lang-dd-caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid rgba(245, 240, 232, 0.7);
  margin-top: 1px;
}
.lang-dd-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 148px;
  padding-top: 10px;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.lang-dd:hover .lang-dd-panel,
.lang-dd:focus-within .lang-dd-panel,
.lang-dd.is-open .lang-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-dd-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--vx-text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.lang-dd-item:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.nav-badge {
  display: inline-flex;
  min-width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.35rem;
  padding: 0 0.25rem;
  border-radius: 100px;
  background: var(--vx-accent);
  color: var(--vx-bg);
  font-size: 0.65rem;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0.25rem;
  z-index: 100;
  position: relative;
}
@media (min-width: 1024px) {
  .hamburger { display: none; }
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vx-text);
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}
.hamburger-open .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-open .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-vx);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vx-text);
  text-decoration: none;
  opacity: 0;
  transform: translateX(40px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu-link:hover { color: var(--vx-accent); }
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}
.nav-overlay,
.nav-menu-head,
.nav-menu-foot,
.nav-close { display: none !important; }

.nav-panel-link { display: none; }

.site-header .nav-cta-desk {
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.48rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.site-header .nav-cta-desk span { white-space: nowrap; }

.theme-yg .nav-account-dd {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
}
.theme-yg .nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--vx-text);
  cursor: pointer;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.theme-yg .nav-account:hover,
.theme-yg .nav-account-dd:hover .nav-account,
.theme-yg .nav-account-dd:focus-within .nav-account,
.theme-yg .nav-account-dd.is-open .nav-account {
  border-color: var(--vx-accent);
  background: rgba(225, 29, 46, 0.12);
  color: #fff;
}
.theme-yg .nav-account .nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  margin: 0;
}
.theme-yg .nav-account-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  padding-top: 10px;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.theme-yg .nav-account-dd:hover .nav-account-panel,
.theme-yg .nav-account-dd:focus-within .nav-account-panel,
.theme-yg .nav-account-dd.is-open .nav-account-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.theme-yg .nav-acc-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.theme-yg .nav-account-panel a.nav-acc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--vx-text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.theme-yg .nav-account-panel a.nav-acc-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.theme-yg .nav-account-panel a.nav-acc-item--primary {
  background: var(--vx-accent);
  border-color: var(--vx-accent);
  color: #fff;
}
.theme-yg .nav-account-panel a.nav-acc-item--primary:hover {
  background: var(--vx-accent-hover);
  border-color: var(--vx-accent-hover);
  color: #fff;
}

body.nav-open { overflow: hidden; }

/* ---- Hero ---- */
.vx-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.5rem;
  background: var(--vx-bg);
}
.vx-hero .video-bg,
.vx-hero .video-overlay {
  position: absolute;
  inset: 0;
}
.vx-hero .video-bg { z-index: 0; }
.vx-hero .video-overlay {
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.62) 0%,
    rgba(10, 10, 10, 0.5) 45%,
    rgba(10, 10, 10, 0.88) 100%
  );
}
.vx-hero .video-bg-el {
  opacity: 0.55;
  filter: grayscale(0.25) saturate(0.8) brightness(0.7);
}
.vx-noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
.vx-blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.vx-blob--a {
  left: 25%;
  top: 25%;
  width: 500px;
  height: 500px;
  background: rgba(225, 29, 46, 0.05);
}
.vx-blob--b {
  right: 25%;
  bottom: 25%;
  width: 400px;
  height: 400px;
  background: rgba(245, 240, 232, 0.04);
  filter: blur(100px);
}
.vx-hero__inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 64rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .vx-hero__inner { padding: 0 2rem; }
}
.vx-hero__kicker {
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vx-accent);
}
.vx-hero__title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .vx-hero__title { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .vx-hero__title { font-size: 6rem; }
}
.hero-title-char { display: inline-block; }
.vx-hero__lead {
  margin: 0 0 3rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.6);
  text-align: center;
}
@media (min-width: 768px) {
  .vx-hero__lead { font-size: 1.25rem; }
}
.vx-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.vx-scroll span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}
.vx-scroll i {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.3), transparent);
}

/* ---- Project showcase ---- */
.vx-work { position: relative; overflow: hidden; padding-top: 4rem; }
@media (min-width: 768px) {
  .vx-work { padding-top: 6rem; }
}
.vx-work__head { margin: 0 auto; max-width: var(--vx-max); padding: 0 1.5rem 3rem; }
@media (min-width: 1024px) {
  .vx-work__head { padding-left: 2rem; padding-right: 2rem; }
}
.vx-work__head h2 {
  font-size: 2.25rem;
  margin: 0;
}
@media (min-width: 768px) {
  .vx-work__head h2 { font-size: 3rem; }
}

.vx-work-track {
  display: none;
  align-items: flex-end;
  gap: 2.5rem;
  padding-bottom: 6rem;
  padding-left: max(2rem, calc((100vw - 80rem) / 2 + 1.5rem));
  padding-right: 2rem;
}
@media (min-width: 1024px) {
  .vx-work-track { display: flex; }
}
.vx-work-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: var(--vx-max);
  padding: 0 1.5rem 4rem;
}
@media (min-width: 640px) {
  .vx-work-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .vx-work-grid { display: none; }
}
.vx-work-grid.is-page {
  display: grid;
  padding: 0 0 4rem;
  max-width: none;
}
@media (min-width: 1024px) {
  .vx-work-grid.is-page { display: grid; }
}

.project-card {
  flex-shrink: 0;
  width: 400px;
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}
@media (max-width: 1023px) {
  .project-card { width: 100%; }
}
.project-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(225, 29, 46, 0.1);
}
.project-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.project-card-image img,
.project-card-image .project-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-card-bg {
  background-size: cover;
  background-position: center;
}
.project-card:hover .project-card-image img,
.project-card:hover .project-card-bg { transform: scale(1.08); }
.project-card-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background-color 0.4s ease;
}
.project-card:hover .project-card-image-overlay { background: rgba(10, 10, 10, 0.4); }
.project-card-image-reveal { clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%); }
.project-card-content { padding: 1.5rem; }
.project-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.project-card-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  margin: 0 0 1rem;
}
.project-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}
.project-view {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vx-accent);
  text-decoration: none;
}
.project-view:hover { color: rgba(225, 29, 46, 0.8); }

/* ---- Marquee ---- */
.marquee-wrap { overflow: hidden; padding: 4rem 0; }
@media (min-width: 768px) {
  .marquee-wrap { padding: 6rem 0; }
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
}
.marquee-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--vx-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-text-accent { color: var(--vx-accent); }
.marquee-separator { color: rgba(245, 240, 232, 0.3); }

/* ---- Video / process ---- */
.video-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #140808 40%, #0a0a0a 100%);
}
.video-bg video,
.video-bg-el {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .video-bg-el { display: none; }
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), transparent 50%, rgba(10, 10, 10, 0.9));
  z-index: 1;
}
.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
.video-content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .video-content h2 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .video-content h2 { font-size: 4.5rem; }
}
.video-content p.lead {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.6);
}

/* ---- Practice / team-style cards ---- */
.vx-practices { padding: 6rem 0; }
@media (min-width: 768px) {
  .vx-practices { padding: 8rem 0; }
}
@media (min-width: 1024px) {
  .vx-practices { padding: 10rem 0; }
}
.vx-practices__head { text-align: center; margin-bottom: 4rem; }
.vx-practices__head h2 { font-size: 2.25rem; margin: 0; }
@media (min-width: 768px) {
  .vx-practices__head h2 { font-size: 3rem; }
}
.practice-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .practice-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--vx-border);
  background: rgba(255, 255, 255, 0.02);
  min-height: 280px;
  display: block;
  color: inherit;
  text-decoration: none;
}
.team-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-height: 450px;
  background: #111;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.team-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: filter 0.45s ease, transform 0.45s ease;
}
.team-card-image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.45) 48%, rgba(10, 10, 10, 0.88) 100%);
}
.team-card:hover .team-card-image img {
  transform: scale(1.05);
  filter: brightness(0.72);
}
.team-card-no {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.85;
  color: rgba(245, 240, 232, 0.08);
  transition: color 0.4s ease, transform 0.4s ease;
}
.team-card:hover .team-card-no {
  color: rgba(225, 29, 46, 0.35);
  transform: scale(1.05);
}
.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
  transform: translateY(40%);
  transition: transform 0.4s ease-out;
}
.team-card:hover .team-card-overlay { transform: translateY(0); }
.team-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}
.team-card-overlay .role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vx-accent);
  margin-bottom: 0.5rem;
}
.team-card-overlay p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.6);
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.team-card:hover .team-card-overlay p { opacity: 1; }
@media (hover: none), (max-width: 1023px) {
  .team-card-overlay { transform: none; }
  .team-card-overlay p { opacity: 1; }
}

/* ---- Blog editorial ---- */
.vx-blog { padding: 4rem 0 6rem; }
.vx-blog-list { display: flex; flex-direction: column; border-top: 1px solid var(--vx-border); }
.vx-blog-row {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--vx-border);
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .vx-blog-row { grid-template-columns: 10rem 1fr auto; align-items: baseline; }
}
.vx-blog-row time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.vx-blog-row h3 {
  font-size: 1.5rem;
  margin: 0;
  transition: color 0.3s ease;
}
.vx-blog-row:hover h3 { color: var(--vx-accent); }
.vx-blog-row .more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vx-accent);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--vx-bg-footer);
  padding: 0;
}
.footer-inner {
  max-width: var(--vx-max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .footer-inner { padding: 5rem 2rem; }
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
}
.footer-col h4,
.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-text);
  margin: 0 0 1rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link,
.footer-col a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-link::after,
.footer-col a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--vx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-link:hover,
.footer-col a:hover { color: var(--vx-accent); }
.footer-link:hover::after,
.footer-col a:hover::after { transform: scaleX(1); }
.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.35;
}
.footer-phone small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.38);
}
.footer-note {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.footer-rule {
  margin: 3rem 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.3);
}
.footer-brand-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.38);
}
.footer-socials { display: flex; gap: 1rem; }

.magnetic-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s ease-out, transform 0.3s ease-out;
  position: relative;
  text-decoration: none;
}
.magnetic-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--vx-accent);
  transform: scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.magnetic-icon:hover {
  color: var(--vx-bg);
  transform: scale(1.3);
}
.magnetic-icon:hover::before { transform: scale(1); }
.magnetic-icon svg { width: 20px; height: 20px; }

.newsletter-input,
.theme-yg .form-group input,
.theme-yg .form-group select,
.theme-yg .form-group textarea,
.theme-yg .form-field input,
.theme-yg .form-field select,
.theme-yg .form-field textarea,
.theme-yg .contact-form input[type="text"],
.theme-yg .contact-form input[type="email"],
.theme-yg .contact-form input[type="tel"],
.theme-yg .contact-form select,
.theme-yg .contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--vx-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  width: 100%;
  box-shadow: none;
}
.theme-yg .form-group input:focus,
.theme-yg .form-group select:focus,
.theme-yg .form-group textarea:focus,
.theme-yg .contact-form input:focus,
.theme-yg .contact-form select:focus,
.theme-yg .contact-form textarea:focus,
.newsletter-input:focus {
  border-color: var(--vx-accent);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.skew-section { will-change: transform; }

/* ---- Inner page hero ---- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: var(--vx-bg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 1.5rem;
}
.page-hero .breadcrumb a { color: rgba(245, 240, 232, 0.5); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--vx-accent); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}
.page-lead {
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  margin: 0;
}

/* ---- Contact / about / content ---- */
.contact-form-box {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}
.contact-layout,
.content-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-layout,
  .content-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-info h2,
.content-main h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}
.contact-list { list-style: none; padding: 0; margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 0.25rem;
}
.contact-list a { color: var(--vx-text); text-decoration: none; }
.contact-list a:hover { color: var(--vx-accent); }

.about-company {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}
.about-company-head { display: flex; gap: 1.25rem; align-items: center; margin-bottom: 2rem; }
.about-company-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
.about-company-mark::after { content: "."; color: var(--vx-accent); }
.about-company-list { display: flex; flex-direction: column; gap: 0; }
.about-company-row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--vx-border);
  font-size: 0.9rem;
}
.about-company-row dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.about-company-row dd { margin: 0; }
.about-company-row a { color: var(--vx-text); }

.yg-why {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .yg-why { grid-template-columns: 0.9fr 1.1fr; }
}
.yg-why__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.yg-why__list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--vx-border);
}
.yg-why__list h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }
.yg-why__list p { margin: 0; color: rgba(245, 240, 232, 0.6); font-size: 0.95rem; line-height: 1.65; }

.side-card {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1.25rem;
}
.side-card h4 {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.side-links { list-style: none; padding: 0; margin: 0; }
.side-links a { color: rgba(245, 240, 232, 0.7); text-decoration: none; font-size: 0.9rem; }
.side-links a:hover { color: var(--vx-accent); }
.side-links li { padding: 0.45rem 0; }

.single-cover {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--vx-border);
}
.rich-text,
.legal-text {
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  font-size: 1.05rem;
}
.rich-text h2, .rich-text h3 { color: var(--vx-text); margin: 2rem 0 0.75rem; }
.rich-text a { color: var(--vx-accent); }

/* Product overview is a light paper panel. Marketplace HTML is often <div>s,
   so they inherit .rich-text cream and vanish on #f3f5f8. Keep dark ink here. */
.theme-yg .product-desc.rich-text,
.theme-yg .product-desc {
  color: #1f2937;
  background: #f3f5f8;
}
.theme-yg .product-desc h1,
.theme-yg .product-desc h2,
.theme-yg .product-desc h3,
.theme-yg .product-desc h4,
.theme-yg .product-desc h5,
.theme-yg .product-desc h6,
.theme-yg .product-desc strong,
.theme-yg .product-desc b {
  color: #111827;
}
.theme-yg .product-desc p,
.theme-yg .product-desc li,
.theme-yg .product-desc div,
.theme-yg .product-desc span,
.theme-yg .product-desc td,
.theme-yg .product-desc th,
.theme-yg .product-desc dt,
.theme-yg .product-desc dd {
  color: #374151;
}
.theme-yg .product-desc a {
  color: var(--vx-accent);
}

.cards-grid,
.yg-svc,
.yg-cases,
.yg-posts { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
.feature-card {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}
.theme-yg .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--vx-border);
  background: transparent;
  color: var(--vx-accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.post-card,
.yg-post,
.service-card,
.yg-svc__card,
.yg-case {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.post-card:hover,
.yg-case:hover,
.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(225, 29, 46, 0.08);
}
.post-thumb,
.yg-post__media,
.yg-case__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.post-body,
.yg-case__body,
.yg-svc__card { padding: 1.5rem; }
.yg-svc__no {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(245, 240, 232, 0.12);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.theme-yg .product-card {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.theme-yg .product-thumb { aspect-ratio: 4 / 3; }
.theme-yg .store-side,
.theme-yg .product-panel,
.theme-yg .auth-card,
.theme-yg .host-row,
.theme-yg .inv-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--vx-border);
  border-radius: 8px;
}

.theme-yg .faq-item { border-bottom: 1px solid var(--vx-border); }
.theme-yg .faq-q {
  background: none;
  color: var(--vx-text);
  font-family: var(--font-heading);
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  border: 0;
}

.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--vx-text);
  box-shadow: none;
}
.float-wa:hover {
  background: var(--vx-accent);
  border-color: var(--vx-accent);
  color: var(--vx-bg);
}

.error-page { min-height: 100vh; background: var(--vx-bg); color: var(--vx-text); }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--vx-text);
}
.error-page h1 { font-family: var(--font-heading); }

.center-cta { text-align: center; margin-top: 3rem; }
.muted { color: rgba(245, 240, 232, 0.5); }
.card-link { color: var(--vx-accent); font-weight: 600; font-size: 0.875rem; }

/* Hide leftover agency chrome */
.yg-hero,
.yg-cta,
.yg-hero__orb,
.yg-cursor-glow,
.yg-stage { display: none !important; }

/* ---- App shell: keep dashboard usable ---- */
body.is-app .custom-cursor,
body.is-panel .custom-cursor,
body.is-auth .custom-cursor,
body.is-app .preloader { display: none !important; }
body.is-app .page-hero {
  min-height: 0;
  padding: 7.5rem 0 1.5rem;
}
body.is-app .page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: none;
  font-family: var(--font-heading);
}
body.is-app .page-hero .breadcrumb { margin-bottom: 0.75rem; }
body.is-app .hero-cta,
body.is-app .btn-primary {
  background: var(--vx-accent);
  color: var(--vx-bg);
  border-color: var(--vx-accent);
}
body.is-app .btn-primary::before { display: none; }
body.is-app .btn-primary:hover {
  background: var(--vx-accent-hover);
  color: var(--vx-bg);
}
body.is-app .acc-tabs {
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
body.is-app .acc-tab.on { color: var(--vx-accent); }
body.is-app .site-footer { display: block; }
body.is-app .vx-cta-band { display: none; }
body.is-app .float-wa { display: none; }

.vx-cta-band { min-height: 60vh; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.3); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .custom-cursor { display: none !important; }
  .project-card-image-reveal { clip-path: none; }
}

@media (max-width: 430px) {
  .vx-hero__title { font-size: 2.35rem; }
  .page-title { font-size: 2.15rem; }
  .about-company-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .nav-inner { padding: 1rem 1.25rem; }
}
