:root {
  --bg-1: #2a2fbe;
  --bg-2: #4d5eff;
  --bg-3: #79d8ff;
  --white: #ffffff;
  --text: #fefeff;
  --ink: #16225f;
  --muted: #dbe5ff;
  --panel: rgba(255, 255, 255, 0.18);
  --panel-strong: rgba(255, 255, 255, 0.26);
  --pink: #ff75b6;
  --yellow: #ffd85b;
  --mint: #9effc8;
  --cyan: #90eaff;
  --peach: #ffb28a;
  --shadow: 0 24px 60px rgba(14, 21, 100, 0.26);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 91, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 117, 182, 0.22), transparent 22%),
    linear-gradient(180deg, #4550f5 0%, #2b36c2 45%, #27308f 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.blob,
.stars {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.stars {
  inset: 0;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.85);
  animation: twinkle var(--duration) ease-in-out infinite;
}

.blob {
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.blob-a {
  top: -8rem;
  left: -8rem;
  background: rgba(255, 117, 182, 0.5);
}

.blob-b {
  top: 8rem;
  right: -10rem;
  background: rgba(144, 234, 255, 0.45);
}

.blob-c {
  bottom: -10rem;
  left: 25%;
  background: rgba(255, 214, 91, 0.35);
}

.site-header,
.stat-card,
.info-card,
.service-card,
.power-card,
.contact-panel,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.site-header {
  width: min(calc(100% - 28px), var(--max));
  margin: 16px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 12px;
  z-index: 30;
  transform: translateY(0);
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0.96;
}

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

.brand-logo,
.button,
.service-icon,
.journey-dot,
.eyebrow,
h1,
h2,
h3,
.power-badge,
.contact-label {
  font-family: "Baloo 2", cursive;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-copy strong {
  font-size: 1.4rem;
}

.brand-copy small,
.site-nav a,
.hero-text,
.stat-card span,
.info-card p,
.service-card p,
.power-card p,
.contact-copy p,
.contact-card small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), #fff0ab);
  box-shadow: 0 16px 34px rgba(255, 216, 91, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.05);
}

.button::after {
  content: "↗";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.96rem;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 28px;
  min-height: calc(100vh - 120px);
  padding: 48px 0 28px;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mint), #f5fffb);
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  max-width: 13ch;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-text,
.info-card p,
.service-card p,
.power-card p,
.contact-copy p,
.stat-card span {
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.cloud,
.planet,
.rocket,
.sticker {
  position: absolute;
}

.cloud {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  filter: blur(2px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cloud-1 {
  top: 20px;
  right: 40px;
  width: 180px;
  height: 60px;
}

.cloud-1::before {
  width: 70px;
  height: 70px;
  left: 20px;
  top: -24px;
}

.cloud-1::after {
  width: 86px;
  height: 86px;
  right: 24px;
  top: -32px;
}

.cloud-2 {
  left: 20px;
  top: 250px;
  width: 140px;
  height: 50px;
}

.cloud-2::before {
  width: 64px;
  height: 64px;
  left: 12px;
  top: -22px;
}

.cloud-2::after {
  width: 72px;
  height: 72px;
  right: 16px;
  top: -26px;
}

.planet-pink {
  top: 50px;
  left: 90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9fd1 0%, #ff74b6 100%);
  box-shadow: inset -18px -24px 0 rgba(175, 33, 110, 0.22);
  animation: float 6s ease-in-out infinite;
}

.planet-yellow {
  right: 30px;
  bottom: 100px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff0a7 0%, #ffd85b 100%);
  box-shadow: inset -14px -18px 0 rgba(179, 123, 0, 0.18);
  animation: float 7s ease-in-out infinite reverse;
}

.rocket {
  top: 170px;
  left: 220px;
  width: 130px;
  height: 260px;
  border-radius: 70px 70px 28px 28px;
  background: linear-gradient(180deg, #ffffff, #dbe8ff);
  transform: rotate(16deg);
  box-shadow: var(--shadow);
  animation: rocket 5s ease-in-out infinite;
}

.rocket::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 30px;
  width: 70px;
  height: 78px;
  border-radius: 50px 50px 16px 16px;
  background: linear-gradient(180deg, var(--pink), #ff5aa4);
}

.rocket::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 46px;
  width: 178px;
  height: 70px;
  background: linear-gradient(90deg, transparent 0%, #ff8dc7 20%, #ff8dc7 80%, transparent 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.rocket-window {
  position: absolute;
  top: 56px;
  left: 37px;
  width: 56px;
  height: 56px;
  border: 8px solid #233391;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan), #e6ffff);
}

.rocket-fire {
  position: absolute;
  left: 42px;
  bottom: -56px;
  width: 46px;
  height: 84px;
  background: linear-gradient(180deg, #fff6bf, #ffb04e 60%, rgba(255, 102, 0, 0.2));
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
  animation: flame 0.9s ease-in-out infinite;
}

.sticker {
  display: grid;
  place-items: center;
  min-width: 120px;
  height: 82px;
  padding: 12px 18px;
  border-radius: 28px;
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.sticker-star {
  top: 30px;
  right: 0;
  background: linear-gradient(135deg, #fff4ad, #ffd85b);
}

.sticker-heart {
  left: 12px;
  bottom: 26px;
  background: linear-gradient(135deg, #ffc0df, #ffe8f3);
}

.sticker-smile {
  right: 60px;
  bottom: 14px;
  background: linear-gradient(135deg, #a8f1ff, #ecffff);
}

.stats-strip,
.about-grid,
.services-grid,
.methods-grid,
.powers-grid,
.team-grid,
.structure-grid,
.contact-cards {
  display: grid;
  gap: 20px;
}

.stats-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 66px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: 2.3rem;
  line-height: 1;
}

.section-heading {
  margin-bottom: 26px;
}

.section + .section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.info-card,
.service-card,
.power-card,
.method-card,
.structure-card,
.team-card {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.story-card {
  background:
    radial-gradient(circle at top right, rgba(255, 117, 182, 0.24), transparent 32%),
    var(--panel);
}

.values-card {
  background:
    radial-gradient(circle at bottom left, rgba(144, 234, 255, 0.24), transparent 32%),
    var(--panel);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "✦";
  margin-right: 10px;
  color: var(--yellow);
}

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

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

.service-card,
.power-card,
.method-card,
.structure-card,
.team-card,
.contact-card {
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.power-card:hover,
.method-card:hover,
.structure-card:hover,
.team-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  background: var(--panel-strong);
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #ffd85b, #fff1ae); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #ffb28a, #ffe0cf); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #90eaff, #e9ffff); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #9effc8, #effff7); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #ff93ca, #ffe6f2); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #c6b0ff, #f0ebff); }

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 22px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), #fff1ae);
}

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

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

.team-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.team-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 182, 219, 0.18), rgba(255, 255, 255, 0.08)),
    var(--panel);
}

.team-card-photo {
  padding: 14px;
}

.team-photo-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-copy {
  padding-top: 22px;
}

.team-role {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff0ab, #ffe7f2);
}

.method-card,
.structure-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.method-card {
  background:
    linear-gradient(180deg, rgba(144, 234, 255, 0.12), rgba(255, 255, 255, 0.08)),
    var(--panel);
}

.power-card.peach {
  background: linear-gradient(180deg, rgba(255, 178, 138, 0.22), rgba(255, 255, 255, 0.08)), var(--panel);
}

.power-card.sky {
  background: linear-gradient(180deg, rgba(144, 234, 255, 0.22), rgba(255, 255, 255, 0.08)), var(--panel);
}

.power-card.lemon {
  background: linear-gradient(180deg, rgba(255, 216, 91, 0.24), rgba(255, 255, 255, 0.08)), var(--panel);
}

.power-card.mint {
  background: linear-gradient(180deg, rgba(158, 255, 200, 0.22), rgba(255, 255, 255, 0.08)), var(--panel);
}

.power-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
}

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

.contact-section {
  padding-bottom: 80px;
}

.contact-panel {
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 117, 182, 0.24), transparent 20%),
    radial-gradient(circle at bottom left, rgba(255, 216, 91, 0.22), transparent 20%),
    rgba(255, 255, 255, 0.14);
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  margin-top: 22px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 174px;
  padding: 24px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.contact-card.accent {
  background: linear-gradient(180deg, rgba(255, 216, 91, 0.28), rgba(255, 255, 255, 0.12));
}

.contact-card.soft {
  background: linear-gradient(180deg, rgba(144, 234, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.contact-card.map-card {
  background:
    radial-gradient(circle at top right, rgba(158, 255, 200, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 117, 182, 0.2), rgba(255, 255, 255, 0.1));
}

.contact-label {
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.32rem;
  line-height: 1.3;
  max-width: 15ch;
  position: relative;
}

.contact-label,
.contact-card small {
  position: relative;
}

.mini-map-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  margin-top: 22px;
}

.mini-map-copy,
.mini-map-frame {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mini-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px;
}

.mini-map-copy p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-map-frame {
  overflow: hidden;
  min-height: 320px;
}

.mini-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rocket {
  0%, 100% { transform: rotate(16deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-16px); }
}

@keyframes flame {
  0%, 100% { transform: scaleY(0.94); }
  50% { transform: scaleY(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .about-grid,
  .services-grid,
  .methods-grid,
  .powers-grid,
  .team-grid,
  .mini-map-card,
  .structure-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy,
  .hero-visual {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #6672ee 0%, #4b57dc 48%, #3740aa 100%);
  }

  .blob,
  .stars,
  .hero-visual {
    display: none;
  }

  .site-header,
  .stat-card,
  .info-card,
  .service-card,
  .power-card,
  .contact-panel,
  .contact-card,
  .mini-map-copy,
  .mini-map-frame,
  .method-card,
  .structure-card,
  .team-card {
    backdrop-filter: none;
    box-shadow: 0 10px 26px rgba(14, 21, 100, 0.14);
  }

  .site-header {
    width: min(calc(100% - 16px), var(--max));
    top: max(6px, env(safe-area-inset-top));
    margin-top: 0;
    padding: 10px 12px 12px;
    gap: 10px;
    border-radius: 28px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    padding: 5px;
  }

  .brand {
    width: 100%;
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .section {
    width: min(calc(100% - 18px), var(--max));
  }

  .hero,
  .about-grid,
  .services-grid,
  .methods-grid,
  .powers-grid,
  .team-grid,
  .mini-map-card,
  .structure-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
    line-height: 1;
  }

  .hero-visual {
    min-height: 320px;
    opacity: 0.9;
  }

  .button {
    min-height: 46px;
    font-size: 0.92rem;
    padding: 0 18px;
    box-shadow: 0 6px 14px rgba(255, 216, 91, 0.16);
  }

  .button-small {
    min-height: 42px;
    width: 100%;
  }

  .hero {
    gap: 20px;
    min-height: auto;
    padding-top: 18px;
  }

  .hero-text,
  .info-card p,
  .service-card p,
  .power-card p,
  .contact-copy p,
  .stat-card span {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 12px;
    margin: 24px 0 18px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    padding: 9px 13px;
    font-size: 0.92rem;
  }

  .stats-strip {
    margin-bottom: 36px;
  }

  .stat-card,
  .info-card,
  .service-card,
  .power-card,
  .method-card,
  .structure-card,
  .team-card,
  .contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-panel {
    padding: 20px;
  }

  .mini-map-copy {
    padding: 20px;
  }

  .mini-map-frame,
  .mini-map-frame iframe {
    min-height: 240px;
  }

  .team-card {
    padding: 10px;
  }

  .service-card,
  .power-card,
  .method-card,
  .structure-card,
  .team-card,
  .contact-card,
  .button,
  .site-header {
    transition: none;
  }

  .section + .section {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
