:root{
  --bg:#050308;
  --panel:#0a0714;
  --ink:#ffffff;
  --ink-dim: rgba(255,255,255,0.72);
  --ink-faint: rgba(255,255,255,0.45);
  --magenta:#ff2f92;
  --orange:#ff7a3c;
  --gold:#ffcf6e;
  --cyan:#59d8ff;
  --line: rgba(89,216,255,0.16);
  --line-soft: rgba(255,255,255,0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --gutter: 18px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--ink-dim);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------- page frame ---------- */
.page{
  max-width:1440px;
  margin:0 auto;
  padding:var(--gutter);
  display:flex;
  flex-direction:column;
  gap:var(--gutter);
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 8px;
}

/* ---------- shared card panel ---------- */
.card{
  position:relative;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 12% -12%, rgba(255,122,60,0.12), transparent 55%),
    radial-gradient(circle at 88% 112%, rgba(89,216,255,0.10), transparent 55%),
    radial-gradient(circle at 55% 50%, rgba(255,47,146,0.05), transparent 70%),
    var(--panel);
  overflow:hidden;
}
.card.glow{
  box-shadow:
    0 0 0 1px rgba(89,216,255,0.06),
    0 40px 100px -30px rgba(0,0,0,0.85);
}

/* ---------- grain + scanlines ---------- */
.grain{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:0.45;
  mix-blend-mode:overlay;
  z-index:1;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
}
.scanlines{
  position:absolute; inset:0;
  pointer-events:none;
  z-index:1;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity:0.3;
}

/* ---------- hero background video ---------- */
.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-fade{
  position:absolute; inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    115deg,
    rgba(5,3,8,0.8) 0%,
    rgba(5,3,8,0.4) 42%,
    rgba(5,3,8,0.35) 65%,
    rgba(5,3,8,0.7) 100%
  );
}

/* ---------- synthwave grid floor ---------- */
.synth-grid{
  position:absolute;
  left:-25%; right:-25%; bottom:-4%;
  height:46%;
  background-image:
    linear-gradient(to right, rgba(89,216,255,0.35) 1px, transparent 1px),
    linear-gradient(to top, rgba(89,216,255,0.35) 1px, transparent 1px);
  background-size:64px 40px;
  transform:perspective(300px) rotateX(58deg);
  transform-origin:bottom center;
  -webkit-mask-image:linear-gradient(to top, black 20%, transparent 92%);
  mask-image:linear-gradient(to top, black 20%, transparent 92%);
  opacity:0.55;
  pointer-events:none;
  z-index:0;
}

/* ---------- nav (lives inside the hero card) ---------- */
.nav-row{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 36px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-mark{
  width:28px; height:28px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold), var(--orange) 55%, var(--magenta) 100%);
  box-shadow:0 0 0 1px rgba(89,216,255,0.5), 0 0 14px rgba(255,122,60,0.55);
  flex-shrink:0;
}
.logo-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.logo-text .name{
  font-family:'Michroma', sans-serif;
  font-size:13px;
  letter-spacing:0.1em;
  color:var(--ink);
  line-height:1;
}
.logo-text .tagline{
  font-size:9px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--ink-faint);
  line-height:1;
}

nav.links{
  display:flex;
  align-items:center;
  gap:30px;
}
nav.links a{
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-dim);
  transition:color 0.25s ease;
}
nav.links a:hover{ color:var(--ink); }

.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  color:var(--ink);
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:11px 20px;
  border-radius:999px;
  transition:background 0.25s ease, border-color 0.25s ease;
  white-space:nowrap;
}
.nav-cta:hover{
  background:rgba(89,216,255,0.08);
  border-color:rgba(89,216,255,0.5);
}

.menu-btn{
  display:none;
  background:none;
  border:1px solid var(--line);
  border-radius:10px;
  width:38px; height:38px;
  align-items:center;
  justify-content:center;
  color:var(--ink);
}

@media (max-width:1024px){
  nav.links{ display:none; }
  .nav-cta{ display:none; }
  .menu-btn{ display:flex; }
}

/* mobile drawer */
.drawer{
  position:fixed;
  inset:0;
  z-index:80;
  background:rgba(5,3,8,0.97);
  backdrop-filter:blur(6px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
  transform:translateY(-100%);
  transition:transform 0.4s ease;
}
.drawer.open{ transform:translateY(0); }
.drawer a{
  font-family:'Michroma', sans-serif;
  font-size:20px;
  letter-spacing:0.06em;
  color:var(--ink);
}
.drawer-close{
  position:absolute;
  top:26px; right:24px;
  background:none;
  border:1px solid var(--line);
  border-radius:10px;
  width:40px; height:40px;
  color:var(--ink);
}

/* floating menu button (appears once scrolled past hero) */
.float-menu{
  position:fixed;
  bottom:24px; right:24px;
  z-index:70;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--panel);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity 0.3s ease, transform 0.3s ease;
}
.float-menu.visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* ---------- hero card ---------- */
.hero-card{
  min-height:calc(100vh - (var(--gutter) * 2));
  display:flex;
  flex-direction:column;
}

.hero-body{
  position:relative;
  z-index:3;
  flex:1;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  align-items:center;
  gap:20px;
  padding:0 36px;
}

@media (max-width:900px){
  .hero-body{
    grid-template-columns:1fr;
    padding:0 24px;
    gap:48px;
    text-align:left;
  }
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--cyan);
  margin-bottom:24px;
}
.eyebrow .dash{ color:var(--ink-faint); }
.eyebrow .dot{
  width:6px; height:6px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 8px var(--cyan);
  animation:pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{ opacity:1; }
  50%{ opacity:0.35; }
}

h1.headline{
  font-family:'Michroma', sans-serif;
  font-weight:400;
  line-height:0.94;
  letter-spacing:-0.01em;
  font-size:clamp(2.6rem, 7.5vw, 5.4rem);
  margin-bottom:28px;
}
h1.headline .line{ display:block; }
h1.headline .line.strong{
  color:var(--ink);
  text-shadow:
    0 0 22px rgba(255,255,255,0.16),
    0 0 46px rgba(89,216,255,0.14);
}
h1.headline .line.shiny{
  background-image:linear-gradient(
    120deg,
    var(--magenta) 0%,
    var(--orange) 25%,
    var(--gold) 45%,
    var(--cyan) 65%,
    var(--magenta) 100%
  );
  background-size:220% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:shine 4s linear infinite;
  text-shadow:
    0 0 22px rgba(255,47,146,0.35),
    0 0 46px rgba(255,122,60,0.32),
    0 0 80px rgba(255,207,110,0.22);
}
@keyframes shine{
  0%{ background-position:0% 50%; }
  100%{ background-position:200% 50%; }
}

.subhead{
  max-width:440px;
  font-size:15px;
  line-height:1.65;
  margin-bottom:34px;
}

.cta-row{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(100deg, var(--magenta), var(--orange));
  color:#0a0410;
  font-weight:600;
  font-size:14px;
  padding:14px 26px;
  border-radius:999px;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover{
  box-shadow:0 8px 30px rgba(255,122,60,0.35);
  transform:translateY(-1px);
}
.btn-primary svg{ transition:transform 0.25s ease; }
.btn-primary:hover svg{ transform:translateX(3px); }

.btn-video{
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:none;
  background:none;
  color:var(--ink);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.btn-video .play-circle{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:background 0.25s ease, border-color 0.25s ease;
}
.btn-video:hover .play-circle{
  background:rgba(89,216,255,0.1);
  border-color:rgba(89,216,255,0.5);
}

/* ---------- hero orb (masked sun image) ---------- */
.orb-wrap{
  position:relative;
  width:100%;
  max-width:440px;
  aspect-ratio:1/1;
  margin:0 auto;
}
.orb-wrap::before{
  content:"";
  position:absolute;
  inset:-9px;
  border-radius:50%;
  border:2px solid rgba(89,216,255,1.4);
  box-shadow:
    0 0 10px rgba(89,216,255,0.28),
    0 0 22px rgba(255,47,146,0.12),
    inset 0 0 8px rgba(89,216,255,0.12);
  pointer-events:none;
  animation:neonPulse 4.5s ease-in-out infinite;
}
@keyframes neonPulse{
  0%,100%{ opacity:0.75; }
  50%{ opacity:1; }
}
.orb{
  position:absolute;
  inset:0;
  border-radius:50%;
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 90px 6px rgba(255,122,60,0.28),
    0 0 140px 20px rgba(255,47,146,0.12);
}
.orb img{
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.15);
}

.chip{
  position:absolute;
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(10,7,20,0.65);
  backdrop-filter:blur(10px);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 14px;
  z-index:4;
}
.chip-tag{
  top:-6px;
  right:8%;
  font-size:11px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--ink-dim);
}
.chip-player{
  bottom:2%;
  left:-8%;
  font-size:12px;
  color:var(--ink);
}
@media (max-width:900px){
  .chip-player{ left:2%; }
  .chip-tag{ right:2%; }
}

.eq{
  display:flex;
  align-items:center;
  gap:3px;
  height:16px;
}
.eq span{
  width:3px;
  background:var(--cyan);
  border-radius:2px;
  animation:eqBounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(1){ height:40%; animation-delay:0s; }
.eq span:nth-child(2){ height:100%; animation-delay:0.15s; }
.eq span:nth-child(3){ height:65%; animation-delay:0.3s; }
.eq span:nth-child(4){ height:85%; animation-delay:0.45s; }
@keyframes eqBounce{
  0%,100%{ transform:scaleY(0.4); }
  50%{ transform:scaleY(1); }
}

/* ---------- in-card ticker strip ---------- */
.ticker{
  position:relative;
  z-index:3;
  border-top:1px solid var(--line-soft);
  background:rgba(0,0,0,0.25);
  overflow:hidden;
  white-space:nowrap;
  padding:14px 0;
  margin-top:20px;
}
.ticker-track{
  display:inline-flex;
  align-items:center;
  animation:scrollTicker 34s linear infinite;
}
.ticker-track span{
  font-family:'Michroma', sans-serif;
  font-size:11px;
  letter-spacing:0.08em;
  color:var(--ink-faint);
  padding:0 26px;
}
.ticker-track span.hi{ color:var(--cyan); }
@keyframes scrollTicker{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .ticker-track{ animation:none; }
  h1.headline .shiny{ animation:none; background-position:40% 50%; }
  .eyebrow .dot{ animation:none; }
  .eq span{ animation:none; }
}

/* ---------- content panels (releases / about / blog) ---------- */
.panel{
  padding:80px 36px;
}
@media (max-width:700px){
  .panel{ padding:56px 24px; }
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:48px;
  flex-wrap:wrap;
}
.section-head h2{
  font-family:'Michroma', sans-serif;
  font-size:clamp(1.5rem, 2.8vw, 2.2rem);
  color:var(--ink);
  font-weight:400;
  max-width:480px;
  line-height:1.2;
}
.section-head p{
  max-width:300px;
  font-size:13px;
  line-height:1.6;
}

.release-group{
  margin-bottom:40px;
}
.release-group:last-of-type{
  margin-bottom:0;
}
.group-label{
  font-family:'Michroma', sans-serif;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ink-faint);
  margin-bottom:16px;
}
.group-label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}
.group-label-row .group-label{ margin-bottom:0; }
.group-link{
  font-size:12px;
  color:var(--cyan);
  letter-spacing:0.04em;
  transition:color 0.25s ease;
}
.group-link:hover{ color:var(--ink); }
.release-scroll-wrap{
  position:relative;
}
.release-grid{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 14px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.release-grid::-webkit-scrollbar{ height:6px; }
.release-grid::-webkit-scrollbar-track{ background:transparent; }
.release-grid::-webkit-scrollbar-thumb{ background:var(--line); border-radius:999px; }

.scroll-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  background:var(--panel);
  border:1px solid var(--line);
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  transition:background 0.25s ease, border-color 0.25s ease;
}
.scroll-arrow:hover{
  background:rgba(89,216,255,0.1);
  border-color:rgba(89,216,255,0.5);
}
.scroll-arrow.prev{ left:-14px; }
.scroll-arrow.next{ right:-14px; }
.scroll-arrow[hidden]{ display:none; }
@media (max-width:700px){
  .scroll-arrow{ display:none; }
}

.release-card{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  flex:0 0 auto;
  width:min(280px, 72vw);
  aspect-ratio:1/1;
  display:block;
  border:1px solid var(--line-soft);
  scroll-snap-align:start;
}
.release-card img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.6s ease, filter 0.6s ease;
}
.release-card:hover img{
  transform:scale(1.05);
  filter:saturate(1.15);
}
.release-card .card-info{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:18px;
  background:linear-gradient(to top, rgba(5,3,10,0.92), transparent);
}
.card-info .track{
  font-family:'Michroma', sans-serif;
  color:var(--ink);
  font-size:14px;
  margin-bottom:4px;
}
.card-info .meta{
  font-size:11px;
  color:var(--ink-faint);
}

.section-empty{
  padding:40px 32px;
  text-align:center;
  color:var(--ink-faint);
  font-size:14px;
  border:1px dashed var(--line-soft);
  border-radius:var(--radius-md);
  display:none;
}

/* ---------- about panel ---------- */
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:52px;
  align-items:center;
}
@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; gap:32px; }
}
.about-figure{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
}
.about-figure img{ width:100%; }
.about-copy h3{
  font-family:'Michroma', sans-serif;
  font-size:clamp(1.3rem, 2.4vw, 1.8rem);
  color:var(--ink);
  font-weight:400;
  line-height:1.25;
  margin-bottom:18px;
}
.about-copy p{
  font-size:14px;
  line-height:1.7;
  max-width:460px;
  margin-bottom:20px;
}

/* ---------- footer card ---------- */
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  padding:30px 36px;
}
.footer-links{
  display:flex;
  gap:22px;
  font-size:12px;
  letter-spacing:0.04em;
}
.footer-links a:hover{ color:var(--ink); }
.footer-copy{
  font-size:11px;
  color:var(--ink-faint);
}

/* ---------- video page (facade embeds) ---------- */
.video-scroll-wrap{
  position:relative;
}
.video-list{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 14px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.video-list::-webkit-scrollbar{ height:6px; }
.video-list::-webkit-scrollbar-track{ background:transparent; }
.video-list::-webkit-scrollbar-thumb{ background:var(--line); border-radius:999px; }

.video-card{
  flex:0 0 auto;
  width:min(320px, 80vw);
  scroll-snap-align:start;
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--line-soft);
  background:rgba(255,255,255,0.02);
  transition:border-color 0.25s ease, background 0.25s ease;
}
.video-card:hover{
  border-color:rgba(89,216,255,0.4);
  background:rgba(89,216,255,0.04);
}
.video-thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  overflow:hidden;
  cursor:pointer;
}
.video-thumb img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.5s ease, filter 0.5s ease;
}
.video-card:hover .video-thumb img{
  transform:scale(1.05);
  filter:saturate(1.1);
}
.video-thumb iframe{
  width:100%; height:100%;
  border:0;
  display:block;
}
.video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.video-play span{
  width:54px; height:54px;
  border-radius:50%;
  background:rgba(10,7,20,0.65);
  backdrop-filter:blur(8px);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  transition:background 0.25s ease, transform 0.25s ease;
}
.video-card:hover .video-play span{
  background:linear-gradient(100deg, var(--magenta), var(--orange));
  color:#0a0410;
  transform:scale(1.08);
}
.video-body{ padding:14px 16px; }
.video-title{
  font-family:'Michroma', sans-serif;
  font-size:13px;
  color:var(--ink);
  line-height:1.4;
}
/* ---------- playlist page ---------- */
.playlist-scroll-wrap{
  position:relative;
}
.playlist-list{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 14px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--line) transparent;
}
.playlist-list::-webkit-scrollbar{ height:6px; }
.playlist-list::-webkit-scrollbar-track{ background:transparent; }
.playlist-list::-webkit-scrollbar-thumb{ background:var(--line); border-radius:999px; }

.playlist-card{
  flex:0 0 auto;
  width:min(260px, 72vw);
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line-soft);
  border-radius:var(--radius-md);
  overflow:hidden;
  background:rgba(255,255,255,0.02);
  transition:border-color 0.25s ease, background 0.25s ease, transform 0.4s ease;
}
.playlist-card:hover{
  border-color:rgba(89,216,255,0.4);
  background:rgba(89,216,255,0.04);
}
.playlist-cover{
  width:100%;
  aspect-ratio:1/1;
  background:var(--panel);
}
.playlist-cover img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 0.6s ease, filter 0.6s ease;
}
.playlist-card:hover .playlist-cover img{
  transform:scale(1.05);
  filter:saturate(1.15);
}
.playlist-body{ padding:16px; }
.playlist-name{
  font-family:'Michroma', sans-serif;
  font-size:14px;
  color:var(--ink);
  margin-bottom:6px;
  line-height:1.3;
}
.playlist-desc{
  font-size:12px;
  color:var(--ink-faint);
  line-height:1.5;
}

.curator-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding:10px 18px;
  font-size:12px;
  letter-spacing:0.05em;
}
.curator-badge.active{
  background:linear-gradient(100deg, var(--magenta), var(--orange));
  color:#0a0410;
  font-weight:600;
}
.curator-badge.pending{
  border:1px dashed var(--line);
  color:var(--ink-faint);
}
.curator-badge .badge-dot{
  width:6px; height:6px;
  border-radius:50%;
  background:currentColor;
  opacity:0.6;
}
.blog-hero .hero-body{
  grid-template-columns:1fr;
  padding:60px 36px 40px;
}
.blog-hero h1.headline{
  font-size:clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom:16px;
}
.blog-hero .subhead{ margin-bottom:0; }

/* ---------- blog post list ---------- */
.post-list{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.post-card{
  border:1px solid var(--line-soft);
  border-radius:var(--radius-md);
  padding:30px;
  background:rgba(255,255,255,0.02);
}
.post-date{
  font-family:'Michroma', sans-serif;
  font-size:10px;
  letter-spacing:0.08em;
  color:var(--cyan);
  margin-bottom:12px;
}
.post-title{
  font-family:'Michroma', sans-serif;
  font-weight:400;
  font-size:clamp(1.1rem, 2.2vw, 1.4rem);
  color:var(--ink);
  margin-bottom:10px;
  line-height:1.3;
}
.post-excerpt{
  font-size:13px;
  color:var(--ink-faint);
  margin-bottom:18px;
}
.post-content p{
  font-size:14px;
  line-height:1.7;
  color:var(--ink-dim);
  margin-bottom:12px;
}
.post-content p:last-child{ margin-bottom:0; }
