:root {
  --bg: #0b0e14;
  --card: #13171f;
  --green: #00ff85;
  --purple: #8a6bbe;
  --text: rgba(255, 255, 255, 0.9);
  --muted: #a0a8b8;
  --line: rgba(244, 246, 249, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --ease-soft: cubic-bezier(0.2, 0, 0, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(19, 23, 31, 0.95);
  border: 1px solid var(--line);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(0, 255, 133, 0.4);
}

/* Nav */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 14, 20, 0.7);
  border-bottom: 1px solid rgba(244, 246, 249, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-shell.is-solid {
  background: #0b0e14;
  border-bottom-color: rgba(244, 246, 249, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: radial-gradient(circle at 30% 30%, var(--green), rgba(0, 255, 133, 0.2));
  box-shadow: 0 0 18px rgba(0, 255, 133, 0.22);
}
.brand__text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 1px;
  width: 0;
  background: var(--green);
  transition: width 0.4s ease;
  opacity: 0.9;
}
@media (hover: hover) {
  .nav__link:hover {
    color: var(--green);
  }
  .nav__link:hover::after {
    width: 100%;
  }
}

.nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav__burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: rgba(19, 23, 31, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

/* Buttons */
.btn {
  border: 1px solid rgba(244, 246, 249, 0.14);
  background: rgba(19, 23, 31, 0.6);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--green);
  color: #0b0e14;
  border-color: rgba(0, 255, 133, 0.4);
  box-shadow: 0 12px 30px rgba(0, 255, 133, 0.12);
}
.btn--ghost {
  background: rgba(19, 23, 31, 0.4);
}
.btn--stroke {
  position: relative;
  overflow: hidden;
}
.btn--stroke::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(11, 14, 20, 0);
  pointer-events: none;
  opacity: 0;
}
@media (hover: hover) {
  .btn:hover {
    border-color: rgba(244, 246, 249, 0.22);
    background: rgba(19, 23, 31, 0.7);
  }
  .btn--primary:hover {
    background: #1aff97;
    border-color: rgba(0, 255, 133, 0.55);
  }
  .btn--stroke:hover::after {
    opacity: 1;
    animation: strokeOnce 1.2s linear 1;
    border-color: rgba(11, 14, 20, 0.8);
  }
}

@keyframes strokeOnce {
  0% {
    clip-path: inset(0 100% 100% 0 round 14px);
  }
  25% {
    clip-path: inset(0 0 100% 0 round 14px);
  }
  50% {
    clip-path: inset(0 0 0 0 round 14px);
  }
  75% {
    clip-path: inset(100% 0 0 0 round 14px);
  }
  100% {
    clip-path: inset(100% 100% 0 0 round 14px);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 54px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: -40%;
  background-image: linear-gradient(rgba(244, 246, 249, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 249, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translate3d(0, 0, 0);
  opacity: 0.18;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 133, 0.12), transparent 52%),
    radial-gradient(circle at 70% 30%, rgba(138, 107, 190, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(11, 14, 20, 0.35), rgba(11, 14, 20, 0.9));
}
.hero__videoFallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.08), transparent 45%),
    radial-gradient(circle at 60% 40%, rgba(138, 107, 190, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(11, 14, 20, 0.4), rgba(11, 14, 20, 1));
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  border-radius: 999px;
  background: rgba(19, 23, 31, 0.55);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}
.dot--green {
  background: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 133, 0.28);
}

.hero__title {
  margin: 18px 0 10px;
  font-size: 56px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.hero__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 60ch;
}
.hl {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.hl--purple {
  color: var(--purple);
}
.hl--laser {
  color: var(--green);
  text-shadow: 0 0 22px rgba(0, 255, 133, 0.2);
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.meta {
  padding: 14px 14px;
  border: 1px solid rgba(244, 246, 249, 0.09);
  border-radius: 16px;
  background: rgba(19, 23, 31, 0.35);
}
.meta__k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 4px;
}
.meta__v {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.laser {
  position: absolute;
  left: -20%;
  top: 120px;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.9), transparent);
  box-shadow: 0 0 26px rgba(0, 255, 133, 0.35);
  opacity: 0;
  transform: translateX(-20%);
  pointer-events: none;
}
.laser.is-run {
  opacity: 1;
  animation: laserSweep 0.9s var(--ease-soft) 1 forwards;
}
@keyframes laserSweep {
  0% {
    transform: translateX(-25%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(25%);
    opacity: 0;
  }
}

/* Sections */
.section {
  padding: 64px 0;
}
.section--tight {
  padding-top: 24px;
}
.section__header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.section__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}
.section__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 75ch;
}

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

/* Cards */
.card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(19, 23, 31, 0.75);
  border: 1px solid rgba(244, 246, 249, 0.08);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  overflow: hidden;
  transition: transform 0.25s var(--ease-soft), border-color 0.25s ease, background 0.25s ease;
}
.card__top {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.card__sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}
.card--prism::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.9), transparent 55%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 246, 249, 0.14);
    background: rgba(19, 23, 31, 0.86);
  }
  .card--prism:hover::before {
    opacity: 0.9;
  }
}

.tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(244, 246, 249, 0.1);
}
.tag--green {
  color: rgba(0, 255, 133, 0.95);
  background: rgba(0, 255, 133, 0.08);
  border-color: rgba(0, 255, 133, 0.22);
}
.tag--purple {
  color: rgba(138, 107, 190, 0.95);
  background: rgba(138, 107, 190, 0.08);
  border-color: rgba(138, 107, 190, 0.22);
}
.tag--slate {
  color: rgba(244, 246, 249, 0.88);
  background: rgba(244, 246, 249, 0.06);
  border-color: rgba(244, 246, 249, 0.14);
}

.badgeShot {
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.08), rgba(138, 107, 190, 0.1));
  padding: 14px;
}
.badgeShot__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badgeShot__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 133, 0.85), rgba(0, 255, 133, 0.05));
  box-shadow: 0 0 24px rgba(0, 255, 133, 0.18);
}
.badgeShot__line {
  font-weight: 600;
  line-height: 1.35;
}
.badgeShot__line--muted {
  margin-top: 2px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.stat {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.08);
  background: rgba(11, 14, 20, 0.4);
}
.stat__k {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 4px;
}
.stat__v {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Audio */
.audioList {
  display: grid;
  gap: 12px;
}
.audioRow {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.08);
  background: rgba(11, 14, 20, 0.4);
}
.audioBtn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(138, 107, 190, 0.35);
  background: rgba(138, 107, 190, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.audioBtn__icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.9);
  margin-left: 2px;
}
.audioRow.is-playing .audioBtn__icon {
  width: 14px;
  height: 14px;
  border: none;
  margin-left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 40%, transparent 40% 60%, rgba(255, 255, 255, 0.92) 60% 100%);
}
.audioRow.is-playing .audioBtn {
  animation: breathe 2s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(138, 107, 190, 0.2);
}
@keyframes breathe {
  0% {
    box-shadow: 0 0 5px rgba(138, 107, 190, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(138, 107, 190, 0.55);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 5px rgba(138, 107, 190, 0.35);
    transform: scale(1);
  }
}
.audioTitle {
  font-weight: 600;
  line-height: 1.3;
}
.wave {
  position: relative;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  overflow: hidden;
}
.wave__bar {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background: repeating-linear-gradient(
    90deg,
    rgba(138, 107, 190, 0.25) 0 6px,
    rgba(138, 107, 190, 0.08) 6px 10px
  );
}
.wave__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(138, 107, 190, 0.95), rgba(0, 255, 133, 0.55));
  mix-blend-mode: screen;
}
.audioTime {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.muted {
  color: rgba(255, 255, 255, 0.55);
}
.hint {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* GIF grid */
.gifGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.gif {
  position: relative;
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: rgba(11, 14, 20, 0.4);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}
.gif__img {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(138, 107, 190, 0.25), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(0, 255, 133, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(244, 246, 249, 0.06), rgba(244, 246, 249, 0.02));
  transform: scale(1);
  transition: transform 0.6s var(--ease-soft), filter 0.6s var(--ease-soft);
}
.gif__img--2 {
  background: radial-gradient(circle at 20% 60%, rgba(0, 255, 133, 0.22), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(138, 107, 190, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(244, 246, 249, 0.06), rgba(244, 246, 249, 0.02));
}
.gif__img--3 {
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 133, 0.14), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(138, 107, 190, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(244, 246, 249, 0.06), rgba(244, 246, 249, 0.02));
}
.gif__cta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 14, 20, 0.55);
  border: 1px solid rgba(244, 246, 249, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .gif:hover .gif__img {
    transform: scale(1.03);
    filter: saturate(0.9) brightness(0.95);
  }
  .gif:hover .gif__cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tabs + Masonry */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tab {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  background: rgba(19, 23, 31, 0.45);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.tab.is-active {
  color: #0b0e14;
  background: var(--green);
  border-color: rgba(0, 255, 133, 0.5);
}

.masonry {
  margin-top: 16px;
  columns: 3;
  column-gap: 14px;
  animation: fadeIn 0.2s ease;
}
.masonry.is-hidden {
  display: none;
}

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

.work {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  break-inside: avoid;
  margin-bottom: 14px;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 249, 0.1);
}
.work__media {
  display: block;
  height: 220px;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 133, 0.14), transparent 58%),
    radial-gradient(circle at 70% 60%, rgba(138, 107, 190, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(244, 246, 249, 0.06), rgba(244, 246, 249, 0.02));
  transform: scale(1);
  transition: transform 0.6s var(--ease-soft);
}
.work__media--voice2 {
  height: 260px;
}
.work__media--voice3 {
  height: 200px;
}
.work__media--acting {
  height: 260px;
}
.work__media--acting2 {
  height: 210px;
}
.work__media--acting3 {
  height: 250px;
}
.work__media--hl {
  height: 230px;
}
.work__media--hl2 {
  height: 260px;
}
.work__media--hl3 {
  height: 210px;
}
.work__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 14px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 14, 20, 0.88));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.work__title {
  font-weight: 600;
  line-height: 1.3;
}
.work__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}
@media (hover: hover) {
  .work:hover .work__overlay {
    opacity: 1;
  }
  .work:hover .work__media {
    transform: scale(1.03);
  }
}

/* Packages */
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price__unit {
  font-weight: 700;
  opacity: 0.9;
}
.price__num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.price__suffix {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}
.list li {
  position: relative;
  padding-left: 16px;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 255, 133, 0.8);
  box-shadow: 0 0 12px rgba(0, 255, 133, 0.2);
}
.fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
}

/* Trust */
.certShot {
  height: 210px;
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: linear-gradient(135deg, rgba(244, 246, 249, 0.06), rgba(138, 107, 190, 0.12));
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}
.timeline__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(0, 255, 133, 0.22);
}
.links {
  margin-top: 14px;
}
.link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(0, 255, 133, 0.85);
  border-bottom: 1px solid rgba(0, 255, 133, 0.25);
}

/* Footer */
.footer {
  padding-top: 64px;
  border-top: 1px solid rgba(244, 246, 249, 0.08);
  background: linear-gradient(180deg, rgba(19, 23, 31, 0.25), rgba(11, 14, 20, 1));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__title {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer__desc {
  margin: 10px 0 12px;
  color: rgba(255, 255, 255, 0.7);
}
.qrCard {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: rgba(19, 23, 31, 0.55);
}
.qrCard__title {
  font-weight: 700;
}
.qrCard__sub {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.qr {
  height: 180px;
  border-radius: 14px;
  margin: 14px 0 12px;
  border: 1px dashed rgba(244, 246, 249, 0.18);
  background: repeating-linear-gradient(
      90deg,
      rgba(244, 246, 249, 0.08) 0 10px,
      rgba(244, 246, 249, 0.02) 10px 20px
    ),
    linear-gradient(135deg, rgba(0, 255, 133, 0.08), rgba(138, 107, 190, 0.08));
}
.footer__cta {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: rgba(19, 23, 31, 0.55);
}
.footer__ctaTitle {
  font-weight: 700;
  line-height: 1.35;
}
.footer__ctaSub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-bottom: 12px;
}
.footer__bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(244, 246, 249, 0.08);
}
.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.modal.is-open {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.72);
}
.modal__panel {
  position: relative;
  width: min(720px, calc(100% - 26px));
  margin: 60px auto;
  border-radius: 18px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  background: rgba(19, 23, 31, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modal__panel--wide {
  width: min(960px, calc(100% - 26px));
}
.modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(244, 246, 249, 0.08);
}
.modal__title {
  font-weight: 700;
}
.modal__sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.iconBtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(244, 246, 249, 0.1);
  background: rgba(11, 14, 20, 0.5);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.form {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
}
.field__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.field__input {
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  padding: 12px 12px;
  background: rgba(11, 14, 20, 0.45);
  outline: none;
}
.field__input:focus {
  border-color: rgba(0, 255, 133, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 255, 133, 0.08);
}
.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(244, 246, 249, 0.08);
  padding-top: 12px;
}

.qrBig {
  height: 420px;
  margin: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(244, 246, 249, 0.18);
  background: repeating-linear-gradient(
      0deg,
      rgba(244, 246, 249, 0.07) 0 10px,
      rgba(244, 246, 249, 0.02) 10px 20px
    ),
    radial-gradient(circle at 30% 30%, rgba(0, 255, 133, 0.12), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(138, 107, 190, 0.12), transparent 55%);
}

.scheduleBox {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.scheduleBox__line {
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  background: rgba(11, 14, 20, 0.45);
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.lightboxBody {
  padding: 16px;
}
.lightboxMedia {
  height: 420px;
  border-radius: 16px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  background: radial-gradient(circle at 25% 25%, rgba(0, 255, 133, 0.14), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(138, 107, 190, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(244, 246, 249, 0.06), rgba(244, 246, 249, 0.02));
}
.lightboxNote {
  margin-top: 10px;
  font-size: 12px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(244, 246, 249, 0.12);
  background: rgba(19, 23, 31, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .masonry {
    columns: 2;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }
  .hero {
    padding-top: 86px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .masonry {
    columns: 1;
  }
  .gifGrid {
    grid-template-columns: 1fr;
  }
  .lightboxMedia {
    height: 260px;
  }
  .qrBig {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

