@font-face {
  font-family: "Tripin Sequel 115";
  src: url("./assets/fonts/Sequel100Black-115.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #07070d;
  --bg-soft: #11111a;
  --text: #f8f8fb;
  --muted: #c2c4d1;
  --line: rgba(255, 255, 255, 0.2);
  --accent-cyan: #4fd8ff;
  --accent-pink: #ff5da8;
  --accent-orange: #ff9a55;
  --accent-violet: #7e57ff;
  --card: rgba(255, 255, 255, 0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-nav: 10px;
  --page-width: min(1240px, calc(100vw - 10vw));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 68% 62%, rgba(126, 87, 255, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 12% 75%, rgba(255, 93, 168, 0.18) 0%, transparent 35%),
    linear-gradient(170deg, #05050a 0%, #090912 44%, #0f0b11 100%);
  color: var(--text);
  font-family: "Exo 2", sans-serif;
  scroll-behavior: smooth;
  background-color: #090912;
}

html {
  background-color: #090912;
}

body {
  min-height: 100dvh;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  overflow-x: clip;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
}

.hero {
  min-height: auto;
  padding: 1.25rem 5vw 0;
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-nav);
  background: rgba(8, 8, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  z-index: 60;
  width: calc(100% - 10vw);
  margin: 1.25rem auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: 26px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.toplinks {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.toplinks a {
  color: var(--muted);
}

.toplinks a:hover {
  color: #fff;
}

.toplinks a.menu-team {
  color: var(--accent-pink);
  font-weight: 700;
}

.toplinks a.menu-team:hover {
  color: var(--accent-orange);
}

.toplinks a.menu-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.95;
}

.toplinks a.menu-mail:hover {
  opacity: 1;
}

.menu-mail-icon {
  width: 16px;
  height: 16px;
  display: block;
  filter: invert(1) brightness(1.1);
}

.menu-mail-label {
  display: none;
}

.platform-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 0.35rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.platform-mark.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.platform-mark.youtube { background: #ff0033; }
.platform-mark.spotify { background: #1db954; color: #041109; }
.platform-mark.contact { background: #6772ff; }

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  margin-top: 5vh;
}

.kicker {
  display: inline-block;
  padding: 0.3rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  color: #f3f3ff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-copy h1 {
  margin: 0.75rem 0 0;
  font-family: "Tripin Sequel 115", "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy p {
  color: var(--muted);
  max-width: 60ch;
  margin-top: 1rem;
}

.hero-cta-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-main {
  background: transparent;
  color: #06060b;
  box-shadow: 0 10px 24px rgba(255, 93, 168, 0.3);
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: -0.5px;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--accent-orange), var(--accent-pink), var(--accent-violet));
  z-index: -1;
  transform: translateZ(0);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.orb {
  position: absolute;
  width: min(80vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--accent-cyan), var(--accent-violet), var(--accent-pink), var(--accent-orange), var(--accent-cyan));
  filter: blur(80px);
  opacity: 0.28;
  animation: spinOrb 18s linear infinite;
}

#logo3d {
  width: min(92vw, 640px);
  height: 420px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 18px;
}

.hero-logo-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  background: transparent;
}

.hero-logo-canvas {
  display: none;
  width: 100%;
  height: 100%;
}

#logo3d.alpha-canvas-mode .hero-logo-video {
  display: none;
}

#logo3d.alpha-canvas-mode .hero-logo-canvas {
  display: block;
}

.floating-star {
  position: absolute;
  font-size: clamp(1.2rem, 2vw, 2rem);
  right: 12%;
  top: 13%;
  color: #fff;
  opacity: 0.9;
  animation: starPulse 2.6s ease-in-out infinite;
  z-index: 3;
}

.ticker {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  padding: 0.78rem 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  animation: tickerMove 24s linear infinite;
}

main {
  width: var(--page-width);
  margin: 0 auto;
  padding: 4rem 0;
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.4rem);
}

.home-page main {
  padding-top: 0;
}

main > * {
  min-width: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 2rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
  min-width: 0;
}

.panel.tinted {
  background: linear-gradient(155deg, rgba(79, 216, 255, 0.12), rgba(126, 87, 255, 0.08));
}

.panel.tinted.warm {
  background: linear-gradient(165deg, rgba(255, 154, 85, 0.18), rgba(255, 93, 168, 0.1));
}

#univers {
  margin-top: clamp(3rem, 8vw, 6rem);
}

#contact-collab {
  margin-top: clamp(1.8rem, 5vw, 3.5rem);
}

#univers .grid,
#contact-collab .story-card {
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
}

.section-title-wrap h2 {
  margin: 0.45rem 0 0;
  font-family: "Tripin Sequel 115", "Archivo Black", sans-serif;
  font-size: clamp(1.7rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0.8rem 0 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--card);
}

.card h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
}

.card a {
  font-weight: 700;
  color: #fff;
}

.embed-wrap {
  position: relative;
  margin-top: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.embed-wrap iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  border-radius: 18px;
  clip-path: inset(0 round 18px);
}

.video-hover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(6, 6, 11, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  z-index: 2;
}

.video-hover-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
  clip-path: polygon(22% 14%, 22% 86%, 86% 50%);
  transform: translate(-50%, -50%);
}

.embed-wrap:not(.spotify):hover .video-hover-play,
.embed-wrap:not(.spotify):focus-within .video-hover-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.embed-wrap:not(.spotify):hover .video-hover-play {
  background: rgba(255, 0, 51, 0.5);
}

.embed-wrap.spotify iframe {
  min-height: 352px;
}

.mini-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.28);
}

.mini-card span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #fff;
  opacity: 0.75;
}

.mini-card h3 {
  margin: 0.35rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.mini-card p {
  color: var(--muted);
  margin: 0;
}

.radio-layout {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.story-card {
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.32);
}

.story-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.story-card .btn {
  margin-top: 0.4rem;
}

.related-talks {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.24);
  min-width: 0;
}

.related-talks-header h3 {
  margin: 0.3rem 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  text-transform: uppercase;
}

.related-talks-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}

.related-talks-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.related-talks-carousel {
  margin-top: 0.9rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 28vw, 280px);
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-top: 0.3rem;
  padding-bottom: 0.4rem;
}

.related-talks-carousel::-webkit-scrollbar {
  height: 8px;
}

.related-talks-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.related-talks-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.related-talk-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.65rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.related-talk-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.related-talk-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.related-talk-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(0.88);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 8, 13, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  z-index: 2;
}

.related-talk-thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: polygon(22% 14%, 22% 86%, 86% 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 3;
}

.related-talk-card:hover .related-talk-thumb::after,
.related-talk-card:hover .related-talk-thumb::before,
.related-talk-card:focus-visible .related-talk-thumb::after,
.related-talk-card:focus-visible .related-talk-thumb::before {
  opacity: 1;
}

.related-talk-card:hover .related-talk-thumb::after,
.related-talk-card:focus-visible .related-talk-thumb::after {
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255, 0, 51, 0.54);
}

.related-talk-card:hover .related-talk-thumb::before,
.related-talk-card:focus-visible .related-talk-thumb::before {
  transform: translate(-50%, -50%);
}

.related-talk-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.related-talk-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 0, 51, 0.14);
  color: #ffd4e3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.related-talk-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.hover-play-surface:hover .video-hover-play,
.hover-play-surface:focus-visible .video-hover-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hover-play-surface:hover .video-hover-play {
  background: rgba(255, 0, 51, 0.5);
}

.backstage-more {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.24);
  min-width: 0;
}

.backstage-carousel-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.backstage-carousel {
  margin-top: 0.9rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(180px, 24vw, 220px);
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-top: 0.3rem;
  padding-bottom: 0.4rem;
}

.backstage-carousel::-webkit-scrollbar {
  height: 8px;
}

.backstage-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.backstage-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.backstage-reel-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 93, 168, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.backstage-reel-card:hover,
.backstage-reel-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(255, 93, 168, 0.24), transparent 44%),
    rgba(255, 255, 255, 0.05);
}

.backstage-reel-thumb {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
}

.backstage-reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.backstage-reel-thumb .video-hover-play {
  width: 58px;
  height: 58px;
}

.backstage-reel-thumb .video-hover-play::before {
  width: 18px;
  height: 18px;
}

.backstage-reel-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.backstage-reel-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.backstage-reel-card p {
  margin: 0;
  color: var(--muted);
}

.media-grid-preview {
  margin-bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.media-grid-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: block;
}

.media-preview-image {
  width: 100%;
  max-width: none;
  margin: 0 0 0.8rem;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.radio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.32);
}

.radio-badge {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.06em;
  margin: 0;
}

.radio-card h3 {
  margin: 0.35rem 0;
  font-family: "Archivo Black", sans-serif;
}

.radio-card p,
.radio-card ul {
  color: var(--muted);
}

.radio-card ul {
  padding-left: 1rem;
}

.radio-wave {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  min-height: 280px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 93, 168, 0.15), rgba(79, 216, 255, 0.08));
}

.radio-wave div {
  width: 12%;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.18));
  animation: equalizer 1.5s ease-in-out infinite;
}

.radio-wave div:nth-child(1) { animation-delay: 0.1s; }
.radio-wave div:nth-child(2) { animation-delay: 0.35s; }
.radio-wave div:nth-child(3) { animation-delay: 0.5s; }
.radio-wave div:nth-child(4) { animation-delay: 0.2s; }
.radio-wave div:nth-child(5) { animation-delay: 0.65s; }

.podcast-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.podcast-note a {
  text-decoration: underline;
  color: #fff;
}

.spotify-cta {
  margin-top: 0.9rem;
}

.podcast-episodes {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.24);
  min-width: 0;
}

.podcast-carousel-note {
  margin-bottom: 0;
}

.podcast-carousel {
  margin-top: 0.9rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(210px, 26vw, 250px);
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-top: 0.3rem;
  padding-bottom: 0.4rem;
}

.podcast-carousel::-webkit-scrollbar {
  height: 8px;
}

.podcast-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.podcast-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.podcast-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(29, 185, 84, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.podcast-card:hover,
.podcast-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(29, 185, 84, 0.24), transparent 44%),
    rgba(255, 255, 255, 0.05);
}

.podcast-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.podcast-card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(29, 185, 84, 0.14);
  color: #b8ffd1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.podcast-card strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.redirect-grid {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.redirect-grid .btn {
  min-width: 140px;
}

.team-page .topbar {
  margin-bottom: 1.25rem;
}

.team-hero {
  margin: 0 auto;
  width: min(1100px, 90vw);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 2.2rem);
  background: linear-gradient(145deg, rgba(255, 93, 168, 0.14), rgba(79, 216, 255, 0.1));
}

.team-hero h1 {
  margin: 0.75rem 0 0;
  font-family: "Tripin Sequel 115", "Archivo Black", sans-serif;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.team-hero p {
  color: var(--muted);
  max-width: 68ch;
}

.team-hero .btn {
  margin-top: 0.8rem;
}

.team-main {
  padding-top: 1.2rem;
}

.team-panel .section-title-wrap {
  margin-bottom: 1rem;
}

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

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

.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 216, 255, 0.24), transparent 70%);
  transform: translate(-30%, -30%);
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
}

.team-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0.65rem 0 0.45rem;
}

.team-page .team-card-top {
  display: none;
}

.team-page .team-card h3 {
  margin-top: 0.9rem;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 6vw, 3.3rem);
  font-weight: 800;
  color: #05050a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(79, 216, 255, 0.9), #ffffff);
  box-shadow: inset 0 -22px 36px rgba(255, 255, 255, 0.14);
}

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

.team-card:nth-child(2n) .team-photo {
  background: linear-gradient(145deg, rgba(255, 93, 168, 0.92), #ffd0e7);
}

.team-card:nth-child(3n) .team-photo {
  background: linear-gradient(145deg, rgba(255, 154, 85, 0.92), #ffe2cf);
}

.team-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.team-card h3 {
  margin: 0.25rem 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
}

.team-role {
  margin: 0.35rem 0 0;
  font-weight: 700;
  color: #fff;
}

.team-bio {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.team-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.team-tags span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.team-social {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.team-social.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.founders-grid .team-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(126, 87, 255, 0.12));
}

.founders-grid .team-photo {
  aspect-ratio: 5 / 6;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-end-actions {
  display: flex;
  justify-content: center;
  padding: 0.2rem 5vw 1rem;
}

.mini-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.mini-nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.legal-page {
  min-height: 100dvh;
}

.legal-topbar {
  width: var(--page-width);
  margin: 1.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 13, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  min-width: 0;
}

.legal-tabs a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.48rem 0.68rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.legal-tabs a:hover,
.legal-tabs a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.legal-page main.legal-main {
  width: min(1080px, calc(100vw - 10vw));
  padding: clamp(2.4rem, 6vw, 5rem) 0 2rem;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.legal-hero {
  max-width: 820px;
}

.legal-hero h1 {
  margin: 0.65rem 0 0;
  font-family: "Tripin Sequel 115", "Archivo Black", sans-serif;
  font-size: clamp(2.25rem, 6.5vw, 5.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.legal-hero p {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.legal-updated {
  display: inline-flex;
  margin: 0.8rem 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.42rem 0.68rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.86rem !important;
  font-weight: 800;
}

.legal-document {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #fff;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section p + p,
.legal-section .legal-list + p {
  margin-top: 0.9rem;
}

.legal-section a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.22rem;
}

.legal-facts {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.legal-facts div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.22);
}

.legal-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.legal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.legal-list li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.65;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
}

.legal-note {
  border-left: 3px solid var(--accent-pink);
  padding-left: 0.85rem;
  color: rgba(255, 255, 255, 0.84) !important;
}

.legal-footer {
  display: flex;
  justify-content: center;
  padding: 0.2rem 5vw 2rem;
}

.footer {
  padding: 1.8rem 5vw 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0.2rem 0;
}

.footer-legal {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.25) rotate(8deg);
    opacity: 0.55;
  }
}

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

@keyframes spinOrb {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes equalizer {
  0%,
  100% {
    height: 28%;
  }
  50% {
    height: 82%;
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .radio-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  #logo3d {
    width: min(95vw, 720px);
    height: 320px;
  }

  .grid.four,
  .mini-grid,
  .founders-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar {
    border-radius: var(--radius-nav);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 10vw);
    margin-top: 1.25rem;
    padding: 0.72rem 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .toplinks {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius-nav);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-origin: top center;
    transform: translateY(-8px) scale(0.985);
    transition:
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 520ms;
    will-change: transform, opacity;
  }

  .topbar.open .toplinks {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    background: rgba(0, 0, 0, 0.95);
    transition:
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .toplinks a {
    padding: 0.2rem 0;
    color: rgba(255, 255, 255, 0.96);
  }

  .toplinks a.menu-team {
    color: var(--accent-pink);
  }

  .toplinks a.menu-mail {
    padding: 0.2rem 0;
  }

  .toplinks a.menu-mail .menu-mail-icon {
    display: none;
  }

  .toplinks a.menu-mail .menu-mail-label {
    display: inline;
  }

  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .legal-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {


  .grid.four,
  .mini-grid,
  .founders-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .embed-wrap iframe {
    min-height: 240px;
  }

  #logo3d {
    height: 270px;
  }

  .team-page .team-panel {
    opacity: 1 !important;
    transform: none !important;
  }

  .team-page .team-card.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .legal-tabs a {
    padding: 0.44rem 0.6rem;
    font-size: 0.78rem;
  }

  .legal-hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.7rem);
  }

  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }
}

@supports (-webkit-touch-callout: none) {
  html,
  body {
    min-height: -webkit-fill-available;
  }
}
