/* =========================================================
   SAKIGAKE eSports — Page-specific styles
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 640px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 212, 255, 0.04);
}

.hero-eyebrow .bullet {
  width: 6px; height: 6px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-blue);
  animation: pulse-live 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-jp);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-title .line { display: block; }
.hero-title .glow {
  color: var(--neon-blue);
  text-shadow:
    0 0 20px rgba(0, 212, 255, 0.6),
    0 0 40px rgba(0, 212, 255, 0.3);
}
.hero-title .accent {
  color: var(--neon-pink);
  text-shadow:
    0 0 20px rgba(255, 46, 136, 0.6),
    0 0 40px rgba(255, 46, 136, 0.3);
}
.hero-title .en-tag {
  font-family: var(--f-en);
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  margin-top: 20px;
  text-transform: uppercase;
}

/* Glitch on hero title primary word */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.glitch::before {
  color: var(--neon-pink);
  transform: translate(2px, 0);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-a 4.5s infinite steps(2, end);
}
.glitch::after {
  color: var(--neon-cyan);
  transform: translate(-2px, 0);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-b 4.5s infinite steps(2, end);
}
@keyframes glitch-a {
  0%, 92%, 100% { transform: translate(0, 0); opacity: 0; }
  93% { transform: translate(2px, -1px); opacity: 1; }
  95% { transform: translate(-2px, 1px); opacity: 1; }
  97% { transform: translate(1px, 0); opacity: 1; }
}
@keyframes glitch-b {
  0%, 92%, 100% { transform: translate(0, 0); opacity: 0; }
  93% { transform: translate(-2px, 1px); opacity: 1; }
  95% { transform: translate(2px, -1px); opacity: 1; }
  97% { transform: translate(-1px, 0); opacity: 1; }
}

.hero-lead {
  max-width: 520px;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 540px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat .num {
  font-family: var(--f-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--neon-blue);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}
.stat .num small { font-size: 14px; margin-left: 4px; opacity: 0.7; }
.stat .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Hero visual (player silhouette + HUD) */
.hero-visual {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-silhouette {
  width: auto;
  height: 100%;
  max-height: 620px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.35)) drop-shadow(0 0 60px rgba(0, 212, 255, 0.15));
}

/* Rotating ring behind silhouette */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  animation: rot 40s linear infinite;
  z-index: 1;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

@keyframes rot { to { transform: rotate(360deg); } }

/* HUD markers around silhouette */
.hud-marker {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  pointer-events: none;
}
.hud-marker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
}
.hud-marker .line {
  width: 40px;
  height: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 4px var(--neon-blue);
}
.hud-marker.m1 { top: 15%; left: -10px; }
.hud-marker.m2 { top: 40%; right: -20px; flex-direction: row-reverse; }
.hud-marker.m3 { bottom: 20%; left: 5%; }
.hud-marker.m4 { bottom: 8%; right: 8%; color: var(--neon-pink); flex-direction: row-reverse; }
.hud-marker.m4 .dot { background: var(--neon-pink); box-shadow: 0 0 8px var(--neon-pink); }
.hud-marker.m4 .line { background: var(--neon-pink); box-shadow: 0 0 4px var(--neon-pink); }

/* Scanline sweep across visual area */
.hero-visual .scan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.hero-visual .scan::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: scan-y 4s linear infinite;
}
@keyframes scan-y {
  0% { top: -100px; }
  100% { top: 100%; }
}

/* Corner HUD frame decorations for hero */
.hero-corners {
  position: absolute;
  inset: 40px;
  pointer-events: none;
  z-index: 1;
}
.hero-corners span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.hero-corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.hero-corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

/* =========================================================
   Mission
   ========================================================= */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(15, 21, 36, 0.6), rgba(10, 14, 26, 0.6));
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s var(--e-out);
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  transition: width 0.5s var(--e-out);
}
.mission-card:hover::before { width: 100%; }

.mission-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.mission-card .num {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon-blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-card .num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.mission-card h3 {
  font-family: var(--f-jp);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.4;
}

.mission-card p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.9;
}

.mission-card .en-title {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-mute);
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.mission-card:nth-child(2)::before { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
.mission-card:nth-child(2) .num { color: var(--neon-pink); }
.mission-card:nth-child(3)::before { background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.mission-card:nth-child(3) .num { color: var(--neon-purple); }

/* =========================================================
   Roadmap (vertical stages)
   ========================================================= */

.roadmap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 60px;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--neon-blue), var(--neon-pink) 60%, var(--neon-purple));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.stage {
  position: relative;
  padding: 24px 0 60px 40px;
}

.stage-marker {
  position: absolute;
  left: -60px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  background: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 13px;
  color: var(--neon-blue);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
  z-index: 2;
}

.stage.pink .stage-marker { border-color: var(--neon-pink); color: var(--neon-pink); box-shadow: 0 0 16px rgba(255, 46, 136, 0.5); }
.stage.purple .stage-marker { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 16px rgba(176, 97, 255, 0.5); }

.stage-content {
  padding: 24px 28px;
  background: rgba(15, 21, 36, 0.5);
  border: 1px solid var(--line);
  border-left: 2px solid var(--neon-blue);
  transition: all 0.3s var(--e-out);
}
.stage.pink .stage-content { border-left-color: var(--neon-pink); }
.stage.purple .stage-content { border-left-color: var(--neon-purple); }

.stage-content:hover {
  border-color: var(--line-strong);
  transform: translateX(4px);
}

.stage-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--neon-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.stage.pink .stage-tag { color: var(--neon-pink); }
.stage.purple .stage-tag { color: var(--neon-purple); }

.stage h3 {
  font-family: var(--f-jp);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.stage h3 .en {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
  margin-left: 12px;
  text-transform: uppercase;
}

.stage p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.stage-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stage-checks li {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  background: rgba(0, 212, 255, 0.03);
}
.stage.pink .stage-checks li { border-color: rgba(255, 46, 136, 0.2); }

/* =========================================================
   News grid
   ========================================================= */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: rgba(15, 21, 36, 0.5);
  border: 1px solid var(--line);
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s var(--e-out);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.news-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  align-self: flex-start;
  margin-bottom: 20px;
}
.news-cat.event { color: var(--neon-pink); border-color: var(--neon-pink); }
.news-cat.recruit { color: var(--neon-purple); border-color: var(--neon-purple); }

.news-date {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.news-title {
  font-family: var(--f-jp);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.news-excerpt {
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.8;
}

.news-more {
  margin-top: 20px;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--neon-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   Video feature
   ========================================================= */

.video-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  cursor: pointer;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.7)),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.02) 0, rgba(0, 212, 255, 0.02) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.video-frame .thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 0;
}

.video-frame .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 13, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: all 0.3s var(--e-out);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.4);
}
.video-frame:hover .play {
  background: var(--neon-blue);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.8);
}
.video-frame .play svg { fill: var(--neon-blue); transition: fill 0.3s; }
.video-frame:hover .play svg { fill: var(--bg-0); }

.video-frame .hud-tl {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--neon-blue);
  z-index: 2;
}
.video-frame .hud-tr {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--neon-pink);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-frame .hud-tr .dot {
  width: 6px; height: 6px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-pink);
  animation: pulse-live 1.4s infinite;
}

.video-info h3 {
  font-family: var(--f-jp);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.4;
}

.video-info .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.video-info p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.video-meta {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
}
.video-meta span strong { color: var(--fg); font-weight: 500; margin-right: 6px; }

/* =========================================================
   Big CTA band
   ========================================================= */

.cta-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08), transparent 70%);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.06) 0, rgba(0, 212, 255, 0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.06) 0, rgba(0, 212, 255, 0.06) 1px, transparent 1px, transparent 40px);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}

.cta-band .wrap { text-align: center; position: relative; }

.cta-band h2 {
  font-family: var(--f-jp);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 24px;
}
.cta-band h2 .glow { color: var(--neon-blue); text-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }

.cta-band p {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.9;
}

.cta-band .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   About page - full roadmap
   ========================================================= */

.about-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.about-hero .lead {
  max-width: 720px;
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 2;
  margin-top: 32px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.principle {
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.principle .num {
  font-family: var(--f-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--neon-blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  margin-bottom: 16px;
}
.principle h3 {
  font-family: var(--f-jp);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.principle p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.9;
}

/* =========================================================
   Company info table (About page)
   ========================================================= */

.company-info {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(15, 21, 36, 0.5);
  position: relative;
}

.company-info table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-jp);
}

.company-info tr {
  border-bottom: 1px solid var(--line);
}
.company-info tr:last-child { border-bottom: none; }

.company-info th,
.company-info td {
  padding: 22px 32px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.8;
}

.company-info th {
  width: 200px;
  background: rgba(0, 212, 255, 0.04);
  border-right: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--neon-blue);
  text-transform: uppercase;
  vertical-align: top;
}

.company-info td {
  color: var(--fg);
}

.company-info td .en-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.15em;
  margin-top: 6px;
  text-transform: uppercase;
}

.company-info td .zip {
  color: var(--fg-dim);
  font-family: var(--f-mono);
  font-size: 12px;
  margin-right: 8px;
  letter-spacing: 0.05em;
}

.company-info td ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.company-info td ul li {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  background: rgba(0, 212, 255, 0.03);
}

@media (max-width: 720px) {
  .company-info th,
  .company-info td { padding: 16px 20px; }
  .company-info th { width: 120px; font-size: 10px; }
  .company-info td ul { gap: 6px; }
  .company-info td ul li { font-size: 11px; padding: 3px 8px; }
}

/* =========================================================
   Sponsors page
   ========================================================= */

.sponsor-hero {
  padding: 80px 0;
  text-align: center;
}
.sponsor-hero .lead {
  max-width: 680px;
  margin: 32px auto 0;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 2;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit {
  padding: 32px 20px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s var(--e-out);
}
.benefit:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}
.benefit .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 1px solid var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.benefit h4 {
  font-family: var(--f-jp);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit p {
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.8;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.plan {
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: rgba(15, 21, 36, 0.5);
  position: relative;
  transition: all 0.3s var(--e-out);
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.plan.featured {
  border-color: var(--neon-blue);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}
.plan.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px; left: 32px;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  background: var(--neon-blue);
  color: var(--bg-0);
  font-weight: 700;
}
.plan .rank {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--neon-blue);
  margin-bottom: 12px;
}
.plan .name {
  font-family: var(--f-en);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan .price {
  font-family: var(--f-en);
  color: var(--fg-dim);
  font-size: 13px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan li {
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan li::before {
  content: '›';
  color: var(--neon-blue);
  font-weight: 700;
}

/* =========================================================
   Store page (coming soon)
   ========================================================= */

.store-banner {
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.store-banner h1 {
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 20px;
}
.store-banner h1 .glow {
  color: var(--neon-blue);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.7), 0 0 60px rgba(0, 212, 255, 0.3);
}
.store-banner .cs {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  padding: 10px 24px;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  margin-top: 16px;
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.3);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0.42;
  filter: saturate(0.4);
  pointer-events: none;
}

.product {
  border: 1px solid var(--line);
  background: rgba(15, 21, 36, 0.4);
  overflow: hidden;
}
.product-visual {
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.product-body {
  padding: 16px 20px;
}
.product .name {
  font-family: var(--f-jp);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.product .price {
  font-family: var(--f-en);
  font-size: 13px;
  color: var(--neon-blue);
  letter-spacing: 0.05em;
}
.product .cat {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

/* =========================================================
   Contact page
   ========================================================= */

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 40px;
}
.contact-tabs--2col { grid-template-columns: repeat(2, 1fr); }
.tab-btn {
  padding: 20px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  color: var(--fg-dim);
  font-family: var(--f-jp);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: all 0.3s var(--e-out);
}
.tab-btn:last-child { border-right: none; }

.tab-btn .tab-en {
  display: block;
  font-family: var(--f-en);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tab-btn.active {
  background: rgba(0, 212, 255, 0.05);
  color: var(--fg);
}
.tab-btn.active .tab-en { color: var(--neon-blue); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
}
.tab-btn:hover:not(.active) { color: var(--fg); }

.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  opacity: 1;
  transform: none;
}

.form-intro {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
  padding: 20px;
  border-left: 2px solid var(--neon-blue);
  background: rgba(0, 212, 255, 0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
}
.form-field label .req { color: var(--neon-pink); margin-left: 4px; }

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--f-jp);
  font-size: 14px;
  transition: all 0.25s var(--e-out);
  outline: none;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
  background: rgba(10, 14, 26, 0.9);
}

.form-submit {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.form-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
}

/* =========================================================
   Responsive breakpoints
   ========================================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 480px; order: -1; }
  .mission-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .video-feature { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-tabs { grid-template-columns: 1fr; }
  .tab-btn { border-right: none; border-bottom: 1px solid var(--line); }
}
