:root {
  --bg: #162236;
  --bg-soft: #20324a;
  --panel: rgba(255, 255, 255, 0.12);
  --panel-strong: rgba(255, 255, 255, 0.18);
  --text: #f8fbff;
  --muted: #d2dbea;
  --brand: #6fa986;
  --brand-dark: #57c987;
  --brand-2: #ff9678;
  --gold: #ffe38b;
  --border: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(140, 240, 178, 0.24), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 150, 120, 0.20), transparent 32%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.bg-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.36;
  pointer-events: none;
}

.bg-glow-one {
  background: var(--brand);
  top: 8%;
  left: -120px;
}

.bg-glow-two {
  background: var(--brand-2);
  right: -120px;
  bottom: 12%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px min(6vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(16, 24, 39, 0.82);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  width: min(380px, 54vw);
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.38));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 14px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-menu a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
}

.section-padding {
  padding: 96px min(6vw, 72px);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(82vh - 82px);
}

.hero-content {
  width: min(100%, 980px);
  padding: min(7vw, 58px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(140, 240, 178, 0.14), rgba(255, 150, 120, 0.10)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

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

h1 {
  margin-bottom: 14px;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.brand-name {
  display: inline-block;
  color: rgb(109, 178, 141);
  font-size: clamp(3.1rem, 9.4vw, 7.5rem);
  line-height: 0.82;
  -webkit-text-stroke: 2px rgb(49, 78, 9);
  paint-order: stroke fill;
  text-shadow: 0 10px 44px rgba(140, 240, 178, 0.28);
}

.experience-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero-text,
.content-grid p,
.split-section p,
.store-card p,
.rules-list {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 800px;
  font-size: 1.56rem;
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #07130c;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 20px 44px rgba(140, 240, 178, 0.24);
}

.secondary-btn {
  color: var(--text);
  background: var(--panel);
  border-color: var(--border);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.server-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 760px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.server-card div {
  min-height: 74px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.085);
}

.server-card strong {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  overflow-wrap: anywhere;
}

.muted {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.content-grid,
.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.content-grid,
.split-section,
.store-card {
  position: relative;
}

.rules-list {
  margin: 0;
  padding: 28px 28px 28px 52px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
}

.rules-list li + li {
  margin-top: 12px;
}

.store-section {
  padding-top: 40px;
}

.store-card {
  max-width: 980px;
  margin-inline: auto;
  padding: min(8vw, 64px);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(140, 240, 178, 0.17), rgba(255, 150, 120, 0.14)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.store-lead {
  max-width: 640px;
  margin-inline: auto;
}

.store-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 26px;
}

.store-preview div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  text-align: left;
}

.store-preview span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.store-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.store-preview p,
.store-note {
  margin-bottom: 0;
}

.store-note {
  font-weight: 800;
  color: var(--text) !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px min(6vw, 72px);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 20;
  translate: -50% 16px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.94);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, translate 0.2s ease;
}

.toast.show {
  opacity: 1;
  translate: -50% 0;
}

@media (max-width: 980px) {
  .content-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .server-card,
  .store-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 20px;
  }

  .header-logo {
    width: min(250px, 62vw);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(16, 24, 39, 0.96);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    text-align: center;
  }

  .section-padding {
    padding: 72px 20px;
  }

  .hero-content {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .brand-name {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

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

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

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


/* v1.04 targeted fixes */
.logo-word {
  display: none;
}

.content-grid > p {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.7;
  font-weight: 700;
}
