/* ==========================================================
   SpaceTag — Landing Page
   Quiet editorial system (per DESIGN.md / ElevenLabs dialect)
   Off-white canvas · warm near-black ink · EB Garamond 300 display
   Pastel gradient orbs as atmosphere only · ink pill CTAs only
   ========================================================== */

:root {
  /* Surface */
  --canvas:        #f5f5f5;
  --canvas-soft:   #fafafa;
  --surface:       #ffffff;
  --surface-strong:#f0efed;
  --surface-dark:  #0c0a09;
  --surface-dark-elev: #1c1917;

  /* Ink / text */
  --ink:        #0c0a09;
  --primary:    #292524;
  --primary-active: #0c0a09;
  --body:       #4e4e4e;
  --body-strong:#292524;
  --muted:      #777169;
  --muted-soft: #a8a29e;
  --on-primary: #ffffff;
  --on-dark:    #ffffff;
  --on-dark-soft:#a8a29e;

  /* Hairlines */
  --hairline:        #e7e5e4;
  --hairline-soft:   #f0efed;
  --hairline-strong: #d6d3d1;

  /* Atmospheric gradient stops */
  --g-mint:     #a7e5d3;
  --g-peach:    #f4c5a8;
  --g-lavender: #c8b8e0;
  --g-sky:      #a8c8e8;
  --g-rose:     #e8b8c4;

  /* Type */
  --display: "EB Garamond", "Times New Roman", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  --body-font: "Inter", system-ui, sans-serif;

  /* Geometry */
  --pill: 9999px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-xxl: 24px;

  --content: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --section: clamp(64px, 9vw, 96px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 65px; } /* exact sticky nav height: 64px + 1px border-bottom */

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--canvas); }

img, svg { display: block; }

a { color: inherit; }

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

/* ---------- Display / type helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
/* tighten the space after Japanese commas in display headings */
.display .kc { margin-right: -0.4em; letter-spacing: -0.1em; }
.eyebrow {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--muted);
}
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}

/* utility: line break only at phone width (hidden by default) */
.br-sp { display: none; }

/* Hide the inactive language; JS toggles [data-lang] on <html> */
[data-lang="jp"] [lang="en"] { display: none; }
[data-lang="en"] [lang="jp"] { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}
.btn-primary:hover { background: var(--primary-active); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(12,10,9,0.03); }
.btn-sm { min-height: 40px; padding: 10px 18px; font-size: 14px; }
.btn.is-disabled { opacity: .42; pointer-events: none; cursor: default; box-shadow: none; }
.dl-unavailable { display: inline-block; margin-left: 10px; font-size: 12px; color: #9b958d; }

/* ---------- Container ---------- */
.wrap { max-width: var(--content); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.section-soft { background: #ece9e3; }
.section-white { background: var(--surface); }
.section-divider { border-top: 1px solid var(--hairline); }

.section-head { max-width: 1024px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.section-head p { margin-top: 20px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,245,245,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--content); margin: 0 auto;
  height: 64px;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; gap: 24px;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark .glyph {
  width: 32px; height: 32px;
  filter: drop-shadow(0 0px 2px rgba(0,0,0,.1));
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-left: 14px;
}
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  opacity: 0.78;
  transition: opacity 150ms ease;
}
.nav-links a:hover { opacity: 1; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--pill);
  overflow: hidden;
  background: var(--surface);
}
.lang-toggle button {
  font-family: var(--body-font);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 7px 12px;
  border: none; background: none; cursor: pointer;
  color: var(--muted);
  min-height: 34px;
  transition: background 150ms ease, color 150ms ease;
}
.lang-toggle button.active { background: var(--ink); color: var(--on-primary); }

.nav-cta { display: inline-flex; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--hairline-strong);
  border-radius: var(--pill);
  cursor: pointer;
}
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.hamburger span::before { top: -5px; }
.hamburger span::after { top: 5px; }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 64px 0 auto 0; z-index: 55;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: 24px var(--pad) 32px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-weight: 300; font-size: 26px;
  color: var(--ink); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--hairline-soft);
}
.mobile-menu .btn { margin-top: 20px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
  overflow: hidden;
  background: #1a2148 url("assets/wallpaper-hero.jpg") center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,12,30,0.34) 0%, rgba(10,12,30,0.08) 38%, rgba(10,12,30,0.40) 100%);
}
.hero .orb { display: none; }
/* atmosphere orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.orb-mint     { background: radial-gradient(circle at 50% 50%, var(--g-mint), transparent 68%); }
.orb-lavender { background: radial-gradient(circle at 50% 50%, var(--g-lavender), transparent 68%); }
.orb-sky      { background: radial-gradient(circle at 50% 50%, var(--g-sky), transparent 68%); }

.hero-orb-1 { width: 560px; height: 560px; top: -180px; left: -120px; }
.hero-orb-2 { width: 520px; height: 520px; top: -140px; right: -120px; }
.hero-orb-3 { width: 420px; height: 420px; top: 120px; left: 42%; opacity: 0.32; }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--pill);
  margin-bottom: 28px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.hero h1 {
  font-family: var(--display); font-weight: 300; color: #fff;
  font-size: clamp(42px, 8.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 30px rgba(10,12,30,0.35);
}
.hero h1 em { font-style: italic; }
.hero h1 .kern-comma { margin-right: -0.42em; }
.hero h1 .kern-period { margin-right: -0.42em; }
[data-lang="jp"] .hero h1 .lat { font-family: ui-serif, "Times New Roman", serif; font-weight: 400; font-size: 1.02em; letter-spacing: 0; }
.hero-sub { margin: 26px auto 0; max-width: 600px; color: rgba(255,255,255,0.84); }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-cta .btn-primary { background: #fff; color: var(--ink); }
.hero-cta .btn-primary:hover { background: #ece9e6; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.42); }
.hero-cta .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.10); }
.hero-fine { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.64); }

/* ---------- Mission Control mock (hero key visual) ---------- */
.mc {
  position: relative; z-index: 1;
  max-width: 1040px; margin: clamp(48px, 7vw, 80px) auto 0;
  border-radius: var(--r-xxl);
  padding: clamp(20px, 3vw, 38px);
  background: linear-gradient(160deg, rgba(26,30,64,0.62) 0%, rgba(12,11,24,0.72) 72%);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 100px -44px rgba(6,7,20,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.mc-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: clamp(16px, 2.4vw, 26px);
}
.mc-bar .dots { display: flex; gap: 7px; }
.mc-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); display: block; }
.mc-bar .title {
  margin: 0 auto;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); font-weight: 600;
}
.mc-spaces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}
.mc-cell { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.mc-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mc-thumb.active { outline: 2px solid #5b9dff; outline-offset: 2px; }
/* desktop wallpaper (shared OS background) */
.wp-1, .wp-2, .wp-3, .wp-4 { background: #2a3566 url("assets/wallpaper-sm.jpg") center/cover; }
/* faint window chrome inside each */
.mc-win { position: absolute; border-radius: 3px; border: 1px solid rgba(255,255,255,0.12); }
.mc-win.w1 { top: 15%; left: 9%; width: 48%; height: 42%; background: rgba(255,255,255,0.16); }
.mc-win.w2 { top: 27%; left: 46%; width: 44%; height: 40%; background: rgba(12,10,9,0.30); }
/* macOS default Space name — sits BELOW the thumbnail, like real Mission Control */
.mc-osname {
  font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; font-weight: 500;
}
/* SpaceTag label — FULL-WIDTH bar, centered white text, colored bg, SHARP corners */
.mc-label {
  position: relative; z-index: 2;
  width: 100%;
  text-align: center;
  background: #1c1917;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(11px, 1.3vw, 15px);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 8px;
  border-radius: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mc-caption {
  margin-top: clamp(16px, 2.4vw, 24px);
  text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.02em;
}

/* ============ SHOWCASE ============ */
.showcase-rows { margin-top: clamp(48px, 7vw, 80px); }
.showcase-row { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.showcase-row + .showcase-row { margin-top: clamp(56px, 9vw, 104px); }
.showcase-row.flip { grid-template-columns: 1fr 1.08fr; }
.showcase-row.flip .showcase-media { order: 2; }
.showcase-media {
  border-radius: var(--r-xxl);
  padding: clamp(22px, 4vw, 46px);
  display: flex;
}
.bg-mint { background: radial-gradient(120% 130% at 25% 18%, #c9efe2, #eaf6f1 72%); }
.bg-lav  { background: radial-gradient(120% 130% at 75% 18%, #ded2ef, #f1ecf8 72%); }
.bg-sky  { background: radial-gradient(120% 130% at 28% 22%, #cfe1f4, #ebf2fb 72%); }
.showcase-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-xl);
  filter: drop-shadow(0 16px 40px rgba(18,18,45,0.20));
}
.showcase-text .num { font-family: var(--display); font-weight: 300; font-size: 22px; color: var(--muted-soft); display: block; margin-bottom: 14px; }
.showcase-text h3 { font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.02em; line-height: 1.5; }
.showcase-text p { margin-top: 16px; font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; color: var(--body); text-wrap: pretty; max-width: 460px; }

/* ============ PRICING ============ */
.pricing { max-width: 560px; margin: 0 auto; }
.price-card {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px -40px rgba(12,10,9,0.30);
  padding: clamp(32px, 4vw, 46px);
  text-align: center;
  overflow: hidden;
}
.price-card .price-orb {
  display: none;
}
.price-eyebrow { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; position: relative; }
.price-amt { position: relative; font-family: var(--display); font-weight: 300; font-size: clamp(56px, 9vw, 84px); line-height: 1; margin: 18px 0 6px; letter-spacing: -0.03em; color: var(--ink); }
.price-amt sup { font-size: 0.42em; vertical-align: 0.9em; margin-right: 2px; }
.price-note { position: relative; color: var(--muted); font-size: 15px; }
.price-list { position: relative; display: flex; flex-direction: column; gap: 12px; margin: 30px auto; max-width: 320px; text-align: left; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--body-strong); list-style: none; }
.price-list .ck { flex: none; margin-top: 1px; color: #1c9c8e; }
.price-cta { position: relative; display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; }
.price-cta .btn-outline { color: var(--ink); border-color: var(--hairline-strong); }
.price-cta .btn-outline:hover { border-color: var(--ink); background: rgba(12,10,9,0.03); }
.price-fine { position: relative; margin-top: 22px; font-size: 13px; color: var(--muted); }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 20px;
  padding: 26px 4px; font-family: var(--body-font);
  font-size: 16px; font-weight: 400; color: var(--ink);
}
.faq-q .qmark { font-family: var(--display); font-weight: 300; color: var(--muted); font-size: 20px; flex: none; width: 22px; }
.faq-q .plus { margin-left: auto; flex: none; position: relative; width: 16px; height: 16px; transition: transform 260ms ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); }
.faq-q .plus::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; width: 1.5px; height: 16px; transform: translateX(-50%); transition: opacity 260ms ease; }
.faq-item.open .faq-q .plus { transform: rotate(90deg); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 320ms ease; }
.faq-a-inner { padding: 0 46px 28px; font-size: 15.5px; line-height: 1.65; color: var(--body); text-wrap: pretty; }
.faq-a-inner a { color: var(--ink); text-underline-offset: 3px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--hairline); padding-top: 56px; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-brand .wordmark { font-size: 22px; margin-bottom: 14px; }
.footer-brand .wordmark .glyph { width: 30px; height: 30px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.footer-col h3 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--body); text-decoration: none; padding: 6px 0; transition: color 150ms ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline);
  font-size: 13.5px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .showcase-row, .showcase-row.flip { grid-template-columns: 1fr; gap: 28px; }
  .showcase-row.flip .showcase-media { order: 0; }
  .showcase-text { text-align: center; }
  .showcase-text p { margin-inline: auto; }
  .mc-spaces { grid-template-columns: repeat(2, 1fr); }
  .mc-spaces .mc-cell:nth-child(n+3) { display: none; }
  .mc-spaces .mc-cell:has(.active) { order: -1; }
  .hero h1 { font-size: clamp(30px, 5vw, 48px); }
}
@media (max-width: 640px) {
  .br-sp { display: inline; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-col h3 { display: inline-block; font-size: 11px; color: var(--body-strong); background: var(--surface-strong); border: 1px solid var(--hairline); border-radius: var(--pill); padding: 5px 12px; }
  .lang-toggle { order: -1; }
  .faq-a-inner { padding-left: 0; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ============ DOWNLOAD PAGE ============ */
.dl-narrow { max-width: 760px; margin: 0 auto; }
.dl-hero { padding-top: clamp(48px, 8vw, 92px); padding-bottom: clamp(20px, 3vw, 36px); }
.dl-hero .eyebrow { display: block; margin-bottom: 16px; }
.dl-hero h1 { font-size: clamp(34px, 6vw, 36px); }
.dl-lead { margin-top: 18px; }
.dl-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.dl-ver { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 3.2vw, 32px); letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.dl-date { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.dl-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--on-primary); background: var(--ink); border-radius: var(--pill); padding: 3px 9px;
}
.dl-actions { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.dl-actions .icon { width: 14px; height: 14px; }

.dl-section { padding-top: clamp(14px, 3vw, 28px); padding-bottom: clamp(64px, 10vw, 112px); }
.dl-section h2 { font-size: clamp(26px, 3.6vw, 28px); }
.dl-note { margin-top: 16px; color: var(--body); font-size: 15px; line-height: 1.6; text-wrap: pretty; }
.dl-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; list-style: none; }
.dl-release {
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  background: var(--surface);
  padding: clamp(20px, 3vw, 28px);
}
.dl-hl { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; list-style: none; }
.dl-hl li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.dl-hl li::before { content: ""; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); flex: 0 0 auto; }
.dl-details { margin-top: 16px; border-top: 1px solid var(--hairline); padding-top: 18px; display: flex; flex-direction: column; gap: 7px; list-style: none; }
.dl-details li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--body); line-height: 1.55; }
.dl-details li::before { content: ""; margin-top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--muted-soft); flex: 0 0 auto; }
.dl-release .dl-actions { margin-top: 20px; }
