:root{
  --bg:#060811;
  --bg-soft:#0b1020;
  --panel:rgba(13,19,37,.72);
  --panel-strong:rgba(16,25,48,.88);
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.18);
  --text:#eef5ff;
  --muted:#9fb0d0;
  --accent:#72ffd2;
  --accent-2:#8b5cff;
  --accent-3:#7dc6ff;
  --danger:#ff6b7f;
  --warning:#ffcb6b;
  --success:#69f0ae;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --max:1240px;
  --nav-h:86px;
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(114,255,210,.18), transparent 26%),
    radial-gradient(circle at 80% 15%, rgba(139,92,255,.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(125,198,255,.12), transparent 35%),
    linear-gradient(180deg, #060811 0%, #080d18 40%, #05070f 100%);
  min-height:100vh;
  overflow-x:hidden;
}

body::before,
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
}

body::before{
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity:.28;
}

body::after{
  background:
    radial-gradient(circle at 15% 20%, rgba(114,255,210,.13), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(139,92,255,.10), transparent 16%),
    radial-gradient(circle at 50% 72%, rgba(125,198,255,.08), transparent 20%);
  animation: glowFloat 12s ease-in-out infinite alternate;
  opacity:.95;
}

a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
img{max-width:100%;display:block}

.site-shell{position:relative;z-index:1}
.container{width:min(var(--max),calc(100% - 32px));margin-inline:auto}
.section{padding:28px 0}
.section-lg{padding:72px 0}
.section-title{
  font-size:clamp(1.8rem,3vw,3rem);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.04em;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:820px;
  line-height:1.75;
  font-size:1.02rem;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  padding:18px 0;
  backdrop-filter:blur(18px);
  background:linear-gradient(180deg, rgba(5,8,17,.88) 0%, rgba(5,8,17,.62) 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-shell{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:rgba(11,16,32,.62);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:12px 16px 12px 14px;
  box-shadow:0 18px 50px rgba(0,0,0,.24);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-mark{
  position:relative;
  width:54px;
  height:54px;
  border-radius:20px;
  padding:8px;
  background:
    linear-gradient(145deg, rgba(114,255,210,.18), rgba(139,92,255,.18)),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(255,255,255,.02), 0 0 35px rgba(114,255,210,.15);
  overflow:hidden;
  flex-shrink:0;
}
.brand-mark::before{
  content:"";
  position:absolute;
  inset:-24%;
  background:
    conic-gradient(from 90deg, transparent 0 20%, rgba(114,255,210,.4) 30%, transparent 46%, rgba(139,92,255,.45) 60%, transparent 78%, rgba(125,198,255,.3) 90%, transparent 100%);
  animation: spin 14s linear infinite;
}
.brand-mark img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  background:rgba(4,6,12,.8);
}
.brand-copy{min-width:0}
.brand-title{
  margin:0;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-tag{
  margin:4px 0 0;
  font-size:.79rem;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-link{
  color:#dce8ff;
  font-size:.95rem;
  padding:11px 14px;
  border-radius:999px;
  transition:.24s ease;
  border:1px solid transparent;
}
.nav-link:hover,
.nav-link.active{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.08);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}

.page{
  padding-top:20px;
  padding-bottom:60px;
}

.hero{
  position:relative;
  padding:38px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.hero-card,
.panel,
.feature-card,
.metric-card,
.step-card,
.vote-card,
.team-card,
.shop-card,
.info-card,
.article-card,
.accordion-item,
.notice-card,
.cta-strip,
.editor-banner{
  background:linear-gradient(180deg, rgba(14,20,38,.82), rgba(10,14,27,.72));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}
.hero-card{
  padding:34px;
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:auto -12% -30% auto;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(139,92,255,.20), transparent 68%);
  border-radius:999px;
  pointer-events:none;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#d9e8ff;
  font-size:.88rem;
  margin-bottom:16px;
}
.hero-title{
  margin:0;
  font-size:clamp(2.2rem,4.5vw,4.4rem);
  line-height:.97;
  letter-spacing:-.055em;
}
.hero-text{
  margin:20px 0 0;
  max-width:760px;
  font-size:1.06rem;
  color:var(--muted);
  line-height:1.85;
}
.hero-actions,
.inline-actions,
.card-actions,
.vote-actions,
.shop-actions,
.modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.hero-actions{margin-top:28px}
.hero-stats{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.stat-chip{
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.stat-chip strong{
  display:block;
  font-size:1.18rem;
  margin-bottom:6px;
}
.stat-chip span{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

.hero-side{
  display:grid;
  gap:18px;
}
.info-card{
  padding:24px;
}
.info-card h3,
.panel h3,
.feature-card h3,
.metric-card h3,
.step-card h3,
.vote-card h3,
.shop-card h3,
.team-card h3,
.article-card h3,
.notice-card h3{
  margin:0 0 10px;
  font-size:1.08rem;
}
.info-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.info-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.info-row span{
  color:var(--muted);
  font-size:.92rem;
}
.server-ip{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size:1rem;
  word-break:break-all;
}

.button,
.icon-button,
.link-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  border:none;
  transition:.22s ease;
  text-decoration:none;
}
.button{
  min-height:50px;
  padding:0 18px;
  border-radius:16px;
  font-weight:700;
  color:#07111b;
  background:linear-gradient(135deg, var(--accent), #b6fff0);
  box-shadow:0 14px 30px rgba(114,255,210,.18);
}
.button:hover{transform:translateY(-2px); box-shadow:0 18px 38px rgba(114,255,210,.24)}
.button.secondary{
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
}
.button.ghost{
  color:var(--text);
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.button.warning{
  background:linear-gradient(135deg, #ffd36f, #ffb347);
}
.button.danger{
  background:linear-gradient(135deg, #ff7891, #ff5a70);
  color:white;
}
.button.small{
  min-height:40px;
  padding:0 14px;
  border-radius:14px;
  font-size:.92rem;
}
.button.full{width:100%}

.icon-button{
  width:40px;
  height:40px;
  border-radius:14px;
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}
.icon-button:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}

.grid-3,
.grid-4,
.grid-2{
  display:grid;
  gap:18px;
}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.feature-card,
.metric-card,
.step-card,
.vote-card,
.team-card,
.shop-card,
.notice-card,
.article-card{
  padding:24px;
}
.card-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:.76rem;
  color:#d5e4ff;
  margin-bottom:14px;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.muted{color:var(--muted)}
.rich-text{
  color:#dce7fb;
  line-height:1.85;
}
.rich-text p{margin:0 0 16px}
.rich-text h4{
  margin:24px 0 12px;
  font-size:1rem;
  color:#f3f8ff;
}

.cta-strip{
  padding:24px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  margin-top:24px;
}
.cta-strip h3{margin:0 0 8px;font-size:1.18rem}
.cta-strip p{margin:0;color:var(--muted)}

.accordion-list{
  display:grid;
  gap:16px;
  margin-top:26px;
}
.accordion-item{overflow:hidden}
.accordion-header{
  width:100%;
  padding:22px 24px;
  background:transparent;
  border:none;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
}
.accordion-header:hover{background:rgba(255,255,255,.03)}
.accordion-title-wrap{
  display:grid;
  gap:6px;
}
.accordion-title{
  margin:0;
  font-size:1.08rem;
}
.accordion-hint{
  color:var(--muted);
  font-size:.9rem;
}
.accordion-chevron{
  width:38px;
  height:38px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  transition:.25s ease;
  flex-shrink:0;
}
.accordion-item.open .accordion-chevron{transform:rotate(180deg)}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .32s ease;
}
.accordion-body-inner{
  padding:0 24px 22px;
}
.item-list{
  display:grid;
  gap:12px;
  padding-top:8px;
}
.rule-item,
.command-item,
.benefit-item,
.slot-empty,
.info-pill{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.rule-text,
.command-meta{
  display:grid;
  gap:4px;
}
.command-name{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size:.98rem;
  color:#c7fff2;
}
.command-desc,
.rule-text span,
.slot-empty span,
.info-pill span{
  color:var(--muted);
  line-height:1.65;
  font-size:.95rem;
}
.dropdown{
  position:relative;
}
.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:180px;
  padding:8px;
  display:none;
  flex-direction:column;
  gap:6px;
  border-radius:18px;
  background:rgba(8,12,24,.96);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  z-index:20;
}
.dropdown.open .dropdown-menu{display:flex}
.dropdown-menu button{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:none;
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-align:left;
  cursor:pointer;
}
.dropdown-menu button:hover{background:rgba(255,255,255,.08)}

.page-head{
  margin-bottom:20px;
}
.page-kicker{
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:.82rem;
  color:#d7e7ff;
  margin-bottom:14px;
}
.page-head p{
  margin:14px 0 0;
  max-width:860px;
  color:var(--muted);
  line-height:1.8;
}

.search-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.input,
.textarea,
.select{
  width:100%;
  min-height:50px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  padding:0 16px;
  outline:none;
}
.textarea{
  min-height:180px;
  padding:14px 16px;
  resize:vertical;
}
.input::placeholder,
.textarea::placeholder{color:#96a8c9}

.article-layout{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:18px;
  margin-top:28px;
}
.article-nav{
  position:sticky;
  top:110px;
  height:max-content;
  padding:20px;
}
.article-nav-list{
  display:grid;
  gap:10px;
}
.article-link{
  display:block;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  transition:.2s ease;
}
.article-link:hover,
.article-link.active{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.10);
}
.article-link strong{
  display:block;
  margin-bottom:6px;
  font-size:.97rem;
}
.article-link span{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.55;
}
.article-stack{
  display:grid;
  gap:18px;
}
.article-sections{
  display:grid;
  gap:18px;
  margin-top:18px;
}
.toc{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.toc a{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#d9e5ff;
  font-size:.88rem;
}

.team-group{
  display:grid;
  gap:18px;
  margin-top:18px;
}
.team-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.team-head{
  width:88px;
  height:88px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg, rgba(114,255,210,.18), rgba(139,92,255,.18));
  display:grid;
  place-items:center;
  flex-shrink:0;
}
.team-head img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.team-header{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.team-role{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-size:.82rem;
  margin-bottom:10px;
  color:#d8e8ff;
}
.team-name{
  margin:0 0 8px;
  font-size:1.16rem;
}
.team-card p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}
.slot-empty{
  min-height:178px;
  display:grid;
  place-items:center;
  text-align:center;
}
.slot-empty strong{
  display:block;
  margin-bottom:8px;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:24px;
}
.price{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.04em;
  margin:8px 0 12px;
}
.benefit-list{
  display:grid;
  gap:10px;
  margin:18px 0 22px;
}
.benefit-item::before{
  content:"✦";
  color:#b6fff0;
  margin-top:2px;
}
.shop-footnote{
  margin-top:22px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  line-height:1.75;
}

.vote-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}
.vote-card{
  position:relative;
  overflow:hidden;
}
.vote-card::before{
  content:"";
  position:absolute;
  inset:auto -15% -35% auto;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(114,255,210,.22), transparent 72%);
  pointer-events:none;
}
.vote-number{
  display:inline-flex;
  width:46px;
  height:46px;
  border-radius:18px;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:16px;
  font-weight:800;
}
.notice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}

.footer{
  padding:24px 0 42px;
}
.footer-shell{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:18px 22px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.footer-shell p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-link{
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}
.footer-link:hover{background:rgba(255,255,255,.08)}

.owner-indicator{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:80;
  display:none;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(10,16,28,.92);
  border:1px solid rgba(114,255,210,.26);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  max-width:min(320px, calc(100% - 32px));
}
.owner-indicator.show{display:block}
.owner-indicator strong{
  display:block;
  margin-bottom:5px;
}
.owner-indicator span{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.55;
}

.editor-banner{
  display:none;
  padding:18px 20px;
  margin:0 0 20px;
  border-radius:20px;
  border-color:rgba(114,255,210,.24);
}
.editor-banner.show{display:block}
.editor-banner h3{margin:0 0 8px}
.editor-banner p{margin:0;color:var(--muted);line-height:1.7}
.editor-tools{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.plus-row{
  display:flex;
  justify-content:flex-end;
  padding-top:12px;
}
.inline-hint{
  margin-top:10px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.6;
}

.modal-overlay{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(2,4,10,.64);
  backdrop-filter:blur(12px);
}
.modal-overlay.show{display:flex}
.modal{
  width:min(680px,100%);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(12,18,34,.98), rgba(8,12,24,.97));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 80px rgba(0,0,0,.42);
  overflow:hidden;
}
.modal.large{width:min(880px,100%)}
.modal-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  padding:22px 24px 18px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.modal-header h3{
  margin:0 0 8px;
  font-size:1.22rem;
}
.modal-header p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.modal-body{
  padding:22px 24px;
  display:grid;
  gap:16px;
}
.form-field{
  display:grid;
  gap:8px;
}
.form-field label{
  font-weight:700;
  font-size:.95rem;
}
.form-grid{
  display:grid;
  gap:14px;
}
.form-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.close-button{
  width:44px;
  height:44px;
  border-radius:16px;
  border:none;
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.modal-footer{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
  padding:0 24px 24px;
}
.helper-text{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.6;
  margin-top:-4px;
}
.modal-note{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  line-height:1.7;
}

.toast-stack{
  position:fixed;
  top:calc(var(--nav-h) + 14px);
  right:16px;
  z-index:90;
  display:grid;
  gap:10px;
  width:min(360px, calc(100% - 32px));
}
.toast{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(9,13,24,.96);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.3);
  color:var(--text);
}
.toast.success{border-color:rgba(114,255,210,.24)}
.toast.error{border-color:rgba(255,107,127,.24)}
.toast span{
  display:block;
  color:var(--muted);
  margin-top:4px;
  line-height:1.55;
  font-size:.9rem;
}

.hidden{display:none!important}
.center{text-align:center}

@keyframes glowFloat{
  from{transform:translateY(-8px) scale(1)}
  to{transform:translateY(12px) scale(1.03)}
}
@keyframes spin{
  to{transform:rotate(360deg)}
}

@media (max-width:1080px){
  .hero-grid,
  .article-layout,
  .grid-4,
  .grid-3,
  .grid-2,
  .vote-grid,
  .notice-grid,
  .shop-grid,
  .team-row{
    grid-template-columns:1fr 1fr;
  }
  .hero-grid{grid-template-columns:1fr}
  .article-layout{grid-template-columns:1fr}
  .article-nav{position:static}
}

@media (max-width:860px){
  .menu-toggle{display:grid;place-items:center}
  .nav-links{
    position:absolute;
    top:calc(100% + 12px);
    left:16px;
    right:16px;
    display:none;
    padding:12px;
    border-radius:24px;
    background:rgba(9,13,24,.96);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 25px 60px rgba(0,0,0,.32);
  }
  .nav-links.open{display:grid}
  .nav-link{width:100%}
  .footer-shell,
  .cta-strip{flex-direction:column;align-items:flex-start}
  .hero-stats{grid-template-columns:1fr}
}

@media (max-width:640px){
  .container{width:min(var(--max),calc(100% - 22px))}
  .topbar{padding:12px 0}
  .nav-shell{padding:10px 12px}
  .brand-mark{width:48px;height:48px}
  .brand-title{font-size:.94rem}
  .brand-tag{font-size:.75rem}
  .hero-card,
  .panel,
  .feature-card,
  .metric-card,
  .step-card,
  .vote-card,
  .team-card,
  .shop-card,
  .info-card,
  .article-card,
  .accordion-item,
  .notice-card,
  .cta-strip,
  .editor-banner{border-radius:22px}
  .hero-card,
  .feature-card,
  .metric-card,
  .step-card,
  .vote-card,
  .team-card,
  .shop-card,
  .info-card,
  .article-card,
  .notice-card{padding:20px}
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .vote-grid,
  .notice-grid,
  .shop-grid,
  .team-row{grid-template-columns:1fr}
  .accordion-header{padding:18px}
  .accordion-body-inner{padding:0 18px 18px}
  .form-grid.two{grid-template-columns:1fr}
  .team-header{flex-direction:column}
  .team-head{width:74px;height:74px;border-radius:20px}
}

/* =========================
   Legacy Redesign v2
   ========================= */

:root{
  --accent:#33b7ff;
  --accent-soft:#6fd2ff;
  --accent-2:#39a9ff;
  --bg:#030916;
  --bg-soft:#07111f;
  --panel:rgba(7,14,26,.62);
  --panel-strong:rgba(9,18,34,.82);
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.18);
  --text:#eef7ff;
  --muted:#a4b7cf;
  --shadow:0 20px 60px rgba(0,0,0,.22);
  --nav-h:74px;
}

html{background:#020814}
body{
  background:
    radial-gradient(circle at 50% 0%, rgba(55,169,255,.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(48,92,170,.10), transparent 24%),
    linear-gradient(180deg, #030916 0%, #040a14 44%, #07111d 100%);
}
body::before{
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.95), transparent 95%);
  opacity:.35;
}
body::after{
  background:
    radial-gradient(circle at 18% 18%, rgba(50,183,255,.14), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(80,140,255,.09), transparent 18%),
    radial-gradient(circle at 50% 72%, rgba(40,90,170,.12), transparent 24%);
  opacity:1;
}

.container{width:min(1280px,calc(100% - 44px))}
.topbar{
  padding:14px 0;
  background:linear-gradient(180deg, rgba(2,8,18,.74) 0%, rgba(2,8,18,.34) 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-shell{
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
.brand{gap:12px}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  padding:5px;
  background:rgba(12,23,42,.65);
  border:1px solid rgba(80,170,255,.16);
  box-shadow:0 0 30px rgba(51,183,255,.10);
}
.brand-mark::before{
  background:conic-gradient(from 90deg, transparent 0 32%, rgba(51,183,255,.38) 46%, transparent 62%, rgba(96,200,255,.22) 82%, transparent 100%);
}
.brand-title{font-size:.98rem; font-weight:800}
.brand-tag{display:none}
.nav-links{gap:2px}
.nav-link{
  padding:10px 12px;
  border-radius:10px;
  font-size:.91rem;
  color:#dfefff;
  opacity:.86;
}
.nav-link:hover,
.nav-link.active{
  background:rgba(255,255,255,.05);
  border-color:transparent;
  box-shadow:none;
  opacity:1;
}
.nav-link.active{color:var(--accent-soft)}
.page{padding-top:32px; padding-bottom:72px}

body[data-page='home'] .page{padding-top:0}
body[data-page='home'] .topbar{
  background:linear-gradient(180deg, rgba(2,8,18,.86) 0%, rgba(2,8,18,.28) 100%);
}

.hero-home{
  position:relative;
  min-height:84vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  padding:0;
}
.hero-home::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(2,8,18,.84) 0%, rgba(2,8,18,.62) 34%, rgba(2,8,18,.48) 52%, rgba(2,8,18,.78) 100%),
    linear-gradient(180deg, rgba(2,8,18,.42) 0%, rgba(2,8,18,.14) 28%, rgba(2,8,18,.76) 100%),
    url("hero-reference.png");
  background-size:cover;
  background-position:center center;
  transform:scale(1.03);
}
.hero-home::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:220px;
  background:linear-gradient(180deg, rgba(2,8,18,0), rgba(2,8,18,.94));
}
.hero-grid-home{
  position:relative;
  z-index:1;
  min-height:84vh;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(300px,.88fr);
  gap:48px;
  align-items:end;
  padding:150px 0 82px;
}
.hero-copy,
.hero-side-home{
  position:relative;
  z-index:1;
}
.hero-card{
  padding:0;
  background:none;
  border:none;
  box-shadow:none;
  overflow:visible;
}
.hero-card::before{display:none}
.eyebrow,
.page-kicker,
.card-kicker,
.team-role{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0;
  background:none;
  border:none;
  color:#d6ebff;
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.eyebrow::before,
.page-kicker::before,
.card-kicker::before,
.team-role::before{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(90deg, var(--accent), rgba(255,255,255,.18));
}
.hero-title{
  margin:22px 0 0;
  font-size:clamp(2.8rem,6vw,5.4rem);
  line-height:.93;
  letter-spacing:-.065em;
  text-transform:uppercase;
  max-width:760px;
  text-shadow:0 14px 40px rgba(0,0,0,.28);
}
.hero-ipline{
  margin-top:14px;
  font-size:clamp(1.05rem,2vw,1.5rem);
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-soft);
  text-shadow:0 10px 30px rgba(0,0,0,.35);
  word-break:break-word;
}
.hero-text{
  margin:20px 0 0;
  max-width:600px;
  color:#e4effd;
  line-height:1.78;
  font-size:1rem;
}
.hero-actions{margin-top:28px}
.button{
  min-height:48px;
  padding:0 16px;
  border-radius:8px;
  font-weight:700;
  color:#08111b;
  background:linear-gradient(180deg, #43c1ff, #2399f3);
  box-shadow:0 10px 30px rgba(35,153,243,.22);
}
.button:hover{transform:translateY(-1px)}
.button.secondary,
.button.ghost,
.hero-side-link{
  color:#edf7ff;
  background:rgba(5,13,24,.38);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
  backdrop-filter:blur(10px);
}
.button.ghost{background:transparent}
.hero-inline-meta{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:30px;
}
.hero-meta-item{
  min-width:140px;
  display:grid;
  gap:6px;
  padding-left:16px;
  border-left:1px solid rgba(255,255,255,.16);
}
.hero-meta-item span{
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#90aac7;
}
.hero-meta-item strong{
  font-size:1rem;
  color:#eef7ff;
}
.hero-side-home{
  display:grid;
  justify-items:end;
  gap:22px;
  padding-bottom:8px;
}
.hero-logo-stage{
  width:min(240px,46vw);
  aspect-ratio:1;
  display:grid;
  place-items:center;
  position:relative;
}
.hero-logo-stage::before{
  content:"";
  position:absolute;
  inset:12%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(51,183,255,.26), transparent 68%);
  filter:blur(6px);
}
.hero-logo-stage img{
  position:relative;
  width:72%;
  height:72%;
  object-fit:contain;
  filter:drop-shadow(0 20px 35px rgba(0,0,0,.45)) drop-shadow(0 0 22px rgba(51,183,255,.20));
  animation:logoFloat 6s ease-in-out infinite;
}
.hero-side-links{
  width:min(360px,100%);
  display:grid;
  gap:12px;
}
.hero-side-link{
  width:100%;
  padding:16px 18px;
  border-radius:10px;
  text-align:left;
  display:grid;
  gap:4px;
  cursor:pointer;
}
.hero-side-link strong{font-size:1rem; font-weight:800}
.hero-side-link:hover{background:rgba(8,18,32,.6); border-color:rgba(51,183,255,.26)}
.hero-side-label{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8fd0ff;
}
.home-band{padding:48px 0 18px}
.home-columns{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:34px;
}
.home-line{
  padding:0 0 0 18px;
  border-left:1px solid rgba(255,255,255,.12);
}
.home-line-kicker{
  display:block;
  margin-bottom:10px;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8fd0ff;
}
.home-line h3{
  margin:0 0 10px;
  font-size:1.35rem;
  letter-spacing:-.03em;
}
.home-line p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}
.section-home-cta{padding:42px 0 18px}
.home-split{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(320px,.9fr);
  gap:44px;
  align-items:start;
}
.home-copy-block .section-title{margin-bottom:12px}
.home-rail{
  display:grid;
  gap:12px;
}
.home-rail-item{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  align-items:start;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.home-rail-item span{
  font-size:1.05rem;
  font-weight:900;
  color:#8fd0ff;
}
.home-rail-item strong{
  display:block;
  margin-bottom:5px;
  font-size:1.02rem;
}
.home-rail-item small{
  display:block;
  color:var(--muted);
  line-height:1.7;
  font-size:.95rem;
}
.section-title{
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1;
  letter-spacing:-.05em;
}
.section-subtitle,
.page-head p{max-width:900px}

/* Page sections */
.page-head{
  margin:0 0 28px;
  padding:0 0 22px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.panel,
.feature-card,
.metric-card,
.step-card,
.vote-card,
.team-card,
.shop-card,
.info-card,
.article-card,
.accordion-item,
.notice-card,
.cta-strip,
.editor-banner,
.footer-shell,
.article-nav,
.shop-footnote,
.info-row,
.rule-item,
.command-item,
.benefit-item,
.slot-empty,
.info-pill{
  background:linear-gradient(180deg, rgba(8,17,31,.64), rgba(5,11,20,.52));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
}
.feature-card,
.metric-card,
.step-card,
.vote-card,
.team-card,
.shop-card,
.info-card,
.article-card,
.notice-card,
.cta-strip,
.editor-banner,
.footer-shell,
.article-nav,
.shop-footnote{border-radius:18px}
.accordion-item{border-radius:18px}
.info-row,
.rule-item,
.command-item,
.benefit-item,
.slot-empty,
.info-pill{border-radius:14px}
.article-layout,
.vote-grid,
.shop-grid,
.notice-grid,
.team-row{gap:16px}
.accordion-header{padding:20px 22px}
.accordion-body-inner{padding:0 22px 22px}
.accordion-header:hover{background:rgba(255,255,255,.02)}
.command-name{color:#9ed8ff}
.article-link,
.toc a,
.footer-link{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
.footer{padding-top:10px}
.footer-shell{padding:16px 18px}
.owner-indicator{
  background:rgba(5,13,24,.92);
  border-color:rgba(51,183,255,.30);
}
.modal{
  background:linear-gradient(180deg, rgba(8,16,29,.98), rgba(5,11,20,.97));
  border-radius:22px;
}
.input,
.textarea,
.select{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}

@keyframes logoFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@media (max-width:1080px){
  .hero-grid-home,
  .home-split,
  .home-columns{
    grid-template-columns:1fr;
  }
  .hero-grid-home{gap:30px}
  .hero-side-home{justify-items:start}
}

@media (max-width:860px){
  .container{width:min(1280px,calc(100% - 26px))}
  .topbar{padding:12px 0}
  .nav-links{
    top:calc(100% + 10px);
    left:0;
    right:0;
    border-radius:18px;
    background:rgba(5,13,24,.96);
    border:1px solid rgba(255,255,255,.08);
  }
  .hero-grid-home{
    min-height:auto;
    padding:126px 0 56px;
  }
  .hero-home{min-height:auto}
  .hero-title{font-size:clamp(2.4rem,12vw,4rem)}
  .hero-ipline{font-size:clamp(.92rem,4vw,1.2rem); letter-spacing:.10em}
  .hero-inline-meta{gap:14px}
  .hero-meta-item{min-width:unset; flex:1 1 140px}
  .hero-logo-stage{width:min(170px,52vw)}
  .home-rail-item{grid-template-columns:44px 1fr}
}

@media (max-width:640px){
  .page{padding-bottom:56px}
  .hero-grid-home{padding:112px 0 44px}
  .hero-actions{gap:10px}
  .button{width:auto}
  .hero-side-links{width:100%}
  .home-band{padding-top:30px}
  .home-line{padding-left:14px}
  .footer-shell{align-items:flex-start}
}


/* --- subtle animation enhancement update --- */
.topbar{
  animation:topbarReveal .7s cubic-bezier(.22,1,.36,1);
}
.nav-shell{
  position:relative;
  overflow:hidden;
  animation:navShellFloat 7s ease-in-out infinite;
}
.nav-shell::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(110deg, transparent 18%, rgba(255,255,255,.04) 32%, rgba(114,255,210,.08) 46%, transparent 62%);
  transform:translateX(-135%);
  animation:navSheen 7.5s ease-in-out infinite;
  pointer-events:none;
}
.nav-links .nav-link{
  position:relative;
  overflow:hidden;
  animation:navItemReveal .55s cubic-bezier(.22,1,.36,1) both;
}
.nav-links .nav-link:nth-child(1){animation-delay:.04s}
.nav-links .nav-link:nth-child(2){animation-delay:.08s}
.nav-links .nav-link:nth-child(3){animation-delay:.12s}
.nav-links .nav-link:nth-child(4){animation-delay:.16s}
.nav-links .nav-link:nth-child(5){animation-delay:.20s}
.nav-links .nav-link:nth-child(6){animation-delay:.24s}
.nav-links .nav-link:nth-child(7){animation-delay:.28s}
.nav-links .nav-link:nth-child(8){animation-delay:.32s}
.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:8px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(114,255,210,.92), rgba(125,198,255,.92));
  transform:scaleX(0);
  transform-origin:left center;
  opacity:.92;
  transition:transform .28s ease;
}
.nav-link:hover::after,
.nav-link.active::after{transform:scaleX(1)}
.brand-mark{
  animation:brandPulse 4.6s ease-in-out infinite;
}
.page-head,
.page > section,
.hero-copy,
.hero-side-home,
.home-line,
.home-rail-item,
.vote-card,
.team-card,
.shop-card,
.info-card,
.article-card,
.notice-card,
.feature-card,
.metric-card,
.step-card,
.accordion-item,
.rule-item,
.command-item,
.benefit-item,
.info-row,
.info-pill,
.slot-empty,
.footer-shell{
  opacity:0;
  transform:translateY(18px);
  animation:sectionReveal .72s cubic-bezier(.22,1,.36,1) forwards;
}
.page > section:nth-of-type(1),
.hero-copy,
.hero-side-home,
.page-head,
.footer-shell{animation-delay:.08s}
.page > section:nth-of-type(2),
.home-line:nth-child(1),
.home-rail-item:nth-child(1),
.vote-card:nth-child(1),
.team-card:nth-child(1),
.shop-card:nth-child(1),
.feature-card:nth-child(1),
.metric-card:nth-child(1),
.step-card:nth-child(1),
.article-card:nth-child(1),
.notice-card:nth-child(1),
.accordion-item:nth-child(1),
.rule-item:nth-child(1),
.command-item:nth-child(1),
.benefit-item:nth-child(1){animation-delay:.14s}
.page > section:nth-of-type(3),
.home-line:nth-child(2),
.home-rail-item:nth-child(2),
.vote-card:nth-child(2),
.team-card:nth-child(2),
.shop-card:nth-child(2),
.feature-card:nth-child(2),
.metric-card:nth-child(2),
.step-card:nth-child(2),
.article-card:nth-child(2),
.notice-card:nth-child(2),
.accordion-item:nth-child(2),
.rule-item:nth-child(2),
.command-item:nth-child(2),
.benefit-item:nth-child(2){animation-delay:.21s}
.home-line:nth-child(3),
.home-rail-item:nth-child(3),
.vote-card:nth-child(3),
.team-card:nth-child(3),
.shop-card:nth-child(3),
.feature-card:nth-child(3),
.metric-card:nth-child(3),
.step-card:nth-child(3),
.article-card:nth-child(3),
.notice-card:nth-child(3),
.accordion-item:nth-child(3),
.rule-item:nth-child(3),
.command-item:nth-child(3),
.benefit-item:nth-child(3){animation-delay:.28s}
.home-rail-item:nth-child(4),
.team-card:nth-child(4),
.feature-card:nth-child(4),
.metric-card:nth-child(4),
.step-card:nth-child(4),
.accordion-item:nth-child(4){animation-delay:.35s}
.team-card:nth-child(5),
.accordion-item:nth-child(5){animation-delay:.42s}
.team-card:nth-child(6),
.accordion-item:nth-child(6){animation-delay:.49s}
.accordion-item:nth-child(7){animation-delay:.56s}
.vote-card,
.team-card,
.shop-card,
.info-card,
.article-card,
.notice-card,
.feature-card,
.metric-card,
.step-card,
.accordion-item,
.hero-side-link,
.home-rail-item,
.footer-shell{
  transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.vote-card:hover,
.team-card:hover,
.shop-card:hover,
.info-card:hover,
.article-card:hover,
.notice-card:hover,
.feature-card:hover,
.metric-card:hover,
.step-card:hover,
.accordion-item:hover,
.hero-side-link:hover,
.home-rail-item:hover,
.footer-shell:hover{
  transform:translateY(-3px);
  border-color:rgba(114,255,210,.18);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}
.page-kicker::before,
.card-kicker::before,
.team-role::before,
.eyebrow::before{
  animation:kickerGlow 3.8s ease-in-out infinite;
}
.button,
.hero-side-link{
  position:relative;
  overflow:hidden;
}
.button::before,
.hero-side-link::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, transparent 20%, rgba(255,255,255,.14) 44%, transparent 68%);
  transform:translateX(-135%);
  transition:transform .65s ease;
  pointer-events:none;
}
.button:hover::before,
.hero-side-link:hover::before{transform:translateX(135%)}
.accordion-chevron{
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02), 0 0 0 rgba(114,255,210,0);
}
.accordion-item.open .accordion-chevron{
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 0 18px rgba(114,255,210,.14);
}
.footer-link,
.article-link,
.toc a{
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
.footer-link:hover,
.article-link:hover,
.toc a:hover{
  transform:translateY(-1px);
  border-color:rgba(114,255,210,.18);
}

@keyframes topbarReveal{
  from{opacity:0; transform:translateY(-18px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes navItemReveal{
  from{opacity:0; transform:translateY(-10px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes navSheen{
  0%,58%,100%{transform:translateX(-135%)}
  18%,34%{transform:translateX(135%)}
}
@keyframes navShellFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-1px)}
}
@keyframes brandPulse{
  0%,100%{box-shadow:0 0 0 1px rgba(255,255,255,.02), 0 0 35px rgba(114,255,210,.15)}
  50%{box-shadow:0 0 0 1px rgba(255,255,255,.04), 0 0 48px rgba(114,255,210,.22)}
}
@keyframes sectionReveal{
  from{opacity:0; transform:translateY(18px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes kickerGlow{
  0%,100%{opacity:.62; transform:scaleX(1)}
  50%{opacity:1; transform:scaleX(1.12)}
}



/* Release-Fortschritt Fix */
.release-progress{
  --release-progress:27%;
  margin-top:28px;
  width:min(100%, 720px);
  padding:22px 24px 20px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(6,14,26,.54) 0%, rgba(6,14,26,.28) 100%);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
  box-shadow:0 24px 60px rgba(0,0,0,.22);
  opacity:0;
  transform:translateY(18px);
  animation:sectionReveal .72s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay:.12s;
}
.release-progress-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:start;
}
.release-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8fd0ff;
}
.release-kicker::before{
  content:"";
  width:28px;
  height:1px;
  background:linear-gradient(90deg, var(--accent), rgba(255,255,255,.16));
  animation:kickerGlow 3.8s ease-in-out infinite;
}
.release-title{
  margin:12px 0 10px;
  font-size:clamp(1.18rem, 2vw, 1.5rem);
  line-height:1.15;
  letter-spacing:-.03em;
}
.release-text{
  margin:0;
  max-width:560px;
  color:#d6e5f8;
  line-height:1.75;
}
.release-percent-box{
  min-width:132px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  text-align:right;
}
.release-percent-label{
  display:block;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#8faac8;
}
.release-percent{
  display:block;
  margin-top:8px;
  font-size:clamp(1.8rem, 4vw, 2.5rem);
  line-height:1;
  letter-spacing:-.05em;
  color:#eef9ff;
}
.release-progress-track{
  position:relative;
  margin-top:18px;
  height:16px;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border:1px solid rgba(255,255,255,.08);
}
.release-progress-track::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.08), transparent 35%, rgba(255,255,255,.05) 70%, transparent);
  animation:progressSheen 3.2s linear infinite;
}
.release-progress-fill{
  position:absolute;
  inset:0 auto 0 0;
  width:var(--release-progress);
  max-width:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #34b7ff 0%, #57f4d4 48%, #8b5cff 100%);
  box-shadow:0 0 24px rgba(52,183,255,.35), 0 0 38px rgba(87,244,212,.18);
  animation:progressGrow 1.25s cubic-bezier(.2,.8,.2,1) both, progressPulse 2.6s ease-in-out infinite 1.1s;
  transform-origin:left center;
}
.release-progress-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:14px;
}
.release-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:.78rem;
  font-weight:800;
  color:#eef7ff;
}
.release-pill::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#57f4d4;
  box-shadow:0 0 14px rgba(87,244,212,.9);
  animation:statusPulse 1.8s ease-in-out infinite;
}
.release-meta-note{
  color:#9fb0d0;
  font-size:.92rem;
  line-height:1.6;
}

@media (max-width:1080px){
  .release-progress{width:min(100%, 820px)}
}

@media (max-width:860px){
  .release-progress{padding:20px 18px 18px}
  .release-progress-head{grid-template-columns:1fr}
  .release-percent-box{text-align:left; width:max-content}
}

@media (max-width:640px){
  .release-title{font-size:1.12rem}
  .release-text{font-size:.95rem}
  .release-progress-track{height:14px}
  .release-meta-note{font-size:.86rem}
}

@keyframes progressGrow{
  from{width:0}
  to{width:var(--release-progress)}
}
@keyframes progressPulse{
  0%,100%{filter:saturate(1) brightness(1)}
  50%{filter:saturate(1.08) brightness(1.08)}
}
@keyframes progressSheen{
  from{transform:translateX(-100%)}
  to{transform:translateX(100%)}
}
@keyframes statusPulse{
  0%,100%{opacity:.65; transform:scale(.92)}
  50%{opacity:1; transform:scale(1.08)}
}

@media (prefers-reduced-motion: reduce){
  .topbar,
  .nav-shell,
  .nav-links .nav-link,
  .page-head,
  .page > section,
  .hero-copy,
  .hero-side-home,
  .home-line,
  .home-rail-item,
  .vote-card,
  .team-card,
  .shop-card,
  .info-card,
  .article-card,
  .notice-card,
  .feature-card,
  .metric-card,
  .step-card,
  .accordion-item,
  .rule-item,
  .command-item,
  .benefit-item,
  .info-row,
  .info-pill,
  .slot-empty,
  .footer-shell,
  .brand-mark,
  .page-kicker::before,
  .card-kicker::before,
  .team-role::before,
  .eyebrow::before,
  .release-progress,
  .release-kicker::before,
  .release-progress-track::before,
  .release-progress-fill,
  .release-pill::before{
    animation:none !important;
    transform:none !important;
    opacity:1 !important;
  }
  .nav-shell::after,
  .button::before,
  .hero-side-link::before,
  .nav-link::after{transition:none !important}
}
