/* ═══════════════════════════════════════════════════════════════
   AFKAR STUDIO — Landing Page  ·  Space / Galaxy Theme
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── BODY ───────────────────────────────────────────────────── */
.landing-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #04011a;
  color: var(--text-secondary);
  overflow-x: hidden;
}

/* ─── ANIMATED SPACE BACKGROUND ─────────────────────────────── */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    /* Top center — deep violet burst */
    radial-gradient(ellipse 80% 50% at 50% -5%,  rgba(120,40,255,0.55) 0%, transparent 60%),
    /* Bottom right — electric blue */
    radial-gradient(ellipse 60% 50% at 90% 95%,  rgba(30,80,255,0.30) 0%, transparent 55%),
    /* Left mid — magenta/pink */
    radial-gradient(ellipse 50% 50% at -5% 55%,  rgba(180,20,180,0.28) 0%, transparent 55%),
    /* Center — deep indigo core */
    radial-gradient(ellipse 70% 60% at 55% 50%,  rgba(60,10,160,0.22) 0%, transparent 60%),
    /* Base */
    #04011a;
}

#starsCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Nebula clouds — gradient only (no blur = no GPU kill) */
.nebula {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  animation: nebula-drift 18s ease-in-out infinite;
  pointer-events: none;
}
/* Top center — vivid violet */
.n1 {
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse,
    rgba(140,50,255,0.50) 0%,
    rgba(100,20,220,0.22) 40%,
    transparent 70%);
  top: -280px; left: 50%; transform: translateX(-50%);
  animation: nebula-drift-center 22s ease-in-out infinite;
}
/* Bottom right — electric blue */
.n2 {
  width: 650px; height: 520px;
  background: radial-gradient(ellipse,
    rgba(40,100,255,0.38) 0%,
    rgba(20,60,200,0.14) 45%,
    transparent 70%);
  bottom: 0%; right: -120px;
  animation-delay: -7s; animation-duration: 24s;
}
/* Left — magenta/purple */
.n3 {
  width: 550px; height: 550px;
  background: radial-gradient(ellipse,
    rgba(200,30,200,0.32) 0%,
    rgba(140,20,160,0.12) 45%,
    transparent 70%);
  top: 30%; left: -140px;
  animation-delay: -12s; animation-duration: 17s;
}
/* Right mid — teal/cyan accent */
.n4 {
  width: 500px; height: 380px;
  background: radial-gradient(ellipse,
    rgba(20,180,200,0.22) 0%,
    rgba(10,120,180,0.08) 45%,
    transparent 70%);
  top: 45%; right: 2%;
  animation-delay: -5s; animation-duration: 20s;
}
@keyframes nebula-drift {
  0%,100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-30px) scale(1.04); }
}
@keyframes nebula-drift-center {
  0%,100% { transform: translateX(-50%) translateY(0px) scale(1); }
  50%      { transform: translateX(-50%) translateY(-28px) scale(1.05); }
}

/* Orbital rings — static, no rotation animation (CPU saver) */
.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.14);
  pointer-events: none;
  will-change: transform;
}
.r1 {
  width: 900px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(72deg) rotateZ(15deg);
}
.r2 {
  width: 620px; height: 240px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(72deg) rotateZ(75deg);
  border-color: rgba(139,58,255,0.09);
}
.r3 {
  width: 1200px; height: 480px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(78deg) rotateZ(35deg);
  border-color: rgba(100,40,200,0.06);
}

/* ─── NAV ────────────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  background:
    linear-gradient(90deg,
      rgba(160,50,255,0.30) 0%,
      rgba(80,20,200,0.18) 25%,
      rgba(20,90,255,0.22) 55%,
      rgba(200,30,220,0.20) 80%,
      rgba(255,160,50,0.10) 100%
    ),
    rgba(5,1,20,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160,80,255,0.30);
  box-shadow:
    0 1px 0 rgba(160,80,255,0.18),
    0 6px 40px rgba(100,20,220,0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.landing-nav.scrolled {
  background:
    linear-gradient(90deg,
      rgba(180,60,255,0.36) 0%,
      rgba(80,20,210,0.24) 25%,
      rgba(20,100,255,0.26) 55%,
      rgba(220,30,240,0.22) 80%,
      rgba(255,180,50,0.12) 100%
    ),
    rgba(4,1,18,0.88);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom-color: rgba(180,90,255,0.38);
  box-shadow:
    0 1px 0 rgba(180,90,255,0.22),
    0 10px 50px rgba(100,20,220,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
/* Nav stars canvas */
#navStarsCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.landing-nav-inner { position: relative; z-index: 1; }
.landing-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.lnav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 28px;
}
.lnav-logo img { height: 36px; width: auto; }
.lnav-logo span { display: none; }
.lnav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.lnav-link {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color .15s;
}
.lnav-link:hover { color: var(--text-primary); }
.lnav-link--active { color: var(--gold) !important; }
.lnav-link { position: relative; }
.nav-new-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #a3e635;
  background: transparent;
  padding: 0;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  text-shadow: 0 0 6px rgba(163,230,53,0.9), 0 0 14px rgba(163,230,53,0.5), 0 0 28px rgba(163,230,53,0.25);
}
.lnav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lnav-credits {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.lnav-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #08041a;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.lnav-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ─── SHOWCASE STRIP ─────────────────────────────────────────── */
.showcase-strip {
  position: relative;
  z-index: 1;
  padding-top: 60px; /* nav height */
  background: linear-gradient(180deg, rgba(6,3,18,0.9) 0%, transparent 100%);
}

/* Tabs */
.strip-tabs-wrap {
  padding: 14px 0 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.strip-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.strip-tab {
  padding: 6px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.strip-tab:hover { color: var(--text-primary); }
.strip-tab.active {
  color: var(--gold);
  background: rgba(200,162,78,0.10);
  border-color: rgba(200,162,78,0.32);
}

/* Cards row — horizontal scroll */
.strip-cards {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 12px;
  padding: 16px 20px 8px;
  position: relative;
  align-items: flex-start;
}
.strip-cards::-webkit-scrollbar { display: none; }

/* Each card = flex column: media top + text bottom */
.strip-card {
  flex: 0 0 calc(100% / 3 - 10px);
  min-width: 260px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  background: #0c0620;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.15);
  transition: transform .28s cubic-bezier(.22,.68,0,1.2),
              box-shadow .28s ease,
              border-color .28s ease;
  will-change: transform;
}
.strip-card:hover {
  transform: scale(1.035) translateY(-4px);
  border-color: rgba(124,58,237,0.60);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.22),
    0 6px 28px rgba(80,20,180,0.38),
    0 0 55px rgba(100,40,200,0.16);
  z-index: 5;
}

/* Media area — fixed 16:9 */
.strip-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 14px 14px 0 0;
}
/* Main media — full frame, no crop */
.strip-media-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: none !important;
  transition: none !important;
}

/* ── Video status badge (corner) ── */
.strip-media-loader {
  position: absolute;
  bottom: 8px; right: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(6,2,22,0.78);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 4px 9px 4px 6px;
  z-index: 4;
  pointer-events: none;
  transition: opacity .5s ease;
  backdrop-filter: blur(4px);
}
.strip-media-loader.hidden {
  opacity: 0;
}
.strip-media-loader.error-state .loader-ring { display: none; }
.strip-media-loader.error-state .loader-err-dot { background: #ef4444; animation: none; }
.strip-media-loader.error-state .loader-lbl { color: #f87171; }

/* Pulsing dot */
.loader-ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c8a24e;
  animation: pulse-dot 1s ease-in-out infinite;
  flex-shrink: 0;
}
.loader-err-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c8a24e;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1);   }
  50%      { opacity: .4; transform: scale(.7); }
}

/* Label */
.loader-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(200,162,78,0.9);
  white-space: nowrap;
}

/* Progress bar under the card (thin line at bottom) */
.loader-bar-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 4;
  pointer-events: none;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7c3aed, #c8a24e);
  transition: width .25s linear;
}

/* Error state */
.loader-err { display: none; }
.strip-media-loader.error-state .loader-err { display: inline; }
.strip-media-loader.error-state .loader-ring { display: none; }

/* Subtle bottom shadow inside the media */
.strip-card-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(5,2,15,0.55) 100%
  );
  pointer-events: none;
}

/* Play button — centered on media */
.strip-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 4;
  pointer-events: none;
}
.strip-card:hover .strip-play-btn {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.1);
}

/* Text below media — scrolls with card */
.strip-card-info {
  padding: 13px 16px 15px;
  background: #0c0620;
  flex: 1;
  border-radius: 0 0 14px 14px;
}
.strip-card-title {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 5px;
  line-height: 1.3;
}
.strip-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

/* ─── HERO BANNER (full-width, no scroll) ────────────────────── */
.hero-banner--stacked {
  border-top: 1px solid rgba(124,58,237,0.18);
}
.hero-banner {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 380px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(120,40,255,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 30% 80%, rgba(180,20,180,0.12) 0%, transparent 55%),
    linear-gradient(135deg, #07021c 0%, #0d0428 60%, #060118 100%);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  overflow: hidden;
}

/* Left: text column */
.hero-banner-body {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 40px 52px 48px;
  position: relative;
  z-index: 5;
  gap: 16px;
}
.hero-banner-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* color + border set via inline style from admin */
  margin-bottom: -4px;
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
}
.hero-banner-badge::before {
  content: '✦';
  font-size: 8px;
  opacity: .85;
}
.hero-banner-title {
  /* color set via inline style from admin */
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
}
.hero-banner-sub {
  font-size: 14px;
  /* color set via inline style from admin */
  line-height: 1.7;
  max-width: 340px;
}
.hero-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  transition: opacity .15s, transform .12s;
}
.hero-banner-btn:hover { opacity: .88; transform: translateY(-2px); }

/* Right: media (fills remaining space) */
.hero-banner-media {
  flex: 1;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #050115;
  transition: none;
}
/* Hero banner hover — same vibe as strip cards */
.hero-banner {
  transition: box-shadow .28s ease, border-color .28s ease;
}
.hero-banner:hover {
  border-color: rgba(124,58,237,0.55);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.20),
    0 16px 60px rgba(100,20,200,0.35),
    0 0 40px rgba(124,58,237,0.15);
}
.hero-banner:hover .hero-banner-media-main {
  transform: scale(1.025) !important;
  transition: transform .5s ease !important;
}
.hero-banner:hover .hero-banner-media-fade {
  background:
    linear-gradient(to right,
      #06021a 0%,
      rgba(8,3,26,0.97) 12%,
      rgba(12,5,35,0.85) 25%,
      rgba(18,7,48,0.62) 40%,
      rgba(26,9,60,0.35) 55%,
      rgba(36,12,72,0.14) 70%,
      transparent 85%
    ),
    linear-gradient(to bottom, rgba(6,2,26,0.40) 0%, transparent 30%),
    linear-gradient(to top,    rgba(6,2,26,0.40) 0%, transparent 30%);
}
.hero-banner-media-main {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: none !important;
  transition: none !important;
}
/* Left-side fade to blend with text area */
.hero-banner-media-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #06021a 0%,
      rgba(8,3,26,0.94) 10%,
      rgba(12,5,35,0.72) 22%,
      rgba(18,7,48,0.42) 38%,
      rgba(26,9,60,0.18) 55%,
      transparent 72%
    ),
    linear-gradient(to bottom, rgba(6,2,26,0.28) 0%, transparent 25%),
    linear-gradient(to top,    rgba(6,2,26,0.28) 0%, transparent 25%);
  z-index: 2;
  pointer-events: none;
}

/* Strip wrapper — relative container for arrows */
.strip-wrapper {
  position: relative;
}

/* Arrows — overlaid on the strip edges */
.strip-arrow {
  position: absolute;
  top: 0; bottom: 0;
  width: 56px;
  z-index: 20;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s ease, background .2s;
  pointer-events: auto;
}
.strip-arrow-left {
  left: 0;
  background: linear-gradient(to right, rgba(5,2,15,0.88) 0%, transparent 100%);
  display: none;
}
.strip-arrow-right {
  right: 0;
  background: linear-gradient(to left, rgba(5,2,15,0.88) 0%, transparent 100%);
}
.strip-arrow svg {
  color: rgba(255,255,255,0.75);
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}
.strip-arrow:hover svg { color: #fff; }

/* ─── HERO ───────────────────────────────────────────────────── */
.landing-hero {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,162,78,0.10);
  border: 1px solid rgba(200,162,78,0.28);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.06;
  margin-bottom: 22px;
  background: linear-gradient(150deg, #ffffff 25%, rgba(200,162,78,0.92) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Gold CTA button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #08041a;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .15s, transform .12s;
}
.btn-gold:hover { opacity: .88; transform: translateY(-2px); }

/* Ghost button */
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
}

/* Stats row */
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 0;
  backdrop-filter: blur(10px);
}
.h-stat { display: flex; flex-direction: column; align-items: center; padding: 0 30px; }
.h-num { font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.h-lbl { font-size: 10px; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.h-div { width: 1px; height: 36px; background: rgba(255,255,255,0.07); }

/* ─── SHARED SECTION STYLES ──────────────────────────────────── */
.land-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.land-dark {
  background: rgba(6,3,18,0.75);
  backdrop-filter: blur(6px);
}
.land-dark::before,
.land-dark::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.28), transparent);
}
.land-dark::before { top: 0; }
.land-dark::after  { bottom: 0; }

.land-container { max-width: 1200px; margin: 0 auto; }

.sec-header { text-align: center; margin-bottom: 48px; }
.sec-label {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 10px;
}
.sec-sub { font-size: 15px; color: var(--text-muted); max-width: 420px; margin: 0 auto; }

/* ─── CREATE TILES ───────────────────────────────────────────── */
.create-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.create-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--border-default);
  background: var(--bg-card);
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.create-tile:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.create-tile-video:hover { border-color: rgba(124,58,237,0.45); }
.create-tile-image:hover { border-color: rgba(200,162,78,0.40); }

.tile-glow {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%;
  right: -50px; top: -50px; opacity: 0;
  transition: opacity .3s;
  /* No filter:blur — use gradient fade instead */
}
.create-tile:hover .tile-glow { opacity: 1; }
.tile-glow-purple { background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%); }
.tile-glow-gold   { background: radial-gradient(circle, rgba(200,162,78,0.16) 0%, transparent 70%); }

.tile-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.tile-icon-purple { background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.28); color: #a78bfa; }
.tile-icon-gold   { background: rgba(200,162,78,0.11); border: 1px solid rgba(200,162,78,0.26); color: var(--gold); }

.tile-body { flex: 1; position: relative; z-index: 1; }
.tile-title { font-size: 19px; font-weight: 800; color: var(--text-primary); margin-bottom: 5px; letter-spacing: -.3px; }
.tile-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.tile-arrow { color: var(--text-dim); position: relative; z-index: 1; flex-shrink: 0; transition: color .2s, transform .2s; }
.create-tile:hover .tile-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── MODELS ─────────────────────────────────────────────────── */
.models-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 11px; }
.model-card {
  background: var(--bg-card); border: 1px solid var(--border-default);
  border-radius: 13px; padding: 18px;
  transition: border-color .18s, background .18s;
}
.model-card:hover { border-color: var(--gold-border); background: var(--bg-card-hover); }
.model-card-feat { border-color: var(--gold-border); background: var(--gold-bg); }
.model-cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-light); margin-bottom: 5px; }
.model-card-feat .model-cat { color: var(--gold); }
.model-name { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 9px; }
.model-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.model-tags span {
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
  background: var(--purple-glow); border: 1px solid var(--purple-border); color: var(--purple-light);
}
.model-card-feat .model-tags span { background: var(--gold-bg); border-color: var(--gold-border); color: var(--gold); }
.model-price { font-size: 15px; font-weight: 800; color: var(--gold); }

/* ─── CTA ────────────────────────────────────────────────────── */
.land-cta {
  position: relative; z-index: 1;
  padding: 110px 24px; text-align: center; overflow: hidden;
}
.cta-orb {
  position: absolute; width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.20) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: nebula-drift 9s ease-in-out infinite;
  pointer-events: none;
}
.cta-title { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: var(--text-primary); margin-bottom: 14px; letter-spacing: -.5px; }
.cta-sub   { font-size: 16px; color: var(--text-muted); max-width: 360px; margin: 0 auto 38px; line-height: 1.7; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.land-footer {
  background: rgba(6,3,18,0.85); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 24px; position: relative; z-index: 1;
}
.footer-row {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 2px; flex: 1; flex-wrap: wrap; }
.footer-links a { padding: 5px 11px; font-size: 13px; color: var(--text-dim); text-decoration: none; border-radius: 6px; transition: color .15s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 12px; color: var(--text-faint); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .strip-card      { flex: 0 0 calc(50% - 8px); }
  .create-grid     { grid-template-columns: 1fr; }
  .hero-banner     { flex-direction: column; min-height: auto; }
  .hero-banner-body { flex: none; padding: 36px 24px 24px; }
  .hero-banner-media { min-height: 240px; }
}
@media (max-width: 600px) {
  .strip-card  { flex: 0 0 calc(85% - 8px); }
  .strip-cards { gap: 10px; padding: 12px 14px 6px; }
  .hero-banner-body { padding: 28px 20px 20px; }
  .hero-banner-media { min-height: 180px; }
  .lnav-links { display: none; }
  .landing-hero { padding: 60px 20px; }
  .land-section { padding: 60px 20px; }
  .h-stat { padding: 0 18px; }
  .h-num  { font-size: 20px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .r1, .r2 { display: none; }
}
