:root {
  color-scheme: light;
  --ink: #1b2528;
  --sub: #5d676a;
  --rule: #cfd7d8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --navy: #0e2f3a;
  --navy-2: #173f4c;
  --aqua: #007d83;
  --sand: #ece4d2;
  --cream: #f5f1e8;
  --red: #9f342b;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Times New Roman", serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(14, 47, 58, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
h1, h2, h3, p { margin-top: 0; }

.academy-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--rule);
  background: rgba(251, 250, 246, 0.96);
}

.academy-brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.academy-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.academy-brand small {
  display: block;
  margin-top: 3px;
  color: var(--sub);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 48px;
  min-height: 48px;
  margin-right: 10px;
  place-content: center;
  border: 1px solid var(--rule);
  background: var(--white);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.academy-nav {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  display: none;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

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

.academy-nav a {
  min-height: 46px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  color: var(--sub);
  font-size: 0.9rem;
  font-weight: 800;
}

.academy-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--cream);
}

.academy-nav .trial-link {
  color: var(--white);
  background: var(--navy);
}

.academy-nav a[href="fees.html"],
.academy-nav a[href="access.html"],
.academy-nav a[href="faq.html"] {
  font-size: 0.86rem;
}

.hero {
  width: min(100% - 28px, 1160px);
  margin: 0 auto;
  padding: 32px 0 22px;
}

.hero-copy {
  padding: clamp(24px, 6vw, 56px);
  border: 1px solid var(--rule);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Times New Roman", serif;
  font-size: clamp(2.25rem, 8vw, 5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lead {
  max-width: 720px;
  color: var(--sub);
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--navy);
  width: fit-content;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  font-weight: 900;
}

.primary-action {
  background: var(--navy);
  color: var(--white);
}

.secondary-action {
  border-left: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--rule);
  border-top: 0;
  background: var(--white);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
}

.visual-note {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  max-width: 560px;
  padding: 16px 18px;
  border-left: 6px solid var(--sand);
  background: rgba(14, 47, 58, 0.82);
  color: var(--white);
}

.visual-note p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .hero {
    width: 100%;
    padding-top: 0;
  }

  .hero-copy {
    border-left: 0;
    border-right: 0;
    padding: 28px 18px;
  }

  .hero-visual {
    border-left: 0;
    border-right: 0;
  }

  .hero-visual img {
    height: 300px;
  }

  .visual-note {
    position: static;
    border-left: 0;
    border-top: 6px solid var(--sand);
  }

  .hero-actions {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    justify-content: center;
  }

  .secondary-action {
    border-left: 0;
    border-top: 1px solid var(--navy);
  }

  .wide-photo {
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
  }

  .wide-photo img {
    aspect-ratio: 4 / 3;
  }
}

.page {
  width: min(100% - 28px, 1060px);
  margin: 0 auto;
}

.page-hero {
  margin-top: 26px;
  padding: 26px 0 22px;
  border-bottom: 3px double var(--rule);
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
}

.breadcrumb {
  width: min(100% - 28px, 1060px);
  margin: 18px auto 0;
  color: var(--sub);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wide-photo {
  display: grid;
  border: 1px solid var(--rule);
  background: var(--white);
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.wide-photo figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--rule);
  color: var(--sub);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.7;
}

.photo-strip,
.image-grid {
  display: grid;
  gap: 14px;
}

.photo-strip {
  grid-template-columns: minmax(0, 1fr);
}

.image-card {
  display: grid;
  border: 1px solid var(--rule);
  background: var(--white);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption,
.image-card .image-copy {
  padding: 14px 16px;
  border-top: 1px solid var(--rule);
  color: var(--sub);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.75;
}

.image-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.detail-list li {
  list-style: none;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.detail-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.compact-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.compact-table th,
.compact-table td {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  text-align: left;
  line-height: 1.7;
}

.compact-table th {
  background: var(--cream);
  color: var(--navy);
  white-space: nowrap;
}

.quote-card {
  padding: 22px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.quote-card blockquote {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.8;
}

.quote-card p {
  margin: 0;
  color: var(--sub);
  line-height: 1.85;
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}

.info-table th {
  width: 28%;
  background: var(--cream);
  color: var(--navy);
  font-weight: 900;
}

.document-list {
  display: grid;
  border-top: 1px solid var(--rule);
}

.document-list a,
.plain-row {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.document-list strong,
.plain-row strong {
  color: var(--navy);
}

.document-list span,
.plain-row span {
  color: var(--sub);
  line-height: 1.7;
  font-size: 0.92rem;
  font-weight: 600;
}

.note-box {
  padding: 18px 20px;
  border: 1px solid var(--rule);
  border-left: 6px solid var(--aqua);
  background: var(--white);
}

.note-box p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.section-head h2 {
  margin-bottom: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.28;
}

.grid-3,
.grid-2,
.course-grid,
.instructor-grid,
.voice-grid,
.news-grid {
  display: grid;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.card,
.course-card,
.instructor-card,
.voice-card,
.news-card,
.result-row,
.faq-card {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.88);
}

.card h3,
.course-card h3,
.instructor-card h3,
.voice-card h3,
.news-card h3,
.faq-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.card p,
.course-card p,
.instructor-card p,
.voice-card p,
.news-card p,
.faq-card p,
.result-row p,
li {
  color: var(--sub);
  line-height: 1.86;
  font-weight: 600;
}

.label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 8px;
  border: 1px solid var(--aqua);
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.metric-band {
  display: grid;
  border: 1px solid var(--navy);
  background: var(--white);
}

.metric {
  padding: 20px 22px;
  border-bottom: 1px solid var(--navy);
}

.metric:last-child { border-bottom: 0; }

.metric strong {
  display: block;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.25rem;
}

.metric span {
  color: var(--sub);
  font-size: 0.85rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.timeline li {
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
}

.profile-photo {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
  border: 2px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.result-row {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}

.result-year {
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.news-card time {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.trial-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

.trial-panel p { color: rgba(255,255,255,0.78); }

.trial-panel .secondary-action {
  border: 1px solid rgba(255,255,255,0.42);
  background: transparent;
  color: var(--white);
  width: fit-content;
}

.local-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.local-menu a {
  padding: 8px 10px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-maker-hero {
  margin-top: 26px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(14, 47, 58, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 232, 0.9)),
    var(--white);
}

.article-maker-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 1.08;
}

.article-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: clamp(18px, 4vw, 28px);
  border-top: 4px double var(--navy);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.78);
}

.article-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.article-form label span {
  color: var(--sub);
  font-size: 0.84rem;
  font-weight: 700;
}

.article-form textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(14, 47, 58, 0.28);
  background:
    repeating-linear-gradient(transparent 0 33px, rgba(14, 47, 58, 0.08) 34px),
    #fffef9;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--navy);
}

.article-form-actions .secondary-action {
  border-left: 1px solid var(--navy);
}

.article-result-wrap {
  padding-top: 18px;
}

.newspaper-sheet {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 5vw, 44px);
  border: 1px solid #302a21;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.75), transparent 22%),
    repeating-linear-gradient(90deg, rgba(35, 28, 20, 0.03) 0 1px, transparent 1px 4px),
    #f7f0dc;
  color: #171411;
  box-shadow: 0 28px 80px rgba(22, 24, 24, 0.22);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Times New Roman", serif;
}

.newspaper-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 5px double #171411;
  border-bottom: 5px double #171411;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
}

.newspaper-masthead strong {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  letter-spacing: 0.08em;
}

.newspaper-kicker {
  margin: 24px 0 10px;
  color: #8b1f22;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.newspaper-title {
  max-width: 820px;
  margin: 0 0 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.7);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 1.14;
}

.newspaper-subhead {
  margin-bottom: 18px;
  color: #38312a;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 900;
  line-height: 1.8;
}

.article-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.34);
}

.article-keyword-chips span {
  padding: 4px 9px;
  border: 1px solid rgba(23, 20, 17, 0.45);
  background: rgba(255, 255, 255, 0.32);
  font-size: 0.82rem;
  font-weight: 900;
}

.newspaper-columns {
  column-count: 2;
  column-gap: 34px;
  column-rule: 1px solid rgba(23, 20, 17, 0.28);
}

.newspaper-columns p {
  margin: 0 0 1.2em;
  color: #171411;
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  font-weight: 700;
  line-height: 2.05;
  text-align: justify;
  break-inside: avoid;
}

.ending-stamp {
  position: absolute;
  top: clamp(76px, 12vw, 104px);
  right: clamp(18px, 5vw, 52px);
  padding: 8px 14px 7px;
  border: 4px solid currentColor;
  background: rgba(247, 240, 220, 0.82);
  font-size: clamp(1.2rem, 4vw, 2.4rem);
  font-weight: 900;
  transform: rotate(-8deg);
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.ending-stamp.true {
  color: #9f342b;
}

.ending-stamp.bad {
  color: #263941;
}

.newspaper-sheet.is-true {
  border-color: #7c1f1d;
}

.newspaper-sheet.is-bad {
  filter: saturate(0.86);
}

@media (max-width: 680px) {
  .article-form-actions,
  .article-form-actions .primary-action,
  .article-form-actions .secondary-action {
    width: 100%;
  }

  .article-form-actions .secondary-action {
    border-left: 0;
    border-top: 1px solid var(--navy);
  }

  .newspaper-masthead {
    align-items: flex-start;
    flex-direction: column;
  }

  .ending-stamp {
    position: static;
    display: inline-block;
    margin: 16px 0 0;
  }

  .newspaper-columns {
    column-count: 1;
  }
}

.academy-footer {
  width: min(100% - 28px, 1060px);
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--rule);
  color: var(--sub);
}

.memo-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
}

.memo-toggle {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 48px;
  border: 1px solid rgba(14, 47, 58, 0.85);
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(14, 47, 58, 0.24);
  cursor: pointer;
}

.memo-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  width: min(92vw, 390px);
  max-height: min(72vh, 620px);
  border: 1px solid rgba(14, 47, 58, 0.82);
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.memo-widget.is-open .memo-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.memo-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.memo-panel header p {
  margin: 0 0 4px;
  color: var(--aqua);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.memo-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
}

.memo-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.memo-panel-body {
  display: grid;
  gap: 16px;
  padding: 16px 18px;
  overflow: auto;
}

.memo-panel-body section {
  display: grid;
  gap: 8px;
}

.memo-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
}

.memo-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.memo-panel li {
  list-style: none;
  padding: 10px 12px;
  border-left: 4px solid var(--aqua);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
}

.memo-panel li strong,
.memo-panel li span {
  display: block;
  white-space: pre-wrap;
}

.memo-panel small {
  display: block;
  margin-top: 4px;
  color: var(--sub);
  font-size: 0.74rem;
}

.memo-transfer {
  display: grid;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.64);
}

.memo-transfer-issue,
.memo-transfer-copy {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(14, 47, 58, 0.48);
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.memo-transfer-code {
  display: grid;
  gap: 8px;
}

.memo-transfer-code[hidden] {
  display: none;
}

.memo-transfer-code p {
  margin: 0;
  color: var(--sub);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.65;
}

.memo-transfer-code code {
  display: block;
  padding: 10px;
  border: 1px solid var(--rule);
  background: #fbfaf6;
  color: var(--ink);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 0.76rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.memo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
  margin-top: 8px;
}

.memo-actions button,
.memo-form-actions button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(14, 47, 58, 0.42);
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.memo-actions button[data-memo-action="delete"] {
  border-color: rgba(126, 42, 42, 0.45);
  color: #7e2a2a;
}

.memo-empty {
  margin: 0;
  color: var(--sub);
  font-size: 0.88rem;
  font-weight: 700;
}

.memo-form {
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--rule);
  background: var(--white);
}

.memo-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
}

.memo-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 82px;
  padding: 10px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.6;
}

.memo-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.memo-form .memo-submit {
  justify-self: end;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.auth-page,
.gm-body {
  min-height: 100vh;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(14, 47, 58, 0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--paper);
}

.auth-body {
  padding-left: 0;
}

.auth-card {
  width: min(100%, 680px);
  margin: 7vh auto;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--rule);
  background: var(--white);
}

.auth-card.compact {
  width: min(100%, 480px);
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.auth-form input {
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.start-terms {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.92);
}

.start-terms h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.start-terms ul {
  margin: 0;
  padding-left: 1.2rem;
}

.check-label {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink);
}

.check-label input {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
}

.auth-form .primary-action {
  width: fit-content;
  border: 1px solid var(--navy);
  cursor: pointer;
}

.auth-form .secondary-action {
  width: fit-content;
  border: 1px solid var(--navy);
  cursor: pointer;
}

.form-error {
  padding: 12px 14px;
  border-left: 5px solid var(--red);
  background: #fff5f4;
  color: var(--red);
  font-weight: 800;
}

.soft-rule {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--rule);
}

.gm-body {
  padding: 0;
}

.gm-shell {
  width: min(100% - 28px, 1280px);
  margin: 0 auto;
  padding: 30px 0 54px;
}

.gm-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px double var(--rule);
}

.gm-head h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.gm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gm-actions .secondary-action {
  border: 1px solid var(--navy);
}

.gm-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
}

.gm-stats div {
  padding: 18px;
  background: var(--white);
}

.gm-stats strong {
  display: block;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
}

.gm-stats span {
  color: var(--sub);
  font-size: 0.82rem;
  font-weight: 800;
}

.gm-panel {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--rule);
  background: var(--white);
}

.gm-panel h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.gm-table-wrap {
  overflow: auto;
  border: 1px solid var(--rule);
}

.gm-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--white);
}

.gm-table th,
.gm-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.gm-table th {
  position: sticky;
  top: 0;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.82rem;
  z-index: 1;
}

.gm-table small {
  display: block;
  color: var(--sub);
}

.gm-table a {
  color: var(--aqua);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.log-table td {
  font-size: 0.86rem;
}

.checkpoint-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkpoint-list span {
  padding: 7px 10px;
  border: 1px solid var(--rule);
  color: var(--sub);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkpoint-list span.done {
  border-color: var(--aqua);
  background: #eefafa;
  color: var(--navy);
}

.op-body {
  --op-serif: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "BIZ UDPMincho", serif;
  --op-display: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "BIZ UDPMincho", serif;
  padding-left: 0;
  background: #071317;
  color: #eef7f5;
  overflow: hidden;
  font-family: var(--op-serif);
  font-feature-settings: "palt" 1, "pkna" 1;
}

.op-body *,
.op-body *::before,
.op-body *::after {
  font-family: var(--op-serif) !important;
}

.op-counter,
.op-year,
.op-number,
.op-label,
.op-status,
.op-fragments {
  font-family: "Shippori Mincho", "Noto Serif JP", "Times New Roman", serif !important;
}

.op-stage {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 125, 131, 0.32), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(159, 52, 43, 0.25), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 17px 100%,
    linear-gradient(135deg, #061014, #0d2027 52%, #05090b);
  isolation: isolate;
}

.op-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 48%, transparent 57%),
    linear-gradient(rgba(255, 255, 255, 0.04), transparent 38%);
  animation: opLight 6s ease-in-out infinite;
  z-index: -2;
}

.op-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 28%, rgba(0, 0, 0, 0.64) 86%);
  pointer-events: none;
  z-index: -1;
}

.op-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 4px);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: opNoise 0.22s steps(2) infinite;
  pointer-events: none;
}

.op-grid {
  position: absolute;
  inset: auto -10% 0;
  height: 46vh;
  background:
    linear-gradient(rgba(0, 125, 131, 0.36) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(0, 125, 131, 0.22) 1px, transparent 1px) 0 0 / 64px 100%;
  transform: perspective(520px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.32;
  animation: opGrid 5.4s linear infinite;
  pointer-events: none;
}

.op-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  animation: opFlash 11s linear infinite;
  pointer-events: none;
}

.op-counter {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 50px);
  color: rgba(238, 247, 245, 0.16);
  font-family: "Times New Roman", var(--op-display);
  font-size: clamp(4rem, 15vw, 13rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 28px rgba(125, 218, 221, 0.16);
  animation: opCounter 3.2s ease-in-out infinite;
}

.op-status {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  top: clamp(18px, 4vw, 44px);
  display: grid;
  gap: 7px;
  color: rgba(125, 218, 221, 0.75);
  font-size: clamp(0.62rem, 1.6vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-family: "Times New Roman", var(--op-serif);
}

.op-status span {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid rgba(125, 218, 221, 0.32);
  background: rgba(5, 13, 16, 0.54);
  animation: opBlink 1.8s steps(2) infinite;
}

.op-fragments {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 44px);
  display: grid;
  gap: 8px;
  color: rgba(238, 247, 245, 0.35);
  font-size: clamp(0.66rem, 1.8vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: right;
  font-family: "Times New Roman", var(--op-serif);
}

.op-fragments span {
  opacity: 0;
  animation: opFragment 1.4s ease forwards;
}

.op-fragments span:nth-child(1) { animation-delay: 4.1s; }
.op-fragments span:nth-child(2) { animation-delay: 6.4s; }
.op-fragments span:nth-child(3) { animation-delay: 8.7s; }

.op-sequence {
  position: relative;
  display: grid;
  width: min(100%, 1120px);
  min-height: min(760px, 86vh);
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  animation: opPanel 0.9s ease both;
}

.op-sequence::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(125, 218, 221, 0.26);
  box-shadow: inset 0 0 80px rgba(0, 125, 131, 0.08);
  pointer-events: none;
}

.op-sequence::after {
  content: "CONFIDENTIAL REPORT";
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(159, 52, 43, 0.76);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  transform: rotate(2deg);
}

.op-label {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  left: clamp(16px, 3vw, 32px);
  margin-bottom: 18px;
  color: #7ddadd;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-family: "Times New Roman", var(--op-serif);
  font-style: italic;
}

.op-sequence h1 {
  position: absolute;
  top: clamp(44px, 8vw, 78px);
  left: clamp(16px, 3vw, 32px);
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  font-family: var(--op-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 0 22px rgba(125, 218, 221, 0.38), 2px 0 rgba(159, 52, 43, 0.28);
  animation: opTitle 1.4s ease both;
  animation-delay: 2s;
}

.op-copy {
  position: relative;
  width: 100%;
  min-height: min(520px, 66vh);
}

.op-line {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(18px, 4vw, 54px);
  color: rgba(238, 247, 245, 0.94);
  font-family: var(--op-display);
  font-size: clamp(2rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.04em;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  transform: scale(0.96) translateY(18px);
  text-shadow: 0 0 28px rgba(125, 218, 221, 0.24), 0 5px 30px rgba(0, 0, 0, 0.5);
  animation: opSlide 4.6s ease both;
}

.op-line span,
.op-line small {
  display: block;
}

.op-line small {
  margin-top: 0.15em;
  color: rgba(125, 218, 221, 0.82);
  font-family: "Times New Roman", var(--op-display);
  font-size: 0.34em;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.op-line:nth-child(1) { animation-delay: 2.3s; }
.op-line:nth-child(2) { animation-delay: 6.3s; }
.op-line:nth-child(3) { animation-delay: 10.3s; }
.op-line:nth-child(4) { animation-delay: 14.3s; }
.op-line:nth-child(5) { animation-delay: 18.3s; }
.op-line:nth-child(6) { animation-delay: 22.3s; }
.op-line:nth-child(7) { animation-delay: 26.3s; }
.op-line:nth-child(8) { animation-delay: 30.3s; }
.op-line:nth-child(9) { animation-delay: 34.3s; }
.op-line:nth-child(10) { animation-delay: 38.3s; }
.op-line:nth-child(11) { animation-delay: 42.3s; }
.op-line:nth-child(12) { animation-delay: 46.3s; }
.op-line:nth-child(13) { animation-delay: 50.3s; }

.op-line.academy {
  overflow: visible;
  color: #ffffff;
  font-size: clamp(3.4rem, 12.6vw, 10.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.16em;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.42),
    0 0 54px rgba(125, 218, 221, 0.68),
    5px 0 rgba(159, 52, 43, 0.34);
  animation-name: opAcademyCut;
}

.op-line.academy::before,
.op-line.academy::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(84vw, 920px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 218, 221, 0.82), rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.24);
  box-shadow: 0 0 28px rgba(125, 218, 221, 0.42);
  animation: opAcademyRule 4.6s ease both;
  animation-delay: 30.3s;
}

.op-line.academy::before {
  top: 30%;
}

.op-line.academy::after {
  bottom: 31%;
}

.op-line.academy span {
  position: relative;
}

.op-line.academy span::after {
  content: "HAKUREI";
  position: absolute;
  left: 50%;
  top: -0.42em;
  color: rgba(125, 218, 221, 0.24);
  font-size: clamp(0.78rem, 1.8vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.48em;
  transform: translateX(-50%);
  text-shadow: none;
}

.op-line.academy small {
  margin-top: 0.62em;
  color: rgba(238, 247, 245, 0.82);
  font-size: clamp(0.92rem, 2.1vw, 1.8rem);
  letter-spacing: 0.32em;
  text-shadow: 0 0 24px rgba(125, 218, 221, 0.34);
}

.op-year {
  isolation: isolate;
  font-family: "Times New Roman", var(--op-display);
  font-size: clamp(6.8rem, 25vw, 20rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  animation-name: opYearCut;
}

.op-year::before,
.op-year::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(84vw, 880px);
  height: clamp(2px, 0.45vw, 5px);
  background: linear-gradient(90deg, transparent, rgba(125, 218, 221, 0.92), rgba(255, 255, 255, 0.82), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.2);
  box-shadow: 0 0 36px rgba(125, 218, 221, 0.52);
  animation: opYearBar 4.6s ease both;
  animation-delay: 2.3s;
  z-index: -1;
}

.op-year::before {
  top: 28%;
}

.op-year::after {
  bottom: 28%;
}

.op-year span {
  line-height: 0.86;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.36),
    0 0 72px rgba(125, 218, 221, 0.58),
    8px 0 rgba(159, 52, 43, 0.28),
    -8px 0 rgba(125, 218, 221, 0.24);
}

.op-year small {
  margin-top: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.26em;
  letter-spacing: 0.22em;
  text-shadow: 0 0 28px rgba(125, 218, 221, 0.48), 0 0 18px rgba(159, 52, 43, 0.28);
}

.op-left {
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(24px, 8vw, 120px);
  animation-name: opSlideLeft;
}

.op-right {
  align-items: flex-end;
  text-align: right;
  padding-right: clamp(24px, 8vw, 120px);
  animation-name: opSlideRight;
}

.op-left span + span,
.op-right span + span {
  margin-top: 0.18em;
}

.op-number {
  display: grid;
  grid-template-columns: auto auto auto auto;
  place-content: center;
  align-items: baseline;
  gap: clamp(10px, 2vw, 24px);
  color: #ffffff;
  font-family: "Times New Roman", var(--op-display);
  font-size: clamp(3.6rem, 13vw, 12rem);
  animation-name: opNumberCut;
}

.op-number small {
  margin-top: 0;
  color: rgba(238, 247, 245, 0.74);
  font-size: clamp(0.9rem, 2.8vw, 2.1rem);
  letter-spacing: 0.12em;
}

.op-triad {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  place-items: center;
  padding-inline: clamp(16px, 6vw, 90px);
  font-size: clamp(2rem, 6.4vw, 5.4rem);
  animation-name: opTriadCut;
}

.op-triad::before,
.op-triad::after {
  content: "";
  position: absolute;
  inset: 21% 22%;
  border: 1px solid rgba(125, 218, 221, 0.26);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 18px rgba(125, 218, 221, 0.16));
}

.op-triad::after {
  inset: 28% 30%;
  border-color: rgba(159, 52, 43, 0.28);
  transform: rotate(180deg);
}

.op-triad span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(112px, 22vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(238, 247, 245, 0.24);
  background: radial-gradient(circle at 50% 35%, rgba(125, 218, 221, 0.16), rgba(5, 13, 16, 0.68));
  box-shadow: 0 0 34px rgba(0, 125, 131, 0.14);
  border-radius: 999px;
}

.op-triad span:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
}

.op-triad span:nth-child(2) {
  grid-column: 2;
  grid-row: 3;
}

.op-triad span:nth-child(3) {
  grid-column: 4;
  grid-row: 3;
}

.op-docs {
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.8vw, 20px);
  padding-inline: clamp(16px, 5vw, 90px);
  font-size: clamp(1.15rem, 3.45vw, 3.15rem);
  animation-name: opDocsCut;
  perspective: 1200px;
}

.op-docs::before {
  content: "PRESS KIT / VERIFIED RECORDS";
  position: absolute;
  left: 50%;
  top: 11%;
  color: rgba(125, 218, 221, 0.3);
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  transform: translateX(-50%);
  text-shadow: 0 0 24px rgba(125, 218, 221, 0.3);
}

.op-docs::after {
  content: "";
  position: absolute;
  inset: 18% 6% 16%;
  border: 1px solid rgba(125, 218, 221, 0.18);
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(125, 218, 221, 0.16) 23% 23.4%, transparent 23.4% 49%, rgba(255,255,255,0.11) 49% 50%, transparent 50% 76%, rgba(159, 52, 43, 0.18) 76% 76.4%, transparent 76.4%),
    linear-gradient(180deg, rgba(159, 52, 43, 0.14), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px);
  box-shadow: inset 0 0 48px rgba(0, 125, 131, 0.08), 0 0 46px rgba(0, 0, 0, 0.24);
  transform: skewY(-2deg) rotate(-1deg);
  z-index: -1;
}

.op-docs span {
  --card-start: translate3d(-26vw, 10vh, -140px) rotateZ(-14deg) rotateY(-28deg) scale(0.92);
  --card-hold: translate3d(0, 0, 0) rotateZ(-5deg) rotateY(-10deg) scale(1);
  --card-hit: translate3d(0, -8px, 0) rotateZ(-5deg) rotateY(-10deg) scale(1.04);
  --card-exit: translate3d(-3vw, -7vh, -80px) rotateZ(-7deg) rotateY(-18deg) scale(0.96);
  position: relative;
  display: grid;
  min-height: clamp(142px, 21vw, 246px);
  place-items: end start;
  padding: clamp(18px, 3.4vw, 34px);
  border: 1px solid rgba(238, 247, 245, 0.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.2), transparent 22%),
    linear-gradient(180deg, rgba(125, 218, 221, 0.14), transparent 46%),
    linear-gradient(0deg, rgba(159, 52, 43, 0.14), transparent 34%),
    rgba(5, 13, 16, 0.8);
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.42),
    inset 0 0 28px rgba(125, 218, 221, 0.08);
  overflow: hidden;
  transform: var(--card-start);
  animation: opDocCard 4.6s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 38.3s;
}

.op-docs span::before {
  content: "FILE 01";
  position: absolute;
  left: clamp(12px, 1.8vw, 22px);
  top: clamp(10px, 1.6vw, 18px);
  width: auto;
  height: auto;
  border: 0;
  color: rgba(125, 218, 221, 0.68);
  font-family: "Times New Roman", var(--op-display);
  font-size: clamp(0.62rem, 1.25vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0 16px rgba(125, 218, 221, 0.34);
}

.op-docs span::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.36) 49%, transparent 60%);
  opacity: 0;
  transform: translateX(-34%);
  animation: opDocScan 4.6s ease both;
  animation-delay: inherit;
  pointer-events: none;
}

.op-docs span:nth-child(2) {
  --card-start: translate3d(0, 18vh, -170px) rotateZ(4deg) rotateX(24deg) scale(0.9);
  --card-hold: translate3d(0, -16px, 70px) rotateZ(1deg) rotateX(0deg) scale(1.08);
  --card-hit: translate3d(0, -28px, 90px) rotateZ(1deg) rotateX(0deg) scale(1.12);
  --card-exit: translate3d(0, -8vh, -80px) rotateZ(2deg) rotateX(-12deg) scale(0.98);
  color: #ffffff;
  animation-delay: 38.45s;
}

.op-docs span:nth-child(2)::before {
  content: "FILE 02";
  color: rgba(255, 232, 228, 0.72);
}

.op-docs span:nth-child(3) {
  --card-start: translate3d(26vw, 8vh, -140px) rotateZ(13deg) rotateY(28deg) scale(0.92);
  --card-hold: translate3d(0, 0, 0) rotateZ(5deg) rotateY(10deg) scale(1);
  --card-hit: translate3d(0, -8px, 0) rotateZ(5deg) rotateY(10deg) scale(1.04);
  --card-exit: translate3d(3vw, -7vh, -80px) rotateZ(7deg) rotateY(18deg) scale(0.96);
  animation-delay: 38.6s;
}

.op-docs span:nth-child(3)::before {
  content: "FILE 03";
}

.op-unease {
  color: #fff0ee;
  font-size: clamp(1.65rem, 5.8vw, 4.7rem);
  line-height: 1.34;
  text-shadow:
    0 0 22px rgba(159, 52, 43, 0.78),
    0 0 58px rgba(0, 0, 0, 0.72);
  animation-name: opUneaseCut;
}

.op-unease::before {
  content: "";
  position: absolute;
  inset: 18% 10%;
  border-left: 1px solid rgba(159, 52, 43, 0.66);
  border-right: 1px solid rgba(159, 52, 43, 0.36);
  opacity: 0;
  transform: scaleY(0.2);
  animation: opUneaseFrame 4.6s ease both;
  animation-delay: 46.3s;
}

.op-unease span:first-child {
  color: #ffb3aa;
  font-size: 0.72em;
  letter-spacing: 0.24em;
}

.op-line.strong {
  color: #ffffff;
  font-size: clamp(2rem, 6.6vw, 5.3rem);
  text-shadow: 0 0 28px rgba(159, 52, 43, 0.72), 0 0 48px rgba(0, 125, 131, 0.25);
  animation-name: opStrongCut;
}

.op-line.strong span + span {
  margin-top: 0.12em;
}

.op-final {
  display: block;
  position: absolute;
  inset: 0;
  padding-inline: clamp(16px, 5vw, 86px);
  font-size: clamp(2.2rem, 7.5vw, 6.4rem);
  isolation: isolate;
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.op-final::before,
.op-final::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(68vw, 760px);
  height: min(68vw, 760px);
  border: 1px solid rgba(125, 218, 221, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.45);
  opacity: 0;
  box-shadow: 0 0 70px rgba(125, 218, 221, 0.12), inset 0 0 46px rgba(125, 218, 221, 0.08);
  animation: opFinalRing 3.8s ease both;
}

.op-final::before {
  animation-delay: 52.55s;
}

.op-final::after {
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  border-color: rgba(159, 52, 43, 0.32);
  animation-delay: 53.25s;
}

.op-final span {
  position: absolute;
  display: block;
  width: max-content;
  max-width: 82vw;
  color: #fff;
  line-height: 0.95;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.4),
    0 0 42px rgba(125, 218, 221, 0.5),
    0 0 80px rgba(159, 52, 43, 0.26);
  opacity: 0;
  filter: blur(8px);
  z-index: 2;
}

.op-final span:nth-child(1) {
  left: 12%;
  top: 22%;
  transform: translate(-18vw, -4vh) rotate(-9deg) scale(1.28);
  animation: opFinalBangOne 4.1s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 52.45s;
}

.op-final span:nth-child(2) {
  right: 10%;
  top: 42%;
  color: #ffe9e5;
  transform: translate(18vw, 2vh) rotate(7deg) scale(1.22);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.45),
    0 0 48px rgba(159, 52, 43, 0.78);
  animation: opFinalBangTwo 3.6s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 53.15s;
}

.op-final span:nth-child(3) {
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 16vh) rotate(-2deg) scale(1.18);
  animation: opFinalBangThree 3.2s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 53.85s;
}

.op-final small {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 920px);
  margin: 0;
  padding: 0.14em 0.38em 0.24em;
  border-top: 1px solid rgba(125, 218, 221, 0.5);
  border-bottom: 1px solid rgba(159, 52, 43, 0.44);
  background:
    linear-gradient(90deg, transparent, rgba(5, 13, 16, 0.66) 18% 82%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(2.2rem, 6.8vw, 5.7rem);
  line-height: 1.16;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(125, 218, 221, 0.66),
    0 0 52px rgba(159, 52, 43, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-5deg) scale(1.18);
  animation: opFinalSeal 3s cubic-bezier(.13, 1.18, .24, 1) forwards;
  animation-delay: 57.1s;
  z-index: 3;
}

.op-recap {
  position: absolute;
  inset: clamp(96px, 14vh, 132px) clamp(16px, 5vw, 70px) clamp(92px, 13vh, 122px);
  display: grid;
  align-content: center;
  gap: clamp(5px, 1vh, 9px);
  padding: clamp(16px, 3vw, 30px);
  border: 1px solid rgba(125, 218, 221, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 22%),
    rgba(5, 13, 16, 0.74);
  box-shadow: 0 0 60px rgba(0, 125, 131, 0.12);
  opacity: 0;
  transform: translateY(18px);
  animation: opRecap 1.4s ease forwards;
  animation-delay: 61s;
}

.op-recap p {
  margin: 0;
  color: rgba(238, 247, 245, 0.84);
  font-family: var(--op-serif);
  font-size: clamp(0.72rem, 1.55vw, 1.06rem);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.op-recap strong {
  color: #ffffff;
  font-size: 1.08em;
  text-shadow: 0 0 18px rgba(159, 52, 43, 0.45);
}

.op-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 5vw, 40px);
  opacity: 0;
  transform: translateY(10px);
  animation: opLine 0.8s ease forwards;
  animation-delay: 62.4s;
}

.op-start,
.op-replay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(238, 247, 245, 0.45);
  color: #ffffff;
  font-family: var(--op-display);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.op-start {
  background: #007d83;
  border-color: #7ddadd;
  box-shadow: 0 0 24px rgba(0, 125, 131, 0.36);
}

.op-replay {
  background: rgba(255, 255, 255, 0.08);
}

@keyframes opLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opSlide {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(28px);
    filter: blur(5px);
  }
  14%, 78% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.035) translateY(-18px);
    filter: blur(4px);
  }
}

@keyframes opSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-12vw) scale(0.98);
    filter: blur(5px);
  }
  14%, 78% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateX(4vw) scale(1.02);
    filter: blur(4px);
  }
}

@keyframes opSlideRight {
  0% {
    opacity: 0;
    transform: translateX(12vw) scale(0.98);
    filter: blur(5px);
  }
  14%, 78% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-4vw) scale(1.02);
    filter: blur(4px);
  }
}

@keyframes opScaleCut {
  0% {
    opacity: 0;
    transform: scale(1.18);
    filter: blur(6px);
  }
  14%, 78% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(5px);
  }
}

@keyframes opYearCut {
  0% {
    opacity: 0;
    transform: scale(1.34) rotateX(18deg);
    filter: blur(10px);
    letter-spacing: 0.18em;
  }
  8% {
    opacity: 1;
    transform: scale(0.96) rotateX(0deg);
    filter: blur(0);
  }
  13% {
    transform: translateX(-12px) scale(1.02);
    text-shadow:
      12px 0 rgba(159, 52, 43, 0.5),
      -12px 0 rgba(125, 218, 221, 0.46),
      0 0 76px rgba(125, 218, 221, 0.72);
  }
  18%, 76% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    letter-spacing: 0;
  }
  100% {
    opacity: 0;
    transform: scale(0.82) translateY(-20px);
    filter: blur(8px);
    letter-spacing: 0.06em;
  }
}

@keyframes opYearBar {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.08);
  }
  10%, 74% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.25);
  }
}

@keyframes opNumberCut {
  0% {
    opacity: 0;
    transform: scaleX(1.14) translateY(22px);
    filter: blur(5px);
  }
  14%, 78% {
    opacity: 1;
    transform: scaleX(1) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.92) translateY(-18px);
    filter: blur(5px);
  }
}

@keyframes opTriadCut {
  0% {
    opacity: 0;
    transform: rotate(-2deg) scale(0.88);
    filter: blur(5px);
  }
  14%, 78% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: rotate(2deg) scale(1.06);
    filter: blur(5px);
  }
}

@keyframes opDocsCut {
  0% {
    opacity: 0;
    transform: translateY(7vh) rotateX(10deg) scale(0.94);
    filter: blur(5px);
  }
  14%, 76% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-5vh) rotateX(-8deg) scale(1.02);
    filter: blur(4px);
  }
}

@keyframes opDocCard {
  0% {
    opacity: 0;
    filter: blur(10px) brightness(0.82);
    transform: var(--card-start);
  }
  12% {
    opacity: 1;
    filter: blur(1px) brightness(1.12);
    transform: var(--card-hit);
  }
  19% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: var(--card-hold);
  }
  26% {
    box-shadow:
      0 36px 86px rgba(0, 0, 0, 0.5),
      0 0 42px rgba(125, 218, 221, 0.34),
      inset 0 0 32px rgba(125, 218, 221, 0.1);
  }
  72% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: var(--card-hold);
  }
  100% {
    opacity: 0;
    filter: blur(7px) brightness(0.84);
    transform: var(--card-exit);
  }
}

@keyframes opDocScan {
  0%, 17% {
    opacity: 0;
    transform: translateX(-34%);
  }
  30% {
    opacity: 0.7;
  }
  48%, 100% {
    opacity: 0;
    transform: translateX(38%);
  }
}

@keyframes opUneaseCut {
  0% {
    opacity: 0;
    transform: scale(1.06) translateY(18px);
    filter: blur(7px) contrast(1);
  }
  13% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) contrast(1);
  }
  20% {
    transform: translateX(-8px);
    filter: blur(0) contrast(1.18);
  }
  26%, 74% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0) contrast(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.03) translateY(-14px);
    filter: blur(8px) contrast(1.22);
  }
}

@keyframes opUneaseFrame {
  0% {
    opacity: 0;
    transform: scaleY(0.2);
  }
  16%, 72% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.3);
  }
}

@keyframes opAcademyCut {
  0% {
    opacity: 0;
    transform: scale(1.26) rotateX(12deg);
    filter: blur(8px);
    letter-spacing: 0.28em;
  }
  8% {
    opacity: 1;
    transform: scale(0.98) rotateX(0deg);
    filter: blur(0);
  }
  13% {
    transform: translateX(-10px) scale(1.02);
    text-shadow:
      8px 0 rgba(159, 52, 43, 0.44),
      -8px 0 rgba(125, 218, 221, 0.4),
      0 0 56px rgba(125, 218, 221, 0.62);
  }
  17%, 78% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    letter-spacing: 0.16em;
  }
  100% {
    opacity: 0;
    transform: scale(0.92) translateY(-18px);
    filter: blur(6px);
    letter-spacing: 0.22em;
  }
}

@keyframes opAcademyRule {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.18);
  }
  13%, 76% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.38);
  }
}

@keyframes opStrongCut {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(6px);
  }
  10%, 82% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
    filter: blur(5px);
  }
}

@keyframes opFinalRing {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.42); }
  18% { opacity: 0.76; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.32); }
}

@keyframes opFinalBangOne {
  0% { opacity: 0; filter: blur(9px); transform: translate(-18vw, -4vh) rotate(-9deg) scale(1.42); }
  12%, 70% { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(-9deg) scale(1); }
  82% { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(-9deg) scale(1); }
  100% { opacity: 0; filter: blur(9px); transform: translate(6vw, -5vh) rotate(-13deg) scale(0.9); }
}

@keyframes opFinalBangTwo {
  0% { opacity: 0; filter: blur(9px); transform: translate(18vw, 2vh) rotate(7deg) scale(1.38); }
  14%, 72% { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(7deg) scale(1); }
  84% { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(7deg) scale(1); }
  100% { opacity: 0; filter: blur(9px); transform: translate(-7vw, 4vh) rotate(11deg) scale(0.9); }
}

@keyframes opFinalBangThree {
  0% { opacity: 0; filter: blur(10px); transform: translate(-50%, 16vh) rotate(-2deg) scale(1.34); }
  16%, 74% { opacity: 1; filter: blur(0); transform: translate(-50%, 0) rotate(-2deg) scale(1); }
  86% { opacity: 1; filter: blur(0); transform: translate(-50%, 0) rotate(-2deg) scale(1); }
  100% { opacity: 0; filter: blur(10px); transform: translate(-50%, -7vh) rotate(3deg) scale(0.9); }
}

@keyframes opFinalSeal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) rotate(-8deg) scale(1.24);
  }
  18% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) rotate(-3deg) scale(0.96);
  }
  34% {
    transform: translate(-50%, -50%) rotate(-5deg) scale(1.04);
  }
  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) rotate(-4deg) scale(0.94);
  }
}

@keyframes opRecap {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opPanel {
  from {
    opacity: 0;
    transform: scale(0.985) translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes opTitle {
  0% { opacity: 0; transform: translateX(-8px); filter: blur(2px); }
  45% { opacity: 1; transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes opLight {
  0%, 100% { opacity: 0.55; transform: translateX(-10%); }
  50% { opacity: 1; transform: translateX(10%); }
}

@keyframes opGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 42px, 64px 0; }
}

@keyframes opNoise {
  0% { transform: translateY(0); }
  100% { transform: translateY(2px); }
}

@keyframes opFlash {
  0%, 8%, 20%, 42%, 100% { opacity: 0; }
  8.5%, 20.6%, 42.4% { opacity: 0.16; }
}

@keyframes opCounter {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.58; transform: translateY(3px); }
}

@keyframes opBlink {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.38; }
}

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

@media (max-width: 640px) {
  .op-sequence {
    min-height: 82vh;
  }

  .op-line {
    font-size: clamp(1.65rem, 10vw, 3.4rem);
    line-height: 1.34;
  }

  .op-left,
  .op-right {
    align-items: center;
    padding-inline: 14px;
    text-align: center;
  }

  .op-number {
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    font-size: clamp(3.4rem, 18vw, 6rem);
  }

  .op-number small {
    font-size: 0.38em;
  }

  .op-triad {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    font-size: clamp(1.4rem, 8vw, 2.4rem);
  }

  .op-triad::before,
  .op-triad::after {
    inset: 24% 13%;
  }

  .op-triad span {
    width: clamp(104px, 36vw, 150px);
  }

  .op-triad span:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .op-triad span:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .op-triad span:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .op-docs {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: clamp(1.1rem, 6vw, 2rem);
  }

  .op-docs span {
    --card-start: translate3d(-16vw, 8vh, -90px) rotateZ(-6deg) scale(0.92);
    --card-hold: translate3d(0, 0, 0) rotateZ(-1.5deg) scale(1);
    --card-hit: translate3d(0, -6px, 0) rotateZ(-1.5deg) scale(1.035);
    --card-exit: translate3d(-4vw, -6vh, -70px) rotateZ(-3deg) scale(0.96);
    min-height: 76px;
    padding: 16px 18px;
  }

  .op-docs span:nth-child(2) {
    --card-start: translate3d(0, 10vh, -90px) rotateZ(2deg) scale(0.92);
    --card-hold: translate3d(0, -4px, 50px) rotateZ(0deg) scale(1.035);
    --card-hit: translate3d(0, -9px, 60px) rotateZ(0deg) scale(1.06);
    --card-exit: translate3d(0, -6vh, -70px) rotateZ(1deg) scale(0.96);
  }

  .op-docs span:nth-child(3) {
    --card-start: translate3d(16vw, 8vh, -90px) rotateZ(6deg) scale(0.92);
    --card-hold: translate3d(0, 0, 0) rotateZ(1.5deg) scale(1);
    --card-hit: translate3d(0, -6px, 0) rotateZ(1.5deg) scale(1.035);
    --card-exit: translate3d(4vw, -6vh, -70px) rotateZ(3deg) scale(0.96);
  }

  .op-line.academy {
    font-size: clamp(3.2rem, 19vw, 5.8rem);
    line-height: 1.04;
    letter-spacing: 0.08em;
  }

  .op-line.academy::before {
    top: 27%;
  }

  .op-line.academy::after {
    bottom: 28%;
  }

  .op-line.academy span::after {
    top: -0.52em;
    font-size: 0.2em;
    letter-spacing: 0.36em;
  }

  .op-line.academy small {
    font-size: clamp(0.8rem, 4.6vw, 1.25rem);
    letter-spacing: 0.16em;
  }

  .op-final {
    font-size: clamp(2.6rem, 16vw, 4.8rem);
  }

  .op-final span {
    max-width: 86vw;
  }

  .op-final span:nth-child(1) {
    left: 8%;
    top: 18%;
  }

  .op-final span:nth-child(2) {
    right: 8%;
    top: 39%;
  }

  .op-final span:nth-child(3) {
    bottom: 25%;
  }

  .op-final small {
    top: 50%;
    width: min(90vw, 560px);
    font-size: clamp(1.72rem, 9.2vw, 3rem);
    letter-spacing: 0.04em;
  }

  .op-recap {
    inset: 92px 12px 98px;
    overflow: hidden;
  }

  .op-recap p {
    font-size: clamp(0.62rem, 2.7vw, 0.86rem);
    line-height: 1.42;
  }

  .op-actions {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}

@media (min-width: 860px) {
  body {
    padding-left: 252px;
  }

  .auth-page,
  .gm-body {
    padding-left: 28px;
  }

  .auth-body {
    padding-left: 0;
  }

  .academy-header {
    position: fixed;
    inset: 0 auto 0 0;
    width: 252px;
    min-height: 100vh;
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
    background: var(--white);
  }

  .academy-brand {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 22px 24px;
    border-bottom: 1px solid var(--rule);
  }

  .academy-mark {
    width: 58px;
    height: 58px;
  }

  .menu-button { display: none; }

  .academy-nav {
    position: static;
    display: grid;
    border-bottom: 0;
    background: transparent;
  }

  .academy-nav a {
    border-top: 0;
    border-bottom: 1px solid var(--rule);
    min-height: 40px;
    padding: 11px 22px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 38px 0 26px;
  }

  .hero-copy {
    min-height: 420px;
  }

  .hero-visual {
    margin-top: -1px;
  }

  .grid-3,
  .course-grid,
  .instructor-grid,
  .voice-grid,
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    border-bottom: 0;
    border-right: 1px solid var(--navy);
  }

  .metric:last-child { border-right: 0; }

  .result-row {
    grid-template-columns: 120px 1fr;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .gm-head,
  .gm-stats {
    grid-template-columns: 1fr;
  }

  .gm-head {
    display: grid;
  }
}
