/* =========================================================================
   NOX CONNECTION — Landing Page
   Premium gaming top-up store landing
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --nox-bg-900:     #001f1f;
  --nox-bg-800:     #003332;
  --nox-bg-700:     #034c36;
  --nox-bg-600:     #0a6b52;
  --nox-panel:      rgba(8, 48, 44, 0.72);
  --nox-panel-soft: rgba(255, 255, 255, 0.04);
  --nox-border:     rgba(127, 216, 184, 0.12);
  --nox-border-hi:  rgba(127, 216, 184, 0.35);
  --nox-text:       #eafff6;
  --nox-text-muted: #9cbfb3;
  --nox-mint:       #7fd8b8;
  --nox-gold:       #d4af37;
  --nox-gold-soft:  #f7d794;
  --nox-magenta:    #e91e63;
  --nox-magenta-soft: #ff5f8f;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--nox-text);
  background: var(--nox-bg-900);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.land-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVBAR ========== */
.land-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0, 31, 31, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(127, 216, 184, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.land-nav.is-scrolled {
  background: rgba(0, 31, 31, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.land-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem;
  color: var(--nox-gold-soft);
}
.land-nav__logo img { height: 40px; width: auto; max-width: 200px; object-fit: contain; }

.land-nav__links {
  display: flex; gap: 32px;
}
.land-nav__links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--nox-text-muted);
  transition: color 0.2s;
  position: relative;
}
.land-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--nox-gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.land-nav__links a:hover { color: #fff; }
.land-nav__links a:hover::after { transform: scaleX(1); }

.land-nav__actions { display: flex; align-items: center; gap: 12px; }

.land-btn {
  position: relative; z-index: 0; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; font-weight: 800; font-size: 0.88rem;
  border: none; background: transparent; color: var(--nox-text);
  transition: transform 0.2s, filter 0.2s;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
}
.land-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -2; clip-path: inherit;
  background: var(--nox-border-hi);
}
.land-btn::after {
  content: ''; position: absolute; inset: 2px; z-index: -1;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  background: var(--nox-bg-800);
}
.land-btn--ghost:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 20px rgba(127,216,184,0.3)); }
.land-btn--gold { color: var(--nox-bg-900); }
.land-btn--gold::before { background: #fff3c4; }
.land-btn--gold::after  { background: linear-gradient(135deg, var(--nox-gold), var(--nox-gold-soft)); }
.land-btn--gold:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 22px rgba(212,175,55,0.5)); }
.land-btn--magenta { color: #fff; }
.land-btn--magenta::before { background: var(--nox-magenta-soft); }
.land-btn--magenta::after  { background: linear-gradient(135deg, var(--nox-magenta), var(--nox-magenta-soft)); }
.land-btn--magenta:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 22px rgba(233,30,99,0.5)); }
.land-btn--lg { padding: 15px 34px; font-size: 1rem; }

.land-nav__hamburger {
  display: none;
  background: transparent; border: 1px solid var(--nox-border);
  width: 40px; height: 40px; border-radius: 10px;
  color: var(--nox-text); align-items: center; justify-content: center;
}

/* ========== HERO ========== */
.land-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
  background:
    /* fade to the page green at the bottom for a smooth scroll transition */
    linear-gradient(180deg, transparent 45%, rgba(0,40,38,0.5) 72%, var(--nox-bg-800) 89%, var(--nox-bg-700) 100%),
    /* overall darken so the centered headline stays readable over the art */
    linear-gradient(180deg, rgba(0,28,27,0.62), rgba(0,28,27,0.48) 50%, rgba(0,28,27,0.42)),
    /* subtle neon tint */
    radial-gradient(ellipse 70% 60% at 50% 32%, rgba(127,216,184,0.13), transparent 62%),
    /* crystal artwork as the big hero backdrop */
    url('/img/kristal.png') no-repeat center center / cover,
    linear-gradient(180deg, var(--nox-bg-900), var(--nox-bg-800));
}
/* animated neon grid */
.land-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(127,216,184,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,216,184,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 62% 42%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 85% 75% at 62% 42%, #000 30%, transparent 78%);
  animation: gridPan 26s linear infinite;
}
@keyframes gridPan { from { background-position: 0 0; } to { background-position: 46px 46px; } }

.land-hero__grid {
  position: relative; z-index: 1;
  display: block; text-align: center;
  max-width: 1280px; margin: 0 auto; padding: 90px 24px;
}
.land-hero__content { max-width: 720px; margin: 0 auto; }
.land-hero__content .land-hero__desc { margin-left: auto; margin-right: auto; }
.land-hero__ctas { justify-content: center; }
.land-hero__stats { justify-content: center; }

.land-hero__eyebrow {
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; margin-bottom: 22px;
  color: var(--nox-gold-soft);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  animation: fadeInUp 0.6s ease both;
}
.land-hero__eyebrow::before { content:''; position:absolute; inset:0; z-index:-2; clip-path: inherit; background: var(--nox-border-hi); }
.land-hero__eyebrow::after  { content:''; position:absolute; inset:1px; z-index:-1; background: rgba(6,32,30,0.92);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

.land-hero__title {
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.land-hero__title span {
  background: linear-gradient(135deg, var(--nox-gold), var(--nox-gold-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(212,175,55,0.4));
}

.land-hero__desc {
  font-size: 1.08rem; color: var(--nox-text-muted);
  max-width: 500px; margin-bottom: 34px; line-height: 1.7;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.land-hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.land-hero__stats {
  display: flex; gap: 38px; margin-top: 42px;
  padding-top: 28px; border-top: 1px solid var(--nox-border);
  animation: fadeInUp 0.6s 0.4s ease both;
}
.land-hero__stats > div { position: relative; padding-left: 14px; }
.land-hero__stats > div::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
  background: linear-gradient(180deg, var(--nox-mint), var(--nox-gold));
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
}
.land-hero__stat-num { font-size: 1.95rem; font-weight: 900; color: #fff; display: block; }
.land-hero__stat-label { font-size: 0.76rem; color: var(--nox-text-muted); }

/* VISUAL: angular foil game cards floating over a glow */
.land-hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.land-hero__visual::before {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,216,184,0.22), rgba(212,175,55,0.08) 45%, transparent 68%);
  filter: blur(20px); z-index: 0;
}
.land-hero__crystal {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px; height: auto; object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(127,216,184,0.3));
  animation: heroFloat 6s ease-in-out infinite;
}
.land-hero__visual-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; max-width: 470px;
}
.land-hero__game-thumb {
  position: relative; aspect-ratio: 3/4; padding: 2px;
  background: linear-gradient(160deg, rgba(212,175,55,0.6), rgba(127,216,184,0.28) 45%, rgba(212,175,55,0.5));
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 0.35s, filter 0.35s;
  animation: heroBob 6s ease-in-out infinite;
}
.land-hero__game-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.land-hero__game-thumb:nth-child(2) { margin-top: 28px; animation-delay: 1.5s; }
.land-hero__game-thumb:nth-child(3) { margin-top: -28px; animation-delay: 1s; }
.land-hero__game-thumb:nth-child(4) { animation-delay: 2.4s; }
.land-hero__game-thumb:hover { filter: drop-shadow(0 0 28px rgba(212,175,55,0.55)); z-index: 2; }

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

.land-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.land-hero__orb--1 { width: 420px; height: 420px; background: rgba(127,216,184,0.16); top: -10%; right: 8%; animation: heroFloat 8s ease-in-out infinite; }
.land-hero__orb--2 { width: 320px; height: 320px; background: rgba(212,175,55,0.12); bottom: 0; left: 4%; animation: heroFloat 10s ease-in-out infinite reverse; }

@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ========== PARTNERS MARQUEE ========== */
.land-partners {
  padding: 40px 0;
  border-top: 1px solid var(--nox-border);
  border-bottom: 1px solid var(--nox-border);
  background: rgba(0,20,20,0.5);
  overflow: hidden;
}
.land-partners__label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--nox-text-muted);
  margin-bottom: 20px;
}
.land-partners__track {
  display: flex; gap: 50px; width: max-content;
  animation: marquee 30s linear infinite;
}
.land-partners__item {
  flex-shrink: 0; height: 44px;
  display: flex; align-items: center;
  opacity: 0.5; transition: opacity 0.2s;
}
.land-partners__item:hover { opacity: 1; }
.land-partners__item img { max-height: 40px; max-width: 120px; object-fit: contain; filter: brightness(1.2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTION COMMON ========== */
.land-section {
  padding: 80px 0;
}
.land-section__eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--nox-mint);
  margin-bottom: 10px; display: block;
}
.land-section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; margin-bottom: 16px;
}
.land-section__desc {
  color: var(--nox-text-muted); max-width: 560px;
  font-size: 1rem; line-height: 1.7;
  margin-bottom: 40px;
}
.land-section__head {
  text-align: center; margin-bottom: 48px;
}
.land-section__head .land-section__desc { margin-left: auto; margin-right: auto; }

/* ========== FEATURES ========== */
.land-features {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(127,216,184,0.06), transparent 60%),
    var(--nox-bg-900);
}
.land-features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.land-feature {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--nox-panel);
  border: 1px solid var(--nox-border);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.land-feature:hover {
  border-color: var(--nox-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.land-feature__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(127,216,184,0.15), rgba(212,175,55,0.1));
  border: 1px solid var(--nox-border-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.land-feature h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
  color: var(--nox-gold-soft);
}
.land-feature p {
  color: var(--nox-text-muted); font-size: 0.9rem; line-height: 1.6;
}

/* ========== GAMES SHOWCASE ========== */
.land-games {
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(212,175,55,0.05), transparent),
    linear-gradient(180deg, var(--nox-bg-900), var(--nox-bg-800));
}
.land-games__grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.land-game-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; background: var(--nox-panel);
  border: 1px solid var(--nox-border);
  transition: all 0.25s; cursor: pointer;
}
.land-game-card:hover {
  transform: translateY(-8px); border-color: var(--nox-gold);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 30px rgba(127,216,184,0.08);
}
.land-game-card__img { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.land-game-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.land-game-card:hover .land-game-card__img img { transform: scale(1.08); }
.land-game-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
}
.land-game-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px; z-index: 2;
}
.land-game-card__info h3 { font-size: 0.92rem; font-weight: 700; margin: 0; }
.land-game-card__info span { font-size: 0.72rem; color: var(--nox-mint); }
.land-game-card__region {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 600;
  border: 1px solid var(--nox-border); z-index: 2;
}
.land-games__cta { text-align: center; margin-top: 40px; }

/* ========== HOW IT WORKS ========== */
.land-steps {
  background: var(--nox-bg-900);
}
.land-steps__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.land-steps__grid::before {
  content: ''; position: absolute;
  top: 44px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nox-border-hi), transparent);
}
.land-step {
  text-align: center; position: relative; z-index: 1;
}
.land-step__num {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--nox-bg-700), var(--nox-bg-600));
  border: 2px solid var(--nox-border-hi);
  color: var(--nox-gold-soft);
  transition: all 0.3s;
}
.land-step:hover .land-step__num {
  background: linear-gradient(135deg, var(--nox-gold), var(--nox-gold-soft));
  color: var(--nox-bg-900);
  transform: scale(1.1);
}
.land-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.land-step p { font-size: 0.85rem; color: var(--nox-text-muted); line-height: 1.55; }

/* ========== TESTIMONIALS ========== */
.land-testimonials {
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(212,175,55,0.05), transparent),
    var(--nox-bg-800);
}
.land-testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.land-testimonial {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--nox-panel);
  border: 1px solid var(--nox-border);
  transition: all 0.3s;
}
.land-testimonial:hover { border-color: var(--nox-gold); transform: translateY(-4px); }
.land-testimonial__stars { color: var(--nox-gold); font-size: 0.9rem; margin-bottom: 14px; }
.land-testimonial__text { color: var(--nox-text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.land-testimonial__author { display: flex; align-items: center; gap: 12px; }
.land-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nox-bg-600), var(--nox-bg-700));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--nox-mint); font-size: 1rem;
  border: 2px solid var(--nox-border-hi);
}
.land-testimonial__name { font-weight: 600; font-size: 0.9rem; }
.land-testimonial__game { font-size: 0.75rem; color: var(--nox-text-muted); }

/* ========== CTA SECTION ========== */
.land-cta-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212,175,55,0.1), transparent 60%),
    var(--nox-bg-900);
}
.land-cta-box {
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: 60px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,40,40,0.8), rgba(3,76,54,0.6));
  border: 1px solid var(--nox-border-hi);
  position: relative; overflow: hidden;
}
.land-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -30%, rgba(212,175,55,0.2), transparent 70%);
  pointer-events: none;
}
.land-cta-box h2 {
  font-size: 2rem; font-weight: 800; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.land-cta-box p {
  color: var(--nox-text-muted); font-size: 1.05rem;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.land-cta-box .land-btn { position: relative; z-index: 1; }

/* ========== FOOTER ========== */
.land-footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--nox-border);
  background: rgba(0,15,15,0.8);
}
.land-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.land-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-weight: 800; color: var(--nox-gold-soft); }
.land-footer__brand img { height: 40px; width: auto; max-width: 200px; object-fit: contain; }
.land-footer__about { color: var(--nox-text-muted); font-size: 0.88rem; line-height: 1.6; }
.land-footer h4 { font-size: 0.85rem; font-weight: 700; color: var(--nox-gold-soft); margin-bottom: 16px; letter-spacing: 0.08em; }
.land-footer ul { display: flex; flex-direction: column; gap: 10px; }
.land-footer ul a { color: var(--nox-text-muted); font-size: 0.88rem; transition: color 0.2s; }
.land-footer ul a:hover { color: var(--nox-mint); }
.land-footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--nox-border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--nox-text-muted); font-size: 0.82rem;
}
.land-footer__socials { display: flex; gap: 14px; }
.land-footer__social {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--nox-panel-soft); border: 1px solid var(--nox-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--nox-text-muted); font-size: 1rem; transition: all 0.2s;
}
.land-footer__social:hover { border-color: var(--nox-gold); color: var(--nox-gold-soft); }

/* ========== SCROLL ANIMATIONS ========== */
.land-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.land-reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.land-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 101;
  background: rgba(0,20,20,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
}
.land-mobile-menu.is-open { display: flex; }
.land-mobile-menu a {
  font-size: 1.3rem; font-weight: 600; color: var(--nox-text-muted);
  transition: color 0.2s;
}
.land-mobile-menu a:hover { color: #fff; }
.land-mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: 1px solid var(--nox-border);
  width: 44px; height: 44px; border-radius: 12px;
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .land-hero__grid { text-align: center; }
  .land-hero__content { max-width: 100%; margin: 0 auto; }
  .land-hero {
    background:
      linear-gradient(180deg, rgba(0,22,22,0.82), rgba(0,22,22,0.55) 45%, var(--nox-bg-800) 86%, var(--nox-bg-700)),
      url('/img/kristal.png') no-repeat center top / cover,
      var(--nox-bg-900);
  }
  .land-hero__desc { margin-left: auto; margin-right: auto; }
  .land-hero__ctas { justify-content: center; }
  .land-hero__stats { justify-content: center; }
  .land-hero__visual { display: none; }
  .land-features__grid { grid-template-columns: repeat(2, 1fr); }
  .land-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .land-steps__grid::before { display: none; }
  .land-testimonials__grid { grid-template-columns: 1fr 1fr; }
  .land-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .land-nav__links { display: none; }
  .land-nav__hamburger { display: flex; }
  .land-nav__actions .land-btn--ghost { display: none; }
  .land-features__grid { grid-template-columns: 1fr; }
  .land-steps__grid { grid-template-columns: 1fr 1fr; }
  .land-testimonials__grid { grid-template-columns: 1fr; }
  .land-hero__stats { flex-wrap: wrap; gap: 20px; }
  .land-footer__grid { grid-template-columns: 1fr; }
  .land-footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .land-nav__logo span { display: none; }
  .land-nav__actions .land-btn--gold { padding: 8px 16px; font-size: 0.8rem; }
  .land-hero__title { font-size: 2rem; }
  .land-games__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .land-cta-box { padding: 40px 20px; }
}

.inline-icon {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 4px;
}

/* ===== Landing gaming polish: angular + foil + neon ===== */
.land-section__title { position: relative; display: inline-block; padding-bottom: 14px; }
.land-section__title::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 58px; height: 3px;
  background: linear-gradient(90deg, var(--nox-mint), var(--nox-gold));
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

/* Feature & testimonial cards: foil-edged bevel */
.land-feature, .land-testimonial {
  border: none; background: transparent; position: relative; z-index: 0;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.land-feature::before, .land-testimonial::before {
  content: ''; position: absolute; inset: 0; z-index: -2; clip-path: inherit;
  background: linear-gradient(160deg, rgba(212,175,55,0.45), rgba(127,216,184,0.2) 45%, rgba(212,175,55,0.4));
}
.land-feature::after, .land-testimonial::after {
  content: ''; position: absolute; inset: 1.5px; z-index: -1;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  background: var(--nox-bg-800);
}
.land-feature:hover, .land-testimonial:hover {
  border: none; transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 26px rgba(212,175,55,0.22);
}
.land-feature__icon {
  border: none; border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Game cards: foil bevel like the store */
.land-game-card {
  border: none; padding: 2px;
  background: linear-gradient(160deg, rgba(212,175,55,0.55), rgba(127,216,184,0.18) 42%, rgba(212,175,55,0.45));
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.land-game-card:hover { border: none; box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 26px rgba(212,175,55,0.35); }
.land-game-card__img { clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
.land-game-card__region { border-radius: 0; clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%); }

/* Step number: angular badge */
.land-step__num {
  border: none; border-radius: 0;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

/* CTA box: foil-edged bevel (same shape as feature cards) */
.land-cta-box {
  border: none; background: transparent; position: relative; z-index: 0;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  border-radius: 0;
}
.land-cta-box::after {
  content: ''; position: absolute; inset: 0; z-index: -2; clip-path: inherit;
  background: linear-gradient(135deg, var(--nox-gold), rgba(127,216,184,0.4) 50%, var(--nox-gold-soft));
}
.land-cta-box::before {
  inset: 2px; z-index: -1;
  background: linear-gradient(135deg, rgba(0,40,40,0.96), rgba(3,76,54,0.92));
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.land-cta-box > * { position: relative; z-index: 1; }

/* Square the remaining small rounded bits */
.land-footer__brand img, .land-footer__social, .land-nav__hamburger, .land-mobile-close { border-radius: 0; }

/* Language switcher in the landing nav */
.land-lang-switch {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--nox-gold-soft, #f7d794);
  font-size: 0.8rem; font-weight: 700;
  padding: 6px 8px; margin-right: 12px; cursor: pointer; border-radius: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.land-lang-switch:focus { outline: none; }
.land-lang-switch option { background: #04211f; color: #e6f2ec; }

/* Flag language toggle in the landing nav (shows on mobile too) */
.land-lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.land-lang-toggle a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 9px; font-size: 0.75rem; font-weight: 800; line-height: 1;
  color: var(--nox-text-muted, #9cbfb3); text-decoration: none;
}
.land-lang-toggle a.is-active {
  background: linear-gradient(135deg, var(--nox-gold, #d4af37), var(--nox-gold-soft, #f7d794));
  color: #001f1f;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}
.land-lang-toggle a:not(.is-active):hover { color: #fff; }
@media (max-width: 720px) {
  .land-lang-toggle a span { display: none; } /* flags only on small screens */
}

.land-lang-toggle .nox-flag { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.25); }
