:root {
  --bg-core: #06111F;
  --bg-soft: #0A1628;
  --bg-elevated: rgba(8, 18, 32, 0.86);
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-strong: rgba(255, 255, 255, 0.075);
  --text-main: #EAF9FF;
  --text-secondary: rgba(234, 249, 255, 0.68);
  --text-muted: rgba(234, 249, 255, 0.42);
  --accent: #16C8FF;
  --accent-strong: #0A8DFF;
  --accent-deep: #1E40AF;
  --accent-glow: rgba(22, 200, 255, 0.26);
  --accent-gradient: linear-gradient(135deg, #22E1FF 0%, #078BFF 100%);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 36px 110px rgba(0, 0, 0, 0.5);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius: 24px;
  --radius-lg: 40px;
  --container: 1120px;
  --container-wide: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", "STSong", serif;
  --h1: clamp(3.2rem, 6vw, 6.2rem);
  --h2: clamp(2.2rem, 4vw, 4rem);
  --h3: clamp(1.5rem, 2.5vw, 2.1rem);
  --h4: clamp(1.15rem, 1.6vw, 1.5rem);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 56px;
  --space-xl: 96px;
  --space-2xl: 140px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  touch-action: pan-y;
  overflow-x: clip;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: auto;
  width: 100%;
  max-width: 100vw;
  touch-action: pan-y pinch-zoom;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 0%, rgba(22, 200, 255, 0.1), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(10, 141, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0B1A2E 0%, #081424 35%, #050D18 100%);
  background-attachment: fixed;
  font-family: var(--font-body);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 1;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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.85' 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: 200px;
}

::selection {
  background: rgba(22, 200, 255, 0.24);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-link:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-secondary:focus-visible,
.filter-btn:focus-visible,
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(5, 7, 12, 0.92);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(22, 200, 255, 0.5), rgba(10, 141, 255, 0.6));
  border-radius: 999px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
.btn {
  cursor: pointer;
  transition: all 0.35s var(--ease);
  touch-action: manipulation;
}

a, .nav-link, .filter-btn, .portfolio-item, .home-case-card,
.works-hero-card, .works-featured-item, .works-secondary-item,
.service-card, .bento-card, .advantage-card, .empowerment-card,
.empowerment-cta {
  touch-action: manipulation;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-main);
  line-height: 1.14;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

.container-wide {
  width: min(90%, var(--container-wide));
  margin: 0 auto;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.hidden {
  display: none;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  padding: 36px 48px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.stats-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.stats-row > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  font-weight: 800;
  background: linear-gradient(180deg, #85F1FF, #168DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 10px;
}

.stat-highlight {
  position: relative;
  display: inline-block;
  overflow: visible;
}

.stat-highlight::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 225, 255, 0.16), transparent 60%);
  pointer-events: none;
}

.stat-badge {
  position: absolute;
  top: 0;
  left: -44px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(34, 225, 255, 0.18);
  border: 1.5px solid rgba(34, 225, 255, 0.6);
  color: #6EEBFF;
  -webkit-text-fill-color: #6EEBFF;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  padding: 2px 10px;
  border-radius: 999px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-lede {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-guide {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-accent {
  display: inline-block;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background: linear-gradient(180deg, #16C8FF, #0A8DFF);
  flex-shrink: 0;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-sm {
  gap: 12px;
}

.gap-md {
  gap: 24px;
}

.gap-lg {
  gap: 40px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 32px;
}

.mt-lg {
  margin-top: 56px;
}

.mb-sm {
  margin-bottom: 12px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 40px;
}

.glass,
.service-card,
.portfolio-item,
.nav-links,
.bento-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border: 1px solid var(--line-soft);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cdefff 32%, #16C8FF 68%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.eyebrow,
.section-subtitle,
.hero-tag,
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(93, 213, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.display-title,
.hero-title,
.section-title,
.step-title {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.section {
  position: relative;
  padding: 86px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, 1280px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
}

.section:first-of-type::before,
.hero-section::before,
.academy-hero::before,
.about-hero::before {
  display: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 54px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  font-size: var(--h2);
  line-height: 1.15;
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--text-muted);
}

.section-lede,
.hero-desc,
.service-desc,
.portfolio-desc,
.form-sub {
  color: var(--text-secondary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 120;
  padding: 14px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  background: linear-gradient(180deg, rgba(6, 17, 31, 0.7), rgba(6, 17, 31, 0));
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 17, 31, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-tm {
  font-size: 0.4em;
  vertical-align: super;
  opacity: 0.55;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.25);
}

.nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary,
.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.btn-primary {
  height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  color: #F2FCFF;
  font-weight: 700;
  letter-spacing: 0.02em;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0) 38%),
    linear-gradient(135deg, #25E6FF 0%, #0A8DFF 52%, #0965E8 100%);
  border: 1px solid rgba(150, 240, 255, .55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -10px 22px rgba(0,40,120,.28),
    0 0 28px rgba(35,210,255,.38),
    0 14px 42px rgba(0,90,220,.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -10px 22px rgba(0,40,120,.35),
    0 0 40px rgba(35,210,255,.5),
    0 18px 54px rgba(0,90,220,.35);
}

.btn-outline,
.btn-secondary {
  height: 48px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(240, 250, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 34px rgba(0, 0, 0, 0.28);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.35);
}

.header-cta {
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 20px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

.page-hero {
  padding-top: clamp(130px, 20vh, 200px);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-section,
.academy-hero,
.about-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 72px;
  text-align: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 1;
  filter: saturate(1.05) contrast(1.02) brightness(0.85);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(1, 8, 18, 0.75), rgba(1, 8, 18, 0.15) 35%, rgba(1, 8, 18, 0.55) 70%, #020A14 100%);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(22, 200, 255, 0.2), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-content .hero-cta-group {
  margin-top: 50px;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(80, 210, 255, 0.22) 0%,
    rgba(40, 120, 220, 0.10) 38%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

.hero-title {
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 32px;
  text-shadow:
    0 0 18px rgba(22, 200, 255, 0.35),
    0 0 42px rgba(10, 141, 255, 0.2),
    0 0 80px rgba(10, 141, 255, 0.1);
}

.hero-desc {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  max-width: 760px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.hero-desc:last-of-type {
  margin-bottom: 32px;
}

.hero-highlight {
  color: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.hero-tag {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(24vw, 260px);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* Scroll-down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.scroll-indicator-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-indicator-arrow {
  opacity: 0.7;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-cta-btn {
  padding: 14px 38px;
  font-size: 1.05rem;
  flex-direction: row;
  align-items: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
  min-height: 52px;
  height: auto;
  white-space: nowrap;
}

.hero-cta-btn:first-child {
  background: linear-gradient(135deg, #26E4FF 0%, #078BFF 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 14px 42px rgba(20, 180, 255, 0.38);
}

.hero-cta-btn:first-child:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 18px 54px rgba(20, 180, 255, 0.5);
}

a.btn-secondary.hero-cta-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

a.btn-secondary.hero-cta-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(22, 200, 255, 0.08);
}

.hero-cta-main {
  font-weight: 800;
  position: relative;
  z-index: 1;
}

a.btn-secondary.hero-cta-btn .hero-cta-main {
  color: rgba(255, 255, 255, 0.92);
}

.services-grid,
.grid {
  display: grid;
  gap: 28px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.bento-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card::before,
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(22, 200, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card::after,
.bento-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 225, 255, 0.65), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.service-card:hover::after,
.bento-card:hover::after {
  opacity: 1;
}

.service-card:hover,
.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028));
  box-shadow:
    var(--shadow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card:hover::before,
.bento-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.service-title {
  font-size: 1.48rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 1rem;
}

.service-desc--tag {
  margin-bottom: 16px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 24px;
}

.service-cta {
  min-height: 42px;
  padding: 0 24px;
  font-weight: 700;
  width: auto;
  align-self: flex-start;
}

.learn-ai-card {
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 225, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

.creator-service-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(110, 120, 255, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

.bento-highlight {
  background: linear-gradient(180deg, rgba(22, 200, 255, 0.09), rgba(255, 255, 255, 0.03));
  border-color: rgba(22, 200, 255, 0.26);
}

.filter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-scroll-wrap {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  touch-action: auto;
}

.filter-scroll-wrap.is-stuck {
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 110;
  background: rgba(6, 17, 31, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 12px 0;
}

.filter-scroll-wrap .filter-nav {
  margin-bottom: 0;
}

.filter-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  border-color: rgba(22, 200, 255, 0.34);
  background: rgba(22, 200, 255, 0.11);
  box-shadow: 0 10px 24px rgba(22, 200, 255, 0.12);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 200, 255, 0.35);
  box-shadow: var(--shadow-strong);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02040a;
}

.portfolio-thumb video,
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.5s var(--ease);
  pointer-events: none;
}

.portfolio-item:hover .portfolio-thumb video,
.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.04);
}

.portfolio-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: rgba(6, 17, 31, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.portfolio-item:hover .portfolio-play-overlay {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(22, 200, 255, 0.2);
  border-color: rgba(22, 200, 255, 0.4);
}

.portfolio-content {
  padding: 24px;
}

.portfolio-title {
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 8px 0;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: scroll 32s linear infinite;
  will-change: transform;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  margin: 0 10px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(235, 248, 255, 0.72);
  transition: color 0.35s var(--ease);
  cursor: default;
  user-select: none;
}

.trust-logo:hover {
  color: rgba(235, 248, 255, 1);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
  margin-bottom: 0;
}

.form-input,
.form-textarea,
textarea,
input {
  font-family: inherit;
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-input::placeholder,
.form-textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-input:focus,
.form-textarea:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(22, 200, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(22, 200, 255, 0.1);
}

.site-footer {
  padding: 84px 0 34px;
  border-top: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #01050B, #01050B);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 200, 255, 0.5), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 34px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-desc,
.footer-links a {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-contact p {
  color: rgba(238, 250, 255, 0.82);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 800;
}

.footer-links ul {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-qr {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"] .hero-title {
  max-width: 820px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(22, 200, 255, 0.35),
    0 0 42px rgba(10, 141, 255, 0.2);
}

body[data-page="home"] .hero-title .hero-title-line {
  display: inline;
}

@media (max-width: 768px) {
  body[data-page="home"] .hero-title .hero-title-line {
    display: inline;
    white-space: nowrap;
  }

  body[data-page="home"] .hero-title {
    font-size: clamp(2.6rem, 9vw, 3.8rem);
  }
}

body[data-page="register"] .service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

body[data-page="contact"] .section:first-of-type::before,
body[data-page="portfolio"] .section:first-of-type::before,
body[data-page="learn-ai"] .section:first-of-type::before,
body[data-page="home"] .section:first-of-type::before {
  display: none;
}

.copyright {
  color: var(--text-muted);
}

.trust-section {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: rgba(6, 17, 31, 0.65);
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 200, 255, 0.15), transparent);
}

.trust-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
  font-weight: 500;
}

.data-section {
  background:
    linear-gradient(to right, transparent, rgba(22, 200, 255, 0.03), transparent);
  position: relative;
}

.data-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.advantage-card {
  padding: 40px 32px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(22, 200, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 225, 255, 0.65), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 200, 255, 0.45);
  box-shadow: 0 24px 80px rgba(10, 141, 255, 0.15);
}

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

.advantage-card--accent {
  border-color: rgba(22, 200, 255, 0.3);
  background: linear-gradient(145deg, rgba(22, 200, 255, 0.1), rgba(22, 200, 255, 0.02));
}

.advantage-card--white {
  border-color: rgba(255, 255, 255, 0.08);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.advantage-card--accent .advantage-icon {
  background: rgba(22, 200, 255, 0.1);
  border-color: rgba(22, 200, 255, 0.2);
  color: var(--accent);
}

.advantage-label {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.advantage-card--accent .advantage-label {
  color: var(--accent);
}

.advantage-card--white .advantage-label {
  color: #fff;
}

.advantage-desc {
  font-size: 1rem;
  color: rgba(230, 245, 255, 0.72);
  line-height: 1.6;
}

.advantage-card--accent .advantage-desc {
  color: rgba(230, 245, 255, 0.78);
}

.advantage-card--white .advantage-desc {
  color: rgba(230, 245, 255, 0.68);
}

.advantage-glow-line {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.advantage-card:hover .advantage-glow-line {
  opacity: 1;
}

.empowerment-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  margin-top: 60px;
  align-items: center;
}

#empowerment {
  position: relative;
}

#empowerment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.empowerment-card {
  padding: 50px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.empowerment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  z-index: 0;
}

.empowerment-card > * {
  position: relative;
  z-index: 1;
}

.empowerment-card--accent {
  background: linear-gradient(160deg, rgba(22, 200, 255, 0.08), rgba(22, 200, 255, 0.02), rgba(6, 17, 31, 0.4));
  border: 1px solid rgba(22, 200, 255, 0.15);
  box-shadow: 0 8px 40px rgba(22, 200, 255, 0.06), inset 0 1px 0 rgba(22, 200, 255, 0.1);
}

.empowerment-card--accent::before {
  background: radial-gradient(ellipse at 0% 0%, rgba(22, 200, 255, 0.12) 0%, transparent 60%);
}

.empowerment-card--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(22, 200, 255, 0.12), inset 0 1px 0 rgba(22, 200, 255, 0.15);
  border-color: rgba(22, 200, 255, 0.3);
}

.empowerment-card--white {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02), rgba(6, 17, 31, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.empowerment-card--white::before {
  background: radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.empowerment-card--white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.empowerment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.empowerment-title {
  font-size: 1.8rem;
  color: #fff;
}

.empowerment-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.empowerment-tagline--accent {
  color: var(--accent);
}

.empowerment-tagline--white {
  color: #fff;
}

.empowerment-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empowerment-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.empowerment-list-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.empowerment-check {
  flex-shrink: 0;
}

.empowerment-check--white {
  stroke: #fff;
}

.empowerment-cta {
  width: 100%;
  text-align: center;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: all 0.35s var(--ease);
  height: auto !important;
  min-height: auto !important;
}

.empowerment-cta--accent {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(22, 200, 255, 0.06);
}

.empowerment-cta--accent:hover {
  background: rgba(22, 200, 255, 0.15);
  box-shadow: 0 8px 32px rgba(22, 200, 255, 0.15);
}

.empowerment-cta--white {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.empowerment-cta--white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.empowerment-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.empowerment-hub-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(34, 225, 255, 0.22), rgba(3, 12, 24, 0.92));
  border: 1px solid rgba(34, 225, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 42px rgba(34, 225, 255, 0.22);
}

.empowerment-hub-circle svg {
  width: 48px;
  height: 48px;
}

.empowerment-hub-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(22, 200, 255, 0.12);
  animation: pulse-ring 3s ease-in-out infinite;
}

.empowerment-hub-circle::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(22, 200, 255, 0.06);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}

.empowerment-hub-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.4;
}

.empowerment-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #22E1FF, transparent);
  z-index: -1;
  transform: translateY(-50%);
}

.empowerment-connector-left {
  position: absolute;
  top: 50%;
  left: -40px;
  right: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 225, 255, 0.5), rgba(34, 225, 255, 0.8));
  z-index: -1;
  transform: translateY(-50%);
}

.empowerment-connector-right {
  position: absolute;
  top: 50%;
  left: 50%;
  right: -40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 225, 255, 0.8), rgba(34, 225, 255, 0.5), transparent);
  z-index: -1;
  transform: translateY(-50%);
}

.empowerment-connector-dots {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translateY(-50%);
  z-index: -1;
}

.empowerment-connector-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(22, 200, 255, 0.3);
}

.featured-works-section {
  background: linear-gradient(180deg, #020812, #061424 45%, #020812);
  padding: 100px 0;
}

.works-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.works-hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #050B18;
  border: 1px solid rgba(120, 180, 255, 0.24);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(80, 110, 255, 0.16);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.works-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 180, 255, 0.45);
}

.works-hero-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  height: 100%;
}

.works-hero-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.works-hero-card:hover .works-hero-thumb video {
  transform: scale(1.04);
}

.works-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 55%),
    linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent 50%);
  pointer-events: none;
}

.works-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}

.works-hero-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 225, 255, 0.15);
  border: 1px solid rgba(34, 225, 255, 0.3);
  color: #6EEBFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.works-hero-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.works-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.works-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.works-hero-card:hover .works-hero-play {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.works-featured-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.works-featured-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  flex: 1;
}

.works-featured-item:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 200, 255, 0.35);
  box-shadow: var(--shadow-strong);
}

.works-featured-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02040a;
  position: relative;
}

.works-featured-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.works-featured-item:hover .works-featured-thumb video {
  transform: scale(1.04);
}

.works-featured-meta {
  padding: 16px 20px;
}

.works-featured-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.works-featured-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.works-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.works-secondary-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.works-secondary-item:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 200, 255, 0.3);
  box-shadow: var(--shadow-strong);
}

.works-secondary-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02040a;
  position: relative;
}

.works-secondary-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.works-secondary-item:hover .works-secondary-thumb video {
  transform: scale(1.04);
}

.works-secondary-content {
  padding: 14px 18px;
}

.works-secondary-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.works-secondary-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #34DFFF;
  border: 1px solid rgba(34, 225, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  transition: gap 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}

.view-all-link:hover {
  gap: 12px;
  color: #fff;
  background: rgba(22, 200, 255, 0.1);
  border-color: rgba(34, 225, 255, 0.55);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none;
  }
}

body[data-page="learn-ai"] .bs-hero {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

body[data-page="learn-ai"] .bs-hero-title {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body[data-page="learn-ai"] .bs-hero-desc {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 780px;
  margin-bottom: 48px;
}

body[data-page="learn-ai"] .bs-scenario-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-soft);
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

body[data-page="learn-ai"] .bs-scenario-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

body[data-page="learn-ai"] .bs-path-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line-soft);
  padding: 28px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
}

body[data-page="learn-ai"] .bs-path-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

body[data-page="learn-ai"] .bs-path-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

body[data-page="learn-ai"] .bs-path-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

body[data-page="learn-ai"] .bs-path-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

body[data-page="learn-ai"] .bs-support-tag {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

body[data-page="learn-ai"] .bs-learning-option {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  transition: all 0.35s var(--ease);
}

body[data-page="learn-ai"] .bs-learning-option.highlight {
  border-color: rgba(22, 200, 255, 0.3);
  background: rgba(22, 200, 255, 0.08);
  color: var(--accent);
}

body[data-page="learn-ai"] .bs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body[data-page="learn-ai"] .bs-five-paths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .portfolio-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-featured {
    grid-template-columns: 1fr;
  }

  .works-featured-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .empowerment-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .empowerment-hub {
    flex-direction: row;
    gap: 24px;
    padding: 20px 0;
  }

  .empowerment-connector,
  .empowerment-connector-dots {
    display: none;
  }

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

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .site-header {
    padding: 18px 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 5%;
    left: auto;
    width: min(90%, 360px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 17, 31, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.28s var(--ease);
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .section,
  .journey-section {
    padding: 78px 0;
  }

  .page-hero {
    padding-top: clamp(240px, 38svh, 340px);
  }

  .section-header,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 768px) {
  :root {
    --h2: clamp(1.9rem, 6vw, 2.6rem);
  }

  .container {
    width: min(92%, var(--container));
  }

  .container-wide {
    width: min(92%, var(--container-wide));
  }

  .section,
  .journey-section {
    padding: 62px 0;
  }

  .page-hero {
    padding-top: clamp(240px, 38svh, 340px);
  }

  .featured-works-section {
    padding: 72px 0;
  }

  .hero-section {
    min-height: 100svh;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: clamp(3.6rem, 18vw, 6rem);
    margin-bottom: 48px;
  }

  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-desc:last-of-type {
    margin-bottom: 32px;
  }

  .hero-content .hero-cta-group {
    margin-top: 60px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .home-cases-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .stats-row > div {
    padding: 16px 12px;
  }

  .stats-row > div:nth-child(2) {
    border-right: none;
  }

  .stats-row > div:nth-child(1),
  .stats-row > div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-grid,
  .grid,
  .partner-grid {
    grid-template-columns: 1fr !important;
  }

  .works-featured-side {
    grid-template-columns: 1fr;
  }

  .works-secondary {
    grid-template-columns: 1fr;
  }

  .works-hero-title {
    font-size: 1.2rem;
  }

  .works-hero-content {
    padding: 20px;
  }

  .filter-scroll-wrap {
    margin-bottom: 36px;
    padding: 14px 0;
  }

  .filter-scroll-wrap.is-stuck {
    padding: 10px 0;
  }

  .filter-scroll-wrap .filter-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-scroll-wrap .filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-scroll-wrap .filter-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 38px;
  }

  .filter-scroll-wrap .filter-count {
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }
}

.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-case-card {
  cursor: pointer;
  background: #0A0F1A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.home-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 200, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.home-case-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050B18;
}

.home-case-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.home-case-card:hover .home-case-thumb video {
  transform: scale(1.05);
}

.home-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  pointer-events: none;
}

.home-case-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.home-case-card:hover .home-case-play {
  background: rgba(22, 200, 255, 0.25);
  border-color: rgba(22, 200, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.08);
}

.home-case-play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.home-case-info {
  padding: 12px 14px 14px;
}

.home-case-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-case-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-cases-grid {
    gap: 14px;
  }

  .home-case-info {
    padding: 10px 12px 12px;
  }

  .home-case-title {
    font-size: 0.88rem;
  }

  .home-case-desc {
    font-size: 0.72rem;
  }

  .home-case-play {
    width: 42px;
    height: 42px;
  }

  .home-case-play svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .home-cases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .home-case-card {
    border-radius: 12px;
  }

  .home-case-info {
    padding: 8px 10px 10px;
  }

  .home-case-title {
    font-size: 0.82rem;
  }

  .home-case-desc {
    font-size: 0.68rem;
  }

  .home-case-play {
    width: 38px;
    height: 38px;
    border-width: 1.5px;
  }

  .home-case-play svg {
    width: 16px;
    height: 16px;
  }
}

body[data-page="portfolio"] .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

body[data-page="portfolio"] .portfolio-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-page="portfolio"] .portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.2);
}

body[data-page="portfolio"] .portfolio-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

body[data-page="portfolio"] .portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.4s, transform 0.6s ease;
}

body[data-page="portfolio"] .portfolio-item:hover .portfolio-thumb video {
  opacity: 0.6;
  transform: scale(1.05);
}

body[data-page="portfolio"] .portfolio-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

body[data-page="portfolio"] .portfolio-item:hover .portfolio-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

body[data-page="portfolio"] .portfolio-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) 60%, transparent);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

body[data-page="portfolio"] .portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 8px;
}

body[data-page="portfolio"] .portfolio-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body[data-page="portfolio"] .fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

.filter-btn.active .filter-count {
  background: rgba(22, 200, 255, 0.2);
  color: var(--accent);
}

@media (max-width: 1024px) {
  body[data-page="portfolio"] .portfolio-grid { gap: 30px; }
  body[data-page="portfolio"] .portfolio-title { font-size: 1.25rem; }
}

@media (max-width: 768px) {
  body[data-page="portfolio"] .portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
  body[data-page="portfolio"] .portfolio-item { aspect-ratio: 16/10; }
  body[data-page="portfolio"] .portfolio-meta { padding: 20px; }
  body[data-page="portfolio"] .portfolio-title { font-size: 1.2rem; }
}

@media (max-width: 640px) {
  body[data-page="portfolio"] .portfolio-meta { padding: 16px; }
  body[data-page="portfolio"] .portfolio-title { font-size: 1.05rem; }
  body[data-page="portfolio"] .portfolio-desc { font-size: 0.88rem; -webkit-line-clamp: 1; }

  .works-featured {
    grid-template-columns: 1fr;
  }

  .works-featured-side {
    grid-template-columns: 1fr;
  }

  .works-secondary {
    grid-template-columns: 1fr;
  }

  .works-hero-title {
    font-size: 1.1rem;
  }

  .works-hero-content {
    padding: 16px;
  }

  .works-hero-desc {
    font-size: 0.85rem;
  }

  .service-card,
  .bento-card {
    padding: 24px;
  }

  .filter-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .filter-nav::-webkit-scrollbar {
    display: none;
  }

  .portfolio-play-overlay {
    width: 54px;
    height: 54px;
  }

  body[data-page="learn-ai"] .bs-feature-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="learn-ai"] .bs-path-card {
    min-height: 140px;
  }
}

@media (max-width: 820px) {
  body[data-page="learn-ai"] .bs-five-paths-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .portfolio-play-overlay {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    min-height: 48px;
    padding: 12px 22px;
  }

  #videoModalClose {
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
  }

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

  .empowerment-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
  }

  .empowerment-card {
    padding: 36px 28px;
  }

  .empowerment-title {
    font-size: 1.5rem;
  }

  .empowerment-tagline {
    font-size: 1.05rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-cta-btn {
    width: 100%;
    padding: 16px 28px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .stats-row > div {
    padding: 12px 8px;
  }

  .stats-row > div:nth-child(2) {
    border-right: none;
  }

  .stats-row > div:nth-child(1),
  .stats-row > div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section,
  .journey-section {
    padding: 48px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-highlight {
    white-space: normal;
  }

  .hero-desc {
    padding-left: 24px;
    padding-right: 24px;
  }

  .trust-logo {
    min-width: 100px;
    font-size: 0.85rem;
  }

  .marquee-container {
    border-radius: 14px;
  }

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

  .footer-qr {
    width: 90px;
    height: 90px;
  }

  .stat-badge {
    left: -36px;
    top: 0;
    font-size: 0.65rem;
    padding: 1px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-content { animation: none; }
}

/* Portfolio Page Hero - High Priority */
body[data-page="portfolio"] .page-hero {
  padding-top: 80px !important;
}

@media (max-width: 1024px) {
  body[data-page="portfolio"] .page-hero {
    padding-top: 110px !important;
  }
}

@media (max-width: 768px) {
  body[data-page="portfolio"] .page-hero {
    padding-top: 120px !important;
  }
}