/* ============================================
   79ACADEMY HOMEPAGE PLUGIN
   Version: 1.8
   Scope: [79academy_homepage]
   ============================================ */

/* ---- Page-level overrides ---- */
.academy-homepage-page header.site-header,
.academy-homepage-page .site-footer,
.academy-homepage-page footer.site-info {
  display: none;
}

.academy-homepage-page .inside-article,
.academy-homepage-page .entry-content,
.academy-homepage-page .content-area,
.academy-homepage-page .site-main {
  background: transparent;
  padding: 0;
  max-width: 100%;
}

/* ---- Design tokens ---- */
.academy-homepage {
  --ahp-bg: #0A0E17;
  --ahp-bg-card: #141821;
  --ahp-accent: #2F80FF;
  --ahp-accent-soft: #60A5FF;
  --ahp-text: #FFFFFF;
  --ahp-text-soft: rgba(255, 255, 255, 0.62);
  position: relative;
  overflow-x: clip;
  color: var(--ahp-text);
}

.academy-homepage *,
.academy-homepage *::before,
.academy-homepage *::after {
  box-sizing: border-box;
}

/* ---- Shared section layout ---- */
.academy-homepage .ahp-section {
  position: relative;
  padding: 88px 0;
}

.academy-homepage .ahp-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ================================================
   1. HERO
   ================================================ */

.academy-homepage .ahp-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--ahp-bg);
  background-position: center;
  background-size: cover;
}

.academy-homepage .ahp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(47, 128, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.35) 0%, rgba(8, 12, 22, 0.62) 64%, rgba(8, 12, 22, 0.95) 100%);
  z-index: 1;
}

.academy-homepage .ahp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.academy-homepage .ahp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.25) 0%, rgba(10, 14, 23, 0.55) 55%, rgba(10, 14, 23, 0.96) 100%);
  z-index: 2;
  pointer-events: none;
}

.academy-homepage .ahp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  animation: ahp-heroIn 1s ease-out;
}

@keyframes ahp-heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.academy-homepage .ahp-hero-headline {
  margin: 0 0 16px;
  line-height: 1;
}

.academy-homepage .ahp-hero-logo {
  display: block;
  width: min(300px, 72vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(47, 128, 255, 0.25));
}

.academy-homepage .ahp-hero-sub {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.68);
}

/* ---- Shared button styles ---- */
.academy-homepage .ahp-hero-btn,
.academy-homepage .ahp-cta-btn,
.academy-homepage .ahp-pillar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 40px;
  border: 0;
  border-radius: 10px;
  background: var(--ahp-accent);
  color: var(--ahp-text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.academy-homepage .ahp-hero-btn:hover,
.academy-homepage .ahp-cta-btn:hover,
.academy-homepage .ahp-pillar-cta:hover {
  background: var(--ahp-accent-soft);
  color: var(--ahp-text);
  transform: translateY(-1px);
}

.academy-homepage .ahp-hero-btn:active,
.academy-homepage .ahp-cta-btn:active,
.academy-homepage .ahp-pillar-cta:active {
  transform: translateY(0);
}

.academy-homepage .ahp-hero-btn:focus-visible,
.academy-homepage .ahp-cta-btn:focus-visible,
.academy-homepage .ahp-pillar-cta:focus-visible {
  outline: 2px solid var(--ahp-accent);
  outline-offset: 4px;
}

/* ---- Scroll indicator ---- */
.academy-homepage .ahp-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  cursor: pointer;
  animation: ahp-bounce 2s infinite;
  transition: opacity 0.5s ease;
}

.academy-homepage .ahp-scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.2s ease;
}

.academy-homepage .ahp-scroll-indicator:hover svg {
  stroke: var(--ahp-text);
}

@keyframes ahp-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}


/* ================================================
   2-4. STORY SECTIONS (WHY, HOW, WHAT)
   ================================================ */

/* ---- Gradient headlines ---- */
.academy-homepage .ahp-gradient-headline {
  background: linear-gradient(135deg, #FFFFFF 35%, var(--ahp-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Subtle accent glows (::before) ---- */
.academy-homepage .ahp-why::before,
.academy-homepage .ahp-how::before,
.academy-homepage .ahp-what::before,
.academy-homepage .ahp-solution::before,
.academy-homepage .ahp-credentials::before,
.academy-homepage .ahp-cta-final::before {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: none;
}

.academy-homepage .ahp-why::before {
  top: -120px;
  right: -110px;
  width: 620px;
  height: 520px;
  background: radial-gradient(circle, rgba(47, 128, 255, 0.06) 0%, rgba(47, 128, 255, 0.012) 46%, transparent 74%);
}

.academy-homepage .ahp-how::before {
  top: -130px;
  left: -130px;
  width: 620px;
  height: 500px;
  background: radial-gradient(circle, rgba(47, 128, 255, 0.05) 0%, rgba(47, 128, 255, 0.012) 44%, transparent 74%);
}

.academy-homepage .ahp-what::before {
  top: -130px;
  left: 50%;
  width: 640px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(47, 128, 255, 0.05) 0%, rgba(47, 128, 255, 0.012) 45%, transparent 76%);
}

.academy-homepage .ahp-solution::before {
  top: -100px;
  left: 50%;
  width: 760px;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47, 128, 255, 0.06) 0%, rgba(47, 128, 255, 0.016) 44%, transparent 76%);
}

.academy-homepage .ahp-credentials::before {
  top: 50%;
  left: 50%;
  width: 620px;
  height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(47, 128, 255, 0.05) 0%, rgba(47, 128, 255, 0.015) 46%, transparent 76%);
}

.academy-homepage .ahp-cta-final::before {
  top: -90px;
  left: 50%;
  width: 700px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47, 128, 255, 0.07) 0%, rgba(47, 128, 255, 0.018) 45%, transparent 76%);
}

/* ---- Second glow pseudo-elements (::after) ---- */
.academy-homepage .ahp-why::after,
.academy-homepage .ahp-how::after,
.academy-homepage .ahp-what::after,
.academy-homepage .ahp-solution::after,
.academy-homepage .ahp-credentials::after,
.academy-homepage .ahp-cta-final::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.academy-homepage .ahp-why::after {
  bottom: -180px;
  left: -140px;
  width: 520px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(96, 165, 255, 0.04) 0%, transparent 72%);
}

.academy-homepage .ahp-how::after {
  right: -120px;
  bottom: -200px;
  width: 500px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(96, 165, 255, 0.035) 0%, transparent 72%);
}

.academy-homepage .ahp-what::after {
  bottom: -170px;
  right: -120px;
  width: 540px;
  height: 460px;
  background: radial-gradient(circle, rgba(96, 165, 255, 0.04) 0%, transparent 74%);
}

.academy-homepage .ahp-solution::after {
  right: -150px;
  bottom: -230px;
  width: 640px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(96, 165, 255, 0.05) 0%, transparent 74%);
}

.academy-homepage .ahp-credentials::after {
  right: -160px;
  top: -160px;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(96, 165, 255, 0.04) 0%, transparent 73%);
}

.academy-homepage .ahp-cta-final::after {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 740px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(96, 165, 255, 0.05) 0%, transparent 75%);
}

/* ---- Story grid ---- */
.academy-homepage .ahp-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 96px;
  align-items: start;
}

.academy-homepage .ahp-story-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
  text-align: center;
}

.academy-homepage .ahp-why .ahp-story-text,
.academy-homepage .ahp-what .ahp-story-text {
  margin-right: auto;
  margin-left: 0;
}

.academy-homepage .ahp-how .ahp-story-text {
  margin-left: auto;
  margin-right: 0;
}

.academy-homepage .ahp-story-text h2,
.academy-homepage .ahp-credentials h2,
.academy-homepage .ahp-cta-headline {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
}

.academy-homepage .ahp-story-text p,
.academy-homepage .ahp-solution-sub,
.academy-homepage .ahp-cred-role,
.academy-homepage .ahp-cta-sub {
  color: var(--ahp-text-soft);
}

.academy-homepage .ahp-story-text p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.75;
}

.academy-homepage .ahp-story-text p:last-child {
  margin-bottom: 0;
}

/* ---- Highlight marker ---- */
.academy-homepage .ahp-highlight {
  color: var(--ahp-text);
  font-weight: 600;
  font-style: italic;
}

/* ---- Story images ---- */
.academy-homepage .ahp-story-img {
  position: relative;
  z-index: 2;
  width: clamp(280px, 32vw, 470px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  contain: layout paint;
}

.academy-homepage .ahp-story-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
}

.academy-homepage .ahp-how .ahp-story-img img {
  object-fit: cover;
  object-position: center top;
}

/* ---- Story thread SVG ---- */
.academy-homepage .ahp-story-thread {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.academy-homepage .ahp-story-thread path {
  vector-effect: non-scaling-stroke;
}


/* ================================================
   5. SOLUTION — 6 Pillar Flip Cards
   ================================================ */

.academy-homepage .ahp-solution {
  padding-top: 110px;
}

.academy-homepage .ahp-solution-logo {
  display: block;
  width: min(211px, 49vw);
  height: auto;
  margin: 0 auto 16px;
}

.academy-homepage .ahp-solution-sub {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
}

.academy-homepage .ahp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.academy-homepage .ahp-pillar-card {
  perspective: 1000px;
  height: 250px;
  cursor: pointer;
  contain: layout paint;
}

.academy-homepage .ahp-pillar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.academy-homepage .ahp-pillar-card.is-flipped .ahp-pillar-inner {
  transform: rotateY(180deg);
}

.academy-homepage .ahp-pillar-front,
.academy-homepage .ahp-pillar-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(47, 128, 255, 0.12);
  background: var(--ahp-bg-card);
  box-shadow: 0 0 20px rgba(47, 128, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.academy-homepage .ahp-pillar-front {
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.academy-homepage .ahp-pillar-back {
  justify-content: center;
  gap: 8px;
  padding: 14px;
  text-align: center;
  background: var(--ahp-bg);
  transform: rotateY(180deg);
}

.academy-homepage .ahp-pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.academy-homepage .ahp-pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.academy-homepage .ahp-pillar-title {
  margin: 0;
  color: var(--ahp-text);
  font-size: 18px;
  font-weight: 600;
}

.academy-homepage .ahp-pillar-video-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ahp-bg);
}

.academy-homepage .ahp-pillar-video-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
}

.academy-homepage .ahp-pillar-video-wrap video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.academy-homepage .ahp-pillar-login,
.academy-homepage .ahp-cta-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.18s ease;
}

.academy-homepage .ahp-pillar-login:hover,
.academy-homepage .ahp-cta-login:hover {
  color: var(--ahp-accent);
}

.academy-homepage .ahp-pillar-login:focus-visible,
.academy-homepage .ahp-cta-login:focus-visible {
  outline: 2px solid var(--ahp-accent);
  outline-offset: 2px;
}


/* ================================================
   6. CREDENTIALS
   ================================================ */

.academy-homepage .ahp-credentials {
  text-align: center;
}

.academy-homepage .ahp-cred-profile {
  margin-bottom: 40px;
}

.academy-homepage .ahp-cred-photo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

.academy-homepage .ahp-cred-name {
  margin: 0 0 6px;
  color: var(--ahp-text);
  font-size: 18px;
  font-weight: 600;
}

.academy-homepage .ahp-cred-role {
  margin: 0;
  font-size: 14px;
}

.academy-homepage .ahp-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.academy-homepage .ahp-stat-item {
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(20, 24, 33, 0.84);
  transition: border-color 0.2s ease;
}

.academy-homepage .ahp-stat-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.academy-homepage .ahp-stat-number {
  display: block;
  margin-bottom: 8px;
  color: var(--ahp-accent);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.academy-homepage .ahp-stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}


/* ================================================
   7. FINAL CTA
   ================================================ */

.academy-homepage .ahp-cta-final {
  padding-bottom: 120px;
  text-align: center;
}

.academy-homepage .ahp-cta-box {
  max-width: 640px;
  margin: 0 auto;
}

.academy-homepage .ahp-cta-sub {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.65;
}

.academy-homepage .ahp-cta-login {
  margin-top: 12px;
}


/* ================================================
   STATIC CONTENT (scroll animations removed in v1.7)
   ================================================ */

.academy-homepage .ahp-reveal,
.academy-homepage .ahp-reveal-stagger > *,
.academy-homepage .ahp-text-stagger > *,
.academy-homepage .ahp-img-reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
}


/* ================================================
   RESPONSIVE — Tablet
   ================================================ */

@media (max-width: 1023px) {
  .academy-homepage .ahp-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ================================================
   RESPONSIVE — Mobile
   ================================================ */

@media (max-width: 767px) {
  .academy-homepage .ahp-section {
    padding: 64px 0;
  }

  .academy-homepage .ahp-container {
    padding: 0 16px;
  }

  /* Hero */
  .academy-homepage .ahp-hero {
    align-items: flex-end;
    padding-bottom: 76px;
  }

  .academy-homepage .ahp-hero-logo {
    width: min(220px, 70vw);
  }

  .academy-homepage .ahp-hero-sub {
    font-size: 18px;
  }

  .academy-homepage .ahp-hero-btn,
  .academy-homepage .ahp-cta-btn {
    width: min(280px, 100%);
    padding: 14px 24px;
    font-size: 17px;
  }

  /* Hero video — starts invisible, fades in when playing */
  .academy-homepage .ahp-hero-video {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .academy-homepage .ahp-hero-video.is-playing {
    opacity: 1;
  }

  .academy-homepage .ahp-hero.is-video-playing {
    background-image: none !important;
  }

  /* Story */
  .academy-homepage .ahp-story-grid {
    gap: 92px;
  }

  .academy-homepage .ahp-story-text {
    max-width: 76%;
  }

  .academy-homepage .ahp-story-text h2,
  .academy-homepage .ahp-credentials h2,
  .academy-homepage .ahp-cta-headline {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .academy-homepage .ahp-story-text p,
  .academy-homepage .ahp-solution-sub,
  .academy-homepage .ahp-cta-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .academy-homepage .ahp-story-img {
    width: clamp(160px, 48vw, 220px);
  }

  /* Solution */
  .academy-homepage .ahp-solution-logo {
    width: min(160px, 42vw);
  }

  .academy-homepage .ahp-solution-sub {
    margin-bottom: 24px;
  }

  .academy-homepage .ahp-pillar-card {
    height: auto;
    aspect-ratio: 1;
  }

  .academy-homepage .ahp-pillar-front {
    padding: 28px 16px;
  }

  .academy-homepage .ahp-pillar-back {
    padding: 10px;
    gap: 6px;
  }

  .academy-homepage .ahp-pillar-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .academy-homepage .ahp-pillar-title {
    font-size: 15px;
  }

  .academy-homepage .ahp-pillar-cta {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .academy-homepage .ahp-pillar-login {
    min-height: 0;
    padding: 4px 8px;
    font-size: 11px;
  }

  /* Credentials */
  .academy-homepage .ahp-cred-profile {
    margin-bottom: 28px;
  }

  .academy-homepage .ahp-cred-photo {
    width: 100px;
    height: 100px;
  }

  .academy-homepage .ahp-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .academy-homepage .ahp-stat-item {
    padding: 10px 8px;
  }

  .academy-homepage .ahp-stat-number {
    font-size: 28px;
  }

  /* CTA */
  .academy-homepage .ahp-cta-final {
    padding-bottom: 100px;
  }

  .academy-homepage .ahp-cta-headline {
    font-size: 18px;
    line-height: 1.2;
  }

  .academy-homepage .ahp-cta-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .academy-homepage .ahp-cta-box {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Scroll indicator — no bounce on mobile for performance */
  .academy-homepage .ahp-scroll-indicator {
    animation: none;
  }

  /* Remove decorative glows on mobile — 12 paint layers eliminated */
  .academy-homepage .ahp-why::before,
  .academy-homepage .ahp-how::before,
  .academy-homepage .ahp-what::before,
  .academy-homepage .ahp-solution::before,
  .academy-homepage .ahp-credentials::before,
  .academy-homepage .ahp-cta-final::before,
  .academy-homepage .ahp-why::after,
  .academy-homepage .ahp-how::after,
  .academy-homepage .ahp-what::after,
  .academy-homepage .ahp-solution::after,
  .academy-homepage .ahp-credentials::after,
  .academy-homepage .ahp-cta-final::after {
    display: none;
  }

  /* Remove SVG blur filter on mobile — GPU-intensive */
  .academy-homepage .ahp-story-thread .ahp-thread-glow {
    display: none;
  }

}


/* ================================================
   ACCESSIBILITY — Reduced Motion
   ================================================ */

@media (prefers-reduced-motion: reduce) {
  .academy-homepage .ahp-hero-content {
    animation: none;
  }

  .academy-homepage .ahp-hero-video {
    transition: none;
  }

  .academy-homepage .ahp-hero-btn,
  .academy-homepage .ahp-cta-btn,
  .academy-homepage .ahp-pillar-cta,
  .academy-homepage .ahp-pillar-login,
  .academy-homepage .ahp-cta-login {
    transition: none;
  }

  .academy-homepage .ahp-pillar-inner {
    transition-duration: 0.01s;
  }

  .academy-homepage .ahp-scroll-indicator {
    animation: none;
  }
}
