@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&family=Noto+Sans+JP:wght@500;600;700;800&display=swap');

:root {
  --bg: #070b14;
  --bg-2: #0a1020;
  --panel: rgba(16, 23, 39, 0.72);
  --panel-strong: rgba(19, 29, 50, 0.92);
  --border: rgba(255,255,255,0.085);
  --text: #f6f8fc;
  --muted: #8f9bb0;
  --accent: #68d8ff;
  --accent-2: #8d7cff;
  --shadow: 0 30px 90px rgba(0,0,0,.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(55, 144, 255, .15), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(128, 90, 255, .13), transparent 26%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(85px);
  pointer-events: none;
  opacity: .18;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: #238cff;
  left: -130px;
  top: 180px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: #6e55ff;
  right: -190px;
  top: 520px;
}

.wrap {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 0 70px;
}

.brand-row {
  position: absolute;
  top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #041018;
  background: linear-gradient(135deg, var(--accent), #a89fff);
  font-weight: 800;
  box-shadow: 0 10px 35px rgba(104, 216, 255, .18);
}

.brand-label,
.brand-sub {
  margin: 0;
}

.brand-label {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
}

.brand-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

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

.pill {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(104,216,255,.2);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(104,216,255,.055);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
}

h1 {
  margin: 20px 0 20px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: .98;
  letter-spacing: -.06em;
}

h1 span {
  background: linear-gradient(90deg, #71ddff, #ad9fff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.scroll-link {
  width: fit-content;
  margin-top: 36px;
  color: #cdd5e3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  opacity: .8;
  transition: opacity .2s ease, transform .2s ease;
}

.scroll-link:hover {
  opacity: 1;
  transform: translateY(2px);
}

.vote-section {
  padding: 40px 0 30px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.count {
  color: var(--muted);
  font-size: 12px;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.vote-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.012)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.vote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104,216,255,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--panel-strong);
}

.vote-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--card-accent, rgba(104,216,255,.16));
  filter: blur(50px);
}

.card-top,
.card-bottom {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.site-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.055);
  font-size: 17px;
  font-weight: 800;
}

.external {
  color: #7f8ba0;
  font-size: 18px;
}

.vote-card h3 {
  margin: 0 0 7px;
  font-size: 21px;
  letter-spacing: -.035em;
}

.vote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.vote-action {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.support-card {
  margin: 22px 0 54px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.026);
}

.support-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(141,124,255,.12);
  color: #bdb5ff;
  font-size: 18px;
}

.support-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

footer {
  padding: 22px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  color: #69758a;
  font-size: 11px;
}

@media (max-width: 720px) {
  .hero {
    min-height: 650px;
    padding-bottom: 52px;
  }

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

  .vote-card {
    min-height: 190px;
  }

  footer {
    flex-direction: column;
  }
}
