:root {
  --bg: #000;
  --bg-2: #08152f;
  --sheet: #090f1b;
  --sheet-2: #0a1222;
  --text: #f5f7fb;
  --muted: #c7d1df;
  --dim: #9eb0ca;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #6caeff;
  --accent-2: #1f4fff;
  --max: 1160px;
  --brand-gradient: linear-gradient(90deg, #000 0%, #010204 30%, #030913 56%, #08152f 76%, #10295f 100%);
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  --podcast-gradient: linear-gradient(90deg, rgba(7, 9, 14, 0.98) 0%, rgba(8, 14, 28, 0.98) 52%, rgba(12, 34, 78, 0.95) 100%);
  --blue-button: linear-gradient(135deg, #1f4fff, #6caeff);
  --section-gap: clamp(68px, 9vw, 120px);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--brand-gradient);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

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

::selection {
  background: rgba(108, 174, 255, 0.34);
  color: #fff;
}

:focus-visible {
  outline: 2px solid rgba(142, 197, 255, 0.9);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1f4fff, #6caeff, #fff);
  box-shadow: 0 0 18px rgba(108, 174, 255, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2147483000;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--brand-gradient);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 104px;
  padding: 0;
}

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

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: #dce6f4;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(120, 162, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(9, 16, 31, 0.96), rgba(7, 13, 26, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f5f7fb;
}

.menu-panel {
  position: absolute;
  z-index: 2147483001;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 180px;
  overflow: hidden;
  border: 1px solid rgba(120, 162, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 16, 31, 0.98), rgba(7, 13, 26, 0.99));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  padding: 13px 16px;
  color: #dce6f4;
  font-size: 0.92rem;
  font-weight: 850;
}

.menu-action {
  width: 100%;
  padding: 13px 16px;
  border: 0;
  background: transparent;
  color: #dce6f4;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
}

.menu-panel a:hover,
.menu-action:hover {
  background: rgba(108, 174, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.matrix-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 88%),
    radial-gradient(circle, rgba(108, 174, 255, 0.5) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(108, 174, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(108, 174, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 120px 120px, 64px 64px, 64px 64px;
  background-position: 0 0, 18px 12px, 0 0, 0 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 140px) 0;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #8ec5ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5.6vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.bio {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.x-profile-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(520px, 100%);
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #050b16;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.x-profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 174, 255, 0.4);
}

.x-profile-banner {
  position: relative;
  height: 104px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18)),
    url("../assets/chainleak-social/x-profile-banner.jpg") center / cover;
}

.x-profile-banner::after {
  position: absolute;
  right: 14px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.16);
  content: "CHAINLEAK";
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.x-profile-mark {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  opacity: 0.8;
}

.x-profile-body {
  position: relative;
  padding: 0 18px 18px;
}

.x-profile-topline {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.x-profile-avatar {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -41px;
  border: 4px solid #050b16;
  border-radius: 999px;
  background: #050b16;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.x-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.x-follow-btn {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #050b16;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.x-profile-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.x-profile-name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.x-profile-copy strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.x-verified-badge {
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: url("../assets/chainleak-social/twitter-verified-badge.png") center / contain no-repeat;
}

.x-profile-handle {
  display: block;
  margin-top: 4px;
  color: #c7d1df;
  font-weight: 800;
}

.x-profile-bio {
  display: block;
  margin-top: 8px;
  color: #d9e3f2;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.x-profile-bio-line {
  display: block;
}

.x-profile-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: #95a8c4;
  font-weight: 700;
}

.x-profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  color: #95a8c4;
}

.x-profile-stats strong {
  display: inline;
  margin-right: 4px;
  color: #fff;
  font-size: 1rem;
}

.social-card {
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(120, 162, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 16, 31, 0.96), rgba(7, 13, 26, 0.98));
  box-shadow: var(--shadow);
}

.profile-card {
  display: grid;
  width: 100%;
  margin: 0 auto;
  padding: 12px;
  place-items: center;
  border: 1px solid rgba(120, 162, 255, 0.18);
  border-radius: 24px;
  background: #08111f;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #08111f;
}

.hero-actions,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  justify-content: center;
}

.button,
.link-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #0a1222;
  color: #dce6f4;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button.primary {
  color: #fff;
  border-color: transparent;
  background: var(--blue-button);
  box-shadow: 0 14px 34px rgba(36, 92, 255, 0.28);
}

.button:hover,
.link-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(108, 174, 255, 0.36);
  background: #101a30;
}

.button.primary:hover {
  filter: brightness(1.04);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-main,
.visual-float {
  position: absolute;
  display: block;
  width: min(76%, 390px);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.visual-main:hover,
.visual-float:hover {
  border-color: rgba(108, 174, 255, 0.48);
}

.visual-main img,
.visual-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  right: 0;
  top: -88px;
  z-index: 1;
}

.visual-float-one {
  left: 0;
  top: 0;
  width: min(36%, 176px);
  z-index: 2;
}

.visual-float-two {
  right: min(50%, 215px);
  bottom: 74px;
  width: min(36%, 176px);
  transform: translateX(-6px);
  z-index: 3;
}

.visual-float-three {
  right: 0;
  bottom: 86px;
  width: min(36%, 176px);
  z-index: 4;
}

.section {
  padding: var(--section-gap) clamp(16px, 4vw, 48px);
}

.release-card {
  border-top: 1px solid var(--line);
}

.feature-card,
.section-heading,
.release-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 16, 31, 0.96), rgba(7, 13, 26, 0.98));
  border-color: rgba(120, 162, 255, 0.18);
  box-shadow: var(--shadow);
}

.feature-card img,
.release-card summary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: #08111f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card > img,
.release-card summary {
  scroll-margin-top: 88px;
}

.section-number {
  margin-bottom: 22px;
  color: #8ec5ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-copy p,
.section-heading p,
.release-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-copy p,
.release-copy p {
  margin-bottom: 24px;
}

#podcast-title {
  font-size: clamp(2.2rem, 8vw, 4.1rem);
  white-space: nowrap;
}

.feature-copy,
.section-heading,
.release-copy {
  text-align: center;
}

.feature-copy .link-grid,
.release-copy .link-grid {
  justify-content: center;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 12px;
}

.section-heading .section-company {
  margin-top: -6px;
  color: #8fa3bf;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.release-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--podcast-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 48px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: grid;
  place-items: center;
  padding: clamp(46px, 8vw, 86px) 18px;
  border-top: 1px solid var(--line);
  background: #090d13;
}

.site-footer a {
  display: block;
  width: min(460px, 86vw);
}

.site-footer img {
  width: 100%;
  height: auto;
}

.release-card summary {
  position: relative;
  display: block;
  cursor: default;
  list-style: none;
}

.release-card summary::-webkit-details-marker {
  display: none;
}

.release-card summary::after {
  display: none;
  content: none;
}

.release-card[open] {
  grid-column: span 2;
}

.release-card .release-copy,
.release-card[open] .release-copy {
  display: block;
}

.release-copy {
  padding: 22px 22px 28px;
}

@media (max-width: 900px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
  }

  .visual-main {
    width: min(70%, 330px);
    top: -44px;
  }

  .visual-float-one {
    width: min(34%, 160px);
  }

  .visual-float-two {
    right: min(48%, 180px);
    bottom: 56px;
    width: min(34%, 160px);
  }

  .visual-float-three {
    right: 0;
    bottom: -10px;
    width: min(34%, 160px);
  }

  .feature-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .nav {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    gap: 0;
    padding-bottom: 8px;
  }

  .brand {
    width: 96px;
  }

  .x-profile-banner {
    height: 92px;
  }

  .x-profile-body {
    padding: 0 14px 16px;
  }

  .x-profile-avatar {
    width: 74px;
    height: 74px;
    margin-top: -37px;
  }

  .x-profile-copy strong {
    font-size: 1rem;
  }

  .x-profile-name {
    align-items: flex-start;
  }

  .x-verified-badge {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  .x-profile-bio {
    margin-top: 10px;
    color: #eef4fb;
    font-size: 14px;
    line-height: 1.45;
  }

  .x-profile-details {
    display: block;
    line-height: 1.45;
  }

  .x-profile-details span {
    display: block;
    margin-top: 4px;
  }

  .x-profile-stats {
    gap: 8px 14px;
    font-size: 0.94rem;
  }

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

  .visual-float-three {
    right: 14px;
    bottom: 46px;
  }

  .hero-actions,
  .link-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .link-grid a {
    width: 100%;
  }

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

  .release-card[open] {
    grid-column: span 1;
  }
}

/* Premium ChainLeak-aligned polish pass */
html {
  scroll-padding-top: 86px;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, #000 0%, #02050d 32%, #07152f 68%, #0e2a64 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(108, 174, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(108, 174, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(31, 79, 255, 0.14) 64%, transparent 100%);
  background-size: 88px 88px, 88px 88px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.62));
}

.site-header {
  border-bottom-color: rgba(108, 174, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(3, 9, 20, 0.92) 46%, rgba(8, 21, 47, 0.92));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(3, 9, 20, 0.98) 46%, rgba(8, 21, 47, 0.96));
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(108, 174, 255, 0.24));
}

.nav {
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav a:hover {
  border-color: rgba(108, 174, 255, 0.22);
  background: rgba(108, 174, 255, 0.1);
}

.menu-button {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.menu-button:hover,
.menu-button.is-open {
  transform: translateY(-1px);
  border-color: rgba(108, 174, 255, 0.46);
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.9), rgba(108, 174, 255, 0.9));
}

.menu-button span {
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  min-width: 210px;
  padding: 8px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.98), rgba(5, 10, 20, 0.99)),
    linear-gradient(135deg, rgba(108, 174, 255, 0.18), transparent);
}

.menu-panel a {
  border-radius: 14px;
}

.menu-action {
  border-radius: 14px;
}

.hero {
  min-height: calc(100svh - 58px);
}

.matrix-bg {
  opacity: 0.42;
}

.hero-inner {
  min-height: calc(100svh - 58px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 0.82fr);
}

.hero-copy {
  justify-self: center;
  width: 100%;
}

.x-profile-card,
.social-card,
.feature-card,
.release-card {
  position: relative;
  isolation: isolate;
}

.x-profile-card::before,
.social-card::before,
.feature-card::before,
.release-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(108, 174, 255, 0.22), transparent 34%, rgba(255, 255, 255, 0.06) 72%, transparent);
  opacity: 0.75;
}

.x-profile-card,
.social-card,
.feature-card {
  border-color: rgba(120, 162, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.94), rgba(4, 9, 18, 0.98)),
    linear-gradient(135deg, rgba(108, 174, 255, 0.12), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.42);
}

.x-profile-card {
  margin-bottom: 20px;
  border-radius: 28px;
}

.site-divider {
  width: min(980px, calc(100% - 32px));
  height: 1px;
  margin: var(--section-gap) auto;
  background: linear-gradient(90deg, transparent, rgba(108, 174, 255, 0.34), rgba(255, 255, 255, 0.16), rgba(108, 174, 255, 0.34), transparent);
  box-shadow: 0 0 28px rgba(65, 145, 255, 0.18);
}

.site-divider-personal {
  width: min(520px, 100%);
}

.site-divider-section {
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}

.site-divider-section + #podcast {
  padding-top: 0;
}

.x-profile-banner {
  height: 118px;
}

.x-profile-banner::after {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.55rem;
}

.x-follow-btn {
  background: linear-gradient(135deg, #fff, #dce9ff);
}

.social-card {
  gap: 16px;
  border-radius: 28px;
}

.profile-card {
  border-color: rgba(120, 162, 255, 0.24);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(5, 10, 20, 0.98));
}

.profile-photo {
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.button,
.link-grid a {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border-color: rgba(120, 162, 255, 0.18);
  background: linear-gradient(180deg, rgba(12, 25, 48, 0.92), rgba(8, 14, 28, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button::after,
.link-grid a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 160ms ease, transform 420ms ease;
}

.button:hover::after,
.link-grid a:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, #1f4fff 0%, #3d7cff 46%, #8ec5ff 100%);
  box-shadow: 0 16px 34px rgba(36, 92, 255, 0.36);
}

.button.x-profile-link-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #111 0%, #05070b 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.hero-visual {
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.32));
}

.visual-main,
.visual-float {
  border-color: rgba(120, 162, 255, 0.28);
  border-radius: 26px;
  background: #050b16;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 62px rgba(0, 0, 0, 0.42);
}

.visual-main::after,
.visual-float::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 72%, rgba(108, 174, 255, 0.18));
}

.visual-main:hover,
.visual-float:hover {
  transform: translateY(-4px) scale(1.015);
}

.visual-float-two:hover {
  transform: translateX(-6px) translateY(-4px) scale(1.015);
}

.section {
  position: relative;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, calc(100% - 32px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(108, 174, 255, 0.26), transparent);
  transform: translateX(-50%);
}

#podcast::before {
  display: none;
}

.feature-card {
  border-radius: 30px;
}

.feature-card img,
.release-card summary img {
  border-color: rgba(120, 162, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

#podcast-title {
  text-shadow: 0 12px 34px rgba(108, 174, 255, 0.18);
}

.release-grid {
  gap: 22px;
}

.release-card {
  border-color: rgba(120, 162, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.94), rgba(5, 10, 20, 0.98)),
    linear-gradient(135deg, rgba(108, 174, 255, 0.1), transparent 54%);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 174, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 58px rgba(0, 0, 0, 0.38);
}

.release-card summary {
  padding: 12px;
}

.release-card[open] {
  transform: translateY(-4px);
}

.release-copy {
  padding: 10px 22px 28px;
}

.section-number {
  display: none;
}

.site-footer {
  border-top-color: rgba(108, 174, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(3, 9, 20, 0.94), rgba(0, 0, 0, 0.98)),
    linear-gradient(90deg, #000, #07152f);
}

.site-footer img {
  filter: drop-shadow(0 18px 32px rgba(108, 174, 255, 0.2));
}

.site-footer {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #98a8bf;
}

.site-footer a {
  display: inline-flex;
  width: auto;
}

.site-footer-inner {
  display: flex;
  width: min(1120px, 92%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.site-footer .footer-brand {
  display: block;
  width: min(180px, 46vw);
  opacity: 0.94;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-footer .footer-socials a.nav-social-btn {
  display: flex;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.footer-legal {
  display: flex;
  width: 100%;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.7rem;
}

.footer-legal-links a {
  display: inline-flex;
  width: auto;
  color: #eef3fb;
  font-weight: 500;
}

.footer-legal-links a:hover {
  opacity: 0.85;
}

.footer-copyright {
  color: #eef3fb;
  font-size: 0.7rem;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100% - 28px));
  padding: 12px 16px;
  border: 1px solid rgba(120, 162, 255, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.96), rgba(5, 10, 20, 0.98)),
    linear-gradient(135deg, rgba(108, 174, 255, 0.14), transparent);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ChainLeak header control match */
.header-actions {
  gap: 18px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social-btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08111f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-social-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-button {
  display: flex;
  width: 62px;
  height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #07101e;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.menu-button:hover,
.menu-button.is-open {
  background: #0b1527;
  border-color: rgba(255, 255, 255, 0.16);
}

.menu-button span {
  width: 22px;
  height: 2px;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 2147483001;
  top: 96px;
  right: auto;
  left: 50%;
  width: min(760px, 92vw);
  max-height: calc(100vh - 118px);
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(90deg, #000 0%, #010204 30%, #030913 56%, #08152f 76%, #10295f 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -8px);
}

.menu-panel.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  transform: translate(-50%, 0);
}

.menu-panel a,
.menu-action {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #0a1222;
  color: #eef3fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, filter 180ms ease;
}

.menu-panel a:hover,
.menu-action:hover {
  background: #101a30;
  transform: translateY(-1px);
}

.menu-panel a:nth-child(2),
.menu-panel a:nth-child(3),
.menu-action {
  background: linear-gradient(135deg, #1f4fff, #6caeff);
  color: #fff;
  border-color: rgba(72, 132, 255, 0.4);
  box-shadow: 0 10px 24px rgba(36, 92, 255, 0.22);
}

.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-2px);
}

.feature-card,
.release-card,
.social-card,
.x-profile-card {
  view-transition-name: match-element;
}

@supports (animation-timeline: view()) {
  .section::before {
    animation: sectionGlow linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  @keyframes sectionGlow {
    from {
      opacity: 0;
      transform: translateX(-50%) scaleX(0.72);
    }

    to {
      opacity: 1;
      transform: translateX(-50%) scaleX(1);
    }
  }
}

.reveal-ready {
  opacity: 1;
  transform: none;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 52px;
  }

  .hero-copy {
    justify-self: center;
  }

  .visual-main:hover,
  .visual-float:hover,
  .visual-float-two:hover,
  .release-card:hover,
  .release-card[open] {
    transform: none;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    padding: 4px 14px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    gap: 5px;
    border-radius: 15px;
  }

  .menu-button span {
    width: 14px;
    height: 2px;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-socials {
    gap: 8px;
  }

  .nav-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
  }

  .menu-panel {
    top: 61px;
    left: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: none;
    padding: 12px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    transform: translateY(-8px);
  }

  .menu-panel.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transform: translateY(0);
  }

  .menu-panel a,
  .menu-action {
    min-height: 50px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .hero-copy {
    margin-top: -54px;
  }

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

  .x-profile-card,
  .social-card,
  .feature-card,
  .release-card {
    border-radius: 24px;
  }

  .site-divider {
    width: calc(100% - 28px);
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
  }

  .site-divider-personal {
    width: 100%;
  }

  .site-divider-section {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
  }

  .x-profile-banner {
    height: 96px;
  }

  .x-profile-banner::after {
    font-size: 1.1rem;
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-card {
    padding: 14px;
  }

  .release-grid {
    gap: 18px;
  }
}

@media (min-width: 901px) {
  :root {
    --section-gap: 68px;
  }

  body {
    display: block;
  }

  .site-header,
  main {
    width: min(390px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .site-footer-inner {
    width: min(390px, 92%);
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    display: flex;
    min-height: 58px;
    justify-content: space-between;
    padding: 4px 14px;
  }

  .site-header .brand {
    width: 96px;
  }

  .site-header .header-actions {
    justify-self: auto;
  }

  .site-header .nav {
    display: none;
  }

  .site-header .nav-socials {
    gap: 8px;
  }

  .site-header .nav-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
  }

  .site-header .menu-button {
    width: 42px;
    height: 42px;
    gap: 5px;
    border-radius: 15px;
  }

  .site-header .menu-button span {
    width: 14px;
  }

  .site-header .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .menu-panel {
    position: fixed;
    z-index: 2147483001;
    top: 58px;
    left: 0;
    right: 14px;
    bottom: auto;
    width: min(180px, calc(100vw - 28px));
    max-height: calc(100vh - 72px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(90deg, #000 0%, #010204 30%, #030913 56%, #08152f 76%, #10295f 100%);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
  }

  .site-header .menu-panel.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    transform: translateY(0);
  }

  .site-header .menu-panel a,
  .site-header .menu-panel .menu-action {
    min-height: 28px;
    padding: 5px 4px;
    border-radius: 10px;
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .hero-inner {
    display: grid;
    min-height: auto;
    width: min(100% - 28px, var(--max));
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 8px;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    min-height: 350px;
    margin: 0 auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 730px;
    margin-top: 18px;
  }

  .hero-copy .x-profile-card {
    width: min(520px, 100%);
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  #podcast-title {
    font-size: 2.2rem;
  }

  .visual-main {
    top: -44px;
    right: 0;
    width: min(70%, 330px);
  }

  .visual-float-one,
  .visual-float-two,
  .visual-float-three {
    width: min(34%, 160px);
  }

  .visual-float-one {
    top: 0;
    left: 0;
  }

  .visual-float-two {
    right: min(48%, 180px);
    bottom: 56px;
  }

  .visual-float-three {
    right: 14px;
    bottom: 46px;
  }

  .site-divider-section {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 14px;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .release-card[open] {
    grid-column: span 1;
  }

  .hero-actions,
  .link-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .link-grid a {
    width: 100%;
  }

  .x-profile-banner {
    height: 96px;
  }

  .x-profile-body {
    padding: 0 14px 16px;
  }

  .x-profile-avatar {
    width: 74px;
    height: 74px;
    margin-top: -37px;
  }

  .x-profile-copy strong {
    font-size: 1rem;
  }

  .x-profile-name {
    align-items: flex-start;
  }

  .x-verified-badge {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  .x-profile-bio {
    margin-top: 10px;
    color: #eef4fb;
    font-size: 14px;
    line-height: 1.45;
  }

  .x-profile-details {
    display: block;
    line-height: 1.45;
  }

  .x-profile-details span {
    display: block;
    margin-top: 4px;
  }

  .x-profile-stats {
    gap: 8px 14px;
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
