:root {
  --bg: #ffffff;
  --bg2: #f8f8f8;
  --text: #1a1a1a;
  --muted: #666666;
  --brand1: #f69d36;
  --brand2: #f69d36;
  --brand3: #1a1a1a;
  --accent: #f69d36;
  --surface: #f5f5f5;
  --surface2: #fafafa;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

::view-transition-old(root) {
  animation-name: fade-out;
}

::view-transition-new(root) {
  animation-name: fade-in;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

.media-spin {
  position: relative;
}
.media-spin.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}
.media-spin.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--brand1);
  animation: media-spin 0.8s linear infinite;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}
@keyframes media-spin {
  to {
    transform: rotate(360deg);
  }
}

.gif-optimized {
  will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gif-optimized[data-gif-paused="true"] {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .gif-optimized {
    animation-play-state: paused !important;
  }
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lightbox-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  --active-hover: #ffb765;
  background-color: var(--bg);
  color: var(--text);
  font: 18px/1.65 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
  max-width: 100%;
}
.full {
  width: 100%;
}
.section {
  padding: 80px 0;
  border-top: none;
  overflow-x: clip;
  position: relative;
}
.section.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}
.section.hero-minimal {
  background: var(--bg);
  padding: 40px 0 60px;
}
.section.hero-minimal .stack {
  gap: 32px;
}
.hero-text {
  text-align: center;
  padding: 0 20px;
}
.hero-text .tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--muted);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.section.dark {
  background: var(--bg);
}
.tone-light {
  background: var(--bg2);
}
.tone-gray {
  background: var(--surface);
}
.tone-darker {
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}
.section-header.left {
  text-align: left;
  margin-bottom: 32px;
}
.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-weight: 300;
  margin: 0;
  max-width: 700px;
}
.display {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--muted);
  margin: 16px 0 24px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4;
  font-weight: 300;
}
.stack {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.row.center {
  justify-content: center;
}
.mt-8 {
  margin-top: 8px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .badges li {
    flex-direction: column;
    text-align: center;
    border-radius: 14px !important;
  }
}
.gap-2 {
  gap: 12px;
}
.gap-4 {
  gap: 20px;
}

.video-reel {
  width: 100%;
  aspect-ratio: 2.6;
  overflow: hidden;
  position: relative;
}
.video-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-toggle {
  display: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.nav-menu a:not(.btn):hover {
  background: transparent;
  color: var(--brand1);
  opacity: 1;
}
.nav-menu a[aria-current="page"] {
  color: var(--brand1);
  opacity: 1;
}
.nav-menu a[aria-current="page"]:hover {
  color: var(--active-hover);
}
.nav-menu a.btn {
  padding: 10px 18px;
}
@media (max-width: 800px) {
  .nav {
    position: static;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    background: var(--surface);
    border: 2px solid var(--line);
    color: var(--text);
    padding: 8px 10px;
    border-radius: 10px;
    position: relative;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .nav-toggle::before,
  .nav-toggle::after,
  .nav-toggle span {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease,
      bottom 0.25s ease;
    transform-origin: center;
  }
  .nav-toggle::before {
    top: 14px;
  }
  .nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-toggle::after {
    bottom: 14px;
  }
  .nav-toggle[aria-expanded="true"]::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"]::after {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 40px var(--shadow-lg);
    padding: 16px;
    display: flex;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
    max-height: min(70vh, 520px);
    overflow: auto;
  }
  .nav-menu.open {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu li {
    opacity: 1;
    transform: none;
  }
  .nav-menu a {
    font-size: 18px;
    padding: 12px 14px;
    border-radius: 8px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 !important;
}
.hero:not(.sm) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero .display {
  line-height: 1.1;
}
.hero .lead {
  line-height: 1.4;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.8) contrast(1) brightness(1.2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.03),
    transparent 60%
  );
  background-size: 100% 100%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 1;
}
.badges {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  flex-wrap: wrap;
}
.badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
}
.badges li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-lg);
  border-color: var(--brand2);
}
.badges svg {
  width: 18px;
  height: 18px;
  fill: var(--brand2);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text) !important;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: none;
}
.btn:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--text);
  background: var(--text);
  color: var(--bg) !important;
  text-decoration: none !important;
  opacity: 1;
}
.btn-primary {
  background: var(--brand1);
  color: #ffffff !important;
  border: 1px solid var(--brand1);
  box-shadow: none;
  text-shadow: none;
}
.btn-primary:hover {
  box-shadow: none;
  transform: none;
  text-decoration: none !important;
  filter: none;
  background: transparent;
  color: var(--brand1) !important;
}
.btn-secondary {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-secondary:hover {
  box-shadow: none;
  transform: translateY(-1px);
  text-decoration: none !important;
  filter: none;
  background: rgba(246, 157, 54, 0.1);
  border-color: var(--brand1);
  color: var(--text) !important;
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.reveal-inlines,
.reveal h1,
.reveal h2,
.reveal h3,
.reveal p {
  position: relative;
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i, 0) * 40ms);
}
.reveal.in .reveal-word {
  opacity: 1;
  transform: none;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.filters button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: none;
}
.filters button:hover {
  transform: none;
  box-shadow: none;
  background: var(--text);
  color: var(--bg);
}
.filters button.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  box-shadow: none;
}
.gallery {
  display: grid;
  gap: 12px;
}
.gallery:not(.hscroll) {
  grid-template-columns: repeat(12, 1fr);
}

.cream-grid {
  --row: clamp(90px, 9vw, 140px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: var(--row);
  gap: 12px;
}
.cream-grid .work-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  height: 100%;
  animation: slide-up 0.5s ease backwards;
}
.cream-grid .work-card:nth-child(1) {
  animation-delay: 0.05s;
}
.cream-grid .work-card:nth-child(2) {
  animation-delay: 0.1s;
}
.cream-grid .work-card:nth-child(3) {
  animation-delay: 0.15s;
}
.cream-grid .work-card:nth-child(4) {
  animation-delay: 0.2s;
}
.cream-grid .work-card:nth-child(5) {
  animation-delay: 0.25s;
}
.cream-grid .work-card:nth-child(6) {
  animation-delay: 0.3s;
}
.cream-grid .work-card:nth-child(7) {
  animation-delay: 0.35s;
}
.cream-grid .work-card:nth-child(8) {
  animation-delay: 0.4s;
}
.cream-grid .work-card:nth-child(n + 9) {
  animation-delay: 0.45s;
}
.cream-grid .work-card .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.cream-grid .work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cream-grid .tile-xl {
  grid-column: span 6;
  grid-row: span 6;
}
.cream-grid .tile-lg {
  grid-column: span 6;
  grid-row: span 5;
}
.cream-grid .tile-md {
  grid-column: span 4;
  grid-row: span 4;
}
.cream-grid .tile-sm {
  grid-column: span 3;
  grid-row: span 3;
}

@media (max-width: 1024px) {
  .cream-grid {
    --row: clamp(80px, 14vw, 120px);
  }
  .cream-grid .tile-xl {
    grid-column: span 12;
    grid-row: span 6;
  }
  .cream-grid .tile-lg {
    grid-column: span 12;
    grid-row: span 5;
  }
  .cream-grid .tile-md {
    grid-column: span 6;
    grid-row: span 4;
  }
  .cream-grid .tile-sm {
    grid-column: span 6;
    grid-row: span 3;
  }
}
@media (max-width: 640px) {
  .cream-grid {
    --row: clamp(100px, 28vw, 140px);
    gap: 16px;
  }
  .cream-grid .tile-xl,
  .cream-grid .tile-lg,
  .cream-grid .tile-md,
  .cream-grid .tile-sm {
    grid-column: span 12;
    grid-row: span 4;
  }
  .cream-grid .work-card .title {
    font-size: 18px;
    margin-top: 8px;
  }
  .cream-grid .work-card .meta {
    font-size: 13px;
  }
  .cream-grid .work-card .play {
    width: 52px;
    height: 52px;
    padding: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.95);
  }
  .cream-grid .work-card .play svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .cream-grid .work-card .play {
    width: 48px;
    height: 48px;
    padding: 8px;
  }
  .cream-grid .work-card .play svg {
    width: 22px;
    height: 22px;
  }
  .cream-grid .work-card .title {
    font-size: 16px;
    max-width: calc(100% - 60px);
  }
}
.hscroll-wrap {
  position: relative;
  overflow: hidden;
}
.gallery.hscroll {
  grid-auto-flow: column;
  grid-auto-columns: clamp(160px, 28vw, 260px);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.gallery.hscroll::-webkit-scrollbar {
  height: 8px;
}
.gallery.hscroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.gallery-arrow[disabled] {
  opacity: 0.35;
  pointer-events: none;
}
.gallery-arrow.left {
  left: -6px;
}
.gallery-arrow.right {
  right: -6px;
}
.gallery-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.gallery-arrow svg path {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: all 0.3s ease;
  box-shadow: none;
}
.gallery:not(.hscroll) .work-card {
  grid-column: span 4;
}
.gallery.hscroll .work-card {
  scroll-snap-align: start;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--brand1);
}
.work-card .thumb {
  all: unset;
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.work-card:hover img {
  transform: scale(1.06);
}
.work-card .play {
  position: absolute;
  inset: auto 12px 12px auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}
.work-card:hover .play {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
}
.work-card .play svg {
  width: 20px;
  height: 20px;
  fill: #000;
  transition: fill 0.3s ease;
}
.work-card .title {
  margin: 12px 14px 6px;
  font-weight: 600;
  color: var(--text);
}
.work-card .meta {
  margin: 0 14px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .gallery:not(.hscroll) .work-card {
    grid-column: span 6;
  }
}
@media (max-width: 600px) {
  .heading-link {
    right: 0;
    transform: translate(0, -50%);
  }
  .gallery:not(.hscroll) .work-card {
    grid-column: span 12;
  }
}

.video-reels {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.reel-row {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    #000 6%,
    #000 94%,
    rgba(0, 0, 0, 0)
  );
}
.reel-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.reel-item {
  height: clamp(200px, 28vh, 300px);
  aspect-ratio: 16/9;
  width: auto;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  position: relative;
}

.watch-reel-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.watch-reel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translate(-50%, -50%) scale(1.05);
}

.watch-reel-btn svg {
  width: 16px;
  height: 16px;
}
.reel-item img,
.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 8px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: all 0.3s ease;
  box-shadow: none;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: rgba(255, 255, 255, 0.2);
}
.card .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: none;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: rgba(255, 255, 255, 0.2);
}
.plan .price {
  font-size: 40px;
  margin: 0 0 16px;
  font-weight: 300;
  color: var(--text);
}
.plan.highlight {
  outline: none;
  background: rgba(246, 157, 54, 0.12);
  border-color: var(--brand1);
  box-shadow: 0 4px 16px var(--shadow);
}
.plan.highlight:hover {
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--brand1);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.plan ul li {
  padding-left: 24px;
  position: relative;
}
.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 400;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.testimonial {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 8px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: all 0.3s ease;
  box-shadow: none;
  animation: slide-up 0.6s ease backwards;
}
.testimonial:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonial:nth-child(4) {
  animation-delay: 0.4s;
}
.testimonial:nth-child(n + 5) {
  animation-delay: 0.5s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: rgba(255, 255, 255, 0.2);
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial .author {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  display: block;
}
.testimonial .role {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  display: block;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 24px;
    min-width: 280px;
  }
  .testimonial blockquote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .testimonial .author {
    font-size: 14px;
  }
  .testimonial .role {
    font-size: 12px;
  }
}

.resource {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: none;
}
.resource.reveal {
  opacity: 0;
  transform: translateY(12px);
}
.resource.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.resource .title {
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 400;
  transition: color 0.3s ease;
}
.resource .excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.3s ease;
  font-weight: 300;
}
.resource:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--brand1);
}
.resource:hover h4 {
  color: var(--text);
  text-decoration: none;
}
.resource:hover .excerpt {
  color: var(--text);
}

.brand-accent {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

#workGrid.hide-titles .title,
#workGrid.hide-titles .meta {
  display: none !important;
}

.post-body {
  display: grid;
  gap: 16px;
  font-size: 1.05rem;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .post-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }
  .post-toc {
    grid-column: 1;
  }
  .post-body {
    grid-column: 2;
  }
}
.post-toc {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 100px);
  overflow: auto;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px var(--shadow);
}
.post-toc h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}
.post-toc nav {
  display: grid;
  gap: 8px;
}
.post-toc a {
  color: var(--muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.post-toc a:hover {
  color: var(--brand2);
}
.post-toc a.active {
  color: var(--brand2);
  font-weight: 600;
}
.post-body h2 {
  margin-top: 26px;
  margin-bottom: 6px;
}
.post-body h3 {
  margin-top: 18px;
  margin-bottom: 4px;
}
.post-body h2,
.post-body h3 {
  position: relative;
}
.heading-link {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translate(100%, -50%);
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--brand2);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
}
.heading-link:hover {
  background: var(--surface2);
  border-color: var(--brand2);
}
.post-body h2:hover .heading-link,
.post-body h3:hover .heading-link {
  opacity: 1;
}
.heading-link.copied {
  background: linear-gradient(
    135deg,
    rgba(46, 254, 173, 0.2),
    rgba(46, 254, 173, 0.3)
  );
  border-color: rgba(46, 254, 173, 0.5);
}
.post-body p {
  margin: 0;
}
.post-body ul,
.post-body ol {
  padding-left: 22px;
  display: grid;
  gap: 6px;
}
.post-embed {
  margin: 18px 0;
  max-width: 100%;
}
.post-embed .vplayer {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.post-body em.highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 55%,
    rgba(244, 153, 57, 0.28) 0%
  );
  padding: 0 2px;
  border-radius: 4px;
}
.post-body mark {
  background: linear-gradient(
    90deg,
    rgba(242, 122, 42, 0.22),
    rgba(244, 157, 76, 0.22)
  );
  color: var(--text);
  padding: 0 2px;
  border-radius: 4px;
}
.post-nav .post-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-nav .grow {
  flex: 1;
}
.post-nav .btn {
  min-width: 0;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: left;
}
.post-nav .btn .arrow {
  opacity: 0.8;
}
.post-nav .btn .label {
  color: var(--muted);
  font-size: 0.9rem;
}
.post-nav .btn .title {
  grid-column: 1 / -1;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1023px) {
  .post-toc {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form .row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.form label.full {
  grid-column: 1/-1;
}
.form input,
.form textarea,
.form select {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--brand2);
  box-shadow: 0 0 0 3px rgba(246, 157, 54, 0.1);
}
.form .hp {
  display: none;
}
.form-status {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-list a {
  color: var(--brand1);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-list a:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .contact .grid-2 {
    gap: 48px;
  }

  .contact h2 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.15;
  }

  .contact p {
    font-size: clamp(16px, 2vw, 20px);
  }

  .form {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form label {
    margin-bottom: 0;
  }

  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
    padding: 14px 16px;
  }

  .form button[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .contact .grid-2 {
    gap: 32px;
  }

  .contact h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
  }

  .contact p {
    font-size: clamp(16px, 2vw, 20px);
  }

  .contact-list {
    font-size: 14px;
    gap: 10px;
    margin: 16px 0;
  }

  .form {
    gap: 14px;
  }

  .form .row {
    gap: 14px;
  }

  .form label span {
    font-size: 14px;
    font-weight: 600;
  }

  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .form textarea {
    min-height: 120px;
  }

  .form button[type="submit"] {
    padding: 14px;
    border-radius: 10px;
  }
}

.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  transition: opacity 0.3s ease;
  font-size: 14px;
}
.footer-links a:hover {
  opacity: 0.7;
}

.read-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: transparent;
  z-index: 60;
  transform-origin: left center;
}
.read-progress__bar {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 60;
  box-shadow: 0 4px 12px var(--shadow);
}
.back-to-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.back-to-top:hover::before {
  opacity: 1;
}
.back-to-top:hover {
  color: var(--bg);
  border-color: transparent;
  transform: translateY(0) scale(1.05);
  box-shadow: 0 8px 20px var(--shadow);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vplayer {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}
.vplayer video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.vctrl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  transform: translateY(100%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.vp-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: rgba(255, 255, 255, 0.95);
}
.vp-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.vp-overlay svg {
  width: clamp(42px, 8vh, 72px);
  height: clamp(42px, 8vh, 72px);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.6));
}
.vctrl.show,
.vplayer:hover .vctrl {
  transform: translateY(0);
  opacity: 1;
}
.vp-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(242, 122, 42, 0.3);
  color: var(--brand2);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vp-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--brand2);
  transform: scale(1.05);
}
.vp-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.vp-seek,
.vp-vol {
  accent-color: var(--brand2);
}
.vp-seek {
  flex: 1.3;
}
.vp-vol {
  width: 110px;
  height: 24px;
}
.vp-vol::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.vp-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vp-vol::-moz-range-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.vp-vol::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vp-time {
  color: var(--muted);
  font-size: 0.9rem;
}
.vp-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: bottom 0.25s ease;
}
.vplayer.controls-shown .vp-progress,
.vplayer:hover .vp-progress {
  bottom: 50px;
}
.vp-buffered,
.vp-played {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  transition: width 0.2s linear;
}
.vplayer.dragging .vp-played {
  transition: none;
}
.vp-buffered {
  background: rgba(0, 0, 0, 0.25);
}
.vp-played {
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
}
.vp-knob {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  transition: width 0.15s ease, height 0.15s ease, opacity 0.2s ease,
    left 0.2s linear;
  opacity: 0;
  cursor: pointer;
}
.vplayer.dragging .vp-knob {
  transition: width 0.15s ease, height 0.15s ease;
}
.vp-knob-hit {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: auto;
  background: transparent;
}
.vplayer .vp-progress:hover .vp-knob,
.vplayer.controls-shown .vp-knob {
  opacity: 1;
}
.vplayer.dragging .vp-knob {
  width: 16px;
  height: 16px;
  opacity: 1;
}
.vplayer .vp-progress,
.vplayer .vp-knob,
.vplayer .vp-knob-hit {
  cursor: pointer;
}

.vp-vol-meter {
  width: 80px;
  height: 10px;
}
.vp-vol-meter::-webkit-meter-bar {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}
.vp-rate-menu {
  position: absolute;
  right: 60px;
  bottom: 56px;
  background: rgba(20, 20, 20, 0.92);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 6px;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}
.vp-rate-menu.open {
  display: grid;
  gap: 4px;
}
.vp-rate-item {
  background: transparent;
  color: white;
  border: 0;
  padding: 8px 12px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
}
.vp-rate-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.vp-vol-meter::-webkit-meter-optimum-value {
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
  border-radius: 6px;
}
.vp-vol-meter::-webkit-meter-suboptimum-value {
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
  border-radius: 6px;
  opacity: 0.9;
}
.vp-vol-meter::-webkit-meter-even-less-good-value {
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
  border-radius: 6px;
  opacity: 0.75;
}
.muted {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 8px;
  top: 8px;
  transform: translateX(-200%);
  z-index: 100;
}
.skip-link:focus {
  transform: none;
  background: var(--surface);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 2px solid var(--bg);
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader img {
  max-width: 200px;
  height: auto;
}

.vg-player {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.vg-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.vg-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: #fff;
}
.vg-overlay.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.vg-overlay svg {
  width: clamp(46px, 8vh, 74px);
  height: clamp(46px, 8vh, 74px);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.6));
}
.vg-controls {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.vg-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 68px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--brand1);
}
.vg-buffered {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: rgba(255, 255, 255, 0.18);
}
.vg-played {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
  will-change: width;
}
.vg-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: width 0.15s ease, height 0.15s ease, opacity 0.2s ease;
  will-change: left;
  opacity: 0;
}
.vg-hover {
  position: absolute;
  bottom: 100%;
  transform: translate(-50%, -8px);
  left: 0;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}
.vg-hover.show {
  opacity: 1;
  transform: translate(-50%, -10px);
}
.vg-tooltip {
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.vg-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: auto;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.vg-controls.show .vg-progress {
  opacity: 1;
  transform: none;
}
.vg-controls.show .vg-bar {
  opacity: 1;
  transform: none;
}
.vg-controls.show .vg-handle {
  opacity: 1;
}
.vg-left,
.vg-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}
.vg-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
}
.vg-btn:active {
  transform: translateY(0);
}
.vg-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.vg-time {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.vg-pop {
  position: absolute;
  bottom: 44px;
  left: 6px;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease, visibility 0.18s ease;
}
.vg-pop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.vg-volwrap {
  position: relative;
}
.vg-vol {
  -webkit-appearance: none;
  appearance: none;
  width: 120px;
  height: 28px;
  background: transparent;
  transform: rotate(-90deg);
}
.vg-vol::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.vg-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vg-vol::-moz-range-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.vg-vol::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vg-menuwrap {
  position: relative;
}
.vg-speed-pop {
  left: auto;
  right: 0;
  bottom: 44px;
}
.vg-pop.vg-speed-pop {
  transform-origin: bottom right;
}
.vg-speed-pop .vg-item {
  display: block;
  width: 160px;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.vg-speed-pop .vg-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.vg-btn.active {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.35);
}
.vg-player.theater {
  border-radius: 10px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .vg-overlay svg {
    width: 60px;
    height: 60px;
  }
  .vg-progress {
    left: 8px;
    right: 8px;
    bottom: 58px;
    height: 5px;
  }
  .vg-bar {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 6px 8px;
    gap: 6px;
  }
  .vg-btn {
    width: 32px;
    height: 32px;
  }
  .vg-btn svg {
    width: 18px;
    height: 18px;
  }
  .vg-left,
  .vg-right {
    gap: 6px;
  }
  .vg-time {
    font-size: 12px;
  }
  .vg-handle {
    width: 10px;
    height: 10px;
  }
  .vg-tooltip {
    font-size: 11px;
    padding: 3px 6px;
  }
  .vg-pip,
  .vg-theater {
    display: none;
  }
}

@media (max-width: 480px) {
  .vg-bar {
    padding: 5px 6px;
    gap: 4px;
  }
  .vg-btn {
    width: 28px;
    height: 28px;
  }
  .vg-btn svg {
    width: 16px;
    height: 16px;
  }
  .vg-left,
  .vg-right {
    gap: 4px;
  }
  .vg-time {
    font-size: 11px;
  }
  .vg-volwrap {
    display: none;
  }
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: none;
}
.team-photo:hover {
  outline: none;
}

@media (max-width: 600px) {
  .team-photo {
    aspect-ratio: 1 / 1;
  }
}

#teamGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 32px;
}

@media (max-width: 900px) {
  #teamGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  #teamGrid .card {
    padding: 20px;
  }
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a.social {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--line);
  color: var(--text);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.social-links a.social:hover {
  transform: translateY(-3px);
  border-color: var(--brand2);
  box-shadow: 0 8px 22px var(--shadow-lg);
  background: var(--surface2);
}
.social-links a.social svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social-links .sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .site-footer .grid-3 {
    text-align: center;
    gap: 40px;
  }
  .site-footer .brand {
    justify-content: center;
  }
  .site-footer .social-links {
    justify-content: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
