:root {
  --navy-950: #050a18;
  --navy-900: #071126;
  --navy-850: #0a1730;
  --navy-800: #0e1f3d;
  --navy-700: #132b4f;
  --cyan: #2bd8ff;
  --cyan-soft: rgba(43, 216, 255, 0.18);
  --orange: #ff9d2e;
  --orange-soft: rgba(255, 157, 46, 0.2);
  --text: #f3f7fb;
  --muted: #b9c7d8;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(15, 35, 65, 0.84);
  --card-strong: rgba(19, 48, 86, 0.9);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

@media (min-width: 901px) {
  html.is-hero-scrollbar-hidden {
    scrollbar-width: none;
  }

  html.is-hero-scrollbar-hidden::-webkit-scrollbar {
    display: none;
  }
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #111827;
  font-weight: 800;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 216, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #040815, #071126 52%, #050a18);
  color: var(--text);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

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

.intro-loader__inner {
  width: min(720px, 100%);
  text-align: center;
}

.intro-loader__label {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.intro-loader h1 {
  margin: 0;
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.intro-loader h1 span {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(43, 216, 255, 0.42);
}

.intro-loader__achievement {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em;
  margin: 18px 0 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 157, 46, 0.36);
  border-radius: 999px;
  background: rgba(255, 157, 46, 0.1);
  color: #ffe2bd;
  font-size: clamp(0.9rem, 2.2vw, 1.08rem);
  font-weight: 900;
  line-height: 1.45;
}

.intro-loader__achievement strong {
  color: var(--orange);
}

.intro-loader__line {
  position: relative;
  overflow: hidden;
  width: min(440px, 72vw);
  height: 2px;
  margin: 26px auto 0;
  background: rgba(255, 255, 255, 0.12);
}

.intro-loader__line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  animation: introLine 1.8s ease both;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 10, 24, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto 58px;
  gap: 20px;
  align-items: center;
}

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

.brand-logo {
  width: 58px;
  height: 44px;
  object-fit: contain;
  padding: 4px 5px;
  border-radius: 6px;
  background: #ffffff;
  filter: drop-shadow(0 0 14px rgba(43, 216, 255, 0.35));
}

.brand-text {
  display: grid;
  line-height: 1.3;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.global-nav a {
  padding: 10px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.global-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-emblem,
.footer-emblem {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.header-emblem {
  width: 48px;
  height: 48px;
}

.header-emblem img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.82;
}

.menu-toggle {
  display: none;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding: 72px 0 32px;
  background:
    radial-gradient(circle at 72% 18%, rgba(43, 216, 255, 0.2), transparent 28%),
    radial-gradient(circle at 24% 24%, rgba(255, 157, 46, 0.13), transparent 30%),
    linear-gradient(140deg, #050a18 0%, #09172d 52%, #06101f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(43, 216, 255, 0.08) 48%, transparent 56%),
    radial-gradient(circle at 66% 28%, rgba(255, 157, 46, 0.1), transparent 22%);
  opacity: 0.72;
  animation: heroLightDrift 16s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(43, 216, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 216, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
  animation: gridDrift 24s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-eyebrow {
  color: rgba(126, 240, 255, 0.76);
}

.hero-dept-title {
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
  line-height: 1.03;
  animation: heroFadeUp 0.72s ease 0.12s both;
}

.hero-school {
  color: #f8fbff;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(43, 216, 255, 0.22);
}

.hero-dept {
  width: fit-content;
  padding: 4px 0;
  color: var(--cyan);
  font-size: clamp(3rem, 7.6vw, 6rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(43, 216, 255, 0.42);
}

.hero-dept::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--orange), transparent);
  box-shadow: 0 0 24px rgba(43, 216, 255, 0.32);
}

.hero-school-fullname {
  margin: 0 0 18px;
  color: rgba(212, 231, 244, 0.82);
  font-size: clamp(0.86rem, 1.4vw, 1rem);
  font-weight: 800;
  line-height: 1.6;
  animation: heroFadeUp 0.72s ease 0.22s both;
}

.hero h1 {
  margin: 0;
  max-width: 830px;
  font-size: clamp(2.35rem, 4.35vw, 3.92rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  animation: heroFadeUp 0.78s ease 0.32s both;
}

.keep {
  white-space: nowrap;
}

.hero-title-sp,
.mobile-only {
  display: none;
}

.hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d7e5f3;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  animation: heroFadeUp 0.78s ease 0.46s both;
}

.hero-achievement-badge {
  display: inline-grid;
  gap: 4px;
  max-width: 100%;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 157, 46, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 157, 46, 0.14), rgba(43, 216, 255, 0.08)),
    rgba(7, 17, 38, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26), 0 0 26px rgba(255, 157, 46, 0.12);
  animation: heroFadeUp 0.78s ease 0.4s both;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
  max-width: 860px;
  margin-top: 28px;
}

.hero-proof-grid .hero-achievement-badge {
  display: grid;
  align-content: start;
  margin-top: 0;
}

.hero-achievement-badge p {
  margin: 4px 0 0;
  color: rgba(215, 229, 243, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.7;
}

.hero-denken-badge {
  border-color: rgba(255, 190, 82, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 190, 82, 0.2), rgba(43, 216, 255, 0.1)),
    rgba(7, 17, 38, 0.82);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 190, 82, 0.16),
    0 0 34px rgba(255, 190, 82, 0.2);
}

.hero-denken-badge .badge-label {
  color: #ffe0ad;
}

.badge-label {
  color: rgba(210, 222, 235, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
}

.hero-achievement-badge strong {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.45;
}

.hero-achievement-badge em {
  color: var(--orange);
  font-style: normal;
  text-shadow: 0 0 22px rgba(255, 157, 46, 0.28);
}

.hero-achievement-video-link {
  display: inline-grid;
  gap: 1px;
  justify-items: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 190, 82, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 190, 82, 0.2), rgba(43, 216, 255, 0.14)),
    rgba(5, 10, 24, 0.56);
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(255, 190, 82, 0.16), 0 0 28px rgba(43, 216, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-achievement-video-link span {
  font-size: 1rem;
  font-weight: 900;
}

.hero-achievement-video-link small {
  color: rgba(255, 226, 189, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-achievement-video-link:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 216, 255, 0.74);
  box-shadow: 0 16px 38px rgba(43, 216, 255, 0.22), 0 0 32px rgba(255, 190, 82, 0.24);
}

.physical-ai-note {
  margin: 0 0 22px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(43, 216, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.1), rgba(255, 157, 46, 0.08)),
    rgba(9, 23, 45, 0.76);
}

.physical-ai-note h3 {
  margin: 0 0 8px;
  color: #c9f6ff;
  line-height: 1.45;
}

.physical-ai-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.ai-change-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(43, 216, 255, 0.12), transparent 34%),
    radial-gradient(circle at 86% 28%, rgba(255, 190, 82, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(8, 19, 42, 0.97), rgba(5, 12, 28, 0.98));
}

.ai-change-section .section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.ai-change-section .section-head h2 {
  font-size: clamp(2.05rem, 4.3vw, 3.55rem);
  line-height: 1.22;
}

.ai-change-section .section-head p,
.ai-change-section .story-lede {
  max-width: 860px;
  line-height: 2;
}

.ai-change-section .story-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
}

.ai-change-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  margin-top: 32px;
}

.ai-shift-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.ai-shift-steps span,
.ai-shift-steps strong {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(43, 216, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(11, 27, 55, 0.72);
  color: var(--text);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.ai-shift-steps span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: rgba(255, 190, 82, 0.9);
  font-size: 1.3rem;
  font-weight: 900;
}

.ai-shift-steps strong {
  border-color: rgba(255, 190, 82, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 190, 82, 0.18), rgba(43, 216, 255, 0.12)),
    rgba(11, 27, 55, 0.78);
  color: #ffe0ad;
  box-shadow: 0 0 34px rgba(255, 190, 82, 0.2);
}

.ai-change-zone {
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 23, 45, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.23);
}

.ai-change-zone h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.45;
}

.zone-lede {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  line-height: 1.85;
}

.change-zone-shift {
  border-color: rgba(43, 216, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.16), rgba(11, 27, 55, 0.72)),
    rgba(9, 23, 45, 0.74);
}

.change-zone-shift h3 {
  color: #c9f6ff;
  text-shadow: 0 0 22px rgba(43, 216, 255, 0.22);
}

.change-zone-value {
  border-color: rgba(255, 190, 82, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 190, 82, 0.16), rgba(43, 216, 255, 0.06)),
    rgba(9, 23, 45, 0.78);
}

.change-zone-value h3 {
  color: #ffe0ad;
  text-shadow: 0 0 24px rgba(255, 190, 82, 0.2);
}

.ai-change-map {
  display: grid;
  gap: 12px;
}

.ai-change-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(43, 216, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.06), transparent),
    rgba(11, 27, 55, 0.8);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ai-change-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 216, 255, 0.38);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 0 24px rgba(43, 216, 255, 0.12);
}

.ai-change-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(43, 216, 255, 0.42);
}

.ai-change-card h4 {
  margin: 14px 0 12px;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.45;
}

.ai-change-card p,
.ai-change-card li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.03rem);
  line-height: 1.8;
}

.ai-change-card ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.1em;
}

.ai-change-card .change-target {
  margin-bottom: 10px;
  color: #dff9ff;
  font-weight: 800;
}

.change-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(43, 216, 255, 0.11);
  color: #c9f6ff;
  border: 1px solid rgba(43, 216, 255, 0.22);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 900;
  line-height: 1.4;
}

.change-high::before {
  background: rgba(116, 208, 255, 0.48);
}

.change-large::before {
  background: rgba(43, 216, 255, 0.48);
}

.change-physical::before {
  background: rgba(116, 232, 194, 0.48);
}

.change-stable::before {
  background: rgba(255, 216, 140, 0.55);
}

.change-value {
  transform: scale(1.02);
  border: 2px solid rgba(255, 190, 82, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 190, 82, 0.2), rgba(43, 216, 255, 0.1)),
    rgba(17, 34, 62, 0.92);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32), 0 0 38px rgba(255, 190, 82, 0.2);
}

.change-value:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(255, 210, 122, 0.86);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.36), 0 0 48px rgba(255, 190, 82, 0.28);
}

.change-value h4 {
  color: #fff4d8;
  font-size: clamp(1.42rem, 2.8vw, 1.9rem);
}

.change-value .change-label {
  background: rgba(255, 190, 82, 0.18);
  border-color: rgba(255, 190, 82, 0.45);
  color: #ffe0ad;
}

.change-value::before {
  background: linear-gradient(90deg, rgba(255, 190, 82, 0.92), rgba(43, 216, 255, 0.62));
}

.ai-strength-bridge {
  margin-top: 28px;
  padding: clamp(24px, 4.4vw, 38px);
  border: 1px solid rgba(255, 190, 82, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.12), rgba(255, 190, 82, 0.14)),
    rgba(8, 20, 44, 0.9);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28), 0 0 30px rgba(43, 216, 255, 0.1);
}

.ai-strength-bridge h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.45;
}

.ai-strength-bridge p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.ai-strength-bridge .bridge-emphasis {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 190, 82, 0.42);
  background: rgba(255, 190, 82, 0.12);
  color: #ffe0ad;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 900;
  line-height: 1.55;
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.story-section {
  position: relative;
}

.story-lede {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.95;
}

.story-card-grid,
.comparison-grid,
.career-highlight-grid {
  display: grid;
  gap: 18px;
}

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

.story-card,
.comparison-card,
.career-card,
.career-highlight article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.story-card,
.comparison-card,
.career-card {
  padding: clamp(20px, 3vw, 26px);
}

.story-card h3,
.comparison-card h3,
.career-card h3,
.career-highlight h3 {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.45;
}

.story-card p,
.comparison-card p,
.career-card p,
.career-card li {
  color: var(--muted);
  line-height: 1.85;
}

.career-card p {
  margin: 0 0 10px;
  font-size: 0.96rem;
}

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

.comparison-card ul,
.career-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.career-card li {
  position: relative;
  padding-left: 1.05rem;
}

.comparison-card li::before,
.career-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(43, 216, 255, 0.42);
}

.career-highlight {
  margin: 28px 0 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 157, 46, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 157, 46, 0.12), rgba(43, 216, 255, 0.06)),
    rgba(9, 23, 45, 0.88);
}

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

.career-highlight article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.career-highlight strong {
  color: #ffe0ad;
  line-height: 1.45;
}

.career-highlight span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

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

.career-card h3 {
  color: #c9f6ff;
}

.compact-panel {
  max-width: 920px;
  margin-inline: auto;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions {
  animation: heroFadeUp 0.78s ease 0.58s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(43, 216, 255, 0.24);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #7ef0ff);
  color: #04111f;
  border-color: transparent;
  box-shadow: 0 14px 42px rgba(43, 216, 255, 0.22);
}

.btn-secondary {
  background: rgba(255, 157, 46, 0.14);
  color: #ffe2bd;
  border-color: rgba(255, 157, 46, 0.46);
}

.btn-secondary:hover {
  box-shadow: 0 14px 38px rgba(255, 157, 46, 0.22);
}

.hero-brand-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow), 0 0 62px rgba(43, 216, 255, 0.24);
  animation: logoSlideIn 0.9s ease 0.42s both;
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-pulse {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(43, 216, 255, 0.22);
  box-shadow: 0 0 80px rgba(43, 216, 255, 0.25), inset 0 0 70px rgba(255, 157, 46, 0.12);
  animation: pulse 5s ease-in-out infinite;
}

.pillar-row {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pillar-row article {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(8, 24, 47, 0.82);
  border: 1px solid var(--line);
}

.pillar-row h2,
.info-card h3,
.license-card h3 {
  margin: 0 0 10px;
  line-height: 1.45;
}

.pillar-row p,
.info-card p,
.license-card p,
.section-head p,
.achievement-copy p,
.message-panel p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 94px 0;
  background: var(--navy-900);
}

.section.soft {
  background: linear-gradient(180deg, var(--navy-850), #0b1830);
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(1.95rem, 3.5vw, 3.12rem);
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p {
  font-size: 1.04rem;
}

.section-head .privacy-photo-note {
  margin-top: 12px;
  color: rgba(230, 237, 247, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

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

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-card,
.license-card,
.video-card,
.achievement-image {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.info-card,
.license-card {
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-weight: 900;
}

.accent-card {
  border-color: rgba(255, 157, 46, 0.34);
  background: linear-gradient(145deg, rgba(255, 157, 46, 0.14), rgba(15, 35, 65, 0.88));
}

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

.license-card.core {
  min-height: 250px;
}

.license-card.flagship {
  border-color: rgba(43, 216, 255, 0.38);
}

.pr-visual-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 216, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(14, 31, 61, 0.98), rgba(7, 17, 38, 0.98));
}

.pr-visual-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(43, 216, 255, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.08), rgba(255, 157, 46, 0.08)),
    rgba(13, 28, 58, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.pr-visual-link {
  display: block;
  border-radius: 14px;
}

.pr-visual-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
}

.pr-visual-note {
  margin: 1rem 0 0;
  color: rgba(230, 237, 247, 0.86);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pr-visual-button {
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(43, 216, 255, 0.12);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.related-list span,
.related-list strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.related-list span {
  color: var(--cyan);
  font-weight: 900;
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.practice-main {
  margin: 0;
}

.practice-photo-link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(126, 240, 255, 0.34);
  border-radius: var(--radius);
  background: #102746;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.practice-photo {
  display: block;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.practice-photo-link:hover .practice-photo {
  transform: scale(1.025);
}

.practice-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(126, 240, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.2), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 18px),
    #142f55;
  color: #d3e4f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.practice-placeholder strong {
  color: var(--text);
  font-size: 1.5rem;
}

.practice-main figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

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

.practice-list article {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--card-strong);
  border: 1px solid var(--line);
  font-weight: 900;
}

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

.practice-category-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 48, 86, 0.92), rgba(10, 23, 48, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

.practice-category-media,
.practice-thumbs a,
.practice-thumbs .privacy-person-thumb {
  display: block;
  overflow: hidden;
  background: #102746;
}

.practice-category-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.practice-category-card:hover .practice-category-media img,
.practice-thumbs a:hover img {
  transform: scale(1.025);
}

.practice-category-media.privacy-person-photo,
.practice-category-media.privacy-person-photo img,
.practice-thumbs .privacy-person-thumb,
.practice-thumbs .privacy-person-thumb img {
  cursor: default;
}

.practice-category-media.privacy-person-photo img,
.practice-thumbs .privacy-person-thumb img {
  transition: none;
}

.practice-category-card:hover .practice-category-media.privacy-person-photo img,
.practice-thumbs .privacy-person-thumb:hover img {
  transform: none;
}

.practice-category-body {
  padding: 20px 20px 16px;
}

.practice-category-body h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.45;
}

.practice-category-body p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.practice-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 20px 20px;
}

.practice-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease;
}

.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.photo-card,
.success-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.photo-card a,
.success-photo-card a,
.success-feature-media {
  display: block;
  overflow: hidden;
}

.photo-card img,
.success-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.photo-card a:hover img,
.success-photo-card a:hover img,
.success-feature-media:hover img {
  transform: scale(1.025);
}

.success-feature-media.success-photo-static,
.success-feature-media.success-photo-static img,
.success-photo-card.privacy-photo-card,
.success-photo-card.privacy-photo-card img {
  cursor: default;
}

.success-feature-media.success-photo-static img,
.success-photo-card.privacy-photo-card img {
  transition: none;
}

.success-feature-media.success-photo-static:hover img,
.success-photo-card.privacy-photo-card:hover img {
  transform: none;
}

.photo-card figcaption,
.success-photo-card figcaption {
  padding: 12px 14px;
  color: #d2deeb;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

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

.achievement-video-feature {
  margin: 0 0 24px;
  scroll-margin-top: 110px;
}

.achievement-video-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 157, 46, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 157, 46, 0.13), rgba(43, 216, 255, 0.08)),
    rgba(9, 23, 45, 0.9);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 157, 46, 0.1);
}

#video-achievement-feature:target .achievement-video-feature-card {
  border-color: rgba(245, 190, 80, 0.9);
  box-shadow:
    0 0 0 2px rgba(245, 190, 80, 0.5),
    0 0 46px rgba(245, 190, 80, 0.34),
    0 0 38px rgba(43, 216, 255, 0.14),
    0 22px 68px rgba(0, 0, 0, 0.3);
}

.achievement-video-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #081a31;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.achievement-video-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.achievement-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
}

.achievement-video-copy h3,
.achievement-video-copy h4 {
  margin: 0;
  line-height: 1.45;
}

.achievement-video-copy h3 {
  color: var(--orange);
  font-size: clamp(1.24rem, 2.4vw, 1.8rem);
}

.achievement-video-copy h4 {
  margin-top: 8px;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.achievement-video-copy p:not(.video-kicker) {
  margin: 14px 0 16px;
  color: var(--muted);
  line-height: 1.85;
}

.video-card {
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 216, 255, 0.45);
}

#video-achievement,
.anchor-offset {
  scroll-margin-top: 96px;
}

.featured-video-card {
  border-color: rgba(255, 157, 46, 0.46);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26), 0 0 28px rgba(255, 157, 46, 0.1);
}

.featured-video-card:hover {
  border-color: rgba(255, 157, 46, 0.72);
}

.thumb-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #081a31;
}

.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-ai-card {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.18), rgba(255, 157, 46, 0.14)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
    #07172f;
}

.thumb-ai-text {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(43, 216, 255, 0.36);
}

.thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.52));
}

.play-mark {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(43, 216, 255, 0.92);
  box-shadow: 0 0 34px rgba(43, 216, 255, 0.5);
  animation: playPulse 2.8s ease-in-out infinite;
}

.play-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-42%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #06101f;
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(5, 10, 24, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.video-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-body strong {
  line-height: 1.5;
}

.video-status {
  display: inline-flex;
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 157, 46, 0.16);
  color: #ffd7a3;
  border: 1px solid rgba(255, 157, 46, 0.36);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.5;
}

.video-status-strong {
  border-color: rgba(255, 190, 82, 0.56);
  background: rgba(255, 190, 82, 0.18);
  color: #ffe0ad;
}

.video-coming-soon {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(43, 216, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(43, 216, 255, 0.1);
  color: #dff9ff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
}

.video-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(43, 216, 255, 0.12);
  color: #c9f6ff;
  border: 1px solid rgba(43, 216, 255, 0.28);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.video-body span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.video-note {
  margin: 18px 0 0;
  color: rgba(215, 229, 243, 0.82);
  font-size: 0.92rem;
  line-height: 1.8;
}

.achievement-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: center;
}

.achievement-copy {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.achievement-copy h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.45;
}

.achievement-image {
  margin: 0;
  overflow: hidden;
}

.achievement-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fff;
}

.achievement-image figcaption {
  padding: 12px 14px;
  color: #d2deeb;
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.success-gallery {
  margin-top: 42px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 33, 67, 0.82), rgba(8, 18, 40, 0.9));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.success-head {
  max-width: 780px;
  margin-bottom: 22px;
}

.success-head h3,
.success-subhead h4 {
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.45;
}

.success-head h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.success-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.success-head .privacy-photo-note {
  margin-top: 12px;
  color: rgba(230, 237, 247, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.success-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
}

.success-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.success-feature-body {
  padding: clamp(20px, 3vw, 28px);
}

.success-feature-body h4 {
  margin: 8px 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.45;
}

.success-feature-body p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.success-subhead {
  margin-top: 28px;
}

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

.message-section {
  background: linear-gradient(135deg, #09172d, #102849);
}

.message-panel,
.cta-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.message-panel h2,
.cta-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.message-panel p {
  font-size: 1.08rem;
}

.cta-section {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 216, 255, 0.24), transparent 36%),
    linear-gradient(180deg, #0b1d38 0%, #082039 48%, #06101f 100%);
}

.cta-panel {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(43, 216, 255, 0.18), rgba(255, 157, 46, 0.13)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 90px rgba(43, 216, 255, 0.1);
}

.cta-panel h2 {
  max-width: 860px;
  margin-inline: auto;
}

.cta-actions {
  justify-content: center;
  margin-top: 38px;
}

.site-footer {
  padding: 54px 0;
  background: #040812;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 96px;
  padding: 7px;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 12px;
}

.site-footer h2,
.site-footer p {
  margin: 0 0 8px;
}

.site-footer p {
  color: var(--muted);
}

.ai-note {
  max-width: 760px;
  margin-top: 18px !important;
  font-size: 0.9rem;
}

.internal-note {
  max-width: 820px;
  margin-top: 18px !important;
  padding: 10px 12px;
  border: 1px solid rgba(255, 190, 82, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 190, 82, 0.08);
  color: #ffe0ad !important;
  font-size: 0.9rem;
  line-height: 1.7;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 18, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border: 1px solid rgba(43, 216, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(6, 16, 34, 0.98);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.video-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.video-modal__head h2 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.video-modal__close {
  border: 1px solid rgba(43, 216, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 900;
  padding: 8px 12px;
  cursor: pointer;
}

.video-modal video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #000;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(43, 216, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 17, 38, 0.9);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), 0 0 28px rgba(43, 216, 255, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top span {
  margin-top: -4px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.back-to-top small {
  margin-top: -8px;
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.back-to-top:hover {
  border-color: rgba(255, 157, 46, 0.65);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 157, 46, 0.24);
}

.floating-section-nav {
  position: fixed;
  right: 88px;
  bottom: 24px;
  z-index: 890;
  display: none;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(43, 216, 255, 0.3);
  border-radius: 14px;
  background: rgba(7, 17, 38, 0.86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease, border-color 180ms ease;
}

.floating-section-nav a {
  display: inline-flex;
  min-width: 48px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 11px;
  color: rgba(234, 242, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.floating-section-nav a:hover,
.floating-section-nav a:focus-visible {
  color: #fff;
  background: rgba(43, 216, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(121, 204, 255, 0.24), 0 0 18px rgba(43, 216, 255, 0.12);
}

@media (min-width: 901px) {
  .floating-section-nav {
    display: flex;
  }

  .floating-section-nav.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.modal-open .floating-section-nav,
  body.modal-open .back-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .floating-section-nav {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.footer-emblem {
  width: 104px;
  height: 104px;
}

.footer-emblem img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  opacity: 0.72;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes heroLightDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0);
    opacity: 0.5;
  }
  to {
    transform: translate3d(1.5%, 1%, 0);
    opacity: 0.85;
  }
}

@keyframes titleFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introLine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes playPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 28px rgba(43, 216, 255, 0.42);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 42px rgba(43, 216, 255, 0.58);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(250px, 1fr) auto 48px;
    gap: 12px;
  }

  .global-nav a {
    font-size: 0.82rem;
    padding-inline: 7px;
  }

  .card-grid.five,
  .video-grid,
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-change-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-shift-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-shift-steps span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) 44px 44px;
  }

  .brand-logo {
    width: 48px;
    height: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-lines::before {
    top: -7px;
  }

  .menu-lines::after {
    top: 7px;
  }

  .global-nav {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 38, 0.98);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: grid;
  }

  .global-nav a {
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
  }

  .header-emblem {
    width: 42px;
    height: 42px;
  }

  .header-emblem img {
    width: 30px;
    height: 30px;
  }

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

  .hero-inner,
  .practice-grid,
  .achievement-feature,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-brand-panel {
    min-height: auto;
  }

  .hero-logo-wrap {
    max-width: 320px;
  }

  .pillar-row,
  .license-grid,
  .card-grid,
  .story-card-grid,
  .comparison-grid,
  .career-grid,
  .career-highlight-grid,
  .ai-change-layout,
  .achievement-grid,
  .success-feature-card,
  .practice-category-grid {
    grid-template-columns: 1fr;
  }

  .equipment-gallery,
  .success-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }

  .practice-placeholder,
  .practice-photo {
    min-height: 300px;
  }

  .footer-emblem {
    width: 86px;
    height: 86px;
  }
}

@media (max-width: 560px) {
  .section {
    padding-inline: 0;
  }

  .hero {
    padding-inline: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container,
  .hero-inner,
  .pillar-row {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container {
    padding-inline: 1.1rem;
  }

  .header-inner {
    width: min(100% - 20px, 1120px);
    gap: 8px;
  }

  .hero-inner {
    display: block;
    padding-inline: 0;
  }

  .hero-copy,
  .hero-brand-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 34px;
    flex: 0 0 auto;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.66rem;
  }

  .header-emblem {
    width: 38px;
    height: 38px;
  }

  .header-emblem img {
    width: 27px;
    height: 27px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.75rem, 8.4vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-dept-title {
    gap: 2px;
    margin-bottom: 12px;
  }

  .hero-school {
    font-size: clamp(1.18rem, 6vw, 1.6rem);
  }

  .hero-dept {
    font-size: clamp(2.55rem, 17vw, 4rem);
  }

  .hero-school-fullname {
    margin-bottom: 16px;
    font-size: 0.82rem;
  }

  .hero-title-pc {
    display: none;
  }

  .hero-title-sp {
    display: inline;
  }

  .keep {
    white-space: normal;
  }

  .mobile-only {
    display: block;
  }

  .hero-lede {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-achievement-badge {
    width: 100%;
    margin-top: 22px;
    padding: 11px 12px;
  }

  .hero-achievement-badge strong {
    font-size: 1rem;
  }

  .hero-achievement-video-link {
    width: 100%;
    padding: 10px 12px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    width: 100%;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-brand-panel {
    margin-top: 28px;
  }

  .hero-logo-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .hero-logo-wrap img {
    max-width: 100%;
    height: auto;
  }

  .section-head,
  .practice-grid,
  .practice-main,
  .practice-list,
  .practice-category-grid,
  .practice-category-card,
  .equipment-gallery,
  .video-grid,
  .achievement-feature,
  .achievement-grid,
  .success-gallery,
  .success-feature-card,
  .success-photo-grid,
  .card-grid,
  .license-grid,
  .message-panel,
  .cta-panel,
  .footer-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-head h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .practice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .practice-main,
  .practice-placeholder,
  .practice-photo-link,
  .practice-photo,
  .practice-list article {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .practice-photo {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .practice-category-grid {
    gap: 1rem;
  }

  .practice-category-body {
    padding: 18px;
  }

  .practice-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 18px 18px;
  }

  .equipment-gallery,
  .success-photo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .success-gallery {
    padding: 18px;
  }

  .pr-visual-card {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .pr-visual-link,
  .pr-visual-link img {
    border-radius: 10px;
  }

  .pr-visual-note {
    font-size: 0.9rem;
  }

  .card-grid.five,
  .video-grid,
  .hero-proof-grid,
  .story-card-grid,
  .comparison-grid,
  .career-grid,
  .career-highlight-grid,
  .ai-change-layout,
  .achievement-video-feature-card {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid {
    gap: 10px;
  }

  .hero-achievement-badge {
    padding: 12px 13px;
  }

  .story-card,
  .comparison-card,
  .ai-change-card,
  .career-card,
  .career-highlight {
    padding: 18px;
  }

  .bridge-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ai-shift-steps {
    grid-template-columns: 1fr;
  }

  .ai-change-section .section-head h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.3rem);
  }

  .ai-change-zone h3 {
    font-size: clamp(1.38rem, 6vw, 1.82rem);
  }

  .change-value {
    transform: none;
  }

  .change-value:hover {
    transform: translateY(-3px);
  }

  .achievement-video-feature {
    scroll-margin-top: 92px;
  }

  .achievement-video-feature-card {
    gap: 16px;
    padding: 16px;
  }

  .info-card,
  .license-card,
  .achievement-copy {
    padding: 20px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
  }

  .back-to-top span {
    font-size: 1.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader {
    display: none !important;
  }

  body.is-loading {
    overflow: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Final mobile hero title switch. Keep this at the end so it wins over earlier rules. */
.learning-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.learning-visual-card {
  overflow: hidden;
  border: 1px solid rgba(93, 142, 205, 0.2);
  border-radius: 22px;
  background: #fff;
  color: #0b1633;
  box-shadow: 0 18px 44px rgba(10, 32, 66, 0.1);
}

.learning-visual-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #07132c;
  color: #fff;
  font: inherit;
  text-align: inherit;
}

.learning-visual-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.learning-visual-zoom {
  display: none;
}

.learning-visual-card > div {
  padding: 22px 24px 26px;
  background: #fff;
}

.learning-visual-card h3 {
  margin: 8px 0 10px;
  color: #0b1633;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.learning-visual-card p:not(.tag) {
  margin: 0;
  color: #3f4f6f;
  line-height: 1.85;
}

.learning-visual-card .tag {
  display: inline-flex;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  color: #007fa3;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(0, 191, 232, 0.12);
}

.learning-visual-card:hover h3 {
  color: #0b1633;
}

.learning-visual-card:hover p:not(.tag) {
  color: #3f4f6f;
}

.section-ai-image-note {
  max-width: 1120px;
  margin: 18px auto 0;
  color: rgba(235, 245, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 900px) {
  .learning-visual-media {
    cursor: zoom-in;
  }

  .learning-visual-media img {
    transition: filter 180ms ease, transform 220ms ease;
  }

  .learning-visual-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(3, 10, 31, 0.48);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .learning-visual-media:hover img,
  .learning-visual-media:focus-visible img {
    filter: brightness(0.72);
    transform: scale(1.015);
  }

  .learning-visual-media:hover .learning-visual-zoom,
  .learning-visual-media:focus-visible .learning-visual-zoom {
    opacity: 1;
  }

  .learning-visual-media:focus-visible {
    outline: 3px solid rgba(43, 216, 255, 0.8);
    outline-offset: -3px;
  }
}

.learning-lightbox[hidden] {
  display: none;
}

.learning-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.learning-lightbox.is-open {
  opacity: 1;
}

.learning-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 31, 0.9);
  backdrop-filter: blur(8px);
}

.learning-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 94vw;
  max-height: 94vh;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(75, 205, 255, 0.52);
  border-radius: 18px;
  background: rgba(5, 15, 37, 0.98);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.62), 0 0 34px rgba(43, 216, 255, 0.14);
  transform: translateY(8px);
  transition: transform 180ms ease;
}

.learning-lightbox.is-open .learning-lightbox__panel {
  transform: translateY(0);
}

.learning-lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid rgba(121, 204, 255, 0.2);
}

.learning-lightbox__head h2 {
  margin: 0;
  color: #f5f9ff;
  font-size: 1rem;
  line-height: 1.45;
}

.learning-lightbox__close {
  flex: 0 0 auto;
  border: 1px solid rgba(121, 204, 255, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.learning-lightbox__close:hover {
  border-color: rgba(121, 204, 255, 0.85);
  background: rgba(121, 204, 255, 0.14);
}

.learning-lightbox__panel > img {
  display: block;
  width: auto;
  max-width: 92vw;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  background: #020814;
}

.ai-value-visual-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 88% 4%, rgba(0, 191, 232, 0.16), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(47, 123, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #050a1f 0%, #07122c 100%);
}

.ai-value-visual-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(121, 204, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 204, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.ai-value-visual-section .container {
  position: relative;
  z-index: 1;
}

.ai-value-visual-head {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.ai-value-visual-head .eyebrow {
  color: #71dfff;
}

.ai-value-visual-head h2 {
  color: #f7faff;
}

.ai-value-visual-head > p:last-child {
  color: rgba(226, 237, 255, 0.78);
}

.ai-value-visual-card {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(0, 191, 232, 0.35);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 32px rgba(0, 191, 232, 0.08);
}

.ai-value-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.ai-value-visual-card figcaption {
  margin-top: 12px;
  color: rgba(235, 245, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: center;
}

.ai-value-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.ai-value-actions .btn {
  min-height: 52px;
  justify-content: center;
}

@media (max-width: 899px) {
  .learning-visual-media {
    cursor: default;
    pointer-events: none;
  }

  .learning-visual-zoom,
  .learning-lightbox {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .section-ai-image-note {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.7;
    text-align: left;
  }

  .section-ai-image-note br {
    display: none;
  }

  .ai-value-visual-section {
    padding: 44px 0 56px;
  }

  .ai-value-visual-head {
    text-align: left;
  }

  .ai-value-visual-head > p:last-child br {
    display: none;
  }

  .ai-value-visual-card {
    margin-top: 24px;
    padding: 8px;
    border-radius: 18px;
  }

  .ai-value-visual-card img {
    border-radius: 12px;
  }

  .ai-value-visual-card figcaption {
    padding: 0 4px 2px;
    font-size: 0.8rem;
    text-align: left;
  }

  .ai-value-actions {
    flex-direction: column;
    gap: 12px;
  }

  .ai-value-actions .btn {
    width: 100%;
  }
}

.hero-title-sp {
  display: none !important;
}

.hero-title-pc {
  display: inline !important;
}

@media (max-width: 768px) {
  .learning-visual-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .learning-visual-card > div {
    padding: 18px 18px 22px;
  }

  .hero-title-pc {
    display: none !important;
  }

  .hero-title-sp {
    display: inline !important;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(1.75rem, 8.4vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: 0;
    max-width: 100%;
    width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}
