:root {
  --bg: #05070a;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --blue: #2f8cff;
  --purple: #a855f7;
  --cyan: #28e5ff;
  --studio-blue: #6fa8c8;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 168, 200, 0.14), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(92, 79, 128, 0.11), transparent 28%),
    var(--bg);
  color: var(--white);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  animation: gradientShift 14s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

body.is-loading {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  background: #05070a;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__ring {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(40, 229, 255, 0.35);
  animation: spin 1s linear infinite;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

#particle-canvas,
.cursor-glow {
  position: fixed;
  pointer-events: none;
}

#particle-canvas {
  inset: 0;
  z-index: -2;
}

.cursor-glow {
  width: 320px;
  height: 320px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 168, 200, 0.12), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.62);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}

.brand__mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: conic-gradient(from 120deg, var(--blue), var(--purple), var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(40, 229, 255, 0.55);
}

.nav {
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% -10% 8% 42%;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.12) 44%, rgba(5, 7, 10, 0.42)),
    url("assets/hero-resolve-ui.png") center / cover no-repeat;
  box-shadow: 0 0 120px rgba(47, 140, 255, 0.22);
  opacity: 0.92;
  filter: saturate(0.58) contrast(0.96) brightness(0.72);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}

.hero__ambient {
  position: absolute;
  inset: 14% 4% auto auto;
  width: 52vw;
  height: 52vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 140, 255, 0.2), transparent 62%);
  filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.hero__kicker span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(40, 229, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(5, 7, 10, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__title {
  margin: 0;
  font-size: clamp(44px, 8vw, 98px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__title span {
  display: block;
}

#typing-title {
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.05;
}

#typing-title::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--cyan);
  animation: blink 0.9s step-end infinite;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.event-meta div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.event-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
}

.event-meta strong {
  font-size: clamp(13px, 1.6vw, 16px);
}

.cta {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--cyan));
  box-shadow: 0 0 32px rgba(47, 140, 255, 0.42);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 46px rgba(40, 229, 255, 0.48);
}

.cta--pulse::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(40, 229, 255, 0.48);
  animation: pulse 1.9s ease-out infinite;
}

.hero-ui {
  position: relative;
  min-height: 540px;
}

.resolve-window {
  position: absolute;
  inset: 58px 0 auto auto;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.22)),
    url("assets/Main.png") center / cover no-repeat;
  box-shadow: var(--shadow), 0 0 80px rgba(47, 140, 255, 0.22);
  backdrop-filter: blur(20px);
  filter: saturate(0.9) brightness(0.92);
  transform: perspective(900px) rotateY(-9deg) rotateX(4deg);
}

.resolve-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.resolve-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--panel-strong);
}

.resolve-window__bar small {
  margin-left: auto;
  color: var(--muted);
}

.resolve-window__grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  grid-template-rows: 300px 108px;
  gap: 1px;
  background: transparent;
  opacity: 1;
}

.viewer,
.timeline,
.panel {
  position: relative;
  background: transparent;
}

.viewer {
  grid-column: span 2;
  overflow: hidden;
  background: transparent;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px);
  opacity: 0.14;
}

.hud {
  position: absolute;
  display: none;
  padding: 8px 10px;
  border: 1px solid rgba(40, 229, 255, 0.35);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 12px;
  background: rgba(5, 7, 10, 0.5);
}

.hud--a {
  top: 38px;
  left: 34px;
}

.hud--b {
  right: 34px;
  bottom: 42px;
}

.timeline {
  grid-column: span 2;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px;
}

.timeline span {
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(47, 140, 255, 0.75), rgba(168, 85, 247, 0.62));
}

.floating-card {
  position: absolute;
  overflow: hidden;
  opacity: 0.68;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 12px 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035) 46%, rgba(111, 168, 200, 0.08)),
    rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 9px rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -18px 34px rgba(5, 7, 10, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(111, 168, 200, 0.1);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  animation: float 5s ease-in-out infinite;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 42%;
  border-radius: 13px 13px 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.floating-card::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -36%;
  width: 52%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: glassSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.floating-card--one {
  top: 0;
  right: 86px;
}

.floating-card--two {
  top: 202px;
  left: -18px;
  animation-delay: -1s;
}

.floating-card--three {
  right: 18px;
  bottom: 64px;
  animation-delay: -2s;
}

.floating-card--four {
  top: 98px;
  left: 32px;
  animation-delay: -1.6s;
}

.floating-card--five {
  right: -20px;
  top: 314px;
  animation-delay: -2.8s;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
}

.single-line-heading {
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(24px, 4.5vw, 58px);
}

.section-blur {
  filter: blur(8px);
  opacity: 0.62;
  transition: filter 0.9s ease, opacity 0.9s ease;
}

.section-blur.is-clear {
  filter: blur(0);
  opacity: 1;
}

.reveal {
  transform: translateY(34px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.glass-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 168, 200, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 26px rgba(111, 168, 200, 0.1);
}

.glass-card {
  padding: 22px;
}

.glass-card .icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(40, 229, 255, 0.1);
}

.glass-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.benefit-grid .glass-card h3 {
  font-size: 18px;
  line-height: 1.45;
}

.glass-card p,
.feature-card p,
.speaker-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.68;
}

.feature-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-snap-type: x mandatory;
}

.feature-card {
  min-height: 390px;
  padding: 18px;
  scroll-snap-align: start;
}

.feature-visual {
  position: relative;
  height: 190px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #0a1018;
  filter: saturate(0.62) contrast(0.94) brightness(0.78);
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.34)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.related-article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 54px;
  padding: 24px;
  border: 1px solid rgba(111, 168, 200, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 168, 200, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.article-visual {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 180px;
  border: 1px solid rgba(111, 168, 200, 0.18);
  border-radius: var(--radius);
  background: #070a0f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.article-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18));
  pointer-events: none;
}

.article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98) brightness(0.82);
}

.related-article h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.related-article p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.article-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(40, 229, 255, 0.28);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(5, 7, 10, 0.48);
  box-shadow: 0 0 22px rgba(40, 229, 255, 0.12);
}

.article-link:hover {
  border-color: rgba(40, 229, 255, 0.52);
  box-shadow: 0 0 30px rgba(40, 229, 255, 0.2);
}

.visual-photo {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18)), url("assets/page/phot2.png");
  background-position: center;
  background-size: cover;
}

.visual-edit {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18)), url("assets/page/edit2.png");
  background-position: center;
  background-size: cover;
}

.visual-color {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18)), url("assets/page/color2.png");
  background-position: center;
  background-size: cover;
}

.visual-fusion {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.18)), url("assets/page/fusion2.png");
  background-position: center;
  background-size: cover;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.speaker-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
}

.speaker-photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.22)),
    url("assets/image/OKANO.png") center / cover no-repeat;
}

.speaker-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-photo--toc {
  background: rgba(255, 255, 255, 0.94);
}

.speaker-photo--toc img {
  object-fit: contain;
}

.speaker-role {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0;
  padding: 0 0 0 30px;
  list-style: none;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--purple));
  transform-origin: top;
  animation: growLine 2.4s ease both;
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -29px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.timeline-list time {
  color: var(--cyan);
  font-weight: 800;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(460px, 1.42fr);
  gap: 22px;
  align-items: stretch;
}

.access-info {
  display: grid;
  align-content: center;
}

.access-label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-info h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.mini-map {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 168, 200, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(111, 168, 200, 0.1), rgba(255, 255, 255, 0.018)),
    #060910;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4), 0 0 34px rgba(111, 168, 200, 0.08);
  backdrop-filter: blur(18px);
}

.mini-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 45% 56%, rgba(255, 128, 29, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(5, 7, 10, 0.1));
  mix-blend-mode: screen;
}

.mini-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  padding: 10px;
  background: #060910;
  filter: invert(1) hue-rotate(180deg) saturate(0.72) contrast(0.9) brightness(0.72);
  opacity: 0.9;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
}

.rail-line {
  position: absolute;
  top: 32px;
  right: -8%;
  width: 58%;
  height: 10px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #2eb56f 0 18px, transparent 18px 28px);
  transform: rotate(-24deg);
  box-shadow: 0 0 14px rgba(46, 181, 111, 0.22);
}

.rail-line span {
  position: absolute;
  top: 14px;
  left: 72px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transform: rotate(24deg);
}

.road {
  position: absolute;
  border-radius: 999px;
  background: #2a3038;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 5px 18px rgba(0, 0, 0, 0.22);
}

.road::after {
  content: "";
  position: absolute;
  inset: 50% 10px auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 12px, transparent 12px 22px);
}

.road span {
  position: absolute;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.road-akasaka {
  top: 162px;
  right: -12%;
  width: 88%;
  height: 52px;
  transform: rotate(-43deg);
  background: linear-gradient(90deg, #303844, #252b33);
}

.road-akasaka span {
  top: 16px;
  left: 188px;
  transform: rotate(43deg);
}

.road-hitotsugi {
  top: 108px;
  right: 1%;
  width: 54%;
  height: 30px;
  transform: rotate(-43deg);
  background: #262d36;
}

.road-hitotsugi span {
  top: 7px;
  left: 132px;
  transform: rotate(43deg);
}

.road-park {
  top: 52px;
  left: -6%;
  width: 58%;
  height: 28px;
  transform: rotate(-32deg);
  background: #202730;
}

.road-south {
  left: 19%;
  bottom: 58px;
  width: 54%;
  height: 28px;
  transform: rotate(0deg);
  background: #202730;
}

.road-west {
  left: -7%;
  bottom: 108px;
  width: 52%;
  height: 26px;
  transform: rotate(42deg);
  background: #202730;
}

.building,
.station {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.building {
  min-width: 86px;
  min-height: 48px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.building-tbs {
  left: 40%;
  top: 92px;
  min-width: 118px;
}

.building-blitz {
  left: 32%;
  top: 48px;
  min-width: 132px;
}

.building-act {
  left: 34%;
  top: 16px;
  min-width: 128px;
}

.building-biz {
  right: 8%;
  top: 16px;
  min-width: 104px;
}

.building-park {
  left: 8%;
  top: 96px;
  min-width: 110px;
}

.building-hikawa {
  right: 8%;
  bottom: 78px;
  min-width: 90px;
}

.building-hitotsugi {
  left: 28%;
  bottom: 86px;
  min-width: 112px;
}

.station {
  padding: 8px 11px;
  border: 1px solid rgba(40, 229, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  background: rgba(5, 7, 10, 0.58);
}

.station-exit4 {
  right: 20%;
  top: 82px;
  color: #ff8b2f;
  border-color: rgba(255, 128, 29, 0.48);
}

.station-exit7 {
  left: 45%;
  top: 162px;
  color: #ff8b2f;
  border-color: rgba(255, 128, 29, 0.48);
}

.station-akasaka {
  right: 12%;
  top: 42px;
}

.station-shop {
  left: 51%;
  bottom: 42px;
}

.route-line {
  position: absolute;
  width: 23%;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 128, 29, 0.9) 0 10px, transparent 10px 17px);
  filter: drop-shadow(0 0 10px rgba(255, 128, 29, 0.26));
}

.route-line-a {
  left: 47%;
  top: 196px;
  transform: rotate(132deg);
}

.route-line-b {
  left: 33%;
  top: 218px;
  width: 18%;
  transform: rotate(180deg);
}

.map-pin {
  position: absolute;
  left: 43%;
  top: 58%;
  display: grid;
  min-width: 138px;
  gap: 3px;
  transform: translate(-50%, -50%);
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255, 128, 29, 0.48);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.78);
  box-shadow: 0 0 38px rgba(255, 128, 29, 0.22);
  backdrop-filter: blur(16px);
}

.map-pin span {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #ff8b2f, #ff5d1f);
  transform: rotate(-45deg);
  box-shadow: 0 0 20px rgba(255, 128, 29, 0.54);
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--bg);
}

.map-pin strong,
.map-pin small {
  position: relative;
}

.map-pin small {
  color: var(--muted);
}

.map-office {
  position: absolute;
  left: 8%;
  bottom: 18px;
  min-width: 168px;
  padding: 11px 16px;
  border-radius: 4px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-office strong,
.map-office small {
  display: block;
}

.map-office strong {
  font-size: 16px;
}

.map-office small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.application {
  padding-bottom: 70px;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.apply-form label:nth-of-type(n + 6),
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.56);
  outline: none;
}

.apply-form select {
  min-height: 50px;
  padding-right: 44px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%) calc(100% - 22px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    rgba(5, 7, 10, 0.56);
  cursor: pointer;
}

.apply-form select option {
  color: var(--white);
  background: var(--bg);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40, 229, 255, 0.12);
}

.form-button {
  width: min(260px, 100%);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
}

.site-footer {
  position: relative;
  padding: 34px 20px 46px;
  color: var(--muted);
  text-align: center;
}

.site-footer small {
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes pulse {
  to {
    transform: scale(1.16);
    opacity: 0;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 30%; }
  100% { background-position: 100% 70%; }
}

@keyframes float {
  50% { transform: translateY(-18px); }
}

@keyframes glassSweep {
  0%, 46% { transform: translateX(0) rotate(18deg); opacity: 0; }
  58% { opacity: 0.75; }
  100% { transform: translateX(290%) rotate(18deg); opacity: 0; }
}

@keyframes growLine {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(38px, 7vw, 76px);
  }

  #typing-title {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.08;
  }

  .hero-ui {
    min-height: 430px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .related-article {
    grid-template-columns: 1fr;
  }

  .article-visual {
    min-height: 220px;
  }

  .article-link {
    width: fit-content;
  }

  .access-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero__title {
    font-size: clamp(34px, 10vw, 62px);
  }

  #typing-title {
    font-size: clamp(24px, 8vw, 42px);
    line-height: 1.1;
  }
  .site-header {
    top: 10px;
    border-radius: 18px;
  }

  .nav {
    display: none;
  }

  .hero,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 108px;
  }

  .single-line-heading {
    font-size: clamp(20px, 7.2vw, 34px);
  }

  .hero::before {
    inset: 48% -18% 4% -18%;
    opacity: 0.58;
    mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 88%, transparent 100%);
  }

  .event-meta,
  .benefit-grid,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .hero-ui {
    min-height: 360px;
  }

  .resolve-window {
    transform: none;
  }

  .resolve-window__grid {
    grid-template-rows: 220px 88px;
  }

  .floating-card {
    display: none;
  }

  .speaker-card {
    grid-template-columns: 1fr;
  }

  .speaker-photo {
    max-width: 220px;
  }

  .timeline-list li {
    grid-template-columns: 74px 1fr;
  }

  .mini-map {
    min-height: 0;
  }

  .mini-map img {
    min-height: 240px;
    padding: 8px;
  }

  .road span,
  .building,
  .station {
    font-size: 10px;
  }

  .map-pin {
    left: 58%;
    min-width: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
