/* Nomad page - ported from saura NomadSite.module.css
   All rules scoped under .nomadRoot to prevent leakage. */

.nomadRoot {
  font-family: 'Outfit', sans-serif;
  background: #050505;
  color: #e8e0d4;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  /* Responsive layout tokens — scaled at min-width breakpoints in the responsive layer at the end of this file. */
  --nomad-container-max: 1200px;
  --nomad-container-pad: 24px;
}

.nomadRoot .container { max-width: var(--nomad-container-max); margin: 0 auto; padding: 0 24px; }
.nomadRoot .sectionLabel {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #D4A843;
  margin-bottom: 12px;
  display: block;
}
.nomadRoot .sectionTitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #e8e0d4 30%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.nomadRoot .fadeIn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.nomadRoot .visible { opacity: 1; transform: translateY(0) translateX(0); }
.nomadRoot .textCenter { text-align: center; }
.nomadRoot .muted { color: #8a7e72; max-width: 580px; margin: 0 auto; font-size: 1rem; }

/* NAV */
.nomadRoot .nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nomadRoot .navScrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 30, 58, 0.15);
}
.nomadRoot .navInner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--nomad-container-max); margin: 0 auto; padding: 0 24px;
}
.nomadRoot .navLogo { text-decoration: none; display: flex; align-items: center; }
.nomadRoot .navLogoImg { height: 28px; width: auto; object-fit: contain; }
.nomadRoot .navLinks {
  display: flex; gap: 32px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nomadRoot .navLink {
  color: #a09888;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.nomadRoot .navLink::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #C41E3A;
  transition: width 0.3s;
}
.nomadRoot .navLink:hover { color: #e8e0d4; }
.nomadRoot .navLink:hover::after { width: 100%; }
.nomadRoot .navCta {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  text-decoration: none;
}
.nomadRoot .navCta::after { display: none !important; }
.nomadRoot .navCta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4); }
.nomadRoot .mobileToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nomadRoot .mobileToggle span {
  width: 24px; height: 2px;
  background: #D4A843;
  transition: all 0.3s;
  display: block;
}

/* HERO */
.nomadRoot .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #050505;
}
.nomadRoot .heroImageWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.nomadRoot .heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.nomadRoot .heroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.75) 35%,
    rgba(5, 5, 5, 0.3) 60%,
    transparent 100%
  );
}
.nomadRoot .heroBgGrain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.nomadRoot .sandContainer {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 3;
}
.nomadRoot .sandParticle {
  position: absolute;
  width: 2px; height: 2px;
  background: #D4A574;
  border-radius: 50%;
  opacity: 0;
  animation: nmd_sandFloat linear infinite;
}
@keyframes nmd_sandFloat {
  0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(360deg); }
}

.nomadRoot .runeContainer {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 3;
}
.nomadRoot .floatingRune {
  position: absolute;
  bottom: -60px;
  color: rgba(212, 168, 67, var(--rune-opacity, 0.08));
  font-family: 'Aref Ruqaa', 'Amiri', 'Noto Kufi Arabic', serif;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  text-shadow:
    0 0 18px rgba(212, 168, 67, 0.35),
    0 0 4px rgba(255, 224, 160, 0.2);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  animation: nmd_runeRise linear forwards;
  will-change: transform, opacity;
}
@keyframes nmd_runeRise {
  0% { opacity: 0; transform: translateY(20px) rotate(var(--rune-rot-start, -4deg)); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(var(--rune-rot-end, 8deg)); }
}

.nomadRoot .heroContent {
  position: relative;
  z-index: 4;
  padding: 0 48px;
  max-width: 700px;
}
.nomadRoot .heroLogoWrap {
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(1.3) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s,
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.nomadRoot .heroLogoVisible { opacity: 1; transform: scale(1) translateY(0); }
.nomadRoot .heroLogo {
  width: clamp(280px, 40vw, 500px);
  height: auto;
  object-fit: contain;
}
.nomadRoot .heroSubtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #a09888;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 1px;
  min-height: 1.6em;
}
.nomadRoot .typingCursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: #D4A843;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: nmd_cursorBlink 0.8s step-end infinite;
}
@keyframes nmd_cursorBlink { 50% { opacity: 0; } }
.nomadRoot .heroButtons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease 1.8s, transform 0.8s ease 1.8s;
}
.nomadRoot .heroButtonsVisible { opacity: 1; transform: translateY(0); }
.nomadRoot .btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  animation: nmd_pulseCTA 2.5s ease-in-out infinite;
}
@keyframes nmd_pulseCTA {
  0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.3); }
  50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.6), 0 0 80px rgba(196, 30, 58, 0.2); }
}
.nomadRoot .btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
}
.nomadRoot .btnComingSoon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.18), rgba(139, 21, 40, 0.18));
  color: #f4e4bc;
  padding: 16px 28px 16px 36px;
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: not-allowed;
  user-select: none;
  position: relative;
  overflow: hidden;
  animation: nmd_pulseSoon 3s ease-in-out infinite;
}
@keyframes nmd_pulseSoon {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.12); }
  50% { box-shadow: 0 0 36px rgba(212, 168, 67, 0.28); }
}
.nomadRoot .btnComingSoonBadge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  margin-left: 4px;
  background: rgba(212, 168, 67, 0.18);
  color: #D4A843;
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.nomadRoot .navLink.navSoon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.08);
  color: #D4A843;
  padding: 8px 16px;
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: not-allowed;
}
.nomadRoot .navLink.navSoon::after { display: none !important; }
.nomadRoot .navLink.navSoon:hover { color: #D4A843; }
.nomadRoot .navSoonBadge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #D4A843;
  opacity: 0.85;
  padding: 3px 7px;
  background: rgba(212, 168, 67, 0.15);
  border-radius: 999px;
}
.nomadRoot .btnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #D4A843;
  padding: 16px 40px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.nomadRoot .btnSecondary:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: #D4A843;
  transform: translateY(-3px);
}
.nomadRoot .heroPlayBtn {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%) scale(0);
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(196, 30, 58, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2s,
              opacity 0.8s ease 2s,
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.nomadRoot .heroPlayBtnVisible {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  animation: nmd_playPulse 3s ease-in-out infinite;
}
.nomadRoot .heroPlayBtn svg { margin-left: 4px; }
.nomadRoot .heroPlayBtn:hover {
  background: rgba(196, 30, 58, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 60px rgba(196, 30, 58, 0.4);
}
@keyframes nmd_playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.3), 0 0 30px rgba(196, 30, 58, 0.15); }
  50% { box-shadow: 0 0 0 20px rgba(196, 30, 58, 0), 0 0 50px rgba(196, 30, 58, 0.25); }
}

/* CURTAIN */
.nomadRoot .curtainWrap { position: absolute; inset: 0; z-index: 100; overflow: hidden; pointer-events: none; }
.nomadRoot .curtainLeft {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, #050505 80%, #0a0808);
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 101;
}
.nomadRoot .curtainLeftOpen { transform: translateX(-102%); }
.nomadRoot .curtainRight {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(-90deg, #050505 80%, #0a0808);
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 101;
}
.nomadRoot .curtainRightOpen { transform: translateX(102%); }
.nomadRoot .curtainLeft .curtainEdge {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #D4A843 30%, #D4A843 70%, transparent);
  opacity: 0.6;
  transition: opacity 0.6s ease 0.3s;
}
.nomadRoot .curtainLeftOpen .curtainEdge { opacity: 0; }
.nomadRoot .curtainRight .curtainEdge {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #D4A843 30%, #D4A843 70%, transparent);
  opacity: 0.6;
  transition: opacity 0.6s ease 0.3s;
}
.nomadRoot .curtainRightOpen .curtainEdge { opacity: 0; }
.nomadRoot .curtainOrnament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 102;
  transition: opacity 0.4s ease;
}
.nomadRoot .curtainOrnamentHidden { opacity: 0; }
.nomadRoot .curtainOrnamentRing {
  width: 60px; height: 60px;
  border: 2px solid rgba(212, 168, 67, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: nmd_curtainPulse 2s ease-in-out infinite;
}
.nomadRoot .curtainOrnamentDot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D4A843;
}
@keyframes nmd_curtainPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 67, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 67, 0.4); }
}

/* DIVIDER */
.nomadRoot .sectionDivider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.2), rgba(196, 30, 58, 0.3), rgba(212, 168, 67, 0.2), transparent);
  margin: 0;
}

/* STORY */
.nomadRoot .storyA {
  padding: 160px 0;
  position: relative;
  background: #050505;
  text-align: center;
}
.nomadRoot .storyAInner { max-width: 700px; margin: 0 auto; }
.nomadRoot .storyALabel {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #D4A843;
  display: block;
  margin-bottom: 32px;
}
.nomadRoot .storyAQuote {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #e8e0d4;
  line-height: 1.3;
  margin-bottom: 0;
}
.nomadRoot .storyADivider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, #C41E3A, transparent);
  margin: 40px auto;
}
.nomadRoot .storyALines {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #7a6e62;
  line-height: 2.4;
  font-weight: 300;
}
.nomadRoot .storyAOath {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #C41E3A;
  margin-top: 40px;
  font-style: italic;
}
.nomadRoot .storyAName {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nomadRoot .storyAArabic {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.95rem;
  color: #4AADBE;
}
.nomadRoot .storyAEn {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: #5a5045;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* GAMEPLAY */
.nomadRoot .gameplay {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #050505 0%, #080608 50%, #050505 100%);
}
.nomadRoot .heroLayout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.nomadRoot .heroMain { position: relative; grid-row: span 1; }
.nomadRoot .heroGlow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(180, 100, 255, 0.12) 0%, rgba(212, 168, 67, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: nmd_glowPulse 4s ease-in-out infinite;
}
@keyframes nmd_glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.nomadRoot .heroFrame {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(180, 100, 255, 0.06);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.nomadRoot .heroFrame:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(180, 100, 255, 0.12);
}
.nomadRoot .heroImg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.nomadRoot .heroFrame:hover .heroImg { transform: scale(1.04); }
.nomadRoot .heroFrame > .heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 30%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s;
}
.nomadRoot .heroFrame:hover .heroOverlay { opacity: 1; }
.nomadRoot .heroTag {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: #D4A843;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.nomadRoot .heroCaption { font-size: 0.92rem; color: #a09888; line-height: 1.4; }

.nomadRoot .heroSide { display: flex; flex-direction: column; gap: 14px; }
.nomadRoot .sideCard {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.nomadRoot .sideCard:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}
.nomadRoot .sideImg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nomadRoot .sideCard:hover .sideImg { transform: scale(1.06); }
.nomadRoot .sideOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s;
}
.nomadRoot .sideCard:hover .sideOverlay { opacity: 1; }
.nomadRoot .sideTag {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: #D4A843;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nomadRoot .sideCaption { font-size: 0.78rem; color: #8a7e72; line-height: 1.3; }
.nomadRoot .sideBorderGlow {
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0%, rgba(212, 168, 67, 0.3) 10%, transparent 20%);
  opacity: 0;
  transition: opacity 0.4s;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  animation: nmd_borderSpin 4s linear infinite;
}
.nomadRoot .sideCard:hover .sideBorderGlow { opacity: 1; }
@keyframes nmd_borderSpin {
  from { background: conic-gradient(from 0deg, transparent 0%, rgba(212, 168, 67, 0.3) 10%, transparent 20%); }
  to   { background: conic-gradient(from 360deg, transparent 0%, rgba(212, 168, 67, 0.3) 10%, transparent 20%); }
}

.nomadRoot .bottomTrio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.nomadRoot .trioCard {
  position: relative;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.nomadRoot .trioCard:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.nomadRoot .trioImg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nomadRoot .trioCard:hover .trioImg { transform: scale(1.06); }
.nomadRoot .trioOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s;
}
.nomadRoot .trioCard:hover .trioOverlay { opacity: 1; }
.nomadRoot .trioTag {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: #D4A843;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nomadRoot .trioCaption { font-size: 0.78rem; color: #8a7e72; line-height: 1.3; }
.nomadRoot .trioBorderGlow {
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0%, rgba(212, 168, 67, 0.25) 10%, transparent 20%);
  opacity: 0;
  transition: opacity 0.4s;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  animation: nmd_borderSpin 4s linear infinite;
}
.nomadRoot .trioCard:hover .trioBorderGlow { opacity: 1; }

/* BIOMES */
.nomadRoot .biomes { padding: 120px 0; position: relative; }
.nomadRoot .sectionSub { font-size: 0.95rem; color: #6a5f52; margin-top: 12px; }
.nomadRoot .terrainGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.nomadRoot .terrainCard {
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  min-height: 140px;
  cursor: default;
}
.nomadRoot .terrainCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}
.nomadRoot .terrainCardRooms {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}
.nomadRoot .terrainCardAr {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 0.72rem;
  color: rgba(212, 168, 67, 0.5);
  direction: rtl;
  margin-bottom: 2px;
}
.nomadRoot .terrainCardName {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e8e0d4;
  margin: 0;
}
.nomadRoot .terrainCardDesc {
  font-size: 0.82rem;
  color: #6a5f52;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.nomadRoot .terrainCardTag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* NPC MARQUEE */
.nomadRoot .typeAlly { color: #4AADBE !important; }
.nomadRoot .typeCreature { color: #2E8B57 !important; }
.nomadRoot .typeEnemy { color: #C41E3A !important; }
.nomadRoot .typeBoss { color: #D4A843 !important; }
.nomadRoot .npcMarquee { padding: 120px 0 40px; background: #050505; overflow: hidden; position: relative; }
.nomadRoot .npcCharImg {
  width: 100%; height: auto;
  display: block;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 75%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 75%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.nomadRoot .npcCharType {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #C41E3A;
}
.nomadRoot .npcCharName {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: #e8e0d4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.nomadRoot .marqueeWrap { position: relative; z-index: 2; }
.nomadRoot .marqueeBack {
  z-index: 1;
  margin-top: -140px;
  opacity: 0.25;
  filter: blur(1.5px) saturate(0.3);
  pointer-events: none;
}
.nomadRoot .marqueeEdge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #050505 0%, transparent 12%, transparent 88%, #050505 100%);
  z-index: 3;
}
.nomadRoot .marqueeTrack {
  display: flex;
  width: max-content;
  animation: nmd_marqueeScroll 35s linear infinite;
}
.nomadRoot .marqueeReverse {
  animation-name: nmd_marqueeScrollReverse;
  animation-duration: 50s;
}
.nomadRoot .marqueeSet { display: flex; gap: 24px; padding-right: 24px; }
@keyframes nmd_marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
@keyframes nmd_marqueeScrollReverse {
  0% { transform: translateX(-33.333%); }
  100% { transform: translateX(0); }
}
.nomadRoot .marqueeItem {
  flex-shrink: 0;
  width: 190px;
  text-align: center;
  cursor: default;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7));
  transition: filter 0.3s, transform 0.3s;
}
.nomadRoot .marqueeItem:hover {
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 30px rgba(212,168,67,0.1));
  transform: scale(1.06);
}
.nomadRoot .marqueeLabel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.nomadRoot .marqueeItem:hover .marqueeLabel { opacity: 1; }

/* PRICING */
.nomadRoot .pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, #050505 0%, #080606 50%, #050505 100%);
}
.nomadRoot .pricingGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}
.nomadRoot .priceCard {
  padding: 48px 36px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: all 0.4s;
  position: relative;
}
.nomadRoot .priceCard:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}
.nomadRoot .priceCardFeatured {
  border-color: rgba(196, 30, 58, 0.3);
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.05), rgba(196, 30, 58, 0.01));
}
.nomadRoot .priceCardFeatured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
}
.nomadRoot .priceTag {
  font-size: 0.75rem;
  color: #D4A843;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nomadRoot .priceName {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #e8e0d4;
  margin-bottom: 8px;
}
.nomadRoot .priceAmount {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #e8e0d4;
  margin-bottom: 4px;
}
.nomadRoot .priceAmount sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: #a09888;
}
.nomadRoot .pricePeriod {
  font-size: 0.8rem;
  color: #6a5e52;
  margin-bottom: 28px;
}
.nomadRoot .priceFeatures {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  padding: 0;
}
.nomadRoot .priceFeatures li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: #a09888;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nomadRoot .priceFeatures li::before {
  content: '\2713';
  color: #2E8B57;
  font-weight: 700;
  font-size: 0.8rem;
}
.nomadRoot .priceBtn {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(196, 30, 58, 0.3);
  background: transparent;
  color: #C41E3A;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nomadRoot .priceBtn:hover {
  background: rgba(196, 30, 58, 0.1);
  border-color: #C41E3A;
}
.nomadRoot .priceBtnFeatured {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  border-color: transparent;
  color: #fff;
}
.nomadRoot .priceBtnFeatured:hover {
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}
.nomadRoot .freeUpdateNote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: #5a5045;
}
.nomadRoot .freeUpdateNote strong { color: #2E8B57; }

/* TIMELINE */
.nomadRoot .timeline { padding: 120px 0; }
.nomadRoot .timelineContainer {
  position: relative;
  max-width: 700px;
  margin: 60px auto 0;
  padding-left: 40px;
}
.nomadRoot .timelineLine {
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #C41E3A, #D4A843, rgba(212, 168, 67, 0.1));
}
.nomadRoot .timelineItem { position: relative; padding: 0 0 52px 40px; }
.nomadRoot .timelineDot {
  position: absolute;
  left: -27px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #C41E3A;
  border: 3px solid #050505;
  box-sizing: border-box;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px #C41E3A, 0 0 20px rgba(196, 30, 58, 0.3);
}
.nomadRoot .timelineItemFuture .timelineDot {
  background: #D4A843;
  border-color: #050505;
  box-shadow: 0 0 0 2px #D4A843, 0 0 20px rgba(212, 168, 67, 0.3);
}
.nomadRoot .timelineDate {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: #D4A843;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nomadRoot .timelineTitle {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: #e8e0d4;
  margin-bottom: 8px;
}
.nomadRoot .timelineDesc {
  font-size: 0.88rem;
  color: #7a6e62;
  line-height: 1.7;
}
.nomadRoot .timelineItemActive .timelineDot {
  animation: nmd_timelinePulse 2s ease-in-out infinite;
}
@keyframes nmd_timelinePulse {
  0%, 100% { box-shadow: 0 0 0 2px #C41E3A, 0 0 20px rgba(196, 30, 58, 0.3); }
  50% { box-shadow: 0 0 0 4px #C41E3A, 0 0 40px rgba(196, 30, 58, 0.5); }
}

/* CTA */
.nomadRoot .cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nomadRoot .ctaBgWrap { position: absolute; inset: 0; z-index: 0; }
.nomadRoot .ctaBgImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.nomadRoot .ctaOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.85) 70%),
    linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.9) 0%, transparent 30%);
}
.nomadRoot .ctaInner { position: relative; z-index: 2; }
.nomadRoot .ctaTitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 20%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  text-shadow: none;
  filter: drop-shadow(0 2px 40px rgba(212, 168, 67, 0.2));
}
.nomadRoot .ctaSocial {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}
.nomadRoot .socialLink {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09888;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.nomadRoot .socialLink:hover {
  border-color: #C41E3A;
  color: #C41E3A;
  background: rgba(196, 30, 58, 0.05);
}

/* FOOTER */
.nomadRoot .fv1Badge {
  padding: 6px 14px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 4px;
  font-size: 0.72rem;
  color: #6a5e52;
  letter-spacing: 1px;
  transition: border-color 0.3s, color 0.3s;
}
.nomadRoot .fv1Badge:hover {
  border-color: rgba(212, 168, 67, 0.35);
  color: #a09888;
}
.nomadRoot .footerV2 {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}
.nomadRoot .fv2Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.nomadRoot .fv2Logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #D4A843;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.nomadRoot .fv2Tagline {
  font-size: 0.85rem;
  color: #5a5045;
  margin-bottom: 20px;
  line-height: 1.5;
}
.nomadRoot .fv2Socials { display: flex; gap: 12px; flex-wrap: wrap; }
.nomadRoot .fv2SocialLink {
  color: #5a5045;
  transition: color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.12);
}
.nomadRoot .fv2SocialLink:hover {
  color: #D4A843;
  transform: translateY(-2px);
  border-color: rgba(212, 168, 67, 0.35);
}
.nomadRoot .fv2Right {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}
.nomadRoot .fv2Col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nomadRoot .fv2Col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: #8a7e72;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 0;
}
.nomadRoot .fv2Col a {
  font-size: 0.82rem;
  color: #5a5045;
  text-decoration: none;
  transition: color 0.3s;
}
.nomadRoot .fv2Col a:hover { color: #D4A843; }
.nomadRoot .fv2Bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
}
.nomadRoot .fv2Ratings { display: flex; gap: 12px; }
.nomadRoot .fv2Copy { font-size: 0.75rem; color: #2a2520; }

/* TRAILER MODAL */
.nomadRoot ~ .nomadModalBackdrop,
.nomadModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nmd_modalFadeIn 0.3s ease;
  cursor: pointer;
}
.nomadModalBackdrop[hidden] { display: none !important; }
@keyframes nmd_modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nomadModalContent {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  cursor: default;
  animation: nmd_modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes nmd_modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.nomadModalClose {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: none;
  color: #a09888;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px 12px;
}
.nomadModalClose:hover { color: #fff; }
.nomadModalVideo {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nomadRoot .terrainGrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nomadRoot .heroLayout { grid-template-columns: 1fr; }
  .nomadRoot .heroSide { flex-direction: row; }
  .nomadRoot .bottomTrio { grid-template-columns: 1fr 1fr; }
  .nomadRoot .navLinks { display: none; }
  .nomadRoot .navLinksOpen {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.1);
  }
  .nomadRoot .mobileToggle { display: flex; }
  .nomadRoot .hero { justify-content: center; }
  .nomadRoot .heroContent { padding: 0 24px; text-align: center; }
  .nomadRoot .heroButtons { justify-content: center; }
  .nomadRoot .heroImage { object-position: center center; }
  .nomadRoot .heroPlayBtn { width: 72px; height: 72px; right: 50%; transform: translate(50%, -50%); top: 30%; }
  .nomadRoot .heroPlayBtn svg { width: 24px; height: 24px; }
  .nomadRoot .heroOverlay {
    background: radial-gradient(ellipse at center, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.85) 100%);
  }
  .nomadRoot .storyAQuote { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .nomadRoot .terrainGrid { grid-template-columns: repeat(2, 1fr); }
  .nomadRoot .pricingGrid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .nomadRoot .fv2Grid { grid-template-columns: 1fr; gap: 32px; }
  .nomadRoot .fv2Right { justify-content: flex-start; }
  .nomadRoot .fv2Bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .nomadRoot .heroSide { flex-direction: column; }
  .nomadRoot .bottomTrio { grid-template-columns: 1fr; }
  .nomadRoot .trioCard { height: 180px; }
  .nomadRoot .terrainGrid { grid-template-columns: 1fr; }
  .nomadRoot .heroLogo { width: 220px; }
}

/* =====================================================================
   LARGE-DISPLAY RESPONSIVE LAYER
   Scales the Nomad page for 1600px+ displays. Strategy: scale the
   container token, bump section/hero typography ceilings, and bump
   hero logo / sub-typography so the editorial layout feels intentional
   on FHD, QHD, and ultrawide screens.
   Additive only — does not modify any rule above.
   ===================================================================== */

/* Sync container padding with token */
.nomadRoot .container,
.nomadRoot .navInner {
  padding-left: var(--nomad-container-pad);
  padding-right: var(--nomad-container-pad);
}

/* ----- 1600px+ : large laptops ----- */
@media (min-width: 1600px) {
  .nomadRoot {
    --nomad-container-max: 1380px;
    --nomad-container-pad: 40px;
  }
  .nomadRoot .sectionTitle { font-size: clamp(2rem, 5vw, 4.2rem); }
  .nomadRoot .heroLogo { width: clamp(280px, 40vw, 580px); }
  .nomadRoot .heroSubtitle { font-size: clamp(1rem, 2.2vw, 1.6rem); }
  .nomadRoot .heroContent { max-width: 820px; }
  .nomadRoot .storyAQuote { font-size: clamp(2rem, 5vw, 4.4rem); }
  .nomadRoot .storyAOath { font-size: clamp(1.3rem, 2.5vw, 2rem); }
  .nomadRoot .storyAInner { max-width: 820px; }
  .nomadRoot .navLinks { gap: 40px; }
}

/* ----- 1920px+ : Full HD ----- */
@media (min-width: 1920px) {
  .nomadRoot {
    --nomad-container-max: 1560px;
    --nomad-container-pad: 56px;
  }
  .nomadRoot .sectionTitle { font-size: clamp(2rem, 5vw, 5rem); }
  .nomadRoot .heroLogo { width: clamp(280px, 40vw, 680px); }
  .nomadRoot .heroSubtitle { font-size: clamp(1rem, 2.2vw, 1.85rem); max-width: 720px; }
  .nomadRoot .heroContent { max-width: 940px; }
  .nomadRoot .storyAQuote { font-size: clamp(2rem, 5vw, 5rem); }
  .nomadRoot .storyAOath { font-size: clamp(1.3rem, 2.5vw, 2.3rem); }
  .nomadRoot .storyALines { font-size: 1.25rem; }
  .nomadRoot .storyAInner { max-width: 940px; }
  .nomadRoot .muted { font-size: 1.15rem; max-width: 680px; }
  .nomadRoot .navLinks { gap: 44px; }
  .nomadRoot .navLogoImg { height: 32px; }
}

/* ----- 2560px+ : QHD / 27" iMac ----- */
@media (min-width: 2560px) {
  .nomadRoot {
    --nomad-container-max: 1820px;
    --nomad-container-pad: 72px;
  }
  .nomadRoot .sectionTitle { font-size: clamp(2rem, 5vw, 6rem); }
  .nomadRoot .heroLogo { width: clamp(280px, 40vw, 820px); }
  .nomadRoot .heroSubtitle { font-size: clamp(1rem, 2.2vw, 2.2rem); max-width: 880px; }
  .nomadRoot .heroContent { max-width: 1100px; }
  .nomadRoot .storyAQuote { font-size: clamp(2rem, 5vw, 6rem); }
  .nomadRoot .storyAOath { font-size: clamp(1.3rem, 2.5vw, 2.7rem); }
  .nomadRoot .storyALines { font-size: 1.45rem; line-height: 2.6; }
  .nomadRoot .storyAInner { max-width: 1100px; }
  .nomadRoot .muted { font-size: 1.3rem; max-width: 800px; }
  .nomadRoot .navLogoImg { height: 38px; }
  /* Re-balance hero portrait crop on very wide screens so subject stays in frame */
  .nomadRoot .heroImage { object-position: 60% center; }
}

/* ----- 3200px+ : 4K / ultrawide ----- */
@media (min-width: 3200px) {
  .nomadRoot {
    --nomad-container-max: 2040px;
    --nomad-container-pad: 96px;
  }
  .nomadRoot .sectionTitle { font-size: clamp(2rem, 5vw, 7rem); }
  .nomadRoot .heroLogo { width: clamp(280px, 40vw, 920px); }
  .nomadRoot .heroSubtitle { font-size: clamp(1rem, 2.2vw, 2.5rem); max-width: 1000px; }
  .nomadRoot .storyAQuote { font-size: clamp(2rem, 5vw, 7rem); }
  .nomadRoot .heroImage { object-position: 55% center; }
}

/* =====================================================================
   NOMAD — MARQUEE & TIMELINE LARGE-DISPLAY OVERRIDES
   The character marquee uses a fixed item width and the roadmap
   timeline caps at 700px. On ultrawide both look tiny. Scale them
   alongside the rest of the system.
   ===================================================================== */
@media (min-width: 1600px) {
  .nomadRoot .marqueeItem { width: 220px; }
  .nomadRoot .marqueeSet { gap: 32px; padding-right: 32px; }
  .nomadRoot .timelineContainer { max-width: 820px; }
  .nomadRoot .timelineTitle { font-size: 1.3rem; }
  .nomadRoot .timelineDate { font-size: 0.82rem; }
  .nomadRoot .timelineDesc { font-size: 0.95rem; }
  .nomadRoot .sectionLabel { font-size: 0.85rem; letter-spacing: 7px; }
  .nomadRoot .npcCharType { font-size: 0.7rem; }
  .nomadRoot .npcCharName { font-size: 1.05rem; }
}

@media (min-width: 1920px) {
  .nomadRoot .marqueeItem { width: 260px; }
  .nomadRoot .marqueeSet { gap: 40px; padding-right: 40px; }
  .nomadRoot .marqueeBack { margin-top: -180px; }
  .nomadRoot .timelineContainer { max-width: 940px; }
  .nomadRoot .timelineTitle { font-size: 1.5rem; }
  .nomadRoot .timelineDate { font-size: 0.92rem; }
  .nomadRoot .timelineDesc { font-size: 1.05rem; line-height: 1.75; }
  .nomadRoot .sectionLabel { font-size: 0.95rem; letter-spacing: 8px; }
  .nomadRoot .npcCharType { font-size: 0.78rem; }
  .nomadRoot .npcCharName { font-size: 1.2rem; }
}

@media (min-width: 2560px) {
  .nomadRoot .marqueeItem { width: 320px; }
  .nomadRoot .marqueeSet { gap: 56px; padding-right: 56px; }
  .nomadRoot .marqueeBack { margin-top: -240px; }
  .nomadRoot .timelineContainer { max-width: 1100px; padding-left: 60px; }
  .nomadRoot .timelineItem { padding: 0 0 72px 60px; }
  .nomadRoot .timelineTitle { font-size: 1.85rem; }
  .nomadRoot .timelineDate { font-size: 1.05rem; letter-spacing: 4px; }
  .nomadRoot .timelineDesc { font-size: 1.2rem; line-height: 1.8; }
  .nomadRoot .timelineDot { width: 22px; height: 22px; left: -38px; }
  .nomadRoot .timelineLine { left: 16px; }
  .nomadRoot .sectionLabel { font-size: 1.1rem; letter-spacing: 9px; }
  .nomadRoot .npcCharType { font-size: 0.9rem; }
  .nomadRoot .npcCharName { font-size: 1.4rem; }
  .nomadRoot .timeline, .nomadRoot .npcMarquee { padding-top: 180px; padding-bottom: 180px; }
}

@media (min-width: 3200px) {
  .nomadRoot .marqueeItem { width: 380px; }
  .nomadRoot .marqueeSet { gap: 72px; padding-right: 72px; }
  .nomadRoot .marqueeBack { margin-top: -300px; }
  .nomadRoot .timelineContainer { max-width: 1280px; padding-left: 72px; }
  .nomadRoot .timelineTitle { font-size: 2.1rem; }
  .nomadRoot .timelineDate { font-size: 1.15rem; }
  .nomadRoot .timelineDesc { font-size: 1.35rem; }
  .nomadRoot .sectionLabel { font-size: 1.25rem; }
  .nomadRoot .timeline, .nomadRoot .npcMarquee { padding-top: 220px; padding-bottom: 220px; }
}

