:root {
  --white: #ffffff;
  --ink: #111111;
  --navy: #0b1f3a;
  --green: #00a86b;
  --lime: #c6ff00;
  --purple: #6d4dff;
  --gray-50: #f3f5f7;
  --gray-200: #d9dee5;
  --gray-700: #4a4f57;
  --shadow: 0 18px 48px rgba(6, 16, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 255, 0, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 168, 107, 0.13), transparent 26%),
    linear-gradient(120deg, transparent 0 43%, rgba(198, 255, 0, 0.08) 43.2% 43.8%, transparent 44.2% 100%),
    linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.03) 1px, transparent 1px),
    var(--white);
  background-attachment: fixed;
  background-size: auto, auto, auto, 42px 42px, 42px 42px, auto;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}

body:has(.page-loader:not(.is-hidden)) {
  overflow: hidden;
}

a {
  color: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(17, 17, 17, 0.96)),
    linear-gradient(120deg, transparent 0 42%, rgba(198, 255, 0, 0.18) 42.4% 43%, transparent 43.4% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 32px);
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.page-loader.is-hidden {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.page-loader-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 8px rgba(198, 255, 0, 0.14), 0 20px 58px rgba(0, 0, 0, 0.34);
  font-size: 28px;
  font-weight: 900;
  animation: loader-mark-pulse 1.1s ease-in-out infinite;
}

.page-loader-copy {
  display: grid;
  gap: 2px;
  text-align: center;
}

.page-loader-copy span,
.page-loader-copy strong {
  display: block;
}

.page-loader-copy span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.page-loader-copy strong {
  font-size: 18px;
  letter-spacing: 0;
}

.page-loader-line {
  position: relative;
  width: min(260px, 72vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.page-loader-line::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--lime), var(--green), transparent);
  animation: loader-line-run 1s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: transparent;
  background:
    url("../images/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202026-06-02%20145511.jpg")
    center / cover no-repeat;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.16);
  font-size: 0;
  font-weight: 900;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-weight: 900;
  line-height: 1.2;
}

.brand-sub {
  color: var(--gray-700);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.section,
.hero {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.section-muted {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.1), transparent 34%),
    linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.03) 1px, transparent 1px),
    var(--gray-50);
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.section-muted::before,
.image-gallery-section::before,
.news-section::before,
.contact-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, transparent 8%, rgba(198, 255, 0, 0.18) 8.4%, transparent 9.1%),
    linear-gradient(118deg, transparent 72%, rgba(0, 168, 107, 0.12) 72.4%, transparent 73.2%);
  opacity: 0.72;
  transform: translateX(-4%);
  animation: ambient-light-drift 8s ease-in-out infinite;
}

.section-muted > * {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(17, 17, 17, 0.98)),
    radial-gradient(circle at top right, rgba(198, 255, 0, 0.34), transparent 34%);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 31, 58, 0.98), rgba(17, 17, 17, 0.94) 56%, rgba(0, 168, 107, 0.56)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: -20% -10% auto auto;
  width: 48vw;
  height: 48vw;
  background: conic-gradient(from 120deg, rgba(198, 255, 0, 0.22), rgba(0, 168, 107, 0.16), rgba(109, 77, 255, 0.12), rgba(198, 255, 0, 0.22));
  filter: blur(2px);
  opacity: 0.85;
  animation: slow-spin 18s linear infinite;
}

.hero::after {
  right: 8%;
  bottom: 12%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: line-sweep 3.8s ease-in-out infinite;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-heading h2,
.split-section h2,
.access-section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.15;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 76px);
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 19px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: var(--lime);
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  overflow: hidden;
  border: 2px solid transparent;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.button:active,
.button.is-pressed,
.site-nav a.is-pressed,
.gallery-slot.is-pressed,
.news-more.is-pressed,
.map-card-link.is-pressed,
.fighter-profile-link.is-pressed,
.floating-trial-cta a.is-pressed,
.mobile-cta a.is-pressed,
.chatbot-quick-actions button.is-pressed,
.chatbot-smart-suggestions button.is-pressed,
.chatbot-input-row button.is-pressed {
  animation: micro-press 220ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.hero-visual {
  min-height: 460px;
  perspective: 1200px;
}

.hero-live-badge {
  display: none;
}

.hero-live-badge span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.hero-live-badge strong {
  font-size: 15px;
  line-height: 1.35;
}

.photo-slot,
.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 168, 107, 0.9), rgba(11, 31, 58, 0.95)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 22px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.hero-main-photo {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    0 0 0 10px rgba(255, 255, 255, 0.06);
  transform: rotate(-1.5deg);
  animation: float-photo 5.8s ease-in-out infinite;
}

.hero-main-photo,
.card-image-slot,
.gallery-slot,
.portrait-slot,
.fighters-hero-visual,
.fighter-photo {
  background-repeat: no-repeat;
}

.hero-main-photo > * {
  display: block;
}

.hero-main-photo img,
.card-image-slot img,
.gallery-slot img,
.portrait-slot img {
  display: block;
  width: 100%;
  height: auto;
}

.card-image-slot,
.gallery-slot,
.portrait-slot,
.social-photo-strip div {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 247, 0.96)),
    var(--gray-50);
  border: 1px solid var(--gray-200);
}

.card-image-slot span,
.gallery-slot span,
.portrait-slot span,
.social-photo-strip span {
  font-size: 12px;
  font-weight: 900;
}

.photo-slot span,
.map-placeholder span {
  font-size: 13px;
  font-weight: 900;
}

.photo-slot strong,
.map-placeholder strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}

.hero-stat {
  display: none;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-size: 30px;
  line-height: 1.1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.access-section h2,
.contact-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.section-heading p,
.split-section p,
.access-section p,
.contact-section p {
  color: var(--gray-700);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-grid,
.program-grid,
.price-list {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.program-grid article,
.price-card,
.note-panel,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.feature-grid article,
.program-grid article,
.price-card,
.note-panel {
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-grid article:hover,
.program-grid article:hover,
.price-card:hover,
.note-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 107, 0.55);
  box-shadow: var(--shadow);
}

.feature-grid article:active,
.program-grid article:active,
.price-card:active,
.note-panel:active,
.news-card:active,
.fighter-card:active,
.access-route-grid article:active {
  transform: translateY(-2px) scale(0.99);
}

.feature-grid h3,
.program-grid h3,
.price-card h3,
.note-panel h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.feature-grid p,
.program-grid p,
.price-card p,
.note-panel p {
  margin: 0;
  color: var(--gray-700);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.image-icon {
  position: relative;
  isolation: isolate;
}

.image-icon::after {
  position: absolute;
  inset: -5px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(0, 168, 107, 0.42);
  transform: rotate(8deg);
}

.card-image-slot {
  margin: -24px -24px 20px;
}

.card-image-slot span {
  display: none;
}

.image-gallery-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(109, 77, 255, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(11, 31, 58, 0.04), rgba(0, 168, 107, 0.1)),
    var(--white);
}

.image-gallery-section > * {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.image-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: repeat(3, minmax(132px, 1fr));
  gap: 16px;
}

.gallery-slot {
  position: relative;
  min-height: 0;
  padding: 0;
  align-content: stretch;
  justify-items: stretch;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background-color: var(--gray-50);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.gallery-slot img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-slot::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.86));
  opacity: 0.9;
}

.gallery-slot:hover {
  transform: scale(1.02);
  filter: saturate(1.12);
  box-shadow: var(--shadow);
}

.gallery-slot:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.gallery-large {
  grid-row: span 3;
  min-height: clamp(430px, 43vw, 560px);
}

@media (min-width: 981px) {
  .gallery-large {
    min-height: clamp(430px, 43vw, 560px);
  }

  .gallery-large img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.gallery-slot strong {
  position: absolute;
  right: 16px;
  bottom: 34px;
  left: 16px;
  z-index: 1;
  display: block;
  color: var(--white);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.25;
}

.gallery-slot small {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.gallery-slot span {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(11, 31, 58, 0.86);
  backdrop-filter: blur(12px);
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal figure {
  width: min(100%, 980px);
  margin: 0;
  color: var(--white);
}

.gallery-modal img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(0, 168, 107, 0.86), rgba(109, 77, 255, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 18px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gallery-modal-placeholder {
  display: none;
  min-height: min(64vh, 520px);
  place-items: center;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 168, 107, 0.86), rgba(109, 77, 255, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 18px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-weight: 900;
}

.gallery-modal-placeholder.is-visible {
  display: grid;
}

.gallery-modal-placeholder.is-visible + figcaption {
  color: var(--lime);
}

.gallery-modal img.is-hidden {
  display: none;
}

.gallery-modal figcaption {
  margin-top: 12px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
}

.gallery-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  font-size: 26px;
  font-weight: 900;
}

.modal-open {
  overflow: hidden;
}

.price-card p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--gray-200);
}

.price-card strong {
  font-size: 20px;
}

.price-card small {
  display: block;
  margin-top: 12px;
  color: var(--gray-700);
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(198, 255, 0, 0.18), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.price-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.price-card-featured {
  border-color: rgba(0, 168, 107, 0.55);
  box-shadow: 0 14px 34px rgba(0, 168, 107, 0.13);
}

.price-label {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.price-cta-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(0, 168, 107, 0.86)),
    var(--navy);
  border: 1px solid rgba(198, 255, 0, 0.42);
  box-shadow: var(--shadow);
}

.price-cta-strip::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  background-size: auto, 220% 100%;
  animation: price-cta-scan 5.2s ease-in-out infinite;
}

.price-cta-strip > * {
  position: relative;
  z-index: 1;
}

.price-cta-strip span,
.price-cta-strip strong,
.price-cta-strip small {
  display: block;
}

.price-cta-strip span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.price-cta-strip strong {
  margin-top: 4px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.price-cta-strip small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.price-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.price-cta-actions .button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.split-section,
.access-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.access-section {
  overflow: hidden;
}

.access-section::before {
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(520px, 42vw);
  height: 2px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.78), rgba(0, 168, 107, 0.6), transparent);
  opacity: 0.52;
  transform: rotate(-10deg);
  animation: neon-line-drift 6s ease-in-out infinite;
}

.access-section > * {
  position: relative;
  z-index: 1;
}

.note-panel {
  border-left: 8px solid var(--green);
}

.trust-media {
  display: grid;
  gap: 16px;
}

.trust-section {
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  position: absolute;
  inset: 34px auto auto 42%;
  width: min(420px, 38vw);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--lime), var(--green), transparent);
  opacity: 0.78;
  transform: rotate(-8deg);
  animation: trust-line-scan 4.8s ease-in-out infinite;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.trust-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(0, 168, 107, 0.78)),
    var(--navy);
  border: 1px solid rgba(198, 255, 0, 0.46);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.13);
}

.trust-proof-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.trust-proof-grid article:hover::after {
  transform: translateX(120%);
}

.trust-proof-grid span,
.trust-proof-grid strong,
.trust-proof-grid small {
  position: relative;
  z-index: 1;
  display: block;
}

.trust-proof-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.trust-proof-grid strong {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.25;
}

.trust-proof-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.45;
}

.portrait-slot {
  min-height: 260px;
  padding: 24px;
  align-content: end;
  justify-items: start;
}

.trust-portrait {
  position: relative;
  background-color: var(--gray-50);
}

.trust-portrait::after {
  display: none;
}

.portrait-slot span,
.portrait-slot strong {
  display: none;
}

.trust-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--gray-700);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.info-list dt {
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--gray-700);
}

.access-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.08);
}

.access-status-dot {
  width: 14px;
  height: 14px;
  background: #b42318;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(180, 35, 24, 0.12);
}

.access-status.is-open .access-status-dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 168, 107, 0.14);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.access-status strong,
.access-status small {
  display: block;
}

.access-status strong {
  line-height: 1.35;
}

.access-status small {
  margin-top: 2px;
  color: var(--gray-700);
  font-weight: 800;
}

.access-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.access-route-grid article {
  position: relative;
  overflow: hidden;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(0, 168, 107, 0.74)),
    var(--navy);
  border: 1px solid rgba(198, 255, 0, 0.36);
}

.access-route-grid article::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.access-route-grid article:hover::after {
  transform: translateX(120%);
}

.access-route-grid span,
.access-route-grid strong,
.access-route-grid small {
  position: relative;
  z-index: 1;
  display: block;
}

.access-route-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.access-route-grid strong {
  margin-top: 6px;
  line-height: 1.35;
}

.access-route-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.45;
}

.map-placeholder {
  min-height: 360px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.95), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0 2px, transparent 2px 28px);
  border-color: var(--ink);
}

.map-embed-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border-color: var(--gray-200);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-embed-card .map-card-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  margin-top: 0;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.18);
}

.map-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 14px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.map-card-link:hover,
.map-card-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(198, 255, 0, 0.24);
}

.instagram-section {
  text-align: center;
}

.instagram-section .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.news-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 255, 0, 0.22), transparent 26%),
    linear-gradient(rgba(11, 31, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(198, 255, 0, 0.16), rgba(0, 168, 107, 0.08)),
    var(--white);
  background-size: auto, 34px 34px, 34px 34px, auto, auto;
}

.news-section > * {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.news-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card-featured {
  grid-row: span 2;
}

.news-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.news-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: var(--gray-50);
  transition: transform 420ms ease, filter 420ms ease;
}

.news-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 24px;
  color: var(--white);
  text-align: center;
}

.news-image-placeholder span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 900;
}

.news-category,
.news-latest {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.news-category {
  left: 12px;
  bottom: 12px;
  color: var(--ink);
  background: var(--lime);
}

.news-latest {
  top: 12px;
  right: 12px;
  color: var(--white);
  background: rgba(11, 31, 58, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.news-content {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 107, 0.55);
  box-shadow: var(--shadow);
}

.news-card:hover .news-image {
  transform: none;
  filter: saturate(1.04);
}

.news-date {
  display: inline-flex;
  color: var(--green);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.news-card h3 {
  margin: 0;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: var(--gray-700);
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--green);
}

.news-more::after {
  content: "→";
  transition: transform 180ms ease;
}

.news-more:hover::after {
  transform: translateX(4px);
}

.news-card > .news-date:first-child {
  margin: 22px 22px 0;
}

.news-card > h3,
.news-card > p,
.news-card > .news-more {
  margin-right: 22px;
  margin-left: 22px;
}

.news-card > .news-more:last-child {
  margin-bottom: 22px;
}

.news-detail-main {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.12), rgba(0, 168, 107, 0.08)),
    var(--white);
}

.news-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.news-detail h1 {
  margin: 14px 0 22px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.news-detail-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  margin: 22px auto;
  background: var(--gray-50);
}

.news-detail-body {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 30px auto 0;
}

.social-photo-strip div {
  aspect-ratio: 1;
  transform: skew(-2deg);
  transition: transform 220ms ease;
}

.social-photo-strip div:hover {
  transform: skew(-2deg) translateY(-6px) rotate(1deg);
}

.js-enabled .reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.js-enabled .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-child {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(min(var(--reveal-index), 6) * 70ms);
  will-change: opacity, transform;
}

.js-enabled .reveal-target.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-enabled .reveal-target.is-visible .feature-grid > article,
.js-enabled .reveal-target.is-visible .program-grid > article,
.js-enabled .reveal-target.is-visible .price-card,
.js-enabled .reveal-target.is-visible .news-card {
  animation: card-lift 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-delay: calc(min(var(--reveal-index), 6) * 70ms);
}

.js-enabled .reveal-target.is-visible .gallery-slot,
.js-enabled .reveal-target.is-visible .photo-slot,
.js-enabled .reveal-target.is-visible .portrait-slot {
  animation: image-pop 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-delay: calc(min(var(--reveal-index), 6) * 70ms);
}

.fighters-page .reveal-target,
.fighters-page .reveal-child {
  opacity: 1;
  transform: none;
}

.fighters-page .fighters-hero-visual,
.fighters-page .fighter-photo {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.fighters-page .fighters-hero-visual img,
.fighters-page .fighter-photo img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-photo {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes line-sweep {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-14%);
  }

  50% {
    opacity: 1;
    transform: translateX(14%);
  }
}

@keyframes hero-photo-scan {
  0%,
  100% {
    background-position: 120% 0, 0 0;
    opacity: 0.34;
  }

  45%,
  55% {
    background-position: -80% 0, 0 0;
    opacity: 0.72;
  }
}

@keyframes card-lift {
  0% {
    box-shadow: 0 8px 18px rgba(11, 31, 58, 0.08);
  }

  55% {
    box-shadow: 0 18px 38px rgba(0, 168, 107, 0.18);
  }

  100% {
    box-shadow: 0 8px 18px rgba(11, 31, 58, 0);
  }
}

@keyframes image-pop {
  0% {
    filter: saturate(0.8);
  }

  60% {
    filter: saturate(1.18);
  }

  100% {
    filter: saturate(1);
  }
}

@keyframes trust-line-scan {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-18%) rotate(-8deg);
  }

  50% {
    opacity: 0.9;
    transform: translateX(18%) rotate(-8deg);
  }
}

@keyframes trust-medal-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 16px 36px rgba(198, 255, 0, 0.28);
  }
}

@keyframes price-cta-scan {
  0%,
  100% {
    background-position: 0 0, 120% 0;
  }

  50% {
    background-position: 0 0, -80% 0;
  }
}

@keyframes ambient-light-drift {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-5%);
  }

  50% {
    opacity: 0.78;
    transform: translateX(5%);
  }
}

@keyframes neon-line-drift {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-14%) rotate(-10deg);
  }

  50% {
    opacity: 0.68;
    transform: translateX(14%) rotate(-10deg);
  }
}

@keyframes loader-mark-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes loader-line-run {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes micro-press {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.96);
  }
}

@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;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  max-width: none;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-actions {
  justify-content: flex-end;
}

.phone-panel,
.chatbot {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.phone-panel {
  display: inline-grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
}

.phone-panel span {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 900;
}

.phone-panel strong {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.chatbot {
  display: grid;
  position: relative;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border-radius: 0;
}

.ai-chatbot {
  background:
    radial-gradient(circle at 16% 0%, rgba(198, 255, 0, 0.28), transparent 26%),
    linear-gradient(145deg, #f7fff1 0%, #f4f8fb 46%, #e8f7ff 100%);
}

.ai-chatbot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(11, 31, 58, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.055) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 76%);
}

.chatbot-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(0, 168, 107, 0.92)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.chatbot-avatar,
.chat-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(198, 255, 0, 0.45);
}

.chatbot-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.chatbot-header span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.chatbot-header strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.chatbot-header small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.chatbot-header i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(198, 255, 0, 0.18);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.chatbot-messages {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 300px;
  max-height: 360px;
  overflow: auto;
  padding: 16px 10px 16px 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.44));
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 92%;
  font-size: 14px;
  line-height: 1.65;
}

.chat-message.bot {
  justify-self: start;
}

.chat-message.user {
  justify-self: end;
}

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.chat-bubble {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.12);
}

.chat-message.bot .chat-bubble {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-bottom-left-radius: 4px;
}

.chat-message.user .chat-bubble {
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-bottom-right-radius: 4px;
}

.chat-bubble small {
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.chat-message.typing .chat-bubble {
  display: inline-flex;
  gap: 5px;
  min-width: 64px;
  padding: 14px 16px;
}

.chat-message.typing .chat-bubble span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: typing-dot 1s ease-in-out infinite;
}

.chat-message.typing .chat-bubble span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-message.typing .chat-bubble span:nth-child(3) {
  animation-delay: 0.3s;
}

.chatbot-ai-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chatbot-ai-status span {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(11, 31, 58, 0.86);
  border: 1px solid rgba(198, 255, 0, 0.32);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.chatbot-smart-suggestions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 168, 107, 0.18);
}

.chatbot-smart-suggestions > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.chatbot-smart-suggestions button {
  min-height: 34px;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.18);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-smart-suggestions button:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 8px 18px rgba(0, 168, 107, 0.14);
}

.chatbot-quick-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-quick-actions button,
.chatbot-input-row button {
  cursor: pointer;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  font-weight: 900;
}

.chatbot-quick-actions button {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-quick-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(198, 255, 0, 0.24);
}

.chatbot-input-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.chatbot-input-row input {
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.18);
  font: inherit;
}

.chatbot-input-row button {
  padding: 0 16px;
  border-radius: 999px;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: 0.68;
  }
}

@keyframes typing-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 36px clamp(18px, 5vw, 72px) 88px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0;
}

.dashboard-page {
  background: var(--gray-50);
}

.dashboard-main {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px) 90px;
}

.dashboard-hero,
.dashboard-layout {
  max-width: 1240px;
  margin: 0 auto;
}

.dashboard-hero {
  margin-bottom: 28px;
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.dashboard-hero p {
  max-width: 860px;
  color: var(--gray-700);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.dashboard-layout-secondary {
  margin-top: 28px;
}

.dashboard-form,
.dashboard-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.dashboard-form {
  display: grid;
  gap: 14px;
}

.dashboard-form label,
.dashboard-form span {
  display: block;
}

.dashboard-form span {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font: inherit;
}

.dashboard-form textarea {
  resize: vertical;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-actions.compact {
  justify-content: flex-end;
}

.dashboard-actions.left {
  justify-content: flex-start;
  margin-top: -6px;
}

.dashboard-actions.compact button,
.dashboard-card-actions a,
.dashboard-card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.image-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.14), rgba(0, 168, 107, 0.08)),
    var(--gray-50);
  border: 2px dashed rgba(0, 168, 107, 0.55);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.image-dropzone:hover,
.image-dropzone:focus-visible,
.image-dropzone.is-dragover,
.image-dropzone.is-processing {
  border-color: var(--ink);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.28), rgba(0, 168, 107, 0.14)),
    var(--white);
  outline: none;
  transform: translateY(-2px);
}

.image-dropzone.is-processing::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(17, 17, 17, 0.68);
  content: "画像を軽量化中...";
  font-weight: 900;
}

.image-dropzone-copy {
  display: grid;
  gap: 6px;
  max-width: 320px;
}

.image-dropzone-copy strong,
.image-dropzone-copy span {
  display: block;
}

.image-dropzone-copy strong {
  font-size: 18px;
  line-height: 1.35;
}

.image-dropzone-copy span {
  color: var(--gray-700);
  font-size: 13px;
}

.image-dropzone img {
  display: none;
  width: 100%;
  height: 240px;
  object-fit: contain;
  border: 1px solid var(--gray-200);
}

.image-dropzone.has-image {
  padding: 10px;
  border-style: solid;
}

.image-dropzone.has-image .image-dropzone-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.76);
  text-align: left;
}

.image-dropzone.has-image .image-dropzone-copy span {
  color: rgba(255, 255, 255, 0.78);
}

.image-dropzone.has-image img {
  display: block;
}

.storage-warning {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
}

.storage-warning.is-danger {
  color: #b42318;
}

.dashboard-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-panel-head h2 {
  margin: 0;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-news-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.dashboard-news-thumb {
  width: 120px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.dashboard-fighter-initial {
  display: grid;
  place-items: center;
  width: 120px;
  height: 92px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, 0.82), rgba(0, 168, 107, 0.5)),
    var(--lime);
  border: 1px solid var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.dashboard-news-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-news-card h3 {
  margin: 6px 0;
}

.dashboard-news-card p {
  margin: 0;
  color: var(--gray-700);
}

.dashboard-card-actions {
  display: grid;
  gap: 6px;
  align-content: start;
}

.dashboard-empty {
  margin: 0;
  color: var(--gray-700);
}

.fighters-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 560px;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.fighters-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.1;
}

.fighters-hero-visual,
.fighter-photo {
  display: block;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
}

.fighters-hero-visual {
  align-self: center;
  text-align: center;
}

.fighters-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.fighters-hero-visual span,
.fighter-photo span {
  font-size: 12px;
  font-weight: 900;
}

.fighters-hero-visual strong {
  display: none;
}

.fighters-hero-visual span {
  display: none;
}

.fighter-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fighter-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fighter-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fighter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.fighter-card-featured {
  border-color: rgba(0, 168, 107, 0.42);
  box-shadow: 0 14px 34px rgba(0, 168, 107, 0.12);
}

.fighter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 107, 0.55);
  box-shadow: var(--shadow);
}

.fighter-card:hover::before {
  opacity: 1;
}

.fighter-photo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid var(--gray-200);
}

.fighter-photo span {
  display: none;
}

.fighter-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.fighter-photo-inada {
  background-image: url("../images/fighters/inada-daiki.jpg.jpg");
}

.fighter-photo-iwai {
  background-image: url("../images/fighters/iwai-shora.jpg.jpg");
}

.fighter-photo-kabayama {
  background-image: url("../images/fighters/kabayama-naoki.jpg.jpg");
}

.fighter-photo-sakaguchi {
  background-image: url("../images/fighters/sakaguchi-hikaru.jpg.jpg");
}

.fighter-photo-takahashi {
  background-image: url("../images/fighters/takahashi-sekai.jpg.jpg");
}

.fighter-photo-tanooka {
  background-image: url("../images/fighters/tanooka-jo.jpg.jpg");
}

.fighter-photo-hasegawa {
  background-image: url("../images/fighters/hasegawa-yota.jpg.jpg");
}

.fighter-photo-watanabe {
  background-image: url("../images/fighters/watanabe-kenya.jpg.jpg");
}

.fighter-photo-kobayashi {
  background-image: url("../images/fighters/kobayashi-nobuyoshi.jpg.jpg");
  background-color: var(--gray-50);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.fighter-photo-konno {
  background-image: url("../images/fighters/konno-yusora.jpg.jpg");
  background-color: var(--gray-50);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.fighter-body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.fighter-label {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.fighter-body h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
}

.fighter-body dl {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.fighter-body dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.fighter-body dt {
  font-weight: 900;
}

.fighter-body dd {
  margin: 0;
  color: var(--gray-700);
}

.fighter-body p {
  margin: 0;
  color: var(--gray-700);
}

.fighter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.fighter-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.fighter-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 14px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.fighter-profile-link::after {
  content: "↗";
  margin-left: 8px;
}

.fighter-profile-link:hover {
  transform: translateY(-2px);
  color: var(--ink);
  background: var(--lime);
}

.fighter-info-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.fighter-info-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.fighter-info-section p {
  color: var(--gray-700);
}

.fighter-note {
  padding: 24px;
  background: var(--gray-50);
  border-left: 8px solid var(--green);
}

.fighter-note h3 {
  margin: 0 0 12px;
}

.fighter-note ul {
  margin: 0;
  padding-left: 20px;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  gap: 0;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(17, 17, 17, 0.96)),
    var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 -16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.mobile-cta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
}

.mobile-cta-dot {
  width: 8px;
  height: 8px;
  background: #b42318;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14);
}

.mobile-cta.is-open .mobile-cta-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.16);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.mobile-cta-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 9px 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.mobile-cta a:nth-child(2) {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.mobile-cta a:active,
.mobile-cta a:focus-visible {
  transform: translateY(-2px);
}

.floating-trial-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 32;
  display: grid;
  gap: 12px;
  width: min(320px, calc(100vw - 44px));
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(0, 168, 107, 0.9)),
    var(--ink);
  border: 1px solid rgba(198, 255, 0, 0.42);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.floating-trial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-100%);
  animation: floating-cta-scan 4.6s ease-in-out infinite;
}

.floating-trial-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.floating-trial-cta span,
.floating-trial-cta strong {
  display: block;
}

.floating-trial-cta span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.floating-trial-cta strong {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1.3;
}

.floating-trial-cta div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}

.floating-trial-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.floating-trial-cta a:hover {
  transform: translateY(-2px);
}

.floating-trial-cta .floating-trial-main {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

@keyframes floating-cta-scan {
  0%,
  62%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  88% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .split-section,
  .access-section,
  .contact-section,
  .fighters-hero,
  .fighter-info-section,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-panel-head,
  .dashboard-news-card {
    grid-template-columns: 1fr;
  }

  .dashboard-actions.compact {
    justify-content: flex-start;
  }

  .price-cta-strip {
    grid-template-columns: 1fr;
  }

  .price-cta-actions {
    justify-content: flex-start;
  }

  .access-route-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .program-grid,
  .price-list,
  .image-gallery,
  .news-grid,
  .trust-proof-grid,
  .fighter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-gallery {
    grid-template-rows: auto;
  }

  .gallery-slot {
    aspect-ratio: 16 / 10;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 0;
  }

  .news-card-featured {
    grid-row: auto;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .floating-trial-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .section,
  .hero {
    padding: 56px 18px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions,
  .inline-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .photo-slot {
    min-height: 320px;
  }

  .hero-main-photo,
  .card-image-slot,
  .gallery-slot,
  .portrait-slot,
  .fighters-hero-visual,
  .fighter-photo {
    background-color: var(--gray-50);
    background-size: contain;
  }

  .hero-main-photo {
    min-height: 0;
    transform: none;
    animation: none;
  }

  .card-image-slot {
    min-height: 0;
  }

  .gallery-slot,
  .gallery-large {
    min-height: 0;
  }

  .fighters-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .fighters-hero h1 {
    font-size: 38px;
  }

  .fighters-hero-visual {
    min-height: 0;
  }

  .fighter-photo {
    min-height: 0;
  }

  .hero-live-badge {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .hero-stat {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .chatbot-ai-status {
    grid-template-columns: 1fr;
  }

  .chatbot-input-row {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .program-grid,
  .price-list,
  .image-gallery,
  .social-photo-strip,
  .news-grid,
  .trust-proof-grid,
  .fighter-grid {
    grid-template-columns: 1fr;
  }

  .gallery-slot {
    aspect-ratio: 16 / 10;
  }

  .gallery-large {
    grid-column: span 1;
    min-height: 0;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 132px;
  }
}
