:root {
  --bg: #f5fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #0f2341;
  --muted: #58708f;
  --primary: #0a6dff;
  --primary-deep: #083d9c;
  --accent: #56dfff;
  --line: rgba(16, 75, 152, 0.14);
  --shadow: 0 28px 70px rgba(7, 38, 88, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(86, 223, 255, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(10, 109, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #edf8ff 0%, #f9fcff 45%, #eff7ff 100%);
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(10, 109, 255, 0.14);
}

.brand span,
.section-heading h2,
.hero h1,
.card h3,
.mini-card h3,
.reward-card h3,
.panel h2,
.cta h2 {
  font-family: "Sora", sans-serif;
}

.brand span {
  display: block;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}

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

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 109, 255, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: var(--primary-deep);
  font: inherit;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(10, 109, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(10, 109, 255, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  margin-top: -8px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--primary-deep);
  font-weight: 700;
  background: rgba(10, 109, 255, 0.06);
}

.mobile-cta {
  width: 100%;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #43a7ff 100%);
  box-shadow: 0 16px 30px rgba(10, 109, 255, 0.28);
}

.btn-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(10, 109, 255, 0.16);
}

.hero,
.section-grid,
.gallery-section,
.levels,
.reward-section,
.cta {
  margin-top: 20px;
}

.top-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  margin-top: 20px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.showcase-media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  background: #fff;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-copy {
  padding: 8px 10px;
}

.showcase-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.showcase-copy p:last-of-type {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 52ch;
}

.showcase-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gallery-shell {
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.gallery-toolbar,
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gallery-toolbar p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(10, 109, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-deep);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(10, 109, 255, 0.12);
}

.gallery-track-wrap {
  margin-top: 24px;
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 33%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(10, 109, 255, 0.22);
  border-radius: 999px;
}

.gallery-card,
.gallery-empty {
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(7, 38, 88, 0.1);
}

.gallery-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #dbf6ff, #eff7ff);
}

.gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 61, 156, 0.84);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card-body {
  padding: 18px;
}

.gallery-card-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.gallery-card-body p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-empty {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.gallery-footer {
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  padding: 56px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(6, 31, 79, 0.96) 0%, rgba(14, 80, 180, 0.92) 52%, rgba(91, 228, 255, 0.9) 100%);
  color: #fff;
  box-shadow: 0 36px 80px rgba(8, 54, 124, 0.24);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 35%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.36), transparent 65%);
  filter: blur(18px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8cdcff;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #c4f6ff;
}

.hero-text {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics article,
.glass-card,
.floating-panel,
.card,
.mini-card,
.reward-card,
.panel,
.cta,
.footer {
  backdrop-filter: blur(14px);
}

.hero-metrics article {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics strong {
  display: block;
  font-size: 2rem;
  font-family: "Sora", sans-serif;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.8);
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  inset: 20px 30px auto auto;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.48), rgba(103, 243, 255, 0.05) 70%);
}

.orb-two {
  inset: auto auto 12px 18px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(152, 232, 255, 0.7), rgba(22, 81, 174, 0.03) 70%);
}

.glass-card,
.floating-panel {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 20, 51, 0.26);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.glass-card {
  inset: 58px 18px auto 72px;
  padding: 26px;
}

.glass-card p,
.floating-panel span {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9be7ff;
  font-weight: 700;
}

.glass-card ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.floating-panel {
  inset: auto 32px 28px 28px;
  padding: 20px 22px;
}

.floating-panel strong {
  display: block;
  line-height: 1.7;
}

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

.section-heading h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-grid,
.levels,
.reward-section {
  padding: 30px 0 0;
}

.reward-banner {
  min-height: 340px;
  margin-bottom: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    url("./pdf_pages/page_01.png") center center / cover no-repeat;
  overflow: hidden;
}

.about-layout,
.tables-wrap,
.income-grid,
.reward-grid,
.split-panel {
  display: grid;
  gap: 22px;
}

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

.card,
.panel,
.mini-card,
.reward-card,
.cta,
.footer {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.card,
.panel,
.mini-card,
.reward-card {
  border-radius: var(--radius-lg);
}

.card,
.panel {
  padding: 28px;
}

.section-btn {
  margin-top: 18px;
}

.card p {
  color: var(--muted);
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-row span,
.level-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.tag-row span {
  color: var(--primary-deep);
  background: rgba(10, 109, 255, 0.1);
}

.feature-list {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.split-panel {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.panel.dark {
  color: #fff;
  background:
    linear-gradient(160deg, #081f51 0%, #0f4ba4 58%, #4bd6ff 100%);
}

.panel.dark .feature-list,
.panel.dark .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.panel.light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 247, 255, 0.86));
}

.bullet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.steps {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.9;
}

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

.mini-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: -25% auto auto 60%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 223, 255, 0.3), transparent 70%);
}

.mini-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #43a7ff);
  font-weight: 800;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tables-wrap {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.card-header h3 {
  margin: 4px 0 0;
}

.table-shell {
  margin-top: 18px;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
}

tbody tr:last-child td {
  border-bottom: none;
}

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

.reward-card {
  padding: 18px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.4);
}

.reward-card::after {
  content: none;
}

.reward-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.reward-card > *:not(.reward-image) {
  position: relative;
  z-index: 1;
}

.level-pill {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.reward-card-accent {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(86, 223, 255, 0.48);
}

.reward-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  margin-top: 32px;
  border-radius: 34px;
}

.cta p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 26px 30px;
  margin-top: 28px;
  border-radius: 28px;
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--primary-deep);
  font-weight: 700;
}

.copyright {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .top-showcase,
  .hero,
  .about-layout,
  .split-panel,
  .income-grid,
  .reward-grid,
  .tables-wrap,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .showcase-media {
    min-height: 320px;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 70%);
  }

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

  .footer {
    text-align: center;
  }

  .copyright {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    border-radius: 28px;
    padding: 12px 14px;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .nav,
  .topbar-actions .btn {
    display: none;
  }

  .topbar-actions {
    position: relative;
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .lang-switcher {
    padding: 8px 10px;
    width: 116px;
    flex: 0 0 116px;
  }

  .lang-switcher span {
    display: none;
  }

  .lang-switcher select {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 48px;
    position: relative;
    z-index: 1;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero {
    padding: 34px 22px;
  }

  .top-showcase {
    padding: 16px;
    border-radius: 26px;
  }

  .showcase-media {
    min-height: 220px;
    border-radius: 20px;
  }

  .gallery-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-track {
    grid-auto-columns: 88%;
  }

  .reward-banner {
    min-height: 190px;
    border-radius: 24px;
    background-position: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .glass-card {
    inset: 30px 8px auto 8px;
  }

  .floating-panel {
    inset: auto 14px 14px 14px;
  }

  .bullet-columns {
    grid-template-columns: 1fr;
  }

  .income-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 28px 22px;
  }
}
