@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  --background: #09080d;
  --surface: rgba(17, 14, 24, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --accent-a: #546fff;
  --accent-b: #9855eb;
  --accent-c: #ff58b1;
  --page-width: min(904px, calc(100vw - 40px));
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(84, 111, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 80% 60%, rgba(255, 88, 177, 0.11), transparent 32rem),
    var(--background);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(520px, calc(100vw - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.topbar__brand,
.topbar__counter {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-c));
  box-shadow: 0 0 20px rgba(255, 88, 177, 0.65);
}

.topbar__counter #currentPage {
  color: var(--text);
}

.topbar__divider {
  color: rgba(255, 255, 255, 0.28);
}

.media-kit {
  width: 100%;
}

.page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 88px 20px 40px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.artboard {
  position: relative;
  width: var(--page-width);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b), var(--accent-c));
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  isolation: isolate;
}

.artboard::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.artboard img {
  width: 100%;
  height: auto;
}

.page-nav {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.page-nav__button {
  display: grid;
  width: 38px;
  height: 38px;
  cursor: pointer;
  place-items: center;
  color: var(--text);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.page-nav__button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.page-nav__button:focus-visible,
.page-nav__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.page-nav__dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-nav__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition:
    height 180ms ease,
    background 180ms ease;
}

.page-nav__dot.is-active {
  height: 20px;
  background: linear-gradient(to bottom, var(--accent-a), var(--accent-c));
}

.noscript-message {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  max-width: 360px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #111;
  background: #fff;
}

@media (max-width: 700px) {
  :root {
    --page-width: 100vw;
    --radius: 0;
  }

  html {
    scroll-snap-type: none;
  }

  body::before,
  .topbar,
  .page-nav {
    display: none;
  }

  .page {
    min-height: auto;
    padding: 0;
  }

  .artboard {
    border: 0;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


.contact-artboard {
  position: relative;
  display: flex;
  width: var(--page-width);
  min-height: calc(var(--page-width) * 1.416);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(79, 111, 255, 0.96) 0%, rgba(151, 83, 231, 0.94) 52%, rgba(255, 87, 176, 0.96) 100%);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.contact-artboard::before {
  position: absolute;
  inset: -15%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 80, 97, 0.88), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(138, 64, 255, 0.92), transparent 38%),
    radial-gradient(circle at 52% 78%, rgba(76, 111, 255, 0.82), transparent 42%);
  filter: blur(18px);
}

.contact-artboard::after {
  position: absolute;
  right: -8%;
  bottom: 18%;
  z-index: -1;
  width: 54%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.035),
    0 0 0 84px rgba(255, 255, 255, 0.025);
}

.contact-artboard__eyebrow {
  align-self: flex-start;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.72rem, 1.4vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.contact-artboard h2 {
  max-width: 720px;
  margin: clamp(36px, 7vw, 84px) 0 24px;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(4.3rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.contact-email {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-bottom: clamp(36px, 7vw, 72px);
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 0.28em;
}

.contact-email:hover {
  text-decoration: underline;
}

.social-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.social-card {
  min-height: 160px;
  padding: clamp(20px, 3.3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: rgba(60, 26, 95, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.social-card__platform {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-card a {
  display: inline-block;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
  text-decoration: none;
}

.social-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.social-card p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.contact-artboard__year {
  position: absolute;
  right: -14px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(5.6rem, 14vw, 10rem);
  line-height: 0.8;
  transform: rotate(-90deg) translateX(35%);
  transform-origin: bottom right;
}

@media (max-width: 700px) {
  .contact-artboard {
    width: 100vw;
    min-height: 141.6vw;
    padding: 38px 24px;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-artboard h2 {
    margin-top: 46px;
    font-size: clamp(4.6rem, 20vw, 7.2rem);
  }

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

  .social-card {
    min-height: 118px;
    border-radius: 20px;
  }

  .contact-artboard__year {
    display: none;
  }
}


.youtube-artboard {
  position: relative;
  width: var(--page-width);
  min-height: calc(var(--page-width) * 1.416);
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 84, 172, 0.85), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(75, 111, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #6c6dff 0%, #a35ce8 52%, #f25aad 100%);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  isolation: isolate;
}

.youtube-artboard::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.youtube-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.youtube-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.youtube-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: #ff0033;
  box-shadow: 0 10px 30px rgba(139, 0, 32, 0.28);
}

.youtube-mark svg {
  width: 18px;
  fill: #fff;
}

.youtube-hero h2 {
  margin: 0;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.youtube-handle {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.youtube-channel-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 13px 17px;
  color: #111;
  border-radius: 999px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.youtube-channel-button:hover {
  box-shadow: 0 14px 32px rgba(35, 18, 52, 0.2);
  transform: translateY(-2px);
}

.youtube-stats {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: end;
  margin: clamp(38px, 6vw, 72px) 0;
  padding: clamp(22px, 3.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(63, 22, 95, 0.18);
  backdrop-filter: blur(18px);
}

.youtube-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.youtube-stat__number {
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.youtube-stat__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.youtube-stats__description {
  max-width: 330px;
  margin: 0 0 2px auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.7vw, 1.08rem);
  line-height: 1.5;
}

.youtube-shelf + .youtube-shelf {
  margin-top: clamp(42px, 6vw, 64px);
}

.youtube-shelf__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.youtube-shelf__kicker {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.youtube-shelf h3 {
  margin: 0;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(58, 20, 86, 0.18);
  font: inherit;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.video-carousel {
  display: grid;
  grid-auto-columns: minmax(260px, 38%);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  scrollbar-width: thin;
}

.video-card {
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 23px;
  background: rgba(47, 16, 72, 0.25);
  box-shadow: 0 18px 46px rgba(46, 10, 62, 0.15);
  text-decoration: none;
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.video-card:hover {
  background: rgba(50, 16, 75, 0.38);
  transform: translateY(-4px);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(24, 10, 37, 0.4);
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.video-card:hover .video-card__media img {
  transform: scale(1.035);
}

.video-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(20, 8, 30, 0.42), transparent 58%);
}

.video-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  color: #111;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 6, 31, 0.25);
  font-size: 0.82rem;
}

.video-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 0, 51, 0.92);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-card__content {
  padding: 18px 18px 20px;
}

.video-card__type {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card h4 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.24;
}

.video-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .youtube-stats {
    grid-template-columns: 1fr 1fr;
  }

  .youtube-stats__description {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 700px) {
  .youtube-artboard {
    width: 100vw;
    min-height: auto;
    padding: 40px 22px 54px;
    border-radius: 0;
    box-shadow: none;
  }

  .youtube-hero {
    flex-direction: column;
  }

  .youtube-hero h2 {
    font-size: clamp(4.4rem, 22vw, 7rem);
  }

  .youtube-channel-button {
    align-self: flex-start;
  }

  .youtube-stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
    margin: 40px 0 52px;
    border-radius: 22px;
  }

  .youtube-stat {
    min-width: 0;
  }

  .youtube-stat__number {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .youtube-shelf__header {
    align-items: center;
  }

  .carousel-controls {
    display: none;
  }

  .video-carousel {
    grid-auto-columns: minmax(250px, 82%);
    margin-right: -22px;
    padding-right: 22px;
  }
}

@media print {
  @page {
    margin: 0;
    size: 904px 1280px;
  }

  html,
  body {
    background: #fff;
  }

  .topbar,
  .page-nav {
    display: none;
  }

  .page {
    min-height: auto;
    padding: 0;
    page-break-after: always;
  }

  .artboard {
    width: 904px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
