:root {
  --bg: #071014;
  --panel: rgba(13, 24, 30, 0.76);
  --panel-strong: rgba(17, 31, 39, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f2fbff;
  --muted: rgba(242, 251, 255, 0.68);
  --accent: #18d4e8;
  --accent-soft: rgba(24, 212, 232, 0.17);
  --gold: #f0b426;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(24, 212, 232, 0.14), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(79, 255, 184, 0.10), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.cloud-layer {
  position: fixed;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -2;
  background-image: url("assets/nuages.png");
  background-size: cover;
  background-repeat: no-repeat;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.cloud-layer-top {
  top: -54px;
  height: 360px;
  background-position: top center;
  opacity: 0.80;
}

.cloud-layer-bottom {
  bottom: -105px;
  height: 330px;
  background-position: top center;
  opacity: 0.36;
  transform: rotate(180deg);
}

.page-glow {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.38;
  pointer-events: none;
}

.page-glow-left {
  width: 22rem;
  height: 22rem;
  top: 8rem;
  left: -10rem;
  background: var(--accent);
}

.page-glow-right {
  width: 20rem;
  height: 20rem;
  right: -8rem;
  bottom: 5rem;
  background: #51ffb7;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  height: 72px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 14, 18, 0.80);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 18px;
  z-index: 10;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.23);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 5px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.34em;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta,
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 750;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cta {
  font-size: 14px;
  background: var(--accent-soft);
  border-color: rgba(24, 212, 232, 0.35);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  min-height: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 9px;
  letter-spacing: -0.03em;
}

.hero-text,
.download-section p,
.feature-card p,
.faq p,
.notice-section p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button small {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0.72;
}

.button-icon {
  font-size: 20px;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #51ffb7);
  color: #031014;
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(24, 212, 232, 0.20);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
}

.button.full {
  width: 100%;
}

.disabled {
  opacity: 0.78;
  pointer-events: none;
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-stats div,
.feature-card,
.download-card,
details,
.notice-section {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-preview {
  position: relative;
  min-height: 600px;
  perspective: 1400px;
}

.mascot {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 30px;
  width: min(285px, 58%);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.46));
}

.window {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 41, 50, 0.88), rgba(10, 18, 23, 0.95)),
    url("assets/nuages.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(3deg);
}

.window-bar {
  height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.window-bar p {
  margin-left: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.window-body {
  padding: 28px;
  padding-top: 94px;
}

.server-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.30);
}

.server-card h3,
.server-card p {
  margin: 0;
}

.server-card p,
.progress-box small {
  color: var(--muted);
}

.server-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(24, 212, 232, 0.12);
  border: 1px solid rgba(24, 212, 232, 0.22);
  overflow: hidden;
}

.server-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.badge {
  margin-left: auto;
  color: #031014;
  background: #51ffb7;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}

.progress-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.34);
}

.progress-box p {
  margin-bottom: 10px;
  font-weight: 800;
}

.progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 9px;
}

.progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #51ffb7);
}

.fake-play {
  width: 100%;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  padding: 15px;
  background: var(--text);
  color: #031014;
  font-weight: 900;
  font-size: 16px;
}

.section,
.download-section,
.notice-section {
  width: min(1120px, calc(100% - 32px));
  margin: 100px auto 0;
}

.notice-section {
  padding: 30px;
}

.notice-section p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(24, 212, 232, 0.25);
  color: var(--accent);
  font-weight: 900;
}

.download-section {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(24, 212, 232, 0.10), rgba(255, 255, 255, 0.045));
}

.download-card {
  padding: 24px;
  background: var(--panel-strong);
}

.download-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.faq {
  margin-bottom: 100px;
}

details {
  padding: 20px 22px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

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

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 56px;
  }

  .window {
    transform: none;
  }

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

  .download-section {
    padding: 24px;
  }

  .mascot {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 62px;
  }

  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .mascot {
    width: 245px;
  }

  .hero-preview {
    min-height: 560px;
  }

  .window-body {
    padding-top: 84px;
  }
}


/*******************************************************************************
 *                                                                             *
 * Hero preview fix V6                                                         *
 *                                                                             *
 ******************************************************************************/

.hero-preview {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
}

.mascot-card {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 38px;
  width: 245px;
  height: 245px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(24, 212, 232, 0.16), transparent 68%),
    rgba(5, 12, 16, 0.16);
  pointer-events: none;
}

.mascot {
  position: static !important;
  width: 240px !important;
  height: 240px !important;
  object-fit: contain;
  transform: none !important;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.46));
}

.window {
  top: 165px !important;
  bottom: auto !important;
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
}

.window-body {
  padding: 28px !important;
}

.server-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), #51ffb7);
  box-shadow: 0 0 24px rgba(24, 212, 232, 0.22);
}

.server-icon img {
  display: none;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.progress-header p {
  margin-bottom: 0;
  font-weight: 800;
}

.progress-header strong {
  color: var(--accent);
  font-size: 13px;
}

.fake-play {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .mascot-card {
    right: 50%;
    transform: translateX(50%);
  }

  .window {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-preview {
    min-height: 520px;
  }

  .mascot-card {
    width: 205px;
    height: 205px;
  }

  .mascot {
    width: 200px !important;
    height: 200px !important;
  }

  .window {
    top: 145px !important;
  }
}
